commit fedf90bdc3de46e3f1adf5aed380c3b09b5fd7b3 Author: Tej Sharma Date: Thu Dec 4 06:21:26 2025 +0530 Initial commit diff --git a/.clangd b/.clangd new file mode 100644 index 0000000..437f255 --- /dev/null +++ b/.clangd @@ -0,0 +1,2 @@ +CompileFlags: + Remove: [-f*, -m*] diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..dafb8ad --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,13 @@ +ARG DOCKER_TAG=latest +FROM espressif/idf:${DOCKER_TAG} + +ENV LC_ALL=C.UTF-8 +ENV LANG=C.UTF-8 + +RUN apt-get update -y && apt-get install udev -y + +RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc + +ENTRYPOINT [ "/opt/esp/entrypoint.sh" ] + +CMD ["/bin/bash", "-c"] \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..b801786 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +{ + "name": "ESP-IDF QEMU", + "build": { + "dockerfile": "Dockerfile" + }, + "customizations": { + "vscode": { + "settings": { + "terminal.integrated.defaultProfile.linux": "bash", + "idf.espIdfPath": "/opt/esp/idf", + "idf.toolsPath": "/opt/esp", + "idf.gitPath": "/usr/bin/git" + }, + "extensions": [ + "espressif.esp-idf-extension", + "espressif.esp-idf-web" + ] + } + }, + "runArgs": ["--privileged"] +} \ No newline at end of file diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..8f12a1b --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,23 @@ +{ + "configurations": [ + { + "name": "ESP-IDF", + "compilerPath": "${config:idf.toolsPathWin}\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe", + "compileCommands": "${config:idf.buildPath}/compile_commands.json", + "includePath": [ + "${config:idf.espIdfPath}/components/**", + "${config:idf.espIdfPathWin}/components/**", + "${workspaceFolder}/**" + ], + "browse": { + "path": [ + "${config:idf.espIdfPath}/components", + "${config:idf.espIdfPathWin}/components", + "${workspaceFolder}" + ], + "limitSymbolsToIncludedHeaders": true + } + } + ], + "version": 4 +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2511a38 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "gdbtarget", + "request": "attach", + "name": "Eclipse CDT GDB Adapter" + }, + { + "type": "espidf", + "name": "Launch", + "request": "launch" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c7cbf3d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,24 @@ +{ + "C_Cpp.intelliSenseEngine": "default", + "idf.espIdfPathWin": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf", + "idf.pythonInstallPath": "C:\\Users\\Vecmocon\\.espressif\\tools\\idf-python\\3.11.2\\python.exe", + "idf.openOcdConfigs": [ + "board/esp32s3-builtin.cfg" + ], + "idf.portWin": "COM49", + "idf.toolsPathWin": "C:\\Users\\Vecmocon\\.espressif", + "idf.customExtraVars": { + "IDF_TARGET": "esp32s3" + }, + "clangd.path": "C:\\Users\\Vecmocon\\.espressif\\tools\\esp-clang\\esp-19.1.2_20250312\\esp-clang\\bin\\clangd.exe", + "clangd.arguments": [ + "--background-index", + "--query-driver=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe", + "--compile-commands-dir=${workspaceFolder}\\build" + ], + "idf.flashType": "UART", + "files.associations": { + "esp_mac.h": "c", + "fota_manager.h": "c" + } +} diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5d2f5de --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,21 @@ +# The following four lines of boilerplate have to be in your project's CMakeLists +# in this exact order for cmake to work correctly +cmake_minimum_required(VERSION 3.16) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +# "Trim" the build. Include the minimal set of components, main, and anything it depends on. +# idf_build_set_property(MINIMAL_BUILD ON) +project(esp32-s3_fota_test_wifi) + +# Add custom outbox implementation to mqtt component +# idf_component_get_property(mqtt mqtt COMPONENT_LIB) +# target_sources(${mqtt} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/main/custom_outbox.cpp) + +# Our C++ needs an extra dependency to mqtt component, so we add it to mqtt component. +# This is needed because we are adding another source to the mqtt component and the build +# system needs to be aware of it to be able to compile and link the mqtt component. +# First we get our dependency +# idf_component_get_property(mqtt mqtt COMPONENT_LIB) +# idf_component_get_property(pthread pthread COMPONENT_LIB) +# # And them we link the components +# target_link_libraries(${mqtt} ${pthread}) diff --git a/README.md b/README.md new file mode 100644 index 0000000..5b64bcd --- /dev/null +++ b/README.md @@ -0,0 +1,100 @@ +| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-C61 | ESP32-H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 | +| ----------------- | ----- | -------- | -------- | -------- | -------- | --------- | -------- | -------- | -------- | -------- | + +# ESP-MQTT custom outbox sample application +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +This example is a slightly modified version of the tcp example to show how to configure a custom outbox. +This example connects to the broker URI selected using `idf.py menuconfig` (using mqtt tcp transport) and as a demonstration subscribes/unsubscribes and send a message on certain topic. +(Please note that the public broker is maintained by the community so may not be always available, for details please see this [disclaimer](https://iot.eclipse.org/getting-started/#sandboxes)) + +Note: If the URI equals `FROM_STDIN` then the broker address is read from stdin upon application startup (used for testing) + +It uses ESP-MQTT library which implements mqtt client to connect to mqtt broker. + +## Necessary changes to customize the outbox + +To customize the outbox the first step is to enable it in the menuconfig option. + +With this option enabled, the default implementation isn't defined and the function definition needs to be added to mqtt component. +Any extra dependencies needed by the new sources also need to be added to the mqtt component. Refer to the example CMakeLists.txt file +for the details on how to do it. + +## The custom outbox in the example + +For the sake of this example the customized outbox implements the same functionalits of the regular but using C++ as a language. + +The implementation uses [C++ Polymorphic memory resources]() to control memory allocations and limit the usage of the memory. + +## How to use example + +### Hardware Required + +This example can be executed on any ESP32 board, the only required interface is WiFi and connection to internet. + +### Configure the project + +* Open the project configuration menu (`idf.py menuconfig`) +* Configure Wi-Fi or Ethernet under "Example Connection Configuration" menu. See "Establishing Wi-Fi or Ethernet Connection" section in [examples/protocols/README.md](../../README.md) for more details. + +Note that the mandatory configurations for this example, mqtt custom outbox and C++ exceptions are automatically added by the `sdkconfig.defaults` file. +### Build and Flash + +Build the project and flash it to the board, then run monitor tool to view serial output: + +``` +idf.py -p PORT flash monitor +``` + +(To exit the serial monitor, type ``Ctrl-]``.) + +See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects. + +## Example Output + +``` +I (4635) example_common: Connected to example_netif_sta +I (4645) example_common: - IPv4 address: 192.168.33.206, +I (4645) example_common: - IPv6 address: fe80:0000:0000:0000:7e9e:bdff:fecf:00c0, type: ESP_IP6_ADDR_IS_LINK_LOCAL +I (4655) Monotonic: Monotonic: 400 bytes allocated, 400 total bytes in use +I (4665) Monotonic: Monotonic: 1000 bytes allocated, 1400 total bytes in use +I (4675) Monotonic: Monotonic: 128 bytes allocated, 1528 total bytes in use +I (4685) Pool: Pool: 32 bytes allocated, 32 total bytes in use +I (4685) Monotonic: Monotonic: 7688 bytes allocated, 9216 total bytes in use +I (4695) Monotonic: Monotonic: 128 bytes allocated, 9344 total bytes in use +I (4705) Pool: Pool: 480 bytes allocated, 512 total bytes in use +I (4715) Monotonic: Monotonic: 992 bytes allocated, 10336 total bytes in use +I (4715) Monotonic: Monotonic: 128 bytes allocated, 10464 total bytes in use +I (4725) Pool: Pool: 23 bytes allocated, 535 total bytes in use +I (4735) MQTT_EXAMPLE: Enqueued msg_id=14345 +I (4735) Pool: Pool: 29 bytes allocated, 564 total bytes in use +I (4745) MQTT_EXAMPLE: Enqueued msg_id=3507 +I (4745) MQTT_EXAMPLE: Other event id:7 +I (4755) main_task: Returned from app_main() +I (5085) MQTT_EXAMPLE: MQTT_EVENT_CONNECTED +I (5085) Pool: Pool: 23 bytes allocated, 587 total bytes in use +I (5085) MQTT_EXAMPLE: sent publish successful, msg_id=47425 +I (5085) Pool: Pool: 18 bytes allocated, 605 total bytes in use +I (5095) MQTT_EXAMPLE: sent subscribe successful, msg_id=60709 +I (5105) Pool: Pool: 18 bytes allocated, 623 total bytes in use +I (5105) MQTT_EXAMPLE: sent subscribe successful, msg_id=33273 +I (5395) Pool: Pool: 23 bytes deallocated, 623 total bytes in use +I (5395) MQTT_EXAMPLE: MQTT_EVENT_PUBLISHED, msg_id=47425 +I (6005) Pool: Pool: 18 bytes deallocated, 623 total bytes in use +I (6005) MQTT_EXAMPLE: MQTT_EVENT_SUBSCRIBED, msg_id=60709 +I (6005) MQTT_EXAMPLE: sent publish successful, msg_id=0 +I (6015) Pool: Pool: 18 bytes deallocated, 623 total bytes in use +I (6015) MQTT_EXAMPLE: MQTT_EVENT_SUBSCRIBED, msg_id=33273 +I (6025) MQTT_EXAMPLE: sent publish successful, msg_id=0 +I (6035) MQTT_EXAMPLE: MQTT_EVENT_DATA +TOPIC=/topic/qos1 +DATA=data_3 +I (6315) MQTT_EXAMPLE: MQTT_EVENT_DATA +TOPIC=/topic/qos1 +DATA=data_3 +I (6315) Pool: Pool: 23 bytes deallocated, 623 total bytes in use +I (6315) MQTT_EXAMPLE: MQTT_EVENT_PUBLISHED, msg_id=14345 +I (6615) MQTT_EXAMPLE: MQTT_EVENT_DATA +TOPIC=/topic/qos0 +DATA=data +``` diff --git a/build/.bin_timestamp b/build/.bin_timestamp new file mode 100644 index 0000000..dbdfc8f --- /dev/null +++ b/build/.bin_timestamp @@ -0,0 +1 @@ +2bf2951b43b46981397403aed3a28a42 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.bin diff --git a/build/.ninja_deps b/build/.ninja_deps new file mode 100644 index 0000000..f4979fe 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..a9a0d82 --- /dev/null +++ b/build/.ninja_log @@ -0,0 +1,1107 @@ +# ninja log v6 +92 130 7864703512722738 project_elf_src_esp32s3.c 2f17c62f6f31143d +92 130 7864703512722738 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/project_elf_src_esp32s3.c 2f17c62f6f31143d +71 144 7864703512873565 esp-idf/esp_system/ld/memory.ld a45755980f042432 +71 144 7864703512873565 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld/memory.ld a45755980f042432 +78 150 7864703512923621 esp-idf/esp_system/ld/sections.ld.in e22086922b3e02b1 +78 150 7864703512923621 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld/sections.ld.in e22086922b3e02b1 +99 360 7864703514274557 ota_data_initial.bin 1fe4d2c37425723b +99 360 7864703514274557 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/ota_data_initial.bin 1fe4d2c37425723b +211 683 7864703513572745 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj 9ca08d51aec552e2 +216 762 7864703513633212 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj 10a856cb799ba305 +194 833 7864703513427100 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 43c0c65760f717ef +181 895 7864703513275689 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj bc780f337e458001 +150 940 7864703512974042 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj f37e6489ce16450c +205 964 7864703513527205 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj 50113c24f17aba1a +188 996 7864703513346171 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj 3d9c5e05fea63dd5 +168 1007 7864703513175294 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj f259af77d71c067a +162 1065 7864703513124796 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj fa417558d14f2abc +156 1072 7864703513024694 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj 38114c4833bf38fb +175 1084 7864703513225371 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj 815239ec89fc8659 +361 1258 7864703515073381 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj 663b587a67e273 +199 1350 7864703513477149 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj d8f873eaa20fc0a7 +1008 1406 7864703521575574 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj 8123c2a6826bf5b3 +1065 1462 7864703522125218 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj 1197a09eed985f05 +84 1467 7864703513275689 partition_table/partition-table.bin 3e10b134a7801031 +84 1467 7864703513275689 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/partition_table/partition-table.bin 3e10b134a7801031 +834 1534 7864703519824376 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj e1404f48d68638c5 +1072 1556 7864703522175726 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj 845d6db6fc9ad423 +997 1566 7864703521424859 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj cd2d4f225cbc6532 +965 1579 7864703521122679 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj 6fb237193bd470af +763 1626 7864703519124442 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj 3174c3b31aab8625 +685 1753 7864703518345055 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 7a9acb8fbf2f6cc4 +1467 1818 7864703526172626 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj 45cf2b27c4437893 +1462 1861 7864703526077119 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj cf7be5c9e0cedae9 +895 1883 7864703520422605 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj 21f0e90eaf2a2f9b +1085 1892 7864703522351657 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj 63d38cb06d75aa1e +1585 1898 7864703527346282 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj 379dd091afd4c4f4 +1556 1927 7864703527027527 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj 4a2fc72a3e564474 +1351 1969 7864703524955290 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj ab3352f31646ed53 +1259 1996 7864703524075956 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj 32c9d0ea1d0fbc2e +1406 2037 7864703525523451 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj 9e056cf76cfb7fff +940 2075 7864703520835439 esp-idf/esp_https_ota/libesp_https_ota.a f4975dec23866988 +1566 2176 7864703527122696 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj 7fdc353701f82531 +1861 2518 7864703530058418 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj 54a25d57d1bdebf +2037 2566 7864703531861952 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj 7be15d8146b6d604 +2075 2651 7864703532248107 esp-idf/esp_http_server/libesp_http_server.a f01605fcedc70256 +1535 2683 7864703526825947 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj b32570fae1fb52db +1626 2723 7864703527750856 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj 8e5898c2893a008b +1820 2729 7864703529657182 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj c925529f16148669 +1771 2788 7864703529190299 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj b70b43413ed58bfe +2178 2831 7864703533261174 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj 4eed3147c5180d1f +1883 2835 7864703530324081 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj e6fbd74400e2ea17 +1970 2841 7864703531162199 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj b8367c7467f1579b +1898 2977 7864703530460335 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj 86e309dd800a9a04 +1893 3080 7864703530425109 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj b4afa92e7c6094b2 +2653 3167 7864703538023968 esp-idf/esp_http_client/libesp_http_client.a 869ad71151996475 +1927 3176 7864703530761216 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj a836ee6c8ec3736c +2521 3218 7864703536753631 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj eebf554362d089a8 +2723 3310 7864703538726266 esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj 7919ea729b160340 +2683 3329 7864703538324557 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj 50b1b31bb52cfb95 +1996 3361 7864703531458201 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj 4c989531d60c801d +2729 3473 7864703538756436 esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj 266636c45c555193 +2570 3496 7864703537224832 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj 8ce66f30fb9d5ab6 +2836 3549 7864703539855729 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj a7873efdc92ae240 +2978 3621 7864703541254746 esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj 5bc646a30875a8b3 +2841 3692 7864703539855729 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj 3a7559d007d5cc55 +3167 3748 7864703543155937 esp-idf/tcp_transport/libtcp_transport.a 737f45cd239e3986 +3081 3767 7864703542259376 esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj 6660aef462975f58 +2788 3772 7864703539353283 esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj 1e93926e7cfc1ff8 +3549 3777 7864703546974742 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj 91f523009536e596 +2831 3781 7864703539755498 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj 6d33d644101847a8 +3218 3786 7864703543657856 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj 532b850086ef9fa2 +3312 3865 7864703544540192 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj d04d203c25b9c002 +3329 3875 7864703544777288 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj 3884b491e55ff7fe +3177 3892 7864703543256169 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj 6adf97aabea87d2d +3361 3898 7864703545103437 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj 5e98db981ee1b1f7 +3692 4154 7864703548409288 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj 8e6fa292cf16623b +3899 4181 7864703550476112 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj 7db52dbdf0c69031 +3474 4186 7864703546222406 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj eeeb507637048c29 +3622 4191 7864703547706956 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj 5cb4435683b2b643 +3787 4196 7864703549362181 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj ce8be729c3d6dd6e +3748 4201 7864703548975943 esp-idf/esp_adc/libesp_adc.a 60c8802188380c2e +3496 4337 7864703546423107 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj c993fdb6ddf80145 +3767 4343 7864703549126390 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj 3f2da061460cd4e5 +3880 4412 7864703550360626 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 1df610cf5da10f87 +3782 4419 7864703549311898 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj 23b35dce097fb0de +3777 4468 7864703549226689 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 784884dd8681d315 +3866 4533 7864703550124900 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 2f79b7dccfe67912 +3893 4595 7864703550425945 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj 94d997755bc90b57 +3772 4668 7864703549211625 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj a82711ed7cae1367 +4196 4699 7864703553426631 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj 4ed2fffce8e7bfb +4181 4826 7864703553276012 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj d5a6d31ce6c0ed60 +4201 4830 7864703553527122 esp-idf/esp-tls/libesp-tls.a d8a0c64b8fbb1077 +4191 4870 7864703553361402 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj b00de2290f1bec7c +4412 4887 7864703555549462 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj 7b07a60a5e86854f +4343 4894 7864703554925587 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj d33ded799e5de303 +4419 4904 7864703555675102 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj 4818c5221e2a4161 +4186 4937 7864703553326057 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj b6ca473559c05ce0 +4338 5030 7864703554874834 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj b6f467f6c281057f +4154 5161 7864703553023825 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj 57b9c44b389bbb95 +4534 5183 7864703556826231 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj ae0d979cdc38c1f8 +4595 5197 7864703557424965 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj cd4f125f44c1c58c +4470 5248 7864703556177451 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj fb70656ceb4a64c7 +4668 5265 7864703558174161 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj 9958acde1d510b4f +4904 5272 7864703560522647 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj 2239e8aee8d0064c +4938 5288 7864703560874816 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj 54570fb69971345 +4871 5336 7864703560175084 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj b88546f59f4c62a7 +4831 5388 7864703559773060 esp-idf/http_parser/libhttp_parser.a 312f182374d6a7ee +4895 5399 7864703560427532 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj 4e5d2046b393f76a +4887 5417 7864703560366420 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj 620c42ec5b16d255 +4699 5455 7864703558475996 esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj 2f5510da79ba84d0 +4826 5532 7864703559727997 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj d40ab7122587629f +5248 5655 7864703563974554 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj 9e991deb10a33617 +5265 5760 7864703564125079 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj 62bd0758d583bc2a +5272 5780 7864703564175401 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj 2d82e19bd1f06a1a +5418 5833 7864703565675663 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj 1d2ad9f75f729e49 +5031 5865 7864703561775351 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj 9991d9f65d5cdc56 +5289 5963 7864703564371854 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj c0e9410d6441d562 +5780 6014 7864703569276875 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj 5bc91a2860a6ac2b +5198 6034 7864703563476440 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj cafcca00cb7f8972 +5183 6043 7864703563325323 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj e80f512e3b2178fd +5532 6058 7864703566822410 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/regulatory/esp_wifi_regulatory.c.obj 8b368e16b8808997 +5400 6067 7864703565474139 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj 31452d2ce33020c5 +5388 6086 7864703565372923 esp-idf/driver/libdriver.a 338dd70d1c5b74fc +5336 6134 7864703564824228 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj ce74a735ace2e3bf +5161 6250 7864703563103208 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj e63e86bae002a46d +5833 6261 7864703569825409 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj fc58707849d58b1b +5456 6269 7864703566022467 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32s3/esp_adapter.c.obj b042e8439c8534fa +5656 6304 7864703568023626 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj 4e940719a2a65165 +5760 6312 7864703569075702 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32s3/esp_coex_adapter.c.obj 5257d21f5cfc01d3 +6086 6549 7864703572324382 esp-idf/esp_driver_twai/libesp_driver_twai.a 2be7d8fceda5c12f +5866 6560 7864703570127340 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj 877c3a1e037397fb +6035 6691 7864703571826463 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 7ec88461bd702d40 +6014 6731 7864703571624804 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj a9c255deffa4620f +5964 6762 7864703571125253 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj 4a3846c6682eaa15 +6135 6803 7864703572823546 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj 81b0b7459d5d011f +6058 6830 7864703572077589 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj a138e2107465357a +6262 6873 7864703574076436 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj 697d50e8db5a467a +6067 6882 7864703572173462 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj 16fd43c64b029fda +6250 7051 7864703573975941 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj a35cadb19eb3eaa1 +6044 7085 7864703571926569 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj df6fe30cda225fce +6549 7185 7864703576972947 esp-idf/esp_driver_ledc/libesp_driver_ledc.a 338871d1f15c866e +6304 7208 7864703574523889 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj 759c17b3018dfc70 +6312 7338 7864703574564244 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj 7541a810a15ccbb7 +6691 7418 7864703578386449 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj f53910f5bd9809ee +6561 7426 7864703577073623 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj 45f32a8a3b95d75c +6762 7528 7864703579076719 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 9b4db35bc70a6cc6 +6269 7566 7864703574177086 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj 41f485ad6ecf420 +6882 7596 7864703580324463 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj d6ce777fda5ed1b1 +6833 7640 7864703579825851 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 183b8bd7d1dfac38 +6803 7670 7864703579523977 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj 57dc5a632a90d6ca +6873 7704 7864703580223913 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj 9ea2a681677f0721 +6731 7749 7864703578774735 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj b90cc1c5891bb484 +7185 7877 7864703583326062 esp-idf/esp_driver_i2c/libesp_driver_i2c.a e97e05721494086a +7052 7890 7864703581977748 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj ec2daca238d7d21 +7085 7922 7864703582324600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj f70f7b8f189b705e +7208 7972 7864703583577806 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj e29a166d9029d435 +7338 8014 7864703584875614 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj 9b2103420e6da399 +7426 8065 7864703585723655 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj b971d944e88d9ddc +7596 8134 7864703587426347 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj 8b62ce64307cc9ef +7567 8310 7864703587124840 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj 6f5a5952e44b467e +7529 8374 7864703586743716 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj b6415c22a244d11d +7640 8384 7864703587898023 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj e90f9672f93a0c3c +7704 8429 7864703588525929 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj 649f6827db5d01c9 +7418 8452 7864703585673389 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj 80aa6901f115de8e +7671 8461 7864703588199042 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj d1296ee57d8482e +7750 8470 7864703588998256 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 6928dcfdfeb263ef +7877 8497 7864703590227158 esp-idf/esp_driver_sdm/libesp_driver_sdm.a d10af0a9f28dd075 +7890 8575 7864703590393348 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj f99eaa178b05bf48 +8065 8704 7864703592126237 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj cd1efae37a535d72 +8014 8712 7864703591624467 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj ceb1e191fc860e58 +7923 8833 7864703590725987 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 1e086c2925493694 +8135 8984 7864703592824109 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 580da84b263cb18a +8374 9059 7864703595224514 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj 10ffa729db3a4ffa +8499 9128 7864703596463851 esp-idf/esp_driver_tsens/libesp_driver_tsens.a 6d9db3b33c228a58 +8313 9191 7864703594626230 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 1800418ee726850f +8429 9208 7864703595761323 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj 6864052bdbe33f1 +7973 9248 7864703591222992 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj 3c12254063ee6cbc +8461 9298 7864703596062249 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj b254bd02772550db +8704 9370 7864703598525277 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj ccdc4d538d2d3aef +8713 9408 7864703598625592 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj 9fc072bb4d7345e8 +8575 9417 7864703597226613 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj ba9bad9191d246dc +8453 9456 7864703596027022 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj bbf518176a6198a1 +8384 9467 7864703595324821 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj 6eb36e9e4a320f49 +8833 9532 7864703599825011 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 85e74a81c2fd89a7 +8471 9634 7864703596162610 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj cbf63034ff06395 +8984 9725 7864703601325508 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 97e927f1046eac71 +9059 9776 7864703602072935 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj 9c5138c5985b232c +9128 9784 7864703602775224 esp-idf/esp_driver_rmt/libesp_driver_rmt.a 140e798ae28a2342 +9191 9794 7864703603391973 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj cabd0f9285342682 +9208 9869 7864703603572645 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj f3b7f2cd1248a6d3 +9248 9895 7864703603975662 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj ed45c8ff9efd64c4 +9298 10006 7864703604477196 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj bc543b449c9f531d +9409 10072 7864703605575310 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj c6ea53df8a26def3 +9421 10136 7864703605675550 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj 7a1ba6ad18851fab +9725 10144 7864703608724284 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj cb61ca3d1add1e53 +9371 10152 7864703605274379 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj e54c00b061d0362e +9457 10188 7864703606026287 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj d8edb8e66a76b6f6 +9532 10224 7864703606773574 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj 13e5cbfe92894b4d +9784 10262 7864703609326521 esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a d1ea5094eceeb6ec +9470 10339 7864703606176725 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj d05d476dec64c88f +9776 10587 7864703609226097 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj 226f80d0bb697c4d +9794 10596 7864703609426902 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj b95110eae24a14e3 +9869 10645 7864703610174093 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj 8e9435e0bd259da1 +10073 10695 7864703612224862 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj e4acacbdf21ea18 +9634 10790 7864703607826647 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj bed0085827e4fa14 +10007 10802 7864703611523015 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj 66d9d55220c73cb0 +10263 10809 7864703614125428 esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a 2b26beb393eaf3f6 +10152 10931 7864703612972708 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj 27a45f2cbb29cc35 +9895 10944 7864703610424747 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj 64ce0097acfa4aa6 +10136 10969 7864703612827221 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj c66b6783fa03738b +10588 11063 7864703617376136 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpsk.c.obj e523d90233fda2f5 +10189 11073 7864703613373288 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj 51f3a5ee9191ce9 +10225 11144 7864703613724434 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj b51bbc2cfac3727d +10144 11270 7864703612927460 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj cb9b6e8f3ad5b8ba +10645 11342 7864703617923393 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 268f701cb4dab892 +10596 11355 7864703617426396 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj ecf070e741854943 +10791 11409 7864703619374035 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj 649e03dd8fbfcedd +10695 11414 7864703618425161 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj a821bc4a034b2dea +10945 11421 7864703620925201 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj e7f925553445901c +10969 11425 7864703621175936 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 39fcec3fc48df0f3 +10803 11430 7864703619524443 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj 802c10b4047e691a +10339 11452 7864703614872769 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj 112d82a279a07490 +11064 11458 7864703622123576 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 6abd7e0e0ff5ab55 +10811 11580 7864703619569560 esp-idf/sdmmc/libsdmmc.a 4aaf394db20ab888 +10931 11677 7864703620774637 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj bc6aca4e7940e075 +11144 11790 7864703622927006 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj 1c52970fd141b4ef +11453 11934 7864703626026309 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj 82a24e27df583527 +11275 11956 7864703624276309 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj cd2f774a1c9b655c +11409 11984 7864703625575043 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj 16e070e35ec87f30 +11458 11992 7864703626076478 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj d50df230c21e809f +11355 12000 7864703625023439 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj a84d9275073b6680 +11414 12090 7864703625625098 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 991f0188bac6aaee +11344 12115 7864703624923175 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj e04c5374a639ff97 +11431 12157 7864703625775628 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 63c72a85116237b0 +11580 12200 7864703627275892 esp-idf/esp_driver_i2s/libesp_driver_i2s.a c8e84e0b169b7dc5 +11421 12296 7864703625675306 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj 484da742211f3416 +11678 12302 7864703628273666 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 47470c3992fa69a0 +11426 12436 7864703625725376 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj 1ad25af709646108 +11073 12441 7864703622223868 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 4dd4b20782f12392 +11790 12522 7864703629376805 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 2f4a0902d9fb5ae5 +11956 12559 7864703631027432 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 501f3756ec182308 +12000 12572 7864703631473859 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 6dbd1dfa4af992b2 +11993 12615 7864703631423690 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj cb5911a92dac216 +12157 12697 7864703633024927 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj 50c153518f91d2fd +11985 12703 7864703631323243 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj aa578dc631b6c2a0 +12116 12722 7864703632623858 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 39a5d60bc4479731 +12200 12850 7864703633476268 esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a 6584cc3dcc5e42e2 +12296 12866 7864703634424411 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj 60eb5016a7426a6a +12302 12872 7864703634524645 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 13ec73e857c85c7 +12090 12938 7864703632372912 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj 69cc98576c4ab2ff +12436 13133 7864703635823522 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj c6494467181d5e57 +12615 13264 7864703637622794 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj cc5530084dbd062c +12559 13283 7864703637073558 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj fb47ba844fb5c7b7 +12572 13371 7864703637223892 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj 88a1285df4e55f12 +11934 13411 7864703630826713 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj 661426381c8b5faf +12442 13422 7864703635873730 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 8084ba7e0ed674cf +12866 13475 7864703640124854 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj 88ff29b824a38032 +12529 13495 7864703636772671 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj 175558f57d0145ad +12850 13504 7864703639974569 esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a 29622ef00712206b +12722 13615 7864703638726005 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj 49fd2c520d2a97c7 +12938 13624 7864703640875460 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj 3fc773cdae496e3d +12697 13636 7864703638425279 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj 6f54926dd8571e6b +12703 13685 7864703638525520 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj 3d6a0a4c5863d6be +13292 13778 7864703644426791 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 909302158e81c00d +12872 13801 7864703640175101 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 2ae99af2bc467765 +13273 13955 7864703644254801 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj a8b8cc1324d2f5b1 +13371 13979 7864703645147804 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj f7d6a0f3d224f5b8 +13495 14031 7864703646453048 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj e3433a9ef50d96f6 +13133 14036 7864703642823527 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj e25a22ec74778833 +13412 14041 7864703645550130 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj 9c0d9886bad5e755 +13475 14047 7864703646252332 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj ffa53d0012f24852 +13422 14096 7864703645650421 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj dcc61d8348ef8bbb +13504 14101 7864703646523100 esp-idf/esp_gdbstub/libesp_gdbstub.a 9dc4f2fa282f7005 +13625 14113 7864703647757138 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj 79252ec488636f1f +13615 14165 7864703647626692 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj 229cd02872db9c1e +13686 14176 7864703648358725 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 49b46b90c0db1ed2 +13636 14202 7864703647857389 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj 104f6fa4c84efe69 +13801 14310 7864703649464820 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 3adc355ccdbea7d1 +14047 14458 7864703651967710 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj a446cb39c3f52a66 +14114 14472 7864703652624901 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj f06274e25d3ac206 +14041 14482 7864703651867418 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj 7178b00de8130e47 +13984 14516 7864703651365818 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj 67b34b1a16c87841 +13956 14524 7864703651024764 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj d00f3fbd11bd6f99 +14167 14564 7864703653126185 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj f188016880e688fd +13778 14569 7864703649263901 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj b06c63a5718c7ffd +14036 14575 7864703651827205 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj ca65029779efcb98 +14101 14615 7864703652474581 esp-idf/esp_driver_spi/libesp_driver_spi.a 8e8e3ea8935ccb12 +14096 14640 7864703652424438 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 12b75de9d8acb201 +14203 14754 7864703653527345 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj ea8645bab0fe14bd +14176 14771 7864703653226420 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj a2e3329fe8216a18 +14311 14796 7864703654575189 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj cc9b8b1f2b77f455 +14031 14865 7864703651767125 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 18b5bb56c542b122 +14475 14906 7864703656225202 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj 3ba014bc4fa59cdd +14459 14944 7864703656074844 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj cd36949c33a6a0b5 +14525 15006 7864703656726666 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 351b17cf3be7d9ba +14516 15031 7864703656626386 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 61fbb55e54c25f70 +14569 15047 7864703657172948 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 5a73b78223a5d8d1 +14564 15057 7864703657122738 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj bca4b4304a6a2ad2 +14575 15063 7864703657223011 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj 9396c3f00bb581c4 +14645 15073 7864703657925105 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj ea72328b83fc0d46 +14483 15162 7864703656325497 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b2882512f5be35e1 +14616 15183 7864703657624223 esp-idf/esp_wifi/libesp_wifi.a 24372fd1833dacf0 +14754 15203 7864703659023118 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj b0e39037f075cd40 +14771 15280 7864703659173532 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj ae346a4799800159 +14796 15305 7864703659434930 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 8824292cb195d5cb +14865 15310 7864703660127309 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj 8175a963d15875cb +14907 15332 7864703660523488 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj c41ded818825992b +14944 15408 7864703660925676 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj 61e7d7b07041ace7 +15047 15473 7864703661973677 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj 82b43fac92ae13bb +15057 15481 7864703662023758 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 2645da8722316b91 +15064 15520 7864703662124014 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj ac84a48f6f210b3d +15007 15526 7864703661577586 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj ca80db2eaebd53e0 +15073 15537 7864703662224290 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj b0f7fe0171fa2dea +15031 15570 7864703661773152 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj f7e4ffed5e7fc873 +15162 15723 7864703663076985 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj 3e4e58966927e064 +15310 15730 7864703664573253 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj befe588371d3b50a +15183 15791 7864703663327565 esp-idf/esp_coex/libesp_coex.a b4ba9ce16120b363 +15203 15825 7864703663525170 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj ac03baf9b361f006 +15281 15886 7864703664277413 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj 260e186eeea153da +15408 15891 7864703665575970 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj d8f107b1ba6725bc +15305 15948 7864703664523065 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj ac8ca0074b36d53a +15537 15963 7864703666825272 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj f5fc2789fedf6c0b +15333 15977 7864703664823784 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj 261343ed336cd607 +15527 16019 7864703666725012 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj 82225e7f862dad73 +15474 16034 7864703666223458 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj 54b35d3aaf99ce4c +15487 16104 7864703666524420 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj 4437e6895d28d91 +15573 16142 7864703667226461 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj d0cef83bcb8c2c18 +15521 16231 7864703666674956 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj e3494c078d80f468 +15731 16301 7864703668775951 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj 14acfef503611c7a +15724 16333 7864703668725652 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj cd2692eab5eda35c +15891 16452 7864703670375524 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj 2a65bf6914371253 +15963 16504 7864703671127544 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj bec026785079e51d +15978 16535 7864703671272992 esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj 2b5aee6bf216007c +16034 16541 7864703671824742 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj 3253f4da2078aa3a +15825 16570 7864703669723664 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj 59a6b91c84810b6c +15948 16625 7864703670977234 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj f14d9ebc92396a62 +16019 16631 7864703671674443 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj fd9f26c76f9274e8 +16144 16659 7864703672924044 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj 19b3f03de867a7bf +15791 16666 7864703669377492 esp-idf/wpa_supplicant/libwpa_supplicant.a 7b0c1d6fd79a7978 +16231 16702 7864703673776632 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj 5ff7309ea5a57cb +16452 16749 7864703676023399 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32s3/phy_init_data.c.obj b790d4fa0c4c32c2 +16301 16788 7864703674473994 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj aa998438d7c6da4c +16104 16802 7864703672523063 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj 81a33ba0182b80ad +15886 16896 7864703670325341 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 84d7589f67998459 +16505 16951 7864703676525033 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj cf17dffe8e85269e +16333 16984 7864703674824765 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj 1e63a04d55c1a133 +16667 17206 7864703678126217 esp-idf/esp_netif/libesp_netif.a ccbef42c203f2eb5 +16984 17319 7864703681324623 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj 88c25dc66abe6a35 +16803 17773 7864703679525157 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj df4517a2380ec546 +16789 17832 7864703679374671 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj fd6f637af62ec32a +17320 18058 7864703684675139 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj cbdadde2846e3507 +17207 18256 7864703683525053 esp-idf/lwip/liblwip.a 864a6233b683123f +17888 18651 7864703690528065 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj 64b6655fa0982bad +18068 19008 7864703692475080 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj 30816ca1569f7652 +16542 19848 7864703676876209 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj de1b8df6cdcdba65 +18661 19964 7864703698327716 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj d5edbc5630013e2c +16631 19990 7864703677775278 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj 479d68996ad93cef +16570 20000 7864703677177112 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 1a333732f82b163d +18270 20089 7864703694483162 esp-idf/vfs/libvfs.a bd32ca39c0d9deae +19008 20101 7864703701574190 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj 4d23883188533aa6 +16749 20106 7864703678973425 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj ce407862b7f9e22f +16702 20169 7864703678527356 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj de0cd718f7308dca +16626 20175 7864703677725105 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj ebe31b21c3b6cd30 +16536 20347 7864703676825967 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj 94de56b48d53301 +19879 20497 7864703710909547 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj 39b3f12498890dde +19992 20512 7864703711426905 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj 95554ac7a3a039b9 +16659 20678 7864703678076154 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 2a801f950515fdb6 +16896 20777 7864703680462647 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj a7040d47d77467f4 +20000 20783 7864703711477183 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj fec72329ef6b8030 +20175 20788 7864703713223166 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj 6745b2eba310e404 +20101 20839 7864703712510810 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj d3ff4b4ddcebee8c +20090 20879 7864703712374644 esp-idf/esp_vfs_console/libesp_vfs_console.a de0ecab97068520a +20169 20890 7864703713173055 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj 4fc3353065010b77 +20107 20896 7864703712525866 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 4d77c98bf93d669e +20503 20943 7864703716528176 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj 26e3239c1af93534 +16951 20972 7864703680973776 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj 6df19844a6710c1d +20517 21030 7864703716673963 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj e3ee3418488ec99b +20355 21035 7864703715177358 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 91226202dd82cf4d +20679 21044 7864703718284407 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj 372b01049dad29f9 +20784 21276 7864703719326378 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj d6b9e3ec4d7ee6af +20890 21310 7864703720373675 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj a73c37f0bbd7976f +20778 21333 7864703719276298 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 60f12efd9d3022cf +20789 21430 7864703719376840 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj b6f7e592de2d2041 +19982 21444 7864703711326487 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj a07b2d2c194a84c8 +21044 21463 7864703721924384 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj 913047dfc74b20bf +20879 21469 7864703720278137 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a ae2d3cdc9b8af7d0 +21035 21526 7864703721824300 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj 1b0ae550bc9463b9 +20944 21598 7864703720927191 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 7d109dd6f39fb8af +21030 21605 7864703721773678 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj 88c92deb9cf0db11 +20973 21613 7864703721225564 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj 6076c2b436c3167 +20897 21618 7864703720424241 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj b128f3705a5ba0a6 +17789 21625 7864703689727161 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj 3f89c391f195d8ad +21310 21647 7864703724573468 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj 8c7eb51960ca3de1 +21276 21681 7864703724226722 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj db1d441cc15cb268 +21333 21700 7864703724824881 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj c14af940229c55cf +21463 21816 7864703726127027 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj 3439fadad76c99df +21445 21835 7864703725926239 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj 59f0fe3d98eb7409 +21527 21937 7864703726726656 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj 76d1e5b1c31aeb6b +21430 21943 7864703725775029 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj b6c2ade4b604071e +21599 21969 7864703727476514 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj d705773c307253a2 +20840 22084 7864703719875333 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj f5d914982482b87c +21703 22089 7864703728523725 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj 7062a735ec7d2076 +21606 22095 7864703727577365 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj ebcc95b9399699a5 +21681 22126 7864703728277114 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj abd0c8e6548bfcff +21625 22152 7864703727723772 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj c66cd96cf262a2d +21469 22164 7864703726177535 esp-idf/esp_phy/libesp_phy.a fd760bb0ebe2b3ab +21618 22175 7864703727667997 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj 6a2010975d85990c +21938 22248 7864703730851738 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj e914e4b99f0d1282 +21650 22254 7864703727975106 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj 46b0e5e116727aa9 +21817 22259 7864703729626552 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj 853dc0383167c00e +21835 22290 7864703729847927 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj b7c428b2bf18c64c +21970 22336 7864703731173748 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj a5d765936fbd739e +21613 22420 7864703727627942 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj 82347027a5bac853 +21943 22476 7864703730927474 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj 3fbf5f744466311 +22095 22537 7864703732428407 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj a240a614faa12e06 +22089 22542 7864703732377775 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj 2739488ba4216391 +22152 22575 7864703732976696 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 9c7600a2fdd69764 +22084 22635 7864703732327728 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj 9175c1878d1be986 +22165 22703 7864703733137913 esp-idf/nvs_flash/libnvs_flash.a 64841fb60b6c5a1 +22259 22742 7864703734063939 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 6fcb3df81e8d8248 +22420 22766 7864703735675060 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj b34341defa2622b3 +22254 22811 7864703734023565 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 2c69761f84e65960 +22126 22822 7864703732725490 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj e16d12f043461c19 +22290 22834 7864703734375715 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj a4aa2f6e084d3f0a +22477 22849 7864703736222874 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj 6f48632324d8b12e +22175 22895 7864703733223185 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj cb232fc77cc952e4 +22337 22907 7864703734823708 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj 496b642b28b1d168 +22543 22969 7864703736925303 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj cb503460fecfb75f +22537 22984 7864703736840218 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj a37d872f3fe7ca4a +22576 23089 7864703737227588 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj d9b404e733cb93e2 +22640 23095 7864703737926923 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj 2471cef3d6b46752 +22767 23100 7864703739175075 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj 811e0d13a131d41d +22743 23120 7864703738923610 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj e59f8d6649ad6add +22816 23166 7864703739622977 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 9c94493ff527e058 +22825 23210 7864703739773907 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj d435888184b9a0b1 +22248 23268 7864703733973515 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj 8401cb70bd99add5 +22704 23273 7864703738525724 esp-idf/esp_event/libesp_event.a fc4b1b424e1d9ff2 +22897 23295 7864703740473981 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj 2002248bbb3a1f8f +22842 23400 7864703739925566 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj 9ba20258853fd3c3 +22853 23405 7864703740026250 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj 522cbed606387a5d +23089 23421 7864703742375178 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj 18611017c8d5eb48 +22971 23427 7864703741223411 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj 91c9da863ea50edd +23120 23438 7864703742677293 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj bc14091bee5b7f54 +22986 23532 7864703741324615 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj 929ff8a121fa7a31 +23101 23572 7864703742475993 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj 748973d13f230a7b +23096 23666 7864703742425953 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj b4495dec2e81893e +23269 23672 7864703744173386 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj d2e4044bbdb01ac5 +22911 23677 7864703740574742 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj e9b90db9ec282dd4 +23211 23785 7864703743593403 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj 58e696170876c018 +23166 23790 7864703743126136 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj a7ff66b86c8362a +23296 23796 7864703744450278 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj 30e59a6f2d5806bc +23273 23818 7864703744223512 esp-idf/esp_driver_uart/libesp_driver_uart.a a525010c5d5d4b05 +23427 23853 7864703745754191 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj 7677ffa62e049f29 +23439 23888 7864703745854497 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj 8256539f712a7afb +23400 23919 7864703745453171 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj 63266c0f457e5dc8 +23677 23938 7864703748263552 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj fce7eb9fad1f2c42 +23422 23944 7864703745653931 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj c9d6990ce5557b1e +23575 24031 7864703747225298 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj 90a35238ae9aab1d +23672 24051 7864703748163323 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj 5194ea9b90c86721 +23406 24057 7864703745553589 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj 8f49650d27781d6 +23533 24138 7864703746857332 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj a780186110d06da2 +23791 24144 7864703749367453 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj 1c1b7d434d6b010e +23938 24159 7864703750875939 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj 8b9c18a9f485f49a +23888 24309 7864703750374078 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj 1cce3f7f1ea8cdd9 +23819 24360 7864703749673636 esp-idf/esp_ringbuf/libesp_ringbuf.a 1de7b022ece0bb1f +23854 24388 7864703750024511 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj e9ef7e8a73dd87f2 +23946 24431 7864703750925983 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj bb66e74075bed407 +23786 24437 7864703749327272 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj 7f8da7cbfa603048 +24145 24519 7864703752926939 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj c6db38538727e0b2 +23919 24525 7864703750675505 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj 7755a817e492277b +24032 24531 7864703751773575 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj 59b764037908f47e +23667 24600 7864703748163323 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj 7b224aa92a234ecf +23796 24605 7864703749457664 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj 730ff15d194571d3 +24160 24724 7864703753077405 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj 848c35f5917ad92 +24139 24752 7864703752876857 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj 90eb5a7036ab011e +24057 24762 7864703752024145 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj 28ce6ec764169bdd +24052 24792 7864703751974085 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj 2f0a0ffe9ecc50d +24309 24848 7864703754574054 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj ce0c4a2bea003ce1 +24389 24853 7864703755376215 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj ac733e9d16ed9c5a +24525 24862 7864703756725495 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj 699d0b80692d4da6 +24432 24903 7864703755777589 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj 2ce03af485e79c83 +24360 24908 7864703755075384 esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a 98dd0c0535e31919 +24531 25019 7864703756775761 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj 1ef1bc7108cf7e4a +24853 25071 7864703760023142 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 9d06e7aca164d3ff +24862 25076 7864703760123369 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 51cf3f01da8145b2 +24437 25081 7864703755827654 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj cc81becaeee2a3b0 +24793 25096 7864703759426289 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj 44b9e5495071eb67 +24904 25115 7864703760525214 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj d4f515886a544544 +24752 25130 7864703758975225 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj df2bdb5f614d83db +24724 25136 7864703758724448 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj 7eee8185d073c834 +24605 25170 7864703757548647 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.c.obj 5ef7e03ccdf81519 +24600 25189 7864703757473411 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj a8b51331c0c0d86d +25019 25297 7864703761674666 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj f28ad7d39570a620 +24848 25356 7864703759978068 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj 1375bf49e8c20444 +25076 25371 7864703762226234 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj 7628f372cd36b8b3 +24763 25382 7864703759125506 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj 4e456f81a9a9309a +25096 25393 7864703762426764 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj bb2d882c3d848aa0 +25081 25397 7864703762276447 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj 5973b98e30845804 +25072 25404 7864703762176163 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj a19369ab35d94be2 +25136 25410 7864703762823190 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj 53f9e4d76852a145 +24908 25428 7864703760575540 esp-idf/esp_timer/libesp_timer.a f48d0e2a337918ae +25115 25457 7864703762627500 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj c344ca392339cfcb +25131 25470 7864703762778110 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj 6618ed40a9156826 +25193 25475 7864703763424950 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj 35b3922b793a4c5 +24520 25486 7864703756675438 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj afdfc6df818d6a0d +25178 25537 7864703763324586 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj f282d654ba8350aa +25298 25609 7864703764473250 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj 7a69d428f3ca44e6 +25372 25618 7864703765175460 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj 9a38c4260ff4bdca +25393 25631 7864703765426016 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj b9fb4747597baba +25405 25649 7864703765526267 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj a070b3d6b11cbd1f +25356 25680 7864703765024956 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj 859cfa571417054a +25457 25690 7864703766123737 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj 2eddb76808057a1a +25382 25711 7864703765275715 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj aa469ba09ced9271 +25488 25742 7864703766374442 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj 7f78c7486fd1bd63 +25400 25761 7864703765476205 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj 25b7460b49d5562c +25471 25781 7864703766173927 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj 69227cc2a4aae74a +25410 25790 7864703765576685 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj db154a592a760e74 +25477 25813 7864703766274186 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj 6881d3d967a88f76 +25537 25872 7864703766825743 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj 3a1143f05bddff7c +25618 25898 7864703767673747 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj 8aa6dd0136201b9f +25609 25949 7864703767578506 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj 5b0791a7984d8658 +25429 26030 7864703765777342 esp-idf/cxx/libcxx.a 25cd1218f79f2096 +25761 26097 7864703769112406 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj 988b9f3b570d03e8 +25742 26117 7864703768925615 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj 5b426dc5ebbb715f +25631 26140 7864703767774007 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj 693d19014601a7f4 +25690 26243 7864703768373888 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj b28889c6edeca2b2 +25782 26255 7864703769325100 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj dca097f981dcf6f3 +25950 26274 7864703770978335 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj e32968ef00077b7a +25650 26282 7864703767974667 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj f78f8270f689e983 +25813 26306 7864703769627890 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj 225409f1c9bca9ca +25872 26322 7864703770215006 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj 533d170a372ba053 +25680 26332 7864703768278542 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 257ebc813f5e5858 +25898 26341 7864703770477577 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj ea87db10cb6ef291 +25790 26346 7864703769375145 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj e2b4c6b9112ef7e2 +26118 26513 7864703772674774 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj aa24a754808dbf94 +26098 26525 7864703772477833 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj 790d7f0f274bbef4 +26030 26532 7864703771773406 esp-idf/pthread/libpthread.a 527b4a8024fb5f68 +26256 26557 7864703774025197 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj 2a2896dfe794af68 +26274 26573 7864703774226575 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj aa26972d36e3b491 +26141 26580 7864703772876418 esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj 5fe890bae7a97361 +26245 26592 7864703773924485 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj 7407a71a6b1acfc7 +26283 26598 7864703774326703 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj 223d75f6d9e95e78 +25711 26607 7864703768574624 esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj 8979d7440c602d03 +26322 26670 7864703774725527 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj 4461423678c57f68 +26306 26676 7864703774563670 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj 3952fadd0c60306a +26342 26715 7864703774876105 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 46d586356107f09e +26336 26726 7864703774825634 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 695dfddb87deac4d +26560 26795 7864703777074745 esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj d03a2df74a967f6d +26346 26818 7864703774926755 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj f373f72bd7851235 +26526 26904 7864703776727173 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj ad6c9bfca3e04632 +26592 26921 7864703777376717 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj 8989c5cf0eb34bf8 +26514 26951 7864703776627051 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj d4940025c37033ba +26612 27089 7864703777628577 esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj 805fcfbedfe3a9a8 +26715 27195 7864703778626456 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj 414359c2b62fc811 +26574 27210 7864703777226169 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj 862055226644954e +26677 27225 7864703778228160 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj 359f4edbf5a91358 +26671 27254 7864703778197269 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj 86f9d6c05eab0e8d +26795 27259 7864703779427164 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj 57ffe083c0def172 +26726 27265 7864703778726567 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj 93977fde0dd4976a +26601 27271 7864703777477304 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj f182b44a095f0371 +26818 27315 7864703779673542 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj 3abb812dbb3bbfd2 +26533 27325 7864703776828614 esp-idf/newlib/libnewlib.a 818e5abcced016cc +26584 27403 7864703777326249 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj 9bbf5fc357f4389b +26951 27417 7864703780977626 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj 35000cb4266694c2 +26921 27432 7864703780675513 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj 2266aa76130fe893 +26905 27437 7864703780524530 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj f1fb92676f78aea0 +27090 27470 7864703782343738 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj e42ee7235ee104ea +27225 27558 7864703783726169 esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj ce98cd251a6a6811 +27196 27573 7864703783524106 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj bb86372dc1b73dc6 +27210 27612 7864703783579633 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj ba6ab20c271628fc +27315 27631 7864703784628368 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj d019f8f1caa8300b +27266 27671 7864703784123530 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj b483230134ef21eb +27404 27719 7864703785523288 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj 8ced108d2ab48b60 +27254 27725 7864703784028389 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj 9dd26104f7f8d8bf +27272 27849 7864703784173923 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj f27da58707c0e62e +27631 27946 7864703787776363 esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj f66bb795d712f8fe +27471 27958 7864703786177523 esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj bcc0107e33dae53a +27260 27968 7864703784078442 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj 6aab53c3996188d +27325 27973 7864703784723494 esp-idf/freertos/libfreertos.a 475be169369c912a +27612 27991 7864703787584880 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj 6a7be17de0cf9c34 +27573 28018 7864703787227741 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj f99f834462b7d789 +27432 28042 7864703785775322 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj 7f32b8ca1d6ae9d3 +27559 28113 7864703787087064 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj cf26c3486db38ab4 +27437 28129 7864703785825889 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj 982dd007f8589801 +27417 28137 7864703785624695 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj 54eef3fa149ff220 +27671 28244 7864703788174595 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj 3d712a1f7e2c2fe4 +27726 28284 7864703788746526 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj 8693489ff089b614 +27849 28481 7864703789939208 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj 683f79d1be28c63f +28018 28509 7864703791645565 esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_hal.c.obj 349915d9e0f90c80 +27719 28556 7864703788688625 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 67292be281da177f +28042 28561 7864703791846858 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj 5067f377a0c98336 +27992 28569 7864703791364401 esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj 64438bc0c3d4bbac +27947 28578 7864703790942248 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj 7f097e8aec49d472 +27969 28583 7864703791142914 esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj 5e66a6c69d19369 +28113 28588 7864703792623790 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj e7a824523329e098 +28138 28596 7864703792849632 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj 2fb17c3f32efe9b7 +28131 28605 7864703792759262 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj 6abeb0a8e732a150 +27962 28612 7864703791042603 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj ff72e05f085d9170 +28284 28681 7864703794341798 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj 89bc1d2bc9a1032a +28244 28706 7864703793933461 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj aeda43bc5a3cbd14 +28569 28784 7864703797174811 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 8f7466b5e4577f2 +28481 28806 7864703796277763 esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj 1a67c30887ac40fe +28614 28835 7864703797624423 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj ef9f3068939c4904 +28512 28851 7864703796625836 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj 3907af8bd663a719 +28562 28892 7864703797124750 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 1979702a29b4b2c6 +28605 28904 7864703797524307 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj b5d2904453c57d95 +28596 28934 7864703797423694 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 3f61e85f938e96da +27974 28941 7864703791227975 esp-idf/esp_hw_support/libesp_hw_support.a 5093b7ee2f1b19a6 +28556 28964 7864703797023306 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj bfc42e5e3faa076a +28588 28976 7864703797378017 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 30520ce732d1f9dc +28578 29047 7864703797275329 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 39ecf1a34508e5d5 +28706 29054 7864703798525661 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj 35df2c0ebe5063d +28583 29062 7864703797325917 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj caef57097fe0d9a +28682 29069 7864703798273576 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj d91252d9dc0f649d +28784 29116 7864703799324657 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj b81f3614998703fa +28905 29318 7864703800527447 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj b2908387ad0efcdc +28836 29327 7864703799827995 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj d069593e384bb5e2 +28892 29347 7864703800427307 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj 28101420ea8669b5 +28935 29416 7864703800824977 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj a428dec5dcec618b +29069 29489 7864703802174764 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj e11f5901b72d172a +29116 29494 7864703802627458 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 1c398471b1d9bbb +28851 29500 7864703799943832 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 498b5ea1dabd7abc +28941 29546 7864703800875019 esp-idf/esp_security/libesp_security.a c5d603117f17af10 +28976 29556 7864703801227002 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj bee9302f99dd1a3b +28964 29566 7864703801126484 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj 3589544b40f01fc1 +29047 29646 7864703801937580 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj a5a2ad898f5b4880 +29056 29652 7864703802027901 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj 82a0fb9777a2e5da +29063 29791 7864703802124706 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj 764720cbfcdb67a8 +29319 29910 7864703804677396 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj fbe290d861257f6f +29327 29915 7864703804727445 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj 3438e454edc7bd13 +29500 29956 7864703806477398 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj d28a9b75c8e43e9c +29646 30036 7864703807947338 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj 4e2060db07dc796b +29653 30059 7864703808027531 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj bdeaaf4e3fcde73a +29416 30099 7864703805626729 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj e0120c5b0c0b8961 +29566 30111 7864703807126554 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj b0662edc92e2a913 +29559 30128 7864703807076512 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj 133a6cc96a2c5f9e +29348 30135 7864703804944340 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj ee952d06168ec2ac +29495 30141 7864703806427368 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj cf09d6b919463fa7 +29791 30147 7864703809377301 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj a7170318c9de50f9 +29546 30221 7864703806945877 esp-idf/soc/libsoc.a a6fe2325f64bc9d6 +29916 30243 7864703810625401 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj 575de7b93580a307 +28806 30288 7864703799525725 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 2d2e1253480390fe +30099 30350 7864703812476669 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj 5048221d2f3e8e9b +29956 30398 7864703811027626 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj 5a892aca32e4f044 +30111 30423 7864703812577245 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj 6d1ec6362c68deec +30040 30428 7864703811875292 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj 4914b29ccf7893f5 +29490 30438 7864703806376674 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj e55bbab1a5b8913e +29910 30470 7864703810574738 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj a1950c33b0267471 +30135 30512 7864703812824012 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj b55d9c79500cbb96 +30130 30575 7864703812778342 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj a316651b01e075aa +30147 30630 7864703812954620 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj fe255cfe732c94fb +30059 30654 7864703812097558 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj 8b8194d80eed6d0e +30141 30761 7864703812874059 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj 694872ae6c5468ab +30399 30766 7864703815475558 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 9a142e91c1520a4a +30222 30772 7864703813675148 esp-idf/heap/libheap.a bbd9274930d26fa +30351 30781 7864703814959650 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj de81f5fb1949ea11 +30288 30824 7864703814375064 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj a0aad2d14794b165 +30438 30860 7864703815880068 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj e5ef84b73f2999af +30512 30940 7864703816626737 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 39fb3656d8bad556 +30244 30946 7864703813927117 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj 8117c423b89a2315 +30423 30987 7864703815726769 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj 5336a9c749f9d930 +30576 31021 7864703817225740 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj abefb43df6fd0593 +30631 31028 7864703817774953 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj a233d64d9eb39a32 +30761 31065 7864703819074068 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 42adf552e64a50f8 +30471 31087 7864703816177189 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj fa882fce2a5c92d4 +30429 31201 7864703815777155 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj d971b9f751569918 +30781 31212 7864703819275203 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj 2d3e28da8e253fca +30655 31237 7864703818026139 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj 36ea6f5056c0b1ae +30824 31288 7864703819728371 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj eb4fac402c05f0bd +30767 31329 7864703819124113 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj f853917471b1e818 +30987 31428 7864703821374529 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 4da54f9fd4281876 +30772 31435 7864703819174654 esp-idf/log/liblog.a 676000157f051465 +30940 31451 7864703820876158 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj a582a5bcf78a9aa4 +31213 31467 7864703823625553 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj 8c9d1f5cfa050046 +30861 31524 7864703820076030 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 5f6df4ed7dbaa75f +30946 31629 7864703820926875 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj e79abc0f95466135 +31065 31634 7864703822124297 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 698b06e5101285eb +31331 31705 7864703824828404 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj 87d36c68109c11f3 +31087 31784 7864703822326218 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj 59712af5079ac708 +31202 31792 7864703823474458 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj f7cd1287c1813639 +31288 31883 7864703824375068 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj 194b53b5b149b8d5 +31237 31905 7864703823826427 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj 38352fe2f900aa42 +31467 31967 7864703826127539 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj f493ae707051349b +31028 31974 7864703821777612 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj ba8e7ebfe63fdc58 +31455 31981 7864703826026495 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj d1d03999056e02aa +31429 32013 7864703825774757 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 66af251f474f6b1a +31524 32021 7864703826725940 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 89d41225c257c67c +31021 32051 7864703821677130 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 52c2dd727059b29f +31629 32057 7864703827773632 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 98eb4fb62fbfebdb +31635 32119 7864703827823697 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj d0c5f4817537595 +31706 32266 7864703828528775 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 777fdc70863a3b2b +31785 32362 7864703829324518 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj fa691b9275c2e784 +31792 32385 7864703829374553 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj 95ff9c15f1d505b8 +31441 32408 7864703825875418 esp-idf/hal/libhal.a e6e360a23e63f00b +31981 32420 7864703831277326 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 4594734a2ff4eb41 +32021 32504 7864703831674815 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj fbddd265e45329a7 +31884 32514 7864703830326597 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj eadd8f8d4201041a +31905 32525 7864703830527841 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 19bdc550a31ef06c +32051 32576 7864703831991564 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj c75ab4b890b9ebc0 +32120 32628 7864703832675794 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj 9cf3049707994fa7 +32058 32667 7864703832077534 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj 14f25b10d0ac2bfd +32267 32691 7864703834126167 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj 1307f40d6b3504b6 +31968 32748 7864703831176701 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj ea6906dedad51c35 +32013 32866 7864703831624376 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 7377cec03a81178c +32362 32872 7864703835077059 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj 7b9faa9387000c68 +32385 32920 7864703835323215 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 5f33177b12464170 +32421 32971 7864703835675418 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 14fd3cf6687adc84 +31974 33012 7864703831227289 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj e721ccc07f5aa274 +32525 33045 7864703836723912 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj 183ef49b088f53a5 +32516 33053 7864703836628290 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj e0c26050c3101cda +32408 33105 7864703835574781 esp-idf/esp_rom/libesp_rom.a 578f1f063175d0ea +32508 33117 7864703836577739 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 805fde3904976c05 +32691 33143 7864703838378287 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj a1fc6bedba190231 +32748 33246 7864703838976928 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b5e6feb2af0d8b27 +32628 33264 7864703837775001 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj a10faa571b50b469 +32579 33273 7864703837276965 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj ee7148e94ed0ce21 +32866 33283 7864703840134105 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 4d1ddb689c2a4c55 +32872 33294 7864703840174225 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj eb417cd4ac56720c +32972 33338 7864703841165057 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj 3c053bf9fdb51b4a +32920 33459 7864703840677412 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj c2c8275fb1794445 +33013 33508 7864703841623306 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 3b6cc567626bd49f +33047 33549 7864703841925155 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 2bb39e759a4f6f20 +33117 33698 7864703842625119 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj 4e6550325f33fe70 +33349 33711 7864703845012312 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj 8a8f799dae87f69e +32667 33723 7864703838126896 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj a864a168f6078934 +33143 33730 7864703842927456 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj 93775f9e6a8314ee +33107 33795 7864703842525024 esp-idf/esp_common/libesp_common.a 34bc89118f0c3fd9 +33508 33868 7864703846575252 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj 210d7144cf719c30 +33459 33874 7864703846073921 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj 9cfb86c838819db5 +33265 33935 7864703844127989 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj 1584ae2f7fa9f34e +33054 33996 7864703842025904 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj ac86830da8cfbf42 +33549 34014 7864703846976236 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj 524627b705cf230b +33711 34130 7864703848548263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj c473e473399ce98a +33249 34147 7864703843974947 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj 5ffb3451ce398c6b +33296 34186 7864703844427044 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj 317bd79df020f1e7 +33283 34263 7864703844376892 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj 5de67353411e743b +33698 34343 7864703848474290 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 7fe78735ce36e6b7 +33731 34387 7864703848744577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj 4c138e54fecb0799 +33874 34514 7864703850224999 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj d9ca56c99ab5a47b +33274 34551 7864703844276504 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj 6dd331a3f1201446 +33796 34579 7864703849449225 esp-idf/esp_system/libesp_system.a b65fd795caf3c2e +34014 34682 7864703851625631 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 8c0ea222117485ef +33869 34688 7864703850154375 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj 2da3e97fa66c6bd8 +33936 34695 7864703850827800 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj 9cd9967bc2e59226 +33723 34715 7864703848724521 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.obj 9258de579a75feac +34132 34722 7864703852824611 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj f4ed43e3bf9bea10 +34388 34784 7864703855373731 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj 737062539decf48f +34263 34804 7864703854123726 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj e05454be5a5dfc34 +34344 34819 7864703854926542 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj d49909d02b99f03b +34190 34906 7864703853376441 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 703b5fd18967d279 +34150 35034 7864703852975074 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 49de6452447ab773 +34551 35052 7864703857005504 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj c1f6ce30b560b54 +34514 35132 7864703856628096 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj 3cafa08829daf7 +34723 35183 7864703858726376 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj 9c59fdb40f9da40d +33997 35232 7864703851464981 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj c0a498d69184c20f +34784 35242 7864703859324641 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj bb8a32065b703f46 +34579 35251 7864703857276357 esp-idf/spi_flash/libspi_flash.a 223e6fa052f7535e +34819 35294 7864703859675727 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj 1b77aa5ea42315dd +34804 35355 7864703859525198 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj 9db2d041396f47e5 +34690 35448 7864703858375373 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj 213840b4cf55d158 +34682 35454 7864703858275028 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj 773874688be09e01 +35057 35460 7864703862024217 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj c6f87a7102a631de +35035 35465 7864703861823444 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj b4c356dd06e9c62a +34695 35470 7864703858425440 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 69dc83f68d59e395 +34716 35497 7864703858626001 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj f72d9435545c5501 +34907 35597 7864703860574214 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj 635084d398ef190c +35232 35702 7864703863825946 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj 9ba3257c72aac93f +35465 35752 7864703866123842 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj be9ad356b971ad68 +35132 35759 7864703862776617 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj b38cbecdcdb0f9e3 +35356 35768 7864703865024979 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 196c8aabbd3e97d8 +35242 35831 7864703863926270 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj aa2ebdf489eace6c +35294 35836 7864703864427782 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 279bb36e2acf0576 +35449 35891 7864703865978344 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj cc458d7ecaf619bf +35251 35945 7864703864001510 esp-idf/esp_mm/libesp_mm.a 9289c83e2b862cef +35454 35959 7864703866023605 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj 24835f9c2ea7be14 +35184 35969 7864703863323535 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj cb726806181af57c +35597 36022 7864703867478283 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj 5b5556cb17abbcc6 +35460 36041 7864703866073781 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj e2463e244a534c95 +35702 36181 7864703868478393 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 63af91eaf04fcbf0 +35831 36217 7864703869777929 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 66ba3ee5df6db61f +35498 36333 7864703866474901 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj e359b5c481a0a4dc +35837 36353 7864703869827990 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj 9cfb9f737a35a89a +35471 36402 7864703866174054 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj f6a9670b58ab8e3 +35892 36408 7864703870375169 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj e441d08b5db9faa1 +36041 36420 7864703871875571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 11041edd2b170db3 +35962 36426 7864703871127882 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj 257feb87ed5f4c69 +36022 36431 7864703871725116 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj c2a2fd21b97f77ec +35753 36440 7864703869025386 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 8e423bac2629cb8d +35759 36448 7864703869075581 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj ae612ae66c2628d9 +35770 36482 7864703869175980 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 9c052c6d57882f1c +36181 36512 7864703873276124 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 914c56c2d00c847f +35946 36557 7864703870927051 esp-idf/bootloader_support/libbootloader_support.a fa286c43d60fb57b +35978 36627 7864703871323576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 4e84a28b7dbdf6f0 +36333 36684 7864703874825762 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj c87d521be3da1716 +36217 36896 7864703873627173 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj 6cc638550030437e +36426 36924 7864703875724168 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 7fb4067c7c7e411c +36353 36931 7864703875026583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj 742b15dc4cd45b46 +36482 37010 7864703876276539 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj 78f5ddf167548fa1 +36512 37016 7864703876577513 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj d456832fe009b4f7 +36434 37040 7864703875824447 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 6209430b29968a88 +36402 37078 7864703875523669 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 1c9fe5b7eec31123 +36408 37116 7864703875573892 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj 4e3a5123382ea22c +36449 37153 7864703875990423 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj f2ad01c6a1f86d02 +36440 37176 7864703875874650 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj e0c5a9454bf2d2b9 +36627 37281 7864703877726261 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj f130d598fc124b51 +36420 37319 7864703875674115 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj 30676785874491d1 +36558 37334 7864703877073998 esp-idf/efuse/libefuse.a 8a0398c9bcf88a16 +36896 37449 7864703880427785 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj c84ebe9410b5c92 +37010 37535 7864703881576623 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj 722d0ba6a12abea8 +36925 37588 7864703880723656 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj 34abd2a58f96db69 +36932 37594 7864703880773855 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj 92295c501a4004e1 +37040 37599 7864703881877429 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj 40915ee2ee61f97d +37031 37677 7864703881827218 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj ee81404fcfc479b0 +37153 37682 7864703883026002 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj 35162dab1c25d752 +37116 37693 7864703882624086 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj 768325c13ae85948 +37079 37699 7864703882273707 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj dc8f183c92377d41 +37281 37747 7864703884276293 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj e28c5ee27a4700b8 +37594 37897 7864703887426442 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 42f0daae9238cdf8 +37335 37921 7864703884827698 esp-idf/esp_partition/libesp_partition.a 73c6ed257edbe29e +37320 37932 7864703884677433 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj fb93ae81de4a4d89 +37177 37952 7864703883226664 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj 9e1d88e41a920747 +37536 38024 7864703886823924 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj bdef6596ee0a6baa +37449 38042 7864703885981263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj fd0bc698e5e5bd07 +37683 38075 7864703888374793 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 877959bf16f0bbaa +37748 38129 7864703888977232 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj 5c658f3d623d94a4 +37677 38144 7864703888224348 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj dceeae19b56469f +37701 38162 7864703888475057 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj 122fda7a2198a90f +37588 38262 7864703887376387 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj 2f3f079152d8104b +37694 38271 7864703888424851 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj d6e0186cd9cfd1eb +37932 38370 7864703890778251 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj ed923d6163974d84 +37953 38376 7864703891024240 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 4fb130e1b45fca48 +37897 38388 7864703890427152 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 93519c6b95f2ca77 +36687 38398 7864703878373740 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 599dfe5d0056a25c +38024 38443 7864703891726518 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 7a6ddebcd3a94e44 +38042 38456 7864703891877024 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj f2786891d18aeae0 +37921 38461 7864703890677923 esp-idf/app_update/libapp_update.a e926688a2c120f17 +38080 38519 7864703892273562 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj 4569e5e6813ab9c1 +38168 38623 7864703893226839 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj f8d3c326668dd628 +37600 38631 7864703887476705 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj 12b6a99d7754b4c3 +38264 38654 7864703894126513 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj 77f6fe9a8c6f90b7 +38278 38706 7864703894277049 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj 1c1350ab7235b4a4 +38370 38774 7864703895146159 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj 1b94e18e8bf08c9a +38377 38803 7864703895246571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj b29f67082c2c9eaf +38399 38817 7864703895447163 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj abadb921a9235372 +38132 38855 7864703892875357 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj d42cf8389291aaac +38146 38895 7864703892970737 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj 21ebbf5b09aeb5a +38388 38932 7864703895346798 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj 48028b870eef380a +38654 39000 7864703898023776 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj 471dd34204e10dec +38519 39026 7864703896689668 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj 15fdcd7d9ffce430 +38456 39032 7864703896048997 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj a0b7c988ce78b6f0 +38443 39038 7864703895923329 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj 54c9ea19e01528ff +38461 39048 7864703896048997 esp-idf/esp_bootloader_format/libesp_bootloader_format.a b8bfdeedf79a494d +38624 39189 7864703897727769 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj 62bfd5a2040c09b +38631 39226 7864703897758014 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj 79a2396370e5ed82 +38856 39244 7864703900028367 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj f56962076f1170a0 +38775 39245 7864703899227647 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj 86b670a68ae65713 +38707 39247 7864703898560417 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj c84be9b4dfd991e +38804 39299 7864703899523483 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj 73c06f446b99f27 +39026 39301 7864703901759033 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj 6bbc84746f99deee +38895 39301 7864703900424551 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj e74ac59c493e24b5 +38933 39309 7864703900826085 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj cadba8f472c4d2c9 +39033 39316 7864703901824435 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj 9b1b62e4ed4270e6 +39039 39331 7864703904627361 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir a729bab79c17e539 +39039 39331 7864703904627361 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir a729bab79c17e539 +39001 39342 7864703901463289 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj 3cbdc06cdd137afb +39049 39364 7864703901975059 esp-idf/esp_app_format/libesp_app_format.a 7083a9f04981654e +38818 39381 7864703899664043 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj 8118850731b524ad +39331 39412 7864703905525273 bootloader-prefix/src/bootloader-stamp/bootloader-download 177c291656b30ea1 +39331 39412 7864703905525273 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-download 177c291656b30ea1 +39412 39471 7864703906123658 bootloader-prefix/src/bootloader-stamp/bootloader-update e80bf5d4a40420e9 +39412 39471 7864703906123658 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-update e80bf5d4a40420e9 +39365 39516 7864703905123825 esp-idf/mbedtls/mbedtls/library/libmbedtls.a b61f779ff7209f10 +39471 39532 7864703906725221 bootloader-prefix/src/bootloader-stamp/bootloader-patch 19d7b93f5f74f7ca +39471 39532 7864703906725221 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch 19d7b93f5f74f7ca +39516 39625 7864703906624936 esp-idf/mbedtls/mbedtls/library/libmbedx509.a e4b383c91a1cd48 +39625 39940 7864703907728770 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a 55db4a29749848f +39940 40031 7864703910876989 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a 8e9baaaa9006ec52 +40031 40122 7864703911776294 esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a be2b2129d3ac4230 +40122 40320 7864703914427736 esp-idf/mbedtls/x509_crt_bundle 114ef5259dc3b9ab +40122 40320 7864703914427736 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/x509_crt_bundle 114ef5259dc3b9ab +40320 40472 7864703916126437 x509_crt_bundle.S 52831a8cadedc27d +40320 40472 7864703916126437 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/x509_crt_bundle.S 52831a8cadedc27d +40483 40783 7864703916327636 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 412aface83bed83c +40514 40791 7864703916624307 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 2d50dffd8b96d670 +40529 40799 7864703916775356 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj d75f2689c092cb07 +40520 40814 7864703916724837 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj ddf44b60ea6518ec +40475 40864 7864703916227012 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj 527184e19ab20fe9 +40495 40871 7864703916428807 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj 98846662850227db +40479 40891 7864703916277052 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj 4a6a1b41e08b4b43 +40472 40998 7864703916176471 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 30996d1aa2379b88 +40500 41061 7864703916478844 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj e512d5cd959bb2d3 +40504 41067 7864703916523895 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj 1040450f30d9ae40 +40487 41072 7864703916327636 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj 6ca3423b3cbce4de +40510 41078 7864703916574260 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj 3c35940bf5974519 +40808 41084 7864703919574418 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj 8183ff2361a9437 +40786 41121 7864703919325246 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj 7c4370816888f39e +40792 41179 7864703919433919 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj fe515eb0fe11473f +40891 41201 7864703920375175 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj 709481dba6527c30 +40491 41344 7864703916377677 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj 99c51ac2318005c6 +40816 41408 7864703919625477 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj 15c9892ac8abbe7d +40998 41432 7864703921477975 esp-idf/mbedtls/libmbedtls.a eb1e6a2566509db2 +40865 41504 7864703920123630 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj 5d3a1f4815eeddcd +41084 41509 7864703922324183 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj b0627132bb3d161 +40886 41515 7864703920324810 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj d19dbf45dab8b0ed +41073 41521 7864703922223608 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj 9f0a338381290d93 +41122 41594 7864703922677288 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj 7fcb4afa93b68516 +41078 41602 7864703922274138 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj c6b5e5296b86f50f +41179 41607 7864703923276652 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj 7d575895a6ec04cf +41202 41613 7864703923528360 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj 1f2e44fd814b8961 +41062 41729 7864703922082673 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj 8a4eb78ad4ded23a +41344 41779 7864703924933083 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj f9be6e9229284912 +41067 41827 7864703922128521 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj 8e6593f712e7380d +41409 41833 7864703925577316 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj 4db229f184d973d +41521 41880 7864703926675944 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj 838084480bcd1d1 +41504 41888 7864703926524320 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj 38ae0305b8629eed +41594 41961 7864703927427018 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj eec91b9dd116df0a +41509 41980 7864703926574726 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj cba4276c0f8e0784 +41432 42072 7864703925778715 esp-idf/esp_pm/libesp_pm.a 51a6be4b1afa7c2f +41515 42099 7864703926625895 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj 5181965a719e9a7b +41603 42193 7864703927527899 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj bed48c7e0e062cdd +41827 42251 7864703929726750 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj 766c2bcf32189114 +41730 42363 7864703928775257 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj 98c2ec6e66bdbf40 +41614 42428 7864703927628506 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj a8096b0549358fd9 +41888 42437 7864703930356562 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj d57c44b54593048e +41833 42445 7864703929827490 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj 6159aee3290e17c4 +41980 42490 7864703931292998 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj 6b51906a96f23380 +41609 42499 7864703927577941 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj 315c911e56ef4fb4 +41882 42526 7864703930275690 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj 8e13bc2e674020cd +41779 42545 7864703929278408 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj ebfcb2a34b39fe83 +41961 42557 7864703931092292 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj a3e284415ebd685e +42099 42565 7864703932487668 esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj f939608c2b7c3b41 +42072 42598 7864703932217170 esp-idf/esp_driver_gpio/libesp_driver_gpio.a adbd4e88d941d4f7 +42363 42734 7864703935130160 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 6f011eedcbd78f76 +42428 42794 7864703935776348 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj 4d3f9f8af4c365d5 +42445 42803 7864703935946650 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj d8308af6964d2e35 +42490 42816 7864703936402334 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj e8279c3a118f4b80 +42252 42893 7864703934016367 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj 8d22bbb40e0a95b0 +42437 42937 7864703935871436 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj 68e9de569c08e1ea +42499 43090 7864703936487548 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj eaa1da164635daf6 +42194 43098 7864703933494060 esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj 2dd138999df4a88c +42526 43129 7864703936758650 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj 4a00e518485b96fc +42545 43158 7864703936949718 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj cac08fc805fc992b +42599 43173 7864703937490882 esp-idf/xtensa/libxtensa.a bcafc5cb43a4e43e +42803 43258 7864703939529517 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj ba5ff04cae576d13 +42817 43335 7864703939674760 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj 8f5b07e1b0b887a +42896 43358 7864703940451067 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj 5921a80420e1485e +43098 43363 7864703942482829 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj e419cb1ef87905e +42795 43370 7864703939444456 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj 5bb69043c6976b6b +42735 43378 7864703938878045 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj 82aeb1d26a54993b +42557 43431 7864703937070271 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj f3ac1f1aac9af938 +42566 43436 7864703937155484 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj 1ad56cc7a76a784f +42938 43451 7864703940876767 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj 10beb9d19805772 +43129 43596 7864703942789649 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj de22f55491d421f9 +43437 43754 7864703945860288 esp-idf/rpc_job_parser/CMakeFiles/__idf_rpc_job_parser.dir/rpc_job_parser.c.obj 35ea0cd3be6466c9 +43378 43804 7864703945284262 esp-idf/fota_manager/CMakeFiles/__idf_fota_manager.dir/fota_manager.c.obj 65a46a3b4731ffbf +43258 43809 7864703944101808 esp-idf/protobuf-c/libprotobuf-c.a 1926055a3b1c4eac +43173 43873 7864703943230445 esp-idf/console/libconsole.a 2efa153574a164c5 +43335 43880 7864703944848482 esp-idf/json/libjson.a c144d458af175ab0 +43091 43888 7864703942407763 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj a3da30934a24558 +43370 43983 7864703945199041 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 4e38074d9de61334 +43364 44000 7864703945139014 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj f94a4f88af80344e +43596 44016 7864703947459106 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj 9add2b71ccb038fc +43358 44030 7864703945083955 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj 18ebb3e8b7c58d8e +43451 44065 7864703946006181 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj 9622627fbeb6facc +43432 44131 7864703945815215 esp-idf/ftp_manager/CMakeFiles/__idf_ftp_manager.dir/ftp_manager.c.obj 34063dc5467f14b4 +43873 44209 7864703950235090 esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj 2dc5b4e3c308ecaf +43756 44220 7864703949078301 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj 964d57b921c8d90c +43880 44270 7864703950295119 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj d4080f538c1d9575 +43804 44362 7864703949544294 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj fdcf33160676e52f +43810 44397 7864703949594319 esp-idf/unity/libunity.a 5762f9dc600690c2 +43983 44419 7864703951326842 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp/src/esp_cam_ctlr_dvp_gdma.c.obj f855f97587d390bf +43888 44470 7864703950380220 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj aa1a6f850a44a1a +44209 44730 7864703953588435 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 8819600931b05029 +44016 44752 7864703951655834 esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/common/touch_sens_common.c.obj 977b6f5973bf149f +44000 44764 7864703951497175 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp/src/esp_cam_ctlr_dvp_cam.c.obj 8b6d235d5794ab14 +44220 44770 7864703953703524 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj 55ecd9424d25975a +43158 44778 7864703943080169 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj d53294ca067e47be +44031 44783 7864703951800917 esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/hw_ver2/touch_version_specific.c.obj 1c8beea4a04f439e +44066 44789 7864703952156659 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 91c201f1c52d9394 +44363 44880 7864703955140372 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj e668da26299f8f8e +44273 44898 7864703954239616 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj 51cac4901e38fd1e +44132 44955 7864703952818076 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj 2d04db1450089576 +44421 45049 7864703955706295 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj ed99c69c0f95057f +44471 45061 7864703956242215 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj dbf205fa085ff24f +44400 45088 7864703955515972 esp-idf/esp_https_server/libesp_https_server.a ab8c1d913e2bec7e +44773 45224 7864703959234921 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj 746a92fa46824dcb +44731 45312 7864703958807916 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj f55c4f2ff57ec95b +44752 45388 7864703959009355 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj 46be25bdaf8c78e3 +44784 45396 7864703959330016 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj 1fbbff097057def7 +44765 45487 7864703959149726 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj 26b7112c2760f1d2 +44789 45535 7864703959390055 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj fef4011219a10aef +44779 45544 7864703959284953 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj e08861a1dc35692e +45313 45551 7864703964636869 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj 80a3f1f4a290c9ee +45089 45564 7864703962385897 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 5bb07aa13a28cbf0 +44955 45576 7864703961048396 esp-idf/protocomm/libprotocomm.a 5e0bb6826becc74e +45061 45628 7864703962110388 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj 81d8c04b995c70ba +45049 45710 7864703961989673 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj 6e870a3c627f832e +45225 45800 7864703963758574 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj f33aafcafef8c913 +45389 45874 7864703965389623 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj 4b583f029c5240f0 +45565 45881 7864703967209216 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj 490b5a1cbeb1c319 +44881 45926 7864703960301504 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i80/esp_lcd_panel_io_i80.c.obj f9ec6226fd882b32 +45554 46020 7864703967074092 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj 40eecdeb0d288d8c +45396 46043 7864703965464821 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj bad207ae986751f2 +45546 46060 7864703966953336 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj 1c75f4e7ecdf95e6 +45505 46116 7864703966717244 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj 69b5e6c1d6f48ad4 +45576 46135 7864703967264437 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj f865c278a7aaf8ec +45536 46161 7864703966868243 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj c8e703702d4d1c10 +45628 46200 7864703967786020 esp-idf/wear_levelling/libwear_levelling.a 41264506a66de183 +44898 46250 7864703960477299 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/rgb/esp_lcd_panel_rgb.c.obj c0fb6821d6ff5edc +45710 46279 7864703968595594 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj 8841fedfdfa36327 +45800 46347 7864703969497890 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj 6adc0af3b7683536 +45926 46409 7864703970768045 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj 527170c32276a30f +45875 46436 7864703970246666 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj 540e1a42989a3f64 +46022 46565 7864703971711692 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj cc3f37bcad39f590 +46251 46570 7864703974013539 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 994359d2ce7e30a4 +46044 46600 7864703971937580 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj a3c964554b1b086f +46162 46625 7864703973111268 esp-idf/mqtt/libmqtt.a 92f33d96d266b100 +46279 46667 7864703974294318 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj 75f51751432db5a2 +46201 46678 7864703973512546 esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj 7cf7a6fb52ec6dbb +46347 46693 7864703974965634 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj b51ca6b8757bce36 +46137 46777 7864703972865185 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj 347415816f42f70a +45881 46908 7864703970316699 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 8d465dde126a407e +46062 47030 7864703972118217 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj 4d7c098a2137c143 +46116 47054 7864703972659399 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj e649214355ab24f7 +46570 47068 7864703977199232 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj 53079e4ecbb6e5a2 +46409 47082 7864703975538421 esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj ad6e87ada54073a9 +46436 47148 7864703975866231 esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj fca8b0753702b785 +46626 47186 7864703977756563 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj 49f3e3d008a9d87d +46565 47238 7864703977149215 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj 25750f9ec18edb51 +46600 47383 7864703977500950 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj afcd8215824cafd4 +46670 47647 7864703978217992 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj b4852aed2001e7a4 +46687 47660 7864703978368305 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj d05b5588e82ae9c +46909 47671 7864703980587804 esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj 4d1e25c9ed667941 +46703 47693 7864703978643973 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj 2b350cac601e43e1 +47187 47781 7864703983379723 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj 71b6251203d09c2a +47387 47790 7864703985384325 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj abd820659e85fb20 +47035 47808 7864703981884569 esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj e7798e82b7394094 +47149 47822 7864703982991777 esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj b2da1bc430858ef +47087 47842 7864703982360810 esp-idf/usb/CMakeFiles/__idf_usb.dir/enum.c.obj 328b6fe0bedbb41e +46784 47871 7864703979375189 esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_element.c.obj 5fdc81c297930778 +47057 47934 7864703982070323 esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj 5b0a1da2bd98cb73 +47239 48014 7864703983915980 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj 33c98cca564a98ad +47076 48291 7864703982275737 esp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj addb19f147a2874b +47842 48312 7864703989926530 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 31aa02cd667c2409 +47782 48322 7864703989314280 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj d7ba781ff5f1e1b9 +47873 48339 7864703990227543 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj de14bfb0734f376d +47674 48386 7864703988344466 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj 8204569e0ebcfa53 +47693 48392 7864703988434868 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 2f7b746f375f95f4 +47664 48409 7864703988164141 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj 5b7ab9ddfa1e90c5 +47822 48437 7864703989710506 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 171c9a2d9975828c +47808 48457 7864703989585419 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj ea60e8e95819252e +47934 48469 7864703990844740 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj 7b7d95213e63dcec +48015 48480 7864703991647808 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj 3b76cc83c157ddc6 +47648 48489 7864703988043589 esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj 6a1aee17bf8b251 +48312 48694 7864703994613234 esp-idf/fota_manager/libfota_manager.a 1510e9fc9d7e8803 +48339 48702 7864703994888632 esp-idf/rpc_job_parser/librpc_job_parser.a 2fce4164ef873dce +48322 48713 7864703994718451 esp-idf/ftp_manager/libftp_manager.a 230690c992616e7c +48410 48735 7864703995599859 esp-idf/cmock/libcmock.a 60f8c69d1e2b765b +48460 48813 7864703996096029 esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a 164b81ffada0e7f0 +48442 48823 7864703995955879 esp-idf/esp_driver_cam/libesp_driver_cam.a 1d7cbe63c16b299a +48291 48832 7864703994407766 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj 4bf074e10d185f27 +48392 48840 7864703995424597 esp-idf/app_trace/libapp_trace.a bf3f0f5060106ee5 +48470 48849 7864703996201110 esp-idf/esp_eth/libesp_eth.a f00cab3bb6de8ad6 +48480 48857 7864703996306364 esp-idf/esp_hid/libesp_hid.a fc788a68fe02eb79 +47790 48893 7864703989399341 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj ee1ab213f1409201 +48490 48937 7864703996447306 esp-idf/esp_lcd/libesp_lcd.a da0f5bda5e2c40b8 +48387 48982 7864703995369565 esp-idf/mqtt_manager/CMakeFiles/__idf_mqtt_manager.dir/mqtt_manager.c.obj 569cecc5b30de1b6 +48694 49003 7864703998436553 esp-idf/esp_local_ctrl/libesp_local_ctrl.a 7210cac8de2bb5f7 +48702 49023 7864703998526598 esp-idf/espcoredump/libespcoredump.a 211a43a7512cf486 +48735 49031 7864703998852208 esp-idf/nvs_sec_provider/libnvs_sec_provider.a 9a64fc50f317f864 +48713 49092 7864703998626715 esp-idf/fatfs/libfatfs.a d42880a064e06d06 +48823 49183 7864703999723673 esp-idf/rt/librt.a 1494a049c8faea +48840 49186 7864703999904617 esp-idf/touch_element/libtouch_element.a fce359639338f8ef +48832 49190 7864703999808918 esp-idf/spiffs/libspiffs.a be49f3bffa9ab99 +48895 49191 7864704000450738 esp-idf/wifi_provisioning/libwifi_provisioning.a b83791464abf975a +48849 49196 7864703999989686 esp-idf/usb/libusb.a a20fa400f3cd5c16 +48814 49199 7864703999628404 esp-idf/perfmon/libperfmon.a a1c9a1373c4d74e6 +49003 49238 7864704001528051 esp-idf/mqtt_manager/libmqtt_manager.a f5017a04f46da1e1 +48858 49239 7864704000074939 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj cc55cad29da0400f +48982 49325 7864704001312625 esp-idf/main/CMakeFiles/__idf_main.dir/fs_init.c.obj d14e9ef9fa521e5b +48937 49417 7864704000876856 esp-idf/main/CMakeFiles/__idf_main.dir/wifi_init.c.obj 28a11bbf026aae26 +49417 49500 7864704005665918 esp-idf/main/libmain.a e278a8f6ed3f13e4 +39532 53719 7864704048625804 bootloader-prefix/src/bootloader-stamp/bootloader-configure c342e652847c3932 +39532 53719 7864704048625804 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure c342e652847c3932 +53720 58454 7864704048690877 bootloader-prefix/src/bootloader-stamp/bootloader-build 71cbefea028db3f5 +53720 58454 7864704048690877 bootloader/bootloader.elf 71cbefea028db3f5 +53720 58454 7864704048690877 bootloader/bootloader.bin 71cbefea028db3f5 +53720 58454 7864704048690877 bootloader/bootloader.map 71cbefea028db3f5 +53720 58454 7864704048690877 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 71cbefea028db3f5 +53720 58454 7864704048690877 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.elf 71cbefea028db3f5 +53720 58454 7864704048690877 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.bin 71cbefea028db3f5 +53720 58454 7864704048690877 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.map 71cbefea028db3f5 +58457 58484 7864704096065235 bootloader-prefix/src/bootloader-stamp/bootloader-install fb0f9e86f620b732 +58457 58484 7864704096065235 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-install fb0f9e86f620b732 +58485 58548 7864704096931884 CMakeFiles/bootloader-complete 6a0b765ed5722eb1 +58485 58548 7864704096931884 bootloader-prefix/src/bootloader-stamp/bootloader-done 6a0b765ed5722eb1 +58485 58548 7864704096931884 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/bootloader-complete 6a0b765ed5722eb1 +58485 58548 7864704096931884 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 6a0b765ed5722eb1 +49501 62774 7864704138898586 esp-idf/esp_system/ld/sections.ld 785461403048fb35 +49501 62774 7864704138898586 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld/sections.ld 785461403048fb35 +62774 62830 7864704139239042 CMakeFiles/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.c.obj 758c4ec199cf6065 +62830 66522 7864704139795004 esp32-s3_fota_test_wifi.elf 364c0a25566e3010 +66523 66813 7864704179570347 .bin_timestamp d9c9a8aafd841d4c +66523 66813 7864704179570347 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/.bin_timestamp d9c9a8aafd841d4c +66813 66928 7864704179625376 esp-idf/esptool_py/CMakeFiles/app_check_size 35fa1de95ce970d9 +66813 66928 7864704179625376 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py/CMakeFiles/app_check_size 35fa1de95ce970d9 diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..2a3acc7 --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,610 @@ +# This is the CMakeCache file. +# For build in directory: f:/ESP_32_Projects/esp32-s3_fota_test_wifi/build +# It was generated by CMake: C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//ASM Compiler Base Flags +CMAKE_ASM_FLAGS:STRING='-mlongcalls ' + +//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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + +//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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + +//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=C:/msys64/mingw64/bin/dlltool.exe + +//Linker Base Flags +CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles ' + +//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 compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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)/esp32-s3_fota_test_wifi + +//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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/Vecmocon/.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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=esp32-s3_fota_test_wifi + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=3.6.4 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=3 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=6 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=4 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.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 Mbed TLS programs. +ENABLE_PROGRAMS:BOOL= + +//Build Mbed TLS tests. +ENABLE_TESTING:BOOL= + +//No help, variable specified on the command line. +ESP_PLATFORM:UNINITIALIZED=1 + +//Generate the auto-generated files as needed +GEN_FILES:BOOL= + +//Git command line client +GIT_EXECUTABLE:FILEPATH=C:/Users/Vecmocon/.espressif/tools/idf-git/2.39.2/cmd/git.exe + +//IDF Build Target +IDF_TARGET:STRING=esp32s3 + +//IDF Build Toolchain Type +IDF_TOOLCHAIN:STRING=gcc + +//Install Mbed TLS headers. +INSTALL_MBEDTLS_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=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls + +//No help, variable specified on the command line. +PYTHON_DEPS_CHECKED:UNINITIALIZED=1 + +//No help, variable specified on the command line. +SDKCONFIG:UNINITIALIZED=f:\ESP_32_Projects\esp32-s3_fota_test_wifi\sdkconfig + +//Allow unsafe builds. These builds ARE NOT SECURE. +UNSAFE_BUILD:BOOL=OFF + +//Build Mbed TLS shared library. +USE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF + +//Build Mbed TLS static library. +USE_STATIC_MBEDTLS_LIBRARY:BOOL=ON + +//Value Computed by CMake +esp-idf_BINARY_DIR:STATIC=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf + +//Value Computed by CMake +esp-idf_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +esp-idf_SOURCE_DIR:STATIC=C:/Users/Vecmocon/esp/v5.5.1/esp-idf + +//Value Computed by CMake +esp32-s3_fota_test_wifi_BINARY_DIR:STATIC=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build + +//Value Computed by CMake +esp32-s3_fota_test_wifi_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +esp32-s3_fota_test_wifi_SOURCE_DIR:STATIC=F:/ESP_32_Projects/esp32-s3_fota_test_wifi + +//Dependencies for the target +everest_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa; + +//Dependencies for the target +mbedcrypto_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;everest;general;p256m;general;idf::esp_security;general;idf::esp_mm; + +//Dependencies for the target +mbedtls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;mbedx509; + +//Dependencies for the target +mbedx509_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;mbedcrypto; + +//Dependencies for the target +p256m_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa; + + +######################## +# 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=f:/ESP_32_Projects/esp32-s3_fota_test_wifi/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/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:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/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_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=F:/ESP_32_Projects/esp32-s3_fota_test_wifi +//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 +//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=125 +//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:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30 +//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:/Users/Vecmocon/.espressif/tools/idf-git/2.39.2/cmd/git.exe][v2.39.2.windows.1()] +//Details about finding Python3 +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe][cfound components: Interpreter ][v3.11.2()] +//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)/esp32-s3_fota_test_wifi +//Compiler reason failure +_Python3_Compiler_REASON_FAILURE:INTERNAL= +//Development reason failure +_Python3_Development_REASON_FAILURE:INTERNAL= +_Python3_EXECUTABLE:INTERNAL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;11;2;32;64;;;abi3;C:\Users\Vecmocon\.espressif\tools\idf-python\3.11.2\Lib;C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Lib;C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Lib\site-packages;C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Lib\site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=83818ced89c354ba1fe2c9c8fac63ed0 +//NumPy reason failure +_Python3_NumPy_REASON_FAILURE:INTERNAL= + diff --git a/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake b/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake new file mode 100644 index 0000000..7f545d8 --- /dev/null +++ b/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake @@ -0,0 +1,29 @@ +set(CMAKE_ASM_COMPILER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/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 ) + + diff --git a/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake b/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..58c7589 --- /dev/null +++ b/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake @@ -0,0 +1,82 @@ +set(CMAKE_C_COMPILER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "14.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +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_SIMULATE_VERSION "") + +set(CMAKE_C_COMPILER_SYSROOT "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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 FALSE) + +# 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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..cc69f6a --- /dev/null +++ b/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake @@ -0,0 +1,106 @@ +set(CMAKE_CXX_COMPILER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "14.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_SIMULATE_VERSION "") + +set(CMAKE_CXX_COMPILER_SYSROOT "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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 FALSE) + +# 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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/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 "Toolchain does not support discovering `import std` support") + + +### Imported target for C++26 standard library +set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + + diff --git a/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..5f1d02a Binary files /dev/null and b/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..6b758d5 Binary files /dev/null and b/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/3.30.2/CMakeSystem.cmake b/build/CMakeFiles/3.30.2/CMakeSystem.cmake new file mode 100644 index 0000000..0610c29 --- /dev/null +++ b/build/CMakeFiles/3.30.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22621") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22621") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.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/3.30.2/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..8d8bb03 --- /dev/null +++ b/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,904 @@ +#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__) + + +#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__) +# 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 +#ifdef COMPILER_VERSION_INTERNAL + 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/3.30.2/CompilerIdC/a.out b/build/CMakeFiles/3.30.2/CompilerIdC/a.out new file mode 100644 index 0000000..e84d15b Binary files /dev/null and b/build/CMakeFiles/3.30.2/CompilerIdC/a.out differ diff --git a/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..da6c824 --- /dev/null +++ b/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,919 @@ +/* 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__) + + +#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__) +# 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 +#ifdef COMPILER_VERSION_INTERNAL + 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/3.30.2/CompilerIdCXX/a.out b/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out new file mode 100644 index 0000000..a139aab Binary files /dev/null and b/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out differ diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..73ef56e --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,591 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + The target system is: Generic - - + The host system is: Windows - 10.0.22621 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe + Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy + 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: + F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/3.30.2/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe + Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy + 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: + F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (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-14.2.0_20241119) 14.2.0 + Copyright (C) 2024 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:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-w8kiax" + binary: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-w8kiax" + cmakeVariables: + CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-w8kiax' + + Run Build Command(s): C:/Users/Vecmocon/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_c41f3 + [1/2] C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj -c C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c41f3.dir/' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_c41f3.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccZ4l6ww.s + GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include" + ignoring nonexistent directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c41f3.dir/' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccZ4l6ww.s + COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj -o cmTC_c41f3 && cd ." + Using built-in specs. + COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_c41f3' '-dumpdir' 'cmTC_c41f3.' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccZ6lnUB.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_c41f3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_c41f3' '-dumpdir' 'cmTC_c41f3.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-w8kiax'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Users/Vecmocon/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_c41f3] + ignore line: [[1/2] C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj -c C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c41f3.dir/'] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_c41f3.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccZ4l6ww.s] + ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c41f3.dir/'] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccZ4l6ww.s] + ignore line: [COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj -o cmTC_c41f3 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_c41f3' '-dumpdir' 'cmTC_c41f3.'] + link line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccZ6lnUB.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_c41f3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc] + arg [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccZ6lnUB.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32s3.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_c41f3] ==> ignore + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_c41f3.dir/CMakeCCompilerABI.c.obj] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00400054\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_c41f3' '-dumpdir' 'cmTC_c41f3.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [] + implicit dirs: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-ez2jt4" + binary: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-ez2jt4" + cmakeVariables: + CMAKE_CXX_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-ez2jt4' + + Run Build Command(s): C:/Users/Vecmocon/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_4c5bd + [1/2] C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4c5bd.dir/' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_4c5bd.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\cclUIdkM.s + GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include" + ignoring nonexistent directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0 + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3 + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4c5bd.dir/' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\cclUIdkM.s + COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_4c5bd && cd ." + Using built-in specs. + COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_4c5bd' '-dumpdir' 'cmTC_4c5bd.' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccfvroJR.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_4c5bd -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_4c5bd' '-dumpdir' 'cmTC_4c5bd.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-ez2jt4'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Users/Vecmocon/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_4c5bd] + ignore line: [[1/2] C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4c5bd.dir/'] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_4c5bd.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\cclUIdkM.s] + ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4c5bd.dir/'] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\cclUIdkM.s] + ignore line: [COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_4c5bd && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_4c5bd' '-dumpdir' 'cmTC_4c5bd.'] + link line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccfvroJR.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_4c5bd -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc] + arg [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccfvroJR.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32s3.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_4c5bd] ==> ignore + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_4c5bd.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00400054\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_4c5bd' '-dumpdir' 'cmTC_4c5bd.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit objs: [] + implicit dirs: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:139 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-0n7i2u" + binary: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-0n7i2u" + cmakeVariables: + CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: 'F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-0n7i2u' + + Run Build Command(s): C:/Users/Vecmocon/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_0bb57 + [1/2] C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCMAKE_HAVE_LIBC_PTHREAD -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o CMakeFiles/cmTC_0bb57.dir/src.c.obj -c F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-0n7i2u/src.c + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles CMakeFiles/cmTC_0bb57.dir/src.c.obj -o cmTC_0bb57 && cd ." + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_0bb57.dir/src.c.obj:(.literal+0x14): warning: pthread_atfork is not implemented and will always fail + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_0bb57.dir/src.c.obj:(.literal+0xc): warning: pthread_cancel is not implemented and will always fail + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_0bb57.dir/src.c.obj:(.literal+0x4): warning: pthread_create is not implemented and will always fail + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_0bb57.dir/src.c.obj:(.literal+0x8): warning: pthread_detach is not implemented and will always fail + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_0bb57.dir/src.c.obj:(.literal+0x18): warning: pthread_exit is not implemented and will always fail + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_0bb57.dir/src.c.obj:(.literal+0x10): warning: pthread_join is not implemented and will always fail\x0d + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054\x0d + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:222 (CHECK_C_COMPILER_FLAG)" + checks: + - "Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" + directories: + source: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-rg4zra" + binary: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-rg4zra" + cmakeVariables: + CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" + cached: true + stdout: | + Change Dir: 'F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-rg4zra' + + Run Build Command(s): C:/Users/Vecmocon/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_dc272 + [1/2] C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DC_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -o CMakeFiles/cmTC_dc272.dir/src.c.obj -c F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/CMakeScratch/TryCompile-rg4zra/src.c + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -nostartfiles CMakeFiles/cmTC_dc272.dir/src.c.obj -o cmTC_dc272 && cd ." + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054\x0d + + exitCode: 0 +... diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..8a6f3a7 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,899 @@ +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/menuconfig.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/confserver.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/save-defconfig.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/bootloader.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/gen_project_binary.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/app.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/erase_flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/merge-bin.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/monitor.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/encrypted-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/_project_elf_src.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/esp32-s3_fota_test_wifi.elf.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/size.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/size-files.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/size-components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/dfu.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/dfu-list.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/dfu-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/uf2.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/uf2-app.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/__ldgen_output_sections.ld.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/xtensa/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/xtensa/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/xtensa/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/xtensa/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/xtensa/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/partition-table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/partition_table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/blank_ota_data.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/read-otadata.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/read_otadata.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/erase-otadata.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/erase_otadata.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/otadata-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/encrypted-otadata-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/CMakeFiles/memory.ld.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/CMakeFiles/sections.ld.in.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal/CMakeFiles/__idf_hal.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log/CMakeFiles/__idf_log.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap/CMakeFiles/__idf_heap.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc/CMakeFiles/__idf_soc.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/src/port/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/src/port/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/src/port/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/src/port/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/src/port/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/src/port/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_trace/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_trace/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_trace/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_trace/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_trace/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_trace/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif_stack/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif_stack/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif_stack/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif_stack/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif_stack/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bt/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bt/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bt/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bt/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bt/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bt/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity/CMakeFiles/__idf_unity.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmock/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmock/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmock/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmock/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmock/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmock/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console/CMakeFiles/__idf_console.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdio/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdio/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdio/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdio/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_dac/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_dac/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_dac/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_dac/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_dac/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_parlio/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_parlio/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_parlio/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_parlio/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver/CMakeFiles/__idf_driver.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_isp/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_isp/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_isp/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_isp/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_isp/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_isp/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_cam/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_cam/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_cam/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_cam/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_cam/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_cam/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_psram/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_psram/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_psram/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_psram/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_psram/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_psram/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_jpeg/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_jpeg/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_jpeg/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_jpeg/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_jpeg/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_jpeg/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ppa/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ppa/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ppa/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ppa/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ppa/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ppa/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_touch_sens/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_touch_sens/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_touch_sens/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_eth/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_eth/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_eth/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_eth/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_eth/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_eth/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hid/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hid/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hid/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hid/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hid/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hid/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_lcd/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_lcd/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_lcd/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_lcd/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_lcd/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_lcd/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_local_ctrl/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_local_ctrl/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_local_ctrl/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_local_ctrl/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/espcoredump/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/espcoredump/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/espcoredump/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/espcoredump/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/espcoredump/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/espcoredump/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fatfs/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fatfs/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fatfs/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fatfs/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fatfs/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fatfs/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/idf_test/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/idf_test/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/idf_test/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/idf_test/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/idf_test/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/idf_test/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ieee802154/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ieee802154/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ieee802154/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ieee802154/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ieee802154/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ieee802154/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json/CMakeFiles/__idf_json.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_sec_provider/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_sec_provider/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_sec_provider/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_sec_provider/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/openthread/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/openthread/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/openthread/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/openthread/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/openthread/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/openthread/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/perfmon/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/perfmon/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/perfmon/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/perfmon/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/perfmon/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/perfmon/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rt/CMakeFiles/__idf_rt.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rt/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rt/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rt/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rt/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rt/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rt/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spiffs/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spiffs/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spiffs/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spiffs/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spiffs/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spiffs/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/touch_element/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/touch_element/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/touch_element/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/touch_element/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/touch_element/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/touch_element/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ulp/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ulp/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ulp/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ulp/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ulp/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ulp/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/usb/CMakeFiles/__idf_usb.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/usb/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/usb/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/usb/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/usb/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/usb/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/usb/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wifi_provisioning/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wifi_provisioning/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wifi_provisioning/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wifi_provisioning/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wifi_provisioning/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/main/CMakeFiles/__idf_main.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/main/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/main/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/main/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/main/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/main/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/main/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager/CMakeFiles/__idf_fota_manager.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager/CMakeFiles/__idf_ftp_manager.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser/CMakeFiles/__idf_rpc_job_parser.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser/CMakeFiles/install/strip.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt_manager/CMakeFiles/__idf_mqtt_manager.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt_manager/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt_manager/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt_manager/CMakeFiles/list_install_components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt_manager/CMakeFiles/install.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt_manager/CMakeFiles/install/local.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt_manager/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..8ac4670 --- /dev/null +++ b/build/CMakeFiles/bootloader.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/bootloader" + }, + { + "file" : "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/bootloader.rule" + }, + { + "file" : "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/bootloader-complete.rule" + }, + { + "file" : "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule" + }, + { + "file" : "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule" + }, + { + "file" : "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule" + }, + { + "file" : "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule" + }, + { + "file" : "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule" + }, + { + "file" : "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule" + }, + { + "file" : "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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..60c93c8 --- /dev/null +++ b/build/CMakeFiles/bootloader.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + bootloader +# Source files and their labels +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/bootloader +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/bootloader.rule +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/bootloader-complete.rule +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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..d60acea --- /dev/null +++ b/build/CMakeFiles/clean_additional.cmake @@ -0,0 +1,24 @@ +# 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\\esptool_py\\flasher_args.json.in" + "esp-idf\\mbedtls\\x509_crt_bundle" + "esp32-s3_fota_test_wifi.bin" + "esp32-s3_fota_test_wifi.map" + "flash_app_args" + "flash_bootloader_args" + "flash_project_args" + "flasher_args.json" + "ldgen_libraries" + "ldgen_libraries.in" + "project_elf_src_esp32s3.c" + "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/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.c.obj b/build/CMakeFiles/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.c.obj new file mode 100644 index 0000000..d57c67e Binary files /dev/null and b/build/CMakeFiles/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.c.obj differ diff --git a/build/CMakeFiles/git-data/HEAD b/build/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..3dc2aed --- /dev/null +++ b/build/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +fcae32885b0296b32044cb99ecbdc50d98dddb83 diff --git a/build/CMakeFiles/git-data/grabRef.cmake b/build/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..d3358f1 --- /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 "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "C:/Users/Vecmocon/esp/v5.5.1/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}" "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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..3dc2aed --- /dev/null +++ b/build/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +fcae32885b0296b32044cb99ecbdc50d98dddb83 diff --git a/build/CMakeFiles/rules.ninja b/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..0c784ad --- /dev/null +++ b/build/CMakeFiles/rules.ninja @@ -0,0 +1,1991 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# 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: esp32-s3_fota_test_wifi +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__esp32-s3_fota_test_wifi.2eelf_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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__esp32-s3_fota_test_wifi.2eelf_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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 running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_xtensa_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C 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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedcrypto_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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__mbedcrypto_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedx509_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_app_format_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_newlib_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_newlib_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_trace_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_trace_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_usb_serial_jtag_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_usb_serial_jtag_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_vfs_console_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_vfs_console_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_tsens_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_tsens_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_espcoredump_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_espcoredump_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_json_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_json_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_mqtt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_mqtt_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_touch_element_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_touch_element_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_usb_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_usb_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_wifi_provisioning_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_wifi_provisioning_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_fota_manager_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_fota_manager_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_ftp_manager_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_ftp_manager_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_rpc_job_parser_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_rpc_job_parser_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_mqtt_manager_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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_mqtt_manager_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Users\Vecmocon\.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:\Users\Vecmocon\.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..19bb2e9 --- /dev/null +++ b/build/CMakeFiles/sections.ld-d65dc84.bat @@ -0,0 +1,9 @@ +@echo off +cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build || (set FAIL_LINE=2& goto :ABORT) +C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/ldgen/ldgen.py --config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig --fragments-list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/app.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/common.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/soc.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/linker_common.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/newlib.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/system_libs.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/linker.lf;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/linker.lf --input F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld/sections.ld.in --output F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld/sections.ld --kconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/Kconfig --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config.env --libraries-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/ldgen_libraries --objdump C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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..c0210a8 --- /dev/null +++ b/build/app-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +0x20000 esp32-s3_fota_test_wifi.bin diff --git a/build/bootloader-flash_args b/build/bootloader-flash_args new file mode 100644 index 0000000..0837e62 --- /dev/null +++ b/build/bootloader-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +0x0 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..e2683f6 --- /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:/Users/Vecmocon/esp/v5.5.1/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..d728a9a --- /dev/null +++ b/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt @@ -0,0 +1 @@ +cmd='C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/bin/cmake.exe;-DSDKCONFIG=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig;-DIDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf;-DIDF_TARGET=esp32s3;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-DEXTRA_COMPONENT_DIRS=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=F:/ESP_32_Projects/esp32-s3_fota_test_wifi;-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..985b4de --- /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 Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# 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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject") + file(MAKE_DIRECTORY "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject") +endif() +file(MAKE_DIRECTORY + "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader" + "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix" + "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/tmp" + "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp" + "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src" + "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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..e80b936 --- /dev/null +++ b/build/bootloader/.bin_timestamp @@ -0,0 +1 @@ +5a2d1e54d94283d47db006f28c54adac F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.bin diff --git a/build/bootloader/.ninja_deps b/build/bootloader/.ninja_deps new file mode 100644 index 0000000..b341664 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..e88683e --- /dev/null +++ b/build/bootloader/.ninja_log @@ -0,0 +1,127 @@ +# ninja log v6 +28 260 7864704049377219 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj 8cfad86f95fc2f7f +67 277 7864704049767892 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 75563968a3b7cd5c +40 281 7864704049502335 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj dcda357d90b452e9 +37 293 7864704049462333 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj a120705b33220c1a +23 298 7864704049327073 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj fd5067db1d424264 +16 328 7864704049262027 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj 906fe5614249af0f +51 333 7864704049607633 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj 3d35da6a5e36ff89 +46 346 7864704049557623 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj c789b800afacbf +31 402 7864704049407224 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj 84282d8d12d4c172 +71 410 7864704049807900 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj d97079fce6057085 +59 419 7864704049692694 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 40d69d9f6aeee845 +55 459 7864704049642673 esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj ff075fe6f08e01a0 +282 488 7864704051912446 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 12043b94ca656fb5 +75 493 7864704049852961 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj bb978cabfe797696 +277 510 7864704051872440 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 2fcb2ed7da710354 +261 518 7864704051702069 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 4a7ecaf57337b90c +63 523 7864704049727737 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 1acbf534b939a459 +293 528 7864704052027877 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj b6a282353579695b +298 649 7864704052078024 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj 6bbd5b66a342a941 +333 670 7864704052429308 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj 88e9ee4e31ac1142 +410 694 7864704053200923 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj 5d6de903de51eb68 +329 716 7864704052384256 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj 650b49fd84bdccf1 +488 735 7864704053983869 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj e49ce8745126a5 +419 782 7864704053286126 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj c946129e134a96ad +347 843 7864704052564590 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 852ddd05f45a0f48 +402 887 7864704053125660 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj f195b940190ef798 +670 1046 7864704055803288 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj e02b7255f05435ab +523 1061 7864704054324533 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj 8228b96ed30a9019 +650 1106 7864704055597418 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj ee843db7bde7304e +528 1111 7864704054374746 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj d7709e34ffbf4692 +510 1116 7864704054194406 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj 9fc3b00c2f067bd0 +494 1130 7864704054028919 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj dfb16d96fd90d3f +518 1144 7864704054279495 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj 3e423889a2f30459 +459 1170 7864704053686741 esp-idf/log/liblog.a f11441c8df824649 +694 1201 7864704056038848 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj 9c43c6e41950a917 +716 1206 7864704056259262 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj c55e3b554905fa44 +736 1309 7864704056449604 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj 6c2743ff66a73f15 +782 1318 7864704056910299 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj 5fe79907c0368ee6 +843 1323 7864704057525325 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 402d72243c7a0f13 +887 1353 7864704057970220 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 54fdeed60b6fd13f +1116 1531 7864704060253808 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 563f8e6eeb56c013 +1144 1579 7864704060535098 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj f44a65dc16e72b2a +1131 1584 7864704060404749 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 289ce60c5a69f85e +1201 1589 7864704061101050 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 7fcaf7dc7471800e +1061 1642 7864704059709832 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj 24e008b791c1ceb9 +1046 1664 7864704059564717 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 60d6ae6f465d33fd +1309 1697 7864704062182747 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj a6b20e7e9ab9d676 +1319 1701 7864704062282869 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj 630cff957a57f70d +1207 1706 7864704061166362 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 9a36c01b69b52abd +1111 1711 7864704060208710 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 648f133e54b57af8 +1353 1734 7864704062628741 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 568cbb1bae15e382 +1106 1799 7864704060163476 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj a871bf6a7716fb31 +1170 1965 7864704060795607 esp-idf/esp_rom/libesp_rom.a 578f1f063175d0ea +1697 2013 7864704066069605 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj ca016124b384a4a6 +1584 2041 7864704064944651 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 19ef3cca4863ec7a +1324 2067 7864704062333335 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 1239dbe4ea170b64 +1642 2081 7864704065512291 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj a7b32aef4255b066 +1711 2087 7864704066210345 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj fe86e8bae8ad9825 +1707 2121 7864704066165117 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 3a5785ad7fd0a3e5 +1532 2161 7864704064413731 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj 933932d391ec4e7f +1702 2166 7864704066109620 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj eae711ffc9882a01 +1664 2259 7864704065737771 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj b69d57f75486365f +2014 2377 7864704069232558 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj d3b412df624f8382 +2067 2390 7864704069755284 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj 656e8231bd1b7ce7 +1799 2395 7864704067092089 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj be9216e19f022e18 +1734 2411 7864704066436211 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj fdfdde2f47857c6a +1579 2416 7864704064889459 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj dfdc4a1c7ba62fd5 +1589 2434 7864704064994687 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 9de11e381d677e44 +2087 2455 7864704069971477 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 2b8f449e59429dc6 +2081 2459 7864704069906370 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 188b2ac55de74658 +2041 2541 7864704069502981 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 61c1daba05700408 +2161 2563 7864704070707783 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 91e1a12ff00683e2 +1965 2613 7864704068751595 esp-idf/esp_common/libesp_common.a 34bc89118f0c3fd9 +2395 2646 7864704073051631 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj d1ee0da24c3064d0 +2460 2650 7864704073694907 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj d576ada4e9239f1c +2378 2655 7864704072871258 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b141514925c036d0 +2390 2659 7864704072996559 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj ccc0d6bc42cf7a25 +2435 2671 7864704073447442 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj e60f034f768eef5f +2455 2698 7864704073644879 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj a1919e5f10500adb +2166 2718 7864704070762839 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj 246153417649baef +2412 2730 7864704073211945 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj c18f2edf11cbb79a +2541 2762 7864704074506533 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj 7e6e802804640f9a +2416 2784 7864704073257132 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj b7bf02866952693c +2121 2813 7864704070301899 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj ae31df0d2b450171 +2563 2818 7864704074726882 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj 353e170bda544ec3 +2655 2880 7864704075647373 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj 24561ba795747124 +2660 2885 7864704075697408 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj 3e3d4b3016b9882d +2646 2909 7864704075552102 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj a85c28280c8d4967 +2650 2936 7864704075602118 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj 62daaccbd5f56d86 +2718 2981 7864704076274630 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj 77965f1e1dbacaf9 +2730 2989 7864704076399726 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj a9b34050690c5a68 +2671 3001 7864704075812510 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj 29fc4d4f41312b16 +2762 3051 7864704076718789 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj 2af6b249a9b1d8e5 +2818 3088 7864704077239058 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj b0d60b09223637ff +2698 3124 7864704076084287 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj bd77f6f0ae34f795 +2814 3129 7864704077234868 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj 8d15a2bf2fb3a1f8 +2784 3136 7864704076944163 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj 58e42210dcbd60f8 +2880 3147 7864704077899046 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj e7c1ed918850a8df +2613 3148 7864704075227810 esp-idf/esp_hw_support/libesp_hw_support.a fca9782589d843a +2909 3160 7864704078190123 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj 1565033dec9f011e +2982 3185 7864704078916385 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj ed3847b2c19a7754 +2885 3195 7864704077944276 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj 8cfeff4bc5b31115 +2989 3196 7864704078991474 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj d9fe7f4b68e6b5ed +2936 3196 7864704078455709 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj 2cdafe94b78287e6 +3088 3204 7864704080885111 project_elf_src_esp32s3.c f9f1f7214ddfd610 +3088 3204 7864704080885111 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/project_elf_src_esp32s3.c f9f1f7214ddfd610 +3002 3209 7864704079111874 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj d00b062ee0a35fba +3051 3251 7864704079602771 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj b2b3f4eb81bc54 +3204 3278 7864704081146036 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj 7647bcd84da7bbaa +3148 3281 7864704080569537 esp-idf/esp_system/libesp_system.a d65d762d551d603d +3124 3310 7864704080339223 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj 5db6c0d3d0cb0b00 +2259 3319 7864704071656083 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj ddd86b7ded1c5eed +3282 3383 7864704081917402 esp-idf/efuse/libefuse.a 9d0642fecf3ec0ff +3383 3506 7864704082925023 esp-idf/bootloader_support/libbootloader_support.a b4dbc68254f51866 +3506 3580 7864704084153247 esp-idf/esp_bootloader_format/libesp_bootloader_format.a b8bfdeedf79a494d +3580 3661 7864704084900202 esp-idf/spi_flash/libspi_flash.a 522a36a1f0fc7f07 +3661 3740 7864704085706338 esp-idf/hal/libhal.a 19d32a48dd7faa81 +3740 3808 7864704086498041 esp-idf/micro-ecc/libmicro-ecc.a 126b552bac052cc3 +3808 3933 7864704087179094 esp-idf/soc/libsoc.a a6fe2325f64bc9d6 +3933 4011 7864704088431659 esp-idf/xtensa/libxtensa.a 1c2eef1c0c8278c5 +4011 4081 7864704089212715 esp-idf/main/libmain.a 50c2d3724dbf1325 +4081 4251 7864704089908970 bootloader.elf 7e3bf6a50877c985 +4251 4567 7864704094609584 .bin_timestamp 1d8bd0998d221439 +4251 4567 7864704094609584 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/.bin_timestamp 1d8bd0998d221439 +4567 4687 7864704094769931 esp-idf/esptool_py/CMakeFiles/bootloader_check_size dc5fe9d3d2ffe8cd +4567 4687 7864704094769931 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size dc5fe9d3d2ffe8cd diff --git a/build/bootloader/CMakeCache.txt b/build/bootloader/CMakeCache.txt new file mode 100644 index 0000000..8889d17 --- /dev/null +++ b/build/bootloader/CMakeCache.txt @@ -0,0 +1,444 @@ +# This is the CMakeCache file. +# For build in directory: f:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader +# It was generated by CMake: C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//ASM Compiler Base Flags +CMAKE_ASM_FLAGS:STRING='-mlongcalls ' + +//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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + +//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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + +//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=C:/msys64/mingw64/bin/dlltool.exe + +//Linker Base Flags +CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles ' + +//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 compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/Vecmocon/.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader + +//Git command line client +GIT_EXECUTABLE:FILEPATH=C:/Users/Vecmocon/.espressif/tools/idf-git/2.39.2/cmd/git.exe + +//No help, variable specified on the command line. +IDF_PATH:UNINITIALIZED=C:/Users/Vecmocon/esp/v5.5.1/esp-idf + +//IDF Build Target +IDF_TARGET:STRING=esp32s3 + +//IDF Build Toolchain Type +IDF_TOOLCHAIN:STRING=gcc + +//No help, variable specified on the command line. +IGNORE_EXTRA_COMPONENT:UNINITIALIZED= + +//No help, variable specified on the command line. +PROJECT_SOURCE_DIR:UNINITIALIZED=F:/ESP_32_Projects/esp32-s3_fota_test_wifi + +//No help, variable specified on the command line. +PYTHON:UNINITIALIZED=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/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=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig + +//Value Computed by CMake +bootloader_BINARY_DIR:STATIC=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader + +//Value Computed by CMake +bootloader_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +bootloader_SOURCE_DIR:STATIC=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject + +//Value Computed by CMake +esp-idf_BINARY_DIR:STATIC=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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:/Users/Vecmocon/esp/v5.5.1/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=f:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/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:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/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_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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//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=26 +//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:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30 +//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:/Users/Vecmocon/.espressif/tools/idf-git/2.39.2/cmd/git.exe][v2.39.2.windows.1()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 + diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake b/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake new file mode 100644 index 0000000..7f545d8 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake @@ -0,0 +1,29 @@ +set(CMAKE_ASM_COMPILER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/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 ) + + diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake b/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..58c7589 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake @@ -0,0 +1,82 @@ +set(CMAKE_C_COMPILER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "14.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +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_SIMULATE_VERSION "") + +set(CMAKE_C_COMPILER_SYSROOT "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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 FALSE) + +# 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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake b/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..cc69f6a --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake @@ -0,0 +1,106 @@ +set(CMAKE_CXX_COMPILER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "14.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_SIMULATE_VERSION "") + +set(CMAKE_CXX_COMPILER_SYSROOT "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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 FALSE) + +# 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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/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 "Toolchain does not support discovering `import std` support") + + +### Imported target for C++26 standard library +set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + + diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin b/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..5f1d02a Binary files /dev/null and b/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin b/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..6b758d5 Binary files /dev/null and b/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake b/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake new file mode 100644 index 0000000..0610c29 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22621") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22621") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.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/3.30.2/CompilerIdC/CMakeCCompilerId.c b/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..8d8bb03 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,904 @@ +#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__) + + +#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__) +# 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 +#ifdef COMPILER_VERSION_INTERNAL + 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/3.30.2/CompilerIdC/a.out b/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out new file mode 100644 index 0000000..e84d15b Binary files /dev/null and b/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out differ diff --git a/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..da6c824 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,919 @@ +/* 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__) + + +#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__) +# 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 +#ifdef COMPILER_VERSION_INTERNAL + 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/3.30.2/CompilerIdCXX/a.out b/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out new file mode 100644 index 0000000..a139aab Binary files /dev/null and b/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out differ diff --git a/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml b/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..932b6be --- /dev/null +++ b/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,526 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + The target system is: Generic - - + The host system is: Windows - 10.0.22621 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe + Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy + 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: + F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe + Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy + 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: + F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (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-14.2.0_20241119) 14.2.0 + Copyright (C) 2024 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:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-aarier" + binary: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-aarier" + cmakeVariables: + CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-aarier' + + Run Build Command(s): C:/Users/Vecmocon/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_71e2c + [1/2] C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj -c C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e2c.dir/' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_71e2c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccLiLhTa.s + GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include" + ignoring nonexistent directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e2c.dir/' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccLiLhTa.s + COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj -o cmTC_71e2c && cd ." + Using built-in specs. + COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_71e2c' '-dumpdir' 'cmTC_71e2c.' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccNzqrWf.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_71e2c -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_71e2c' '-dumpdir' 'cmTC_71e2c.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-aarier'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Users/Vecmocon/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_71e2c] + ignore line: [[1/2] C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj -c C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e2c.dir/'] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_71e2c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccLiLhTa.s] + ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e2c.dir/'] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccLiLhTa.s] + ignore line: [COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj -o cmTC_71e2c && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_71e2c' '-dumpdir' 'cmTC_71e2c.'] + link line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccNzqrWf.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_71e2c -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc] + arg [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccNzqrWf.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32s3.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_71e2c] ==> ignore + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_71e2c.dir/CMakeCCompilerABI.c.obj] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00400054\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_71e2c' '-dumpdir' 'cmTC_71e2c.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [] + implicit dirs: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-isghxy" + binary: "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-isghxy" + cmakeVariables: + CMAKE_CXX_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-isghxy' + + Run Build Command(s): C:/Users/Vecmocon/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_3a1de + [1/2] C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3a1de.dir/' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_3a1de.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\cchr4XHw.s + GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include" + ignoring nonexistent directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0 + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3 + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3a1de.dir/' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\cchr4XHw.s + COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_3a1de && cd ." + Using built-in specs. + COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_3a1de' '-dumpdir' 'cmTC_3a1de.' + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccZL4DOB.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_3a1de -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_3a1de' '-dumpdir' 'cmTC_3a1de.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + add: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + collapse include dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-isghxy'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Users/Vecmocon/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_3a1de] + ignore line: [[1/2] C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3a1de.dir/'] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_3a1de.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\cchr4XHw.s] + ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3a1de.dir/'] + ignore line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\cchr4XHw.s] + ignore line: [COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_3a1de && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.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-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/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 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_3a1de' '-dumpdir' 'cmTC_3a1de.'] + link line: [ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccZL4DOB.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_3a1de -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc] + arg [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\Vecmocon\\AppData\\Local\\Temp\\ccZL4DOB.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32s3.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_3a1de] ==> ignore + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_3a1de.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + ignore line: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00400054\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_3a1de' '-dumpdir' 'cmTC_3a1de.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit objs: [] + implicit dirs: [C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + +... diff --git a/build/bootloader/CMakeFiles/TargetDirectories.txt b/build/bootloader/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..be94c32 --- /dev/null +++ b/build/bootloader/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,92 @@ +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/menuconfig.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/confserver.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/save-defconfig.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/gen_project_binary.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/app.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/erase_flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/merge-bin.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/monitor.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/_project_elf_src.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/bootloader.elf.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/size.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/size-files.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/size-components.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/dfu.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/dfu-list.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/dfu-flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/uf2.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/uf2-app.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_security/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir diff --git a/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj b/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj new file mode 100644 index 0000000..d57c67e Binary files /dev/null and b/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.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..ca44e5d --- /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_esp32s3.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..3dc2aed --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +fcae32885b0296b32044cb99ecbdc50d98dddb83 diff --git a/build/bootloader/CMakeFiles/git-data/grabRef.cmake b/build/bootloader/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..b264207 --- /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 "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "C:/Users/Vecmocon/esp/v5.5.1/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}" "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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..3dc2aed --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +fcae32885b0296b32044cb99ecbdc50d98dddb83 diff --git a/build/bootloader/CMakeFiles/rules.ninja b/build/bootloader/CMakeFiles/rules.ninja new file mode 100644 index 0000000..1f01c07 --- /dev/null +++ b/build/bootloader/CMakeFiles/rules.ninja @@ -0,0 +1,348 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# 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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking C executable $TARGET_FILE + 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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Vecmocon\.espressif\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-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:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Users\Vecmocon\.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:\Users\Vecmocon\.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..7b49d5b 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..2f2d987 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..cbd92c8 --- /dev/null +++ b/build/bootloader/bootloader.map @@ -0,0 +1,7410 @@ +Archive member included to satisfy reference by file (symbol) + +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_esp32s3.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_init) +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_esp32s3.c.obj) (bootloader_clock_configure) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.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(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_esp32s3.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_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.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_esp32s3.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_esp32s3.c.obj) (bootloader_console_init) +esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) (bootloader_enable_qio_mode) +esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (ESP_EFUSE_DIS_DIRECT_BOOT) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_enable_rom_secure_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_fill_buff) +esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_get_key_dis_read) +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/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (g_dig_dbias_pvt_240m) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (rtc_sleep_pu) +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) (rtc_clk_cal) +esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) (esp_rom_install_uart_printf) +esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) (esp_log_timestamp) +esp-idf/hal/libhal.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/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_utility.c.obj) (mmu_hal_unmap_all) +esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) (cache_hal_init) +esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) (spi_flash_wrap_probe) +esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) (Cache_Suspend_ICache) +esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) (cache_writeback_items_freeze) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__ashldi3) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__lshrdi3) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (__bswapsi2) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) (__udivdi3) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) (__umoddi3) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bzero) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) (memcmp) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) (_impure_data) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (memcpy) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) (memset) + +Discarded input sections + + .text 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj + .data 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj + .bss 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj + .comment 0x00000000 0x30 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.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) + .literal.__getreent + 0x00000000 0x4 esp-idf/main/libmain.a(bootloader_start.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) + .text.__getreent + 0x00000000 0x8 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 0x76 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 0x5e 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 0xae 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 0x22 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x00000000 0x14 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 0x62 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x00000000 0x24 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) + .literal.bootloader_sha512_start + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha512_data + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha512_finish + 0x00000000 0x1c 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_sha512_start + 0x00000000 0x1f esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha512_data + 0x00000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha512_finish + 0x00000000 0x31 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) + .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_esp32s3.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.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) + .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 0x110 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 0x72 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 0xc2 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.1 + 0x00000000 0x3fd esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x25e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.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.7.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 0x5b 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 0x9e 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_esp32s3.c.obj) + .iram1.1.literal + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3.literal + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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 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) + .iram1.5.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.9.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.5 0x00000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.9 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.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_SYS_DATA_PART2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA_MAC_CUSTOM + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OCODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_TEMP_CALIB + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR_HI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIG_DBIAS_HVT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_DIG_DBIAS20 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_RTC_DBIAS20 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_DIG_LDO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_RTC_LDO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_CAP + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PKG_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR_LO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D7 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D6 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_DQS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_WP + 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_SPI_PAD_CONFIG_CS + 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_MAC + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG_DOWNLOAD_MODE + 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_FORCE_SEND_RESUME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_PAGE_SIZE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TYPE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PIN_POWER_SELECTION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_PRINT_CONTROL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DIRECT_BOOT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TPUW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_PHY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_STRAP_JTAG_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WDT_DELAY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_XPD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXT_PHY_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXCHG_PINS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_PAD_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SOFT_DIS_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_TWAI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_DCACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DCACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY0 + 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_SOFT_DIS_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXT_PHY_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY0 + 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_BLOCK_USR_DATA + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_OCODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_TEMP_CALIB + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIG_DBIAS_HVT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_V_DIG_DBIAS20 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_V_RTC_DBIAS20 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_K_DIG_LDO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_K_RTC_LDO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PKG_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_WP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS + 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_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE + 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_FORCE_SEND_RESUME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_ECC_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_PAGE_SIZE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TYPE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PIN_POWER_SELECTION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_ECC_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TPUW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WDT_DELAY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_XPD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_PHY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_STRAP_JTAG_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_PAD_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_TWAI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_OTG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_DCACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DCACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_ICACHE + 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.SYS_DATA_PART2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY5 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY4 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY3 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY2 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY1 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY0 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USER_DATA_MAC_CUSTOM + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USER_DATA + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.OCODE 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.TEMP_CALIB + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.OPTIONAL_UNIQUE_ID + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR_HI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIG_DBIAS_HVT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.V_DIG_DBIAS20 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.V_RTC_DBIAS20 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.K_DIG_LDO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.K_RTC_LDO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PSRAM_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PSRAM_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PSRAM_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PKG_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR_LO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D7 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D6 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_DQS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_WP + 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.SPI_PAD_CONFIG_CS + 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.MAC 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG_DOWNLOAD_MODE + 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.FORCE_SEND_RESUME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_PAGE_SIZE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_TYPE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PIN_POWER_SELECTION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.UART_PRINT_CONTROL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DIRECT_BOOT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_TPUW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_PHY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.STRAP_JTAG_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WDT_DELAY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_XPD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_EXT_PHY_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_EXCHG_PINS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_PAD_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SOFT_DIS_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_TWAI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_FORCE_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_DCACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DCACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY0 + 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_SOFT_DIS_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXT_PHY_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXCHG_PINS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY0 + 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_BLOCK_USR_DATA + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_OCODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_TEMP_CALIB + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SYS_DATA_PART1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MINOR_HI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIG_DBIAS_HVT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_V_DIG_DBIAS20 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_V_RTC_DBIAS20 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_K_DIG_LDO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_K_RTC_LDO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_CAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PKG_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MINOR_LO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D7 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D6 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_DQS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_WP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_HD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS + 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_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE + 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_FORCE_SEND_RESUME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_ECC_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_PAGE_SIZE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TYPE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PIN_POWER_SELECTION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_ECC_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TPUW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WDT_DELAY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_XPD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_PHY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_STRAP_JTAG_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_PAD_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_TWAI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_OTG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_DCACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DCACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_ICACHE + 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 0x2e4c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00000000 0x119 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 0x281 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x00000000 0x308a 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_rom_download_mode + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_set_rom_log_scheme + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x10 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 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x1e 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 0x3c0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x184 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x15 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 0x482 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0x64d 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 0x54 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 0x56 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 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0x62 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 0x8b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x42 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 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x46 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 0x46 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 0x4c 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 0x61 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 0xe5 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 0x133f 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 0x734 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 0x14e2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x00000000 0x9d3 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 0x38 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 0x55 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 0x115 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x47 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 0x1a 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 0x63 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x31 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 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_read_reg + 0x00000000 0x43 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 0x3c 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 0x7d 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 0x9e 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 0x24 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 0x15fb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x474 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0x1085 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 0x320 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0x1a10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0xb47 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_block_is_empty + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_purpose_field + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key + 0x00000000 0x4 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_get_key_purpose + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_purpose + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x8 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_key_block_unused + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_unused_key_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_count_unused_key_blocks + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_digest_revoke + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_digest_revoke + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_secure_boot_read_key_digests + 0x00000000 0x24 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_block_is_empty + 0x00000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x00000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_purpose_field + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.1 + 0x00000000 0x8c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x35 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_purpose + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x49 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_unused_key_block + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_count_unused_key_blocks + 0x00000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_key.str1.1 + 0x00000000 0x63 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0xee esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.1 + 0x00000000 0xcc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0xe2 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_digest_revoke.str1.1 + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_digest_revoke + 0x00000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_digest_revoke + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_secure_boot_read_key_digests.str1.1 + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_secure_boot_read_key_digests + 0x00000000 0x6e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$0 + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$1 + 0x00000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$2 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$3 + 0x00000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$4 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$5 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_revoke_table + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00000000 0x268 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x00000000 0x1759 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00000000 0x418 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x00000000 0xa81 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00000000 0x170 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000 0x16a0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x00000000 0x118c 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 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip_opt + 0x00000000 0xac 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 0x20 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 0x11 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) + .rodata.esp_efuse_utility_burn_chip_opt.str1.1 + 0x00000000 0x1a7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip_opt + 0x00000000 0x218 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 0x71 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0xa18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x29d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0x3a0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0x108 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0xebb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0x891 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_bbpll_add_consumer + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_remove_consumer + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enable_external + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_disable_external + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x00000000 0x4 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_8md256_enabled + 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_cpu_set_to_default_config + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal + 0x00000000 0xc 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_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_bbpll_add_consumer + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_remove_consumer + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable_external + 0x00000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_disable_external + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0x1e 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_8md256_enabled + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_set_to_default_config + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x25 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_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.get_rtc_dbias_by_efuse$constprop$0 + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_init + 0x00000000 0x11c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_get_config + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x00000000 0x4 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.get_rtc_dbias_by_efuse$constprop$0 + 0x00000000 0xae esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .rodata.rtc_init.str1.1 + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_init + 0x00000000 0x6c9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x00000000 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_sleep_pu + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_get_default_config + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x00000000 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x00000000 0xc 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) + .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) + .text.rtc_sleep_pu + 0x00000000 0x174 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.rtc_sleep_get_default_config.str1.1 + 0x00000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x00000000 0x14c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.rtc_sleep_init.str1.1 + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x00000000 0x3ad esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x00000000 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x00000000 0xae esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.__func__$0 + 0x00000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.__func__$1 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_info 0x00000000 0x8e7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_abbrev 0x00000000 0x25a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_loc 0x00000000 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_line 0x00000000 0x102e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_str 0x00000000 0x10a7 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) + .literal.rtc_clk_cal_internal + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_cal_ratio + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.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 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_wait_for_slow_cycle + 0x00000000 0x8 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_internal + 0x00000000 0x1ff esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_clk_cal_ratio.str1.1 + 0x00000000 0x47 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) + .text.rtc_clk_cal + 0x00000000 0xbb 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 0x81 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) + .text.rtc_time_get + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_wait_for_slow_cycle + 0x00000000 0x2d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_freq_cal + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$2 + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$1 + 0x00000000 0xc 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) + .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 0x2b 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) + .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/hal/libhal.a(mpu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.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 0x19 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.3 0x00000000 0x11 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 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x00000000 0x14 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_rs_calculate + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x00000000 0xc 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 0x66 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x50 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0xb esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x59 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_rs_calculate + 0x00000000 0xf esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x53 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.mmu_hal_paddr_to_vaddr + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_region + 0x00000000 0xc esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_vaddr_to_paddr + 0x00000000 0xc 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_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 0x62 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_region + 0x00000000 0x53 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_vaddr_to_paddr + 0x00000000 0x51 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.cache_hal_vaddr_to_cache_level_id$part$0 + 0x00000000 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_suspend + 0x00000000 0x10 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_resume + 0x00000000 0x14 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_is_cache_enabled + 0x00000000 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x4 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_invalidate_addr + 0x00000000 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_writeback_addr + 0x00000000 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_freeze + 0x00000000 0x10 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_unfreeze + 0x00000000 0x10 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_get_cache_line_size + 0x00000000 0xc esp-idf/hal/libhal.a(cache_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_vaddr_to_cache_level_id$part$0 + 0x00000000 0x43 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_suspend + 0x00000000 0x2b esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_resume + 0x00000000 0x37 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_is_cache_enabled + 0x00000000 0x2a esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x29 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_invalidate_addr + 0x00000000 0x23 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_writeback_addr + 0x00000000 0x23 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_freeze + 0x00000000 0x2d esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_unfreeze + 0x00000000 0x2b esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_get_cache_line_size + 0x00000000 0x2d esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.spi_flash_wrap_enable + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .literal.spi_flash_support_wrap_size + 0x00000000 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable + 0x00000000 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .rodata.spi_flash_support_wrap_size.str1.1 + 0x00000000 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text.spi_flash_support_wrap_size + 0x00000000 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .literal.Cache_Count_Flash_Pages + 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Suspend_ICache + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Suspend_DCache + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Freeze_ICache_Enable + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Freeze_DCache_Enable + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_WriteBack_Addr + 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Count_Flash_Pages + 0x00000000 0x17 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Suspend_ICache + 0x00000000 0x1b esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Suspend_DCache + 0x00000000 0x24 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Freeze_ICache_Enable + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Freeze_DCache_Enable + 0x00000000 0x24 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_WriteBack_Addr + 0x00000000 0x95 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_info 0x00000000 0x56a esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_abbrev 0x00000000 0x259 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_loc 0x00000000 0x3df esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_line 0x00000000 0x72e esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_str 0x00000000 0x4fc esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .text 0x00000000 0x56 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_line 0x00000000 0x160 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_info 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_abbrev 0x00000000 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_str 0x00000000 0xc9 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .text 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + .debug_line 0x00000000 0x7b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + .debug_line_str + 0x00000000 0xc6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + .debug_info 0x00000000 0x31 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + .debug_str 0x00000000 0xde C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + .text 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line 0x00000000 0x7b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line_str + 0x00000000 0xc6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + .debug_info 0x00000000 0x31 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + .debug_str 0x00000000 0xde C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + .text 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line 0x00000000 0x6f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line_str + 0x00000000 0xc6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_info 0x00000000 0x31 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_str 0x00000000 0xdf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .literal 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x37 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_info 0x00000000 0xce C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_abbrev 0x00000000 0x68 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_loclists + 0x00000000 0xf5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line 0x00000000 0xef C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_str 0x00000000 0x162 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line_str + 0x00000000 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x254 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_info 0x00000000 0x671 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000 0x18d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_loclists + 0x00000000 0x5b1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_rnglists + 0x00000000 0x5f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_line 0x00000000 0xa29 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_str 0x00000000 0x1d8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_line_str + 0x00000000 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .text 0x00000000 0x2bb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_info 0x00000000 0x6f1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_abbrev 0x00000000 0x1a3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_loclists + 0x00000000 0x5f2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_rnglists + 0x00000000 0x4f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_line 0x00000000 0xc39 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_str 0x00000000 0x1d8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_line_str + 0x00000000 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .literal 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .text 0x00000000 0x12 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_info 0x00000000 0xf1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_abbrev 0x00000000 0xab C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_line 0x00000000 0x8c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_str 0x00000000 0x129 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_line_str + 0x00000000 0x246 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .literal 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .text 0x00000000 0x4f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_info 0x00000000 0x12b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_abbrev 0x00000000 0x90 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_loclists + 0x00000000 0x150 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line 0x00000000 0x17f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_str 0x00000000 0x11c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line_str + 0x00000000 0x23f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .data 0x00000000 0xf4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_info 0x00000000 0x840 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_abbrev 0x00000000 0x174 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_aranges + 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_line 0x00000000 0x51 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_str 0x00000000 0x4e3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_line_str + 0x00000000 0x247 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .literal 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .text 0x00000000 0x135 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line 0x00000000 0x30f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line_str + 0x00000000 0xc4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_info 0x00000000 0x33 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_str 0x00000000 0xd9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .literal 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .text 0x00000000 0x74 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_line 0x00000000 0x146 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_line_str + 0x00000000 0xc4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_info 0x00000000 0x31 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_str 0x00000000 0xd9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + +Memory Configuration + +Name Origin Length Attributes +iram_seg 0x403c8700 0x00003000 xrw +iram_loader_seg 0x403cb700 0x00007000 xrw +dram_seg 0x3fce2700 0x00005000 rw +*default* 0x00000000 0xffffffff + +Linker script and memory map + + 0x00000000 IDF_TARGET_ESP32S3 = 0x0 +LOAD CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.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/micro-ecc/libmicro-ecc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.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/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.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/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.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/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libnosys.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a + 0x4000057c rtc_get_reset_reason = 0x4000057c + 0x40000588 analog_super_wdt_reset_happened = 0x40000588 + 0x40000594 jtag_cpu_reset_happened = 0x40000594 + 0x400005a0 rtc_get_wakeup_cause = 0x400005a0 + 0x400005ac rtc_select_apb_bridge = 0x400005ac + 0x400005b8 rtc_unhold_all_pads = 0x400005b8 + 0x400005c4 ets_is_print_boot = 0x400005c4 + 0x400005d0 ets_printf = 0x400005d0 + 0x400005dc ets_install_putc1 = 0x400005dc + 0x400005e8 ets_install_uart_printf = 0x400005e8 + 0x400005f4 ets_install_putc2 = 0x400005f4 + 0x40000600 PROVIDE (ets_delay_us = 0x40000600) + 0x4000060c ets_get_stack_info = 0x4000060c + 0x40000618 ets_install_lock = 0x40000618 + 0x40000624 ets_backup_dma_copy = 0x40000624 + 0x40000630 ets_apb_backup_init_lock_func = 0x40000630 + 0x4000063c UartRxString = 0x4000063c + 0x40000648 uart_tx_one_char = 0x40000648 + 0x40000654 uart_tx_one_char2 = 0x40000654 + 0x40000660 uart_rx_one_char = 0x40000660 + 0x4000066c uart_rx_one_char_block = 0x4000066c + 0x40000678 uart_rx_readbuff = 0x40000678 + 0x40000684 uartAttach = 0x40000684 + 0x40000690 uart_tx_flush = 0x40000690 + 0x4000069c uart_tx_wait_idle = 0x4000069c + 0x400006a8 uart_div_modify = 0x400006a8 + 0x400006b4 ets_write_char_uart = 0x400006b4 + 0x400006c0 uart_tx_switch = 0x400006c0 + 0x400006cc multofup = 0x400006cc + 0x400006d8 software_reset = 0x400006d8 + 0x400006e4 software_reset_cpu = 0x400006e4 + 0x400006f0 assist_debug_clock_enable = 0x400006f0 + 0x400006fc assist_debug_record_enable = 0x400006fc + 0x40000708 clear_super_wdt_reset_flag = 0x40000708 + 0x40000714 disable_default_watchdog = 0x40000714 + 0x40000720 ets_set_appcpu_boot_addr = 0x40000720 + 0x4000072c esp_rom_set_rtc_wake_addr = 0x4000072c + 0x40000738 esp_rom_get_rtc_wake_addr = 0x40000738 + 0x40000744 send_packet = 0x40000744 + 0x40000750 recv_packet = 0x40000750 + 0x4000075c GetUartDevice = 0x4000075c + 0x40000768 UartDwnLdProc = 0x40000768 + 0x40000774 Uart_Init = 0x40000774 + 0x40000780 ets_set_user_start = 0x40000780 + 0x3ff1fffc ets_rom_layout_p = 0x3ff1fffc + 0x3fcefffc ets_ops_table_ptr = 0x3fcefffc + 0x4000078c mz_adler32 = 0x4000078c + 0x40000798 mz_crc32 = 0x40000798 + 0x400007a4 mz_free = 0x400007a4 + 0x400007b0 tdefl_compress = 0x400007b0 + 0x400007bc tdefl_compress_buffer = 0x400007bc + 0x400007c8 tdefl_compress_mem_to_heap = 0x400007c8 + 0x400007d4 tdefl_compress_mem_to_mem = 0x400007d4 + 0x400007e0 tdefl_compress_mem_to_output = 0x400007e0 + 0x400007ec tdefl_get_adler32 = 0x400007ec + 0x400007f8 tdefl_get_prev_return_status = 0x400007f8 + 0x40000804 tdefl_init = 0x40000804 + 0x40000810 tdefl_write_image_to_png_file_in_memory = 0x40000810 + 0x4000081c tdefl_write_image_to_png_file_in_memory_ex = 0x4000081c + 0x40000828 tinfl_decompress = 0x40000828 + 0x40000834 tinfl_decompress_mem_to_callback = 0x40000834 + 0x40000840 tinfl_decompress_mem_to_heap = 0x40000840 + 0x4000084c tinfl_decompress_mem_to_mem = 0x4000084c + [!provide] PROVIDE (jd_prepare = 0x40000858) + [!provide] PROVIDE (jd_decomp = 0x40000864) + 0x3fcefff8 dsps_fft2r_w_table_fc32_1024 = 0x3fcefff8 + [!provide] PROVIDE (opi_flash_set_lock_func = 0x40000870) + [!provide] PROVIDE (esp_rom_spi_cmd_config = 0x4000087c) + [!provide] PROVIDE (esp_rom_spi_cmd_start = 0x40000888) + [!provide] PROVIDE (esp_rom_opiflash_pin_config = 0x40000894) + [!provide] PROVIDE (esp_rom_spi_set_op_mode = 0x400008a0) + [!provide] PROVIDE (esp_rom_opiflash_mode_reset = 0x400008ac) + [!provide] PROVIDE (esp_rom_opiflash_exec_cmd = 0x400008b8) + [!provide] PROVIDE (esp_rom_opiflash_soft_reset = 0x400008c4) + [!provide] PROVIDE (esp_rom_opiflash_read_id = 0x400008d0) + [!provide] PROVIDE (esp_rom_opiflash_rdsr = 0x400008dc) + [!provide] PROVIDE (esp_rom_opiflash_wait_idle = 0x400008e8) + [!provide] PROVIDE (esp_rom_opiflash_wren = 0x400008f4) + [!provide] PROVIDE (esp_rom_opiflash_erase_sector = 0x40000900) + [!provide] PROVIDE (esp_rom_opiflash_erase_block_64k = 0x4000090c) + [!provide] PROVIDE (esp_rom_opiflash_erase_area = 0x40000918) + [!provide] PROVIDE (esp_rom_opiflash_read = 0x40000924) + [!provide] PROVIDE (esp_rom_opiflash_write = 0x40000930) + [!provide] PROVIDE (esp_rom_spi_set_dtr_swap_mode = 0x4000093c) + [!provide] PROVIDE (esp_rom_opiflash_exit_continuous_read_mode = 0x40000948) + [!provide] PROVIDE (esp_rom_opiflash_legacy_driver_init = 0x40000954) + [!provide] PROVIDE (esp_rom_opiflash_read_raw = 0x4004d9d4) + [!provide] PROVIDE (rom_opiflash_cmd_def = 0x3fcefff4) + [!provide] PROVIDE (rom_spi_usr_cmd_legacy_funcs = 0x3fcefff0) + 0x40000960 PROVIDE (esp_rom_spiflash_wait_idle = 0x40000960) + 0x4000096c PROVIDE (esp_rom_spiflash_write_encrypted = 0x4000096c) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_dest = 0x40000978) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40000984) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40000990) + [!provide] PROVIDE (esp_rom_spiflash_erase_chip = 0x4000099c) + [!provide] PROVIDE (_esp_rom_spiflash_erase_sector = 0x400009a8) + [!provide] PROVIDE (_esp_rom_spiflash_erase_block = 0x400009b4) + [!provide] PROVIDE (_esp_rom_spiflash_write = 0x400009c0) + [!provide] PROVIDE (_esp_rom_spiflash_read = 0x400009cc) + [!provide] PROVIDE (_esp_rom_spiflash_unlock = 0x400009d8) + [!provide] PROVIDE (_SPIEraseArea = 0x400009e4) + [!provide] PROVIDE (_SPI_write_enable = 0x400009f0) + 0x400009fc PROVIDE (esp_rom_spiflash_erase_sector = 0x400009fc) + 0x40000a08 PROVIDE (esp_rom_spiflash_erase_block = 0x40000a08) + 0x40000a14 PROVIDE (esp_rom_spiflash_write = 0x40000a14) + 0x40000a20 PROVIDE (esp_rom_spiflash_read = 0x40000a20) + [!provide] PROVIDE (esp_rom_spiflash_unlock = 0x40000a2c) + [!provide] PROVIDE (SPIEraseArea = 0x40000a38) + [!provide] PROVIDE (SPI_write_enable = 0x40000a44) + 0x40000a50 PROVIDE (esp_rom_spiflash_config_param = 0x40000a50) + [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000a5c) + 0x40000a68 PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40000a68) + [!provide] PROVIDE (esp_rom_spi_flash_auto_sus_res = 0x40000a74) + [!provide] PROVIDE (esp_rom_spi_flash_send_resume = 0x40000a80) + [!provide] PROVIDE (esp_rom_spi_flash_update_id = 0x40000a8c) + 0x40000a98 PROVIDE (esp_rom_spiflash_config_clk = 0x40000a98) + 0x40000aa4 PROVIDE (esp_rom_spiflash_config_readmode = 0x40000aa4) + [!provide] PROVIDE (esp_rom_spiflash_read_status = 0x40000ab0) + [!provide] PROVIDE (esp_rom_spiflash_read_statushigh = 0x40000abc) + [!provide] PROVIDE (esp_rom_spiflash_write_status = 0x40000ac8) + [!provide] PROVIDE (esp_rom_opiflash_cache_mode_config = 0x40000ad4) + [!provide] PROVIDE (esp_rom_spiflash_auto_wait_idle = 0x40000ae0) + [!provide] PROVIDE (spi_flash_attach = 0x40000aec) + [!provide] PROVIDE (spi_flash_get_chip_size = 0x40000af8) + [!provide] PROVIDE (spi_flash_guard_set = 0x40000b04) + [!provide] PROVIDE (spi_flash_guard_get = 0x40000b10) + [!provide] PROVIDE (spi_flash_write_config_set = 0x40000b1c) + [!provide] PROVIDE (spi_flash_write_config_get = 0x40000b28) + [!provide] PROVIDE (spi_flash_safe_write_address_func_set = 0x40000b34) + [!provide] PROVIDE (spi_flash_unlock = 0x40000b40) + [!provide] PROVIDE (spi_flash_erase_range = 0x40000b4c) + [!provide] PROVIDE (spi_flash_erase_sector = 0x40000b58) + [!provide] PROVIDE (spi_flash_write = 0x40000b64) + [!provide] PROVIDE (spi_flash_read = 0x40000b70) + [!provide] PROVIDE (spi_flash_write_encrypted = 0x40000b7c) + [!provide] PROVIDE (spi_flash_read_encrypted = 0x40000b88) + [!provide] PROVIDE (spi_flash_mmap_os_func_set = 0x40000b94) + [!provide] PROVIDE (spi_flash_mmap_page_num_init = 0x40000ba0) + [!provide] PROVIDE (spi_flash_mmap = 0x40000bac) + [!provide] PROVIDE (spi_flash_mmap_pages = 0x40000bb8) + [!provide] PROVIDE (spi_flash_munmap = 0x40000bc4) + [!provide] PROVIDE (spi_flash_mmap_dump = 0x40000bd0) + [!provide] PROVIDE (spi_flash_check_and_flush_cache = 0x40000bdc) + [!provide] PROVIDE (spi_flash_mmap_get_free_pages = 0x40000be8) + [!provide] PROVIDE (spi_flash_cache2phys = 0x40000bf4) + [!provide] PROVIDE (spi_flash_phys2cache = 0x40000c00) + [!provide] PROVIDE (spi_flash_disable_cache = 0x40000c0c) + [!provide] PROVIDE (spi_flash_restore_cache = 0x40000c18) + [!provide] PROVIDE (spi_flash_cache_enabled = 0x40000c24) + [!provide] PROVIDE (spi_flash_enable_cache = 0x40000c30) + [!provide] PROVIDE (spi_cache_mode_switch = 0x40000c3c) + [!provide] PROVIDE (spi_common_set_dummy_output = 0x40000c48) + [!provide] PROVIDE (spi_common_set_flash_cs_timing = 0x40000c54) + [!provide] PROVIDE (esp_rom_spi_set_address_bit_len = 0x40000c60) + [!provide] PROVIDE (esp_enable_cache_flash_wrap = 0x40000c6c) + [!provide] PROVIDE (SPILock = 0x40000c78) + [!provide] PROVIDE (SPIMasterReadModeCnfig = 0x40000c84) + [!provide] PROVIDE (SPI_Common_Command = 0x40000c90) + [!provide] PROVIDE (SPI_WakeUp = 0x40000c9c) + [!provide] PROVIDE (SPI_block_erase = 0x40000ca8) + [!provide] PROVIDE (SPI_chip_erase = 0x40000cb4) + [!provide] PROVIDE (SPI_init = 0x40000cc0) + [!provide] PROVIDE (SPI_page_program = 0x40000ccc) + [!provide] PROVIDE (SPI_read_data = 0x40000cd8) + [!provide] PROVIDE (SPI_sector_erase = 0x40000ce4) + [!provide] PROVIDE (SelectSpiFunction = 0x40000cf0) + [!provide] PROVIDE (SetSpiDrvs = 0x40000cfc) + [!provide] PROVIDE (Wait_SPI_Idle = 0x40000d08) + [!provide] PROVIDE (spi_dummy_len_fix = 0x40000d14) + [!provide] PROVIDE (Disable_QMode = 0x40000d20) + [!provide] PROVIDE (Enable_QMode = 0x40000d2c) + [!provide] PROVIDE (rom_spiflash_legacy_funcs = 0x3fceffe8) + 0x3fceffe4 PROVIDE (rom_spiflash_legacy_data = 0x3fceffe4) + [!provide] PROVIDE (g_flash_guard_ops = 0x3fceffec) + [!provide] PROVIDE (spi_flash_hal_poll_cmd_done = 0x40000d38) + [!provide] PROVIDE (spi_flash_hal_device_config = 0x40000d44) + [!provide] PROVIDE (spi_flash_hal_configure_host_io_mode = 0x40000d50) + [!provide] PROVIDE (spi_flash_hal_common_command = 0x40000d5c) + [!provide] PROVIDE (spi_flash_hal_read = 0x40000d68) + [!provide] PROVIDE (spi_flash_hal_erase_chip = 0x40000d74) + [!provide] PROVIDE (spi_flash_hal_erase_sector = 0x40000d80) + [!provide] PROVIDE (spi_flash_hal_erase_block = 0x40000d8c) + [!provide] PROVIDE (spi_flash_hal_program_page = 0x40000d98) + [!provide] PROVIDE (spi_flash_hal_set_write_protect = 0x40000da4) + [!provide] PROVIDE (spi_flash_hal_host_idle = 0x40000db0) + [!provide] PROVIDE (spi_flash_chip_generic_probe = 0x40000ed0) + [!provide] PROVIDE (spi_flash_chip_generic_detect_size = 0x40000edc) + [!provide] PROVIDE (spi_flash_chip_generic_write = 0x40000ee8) + [!provide] PROVIDE (spi_flash_chip_generic_write_encrypted = 0x40000ef4) + [!provide] PROVIDE (spi_flash_chip_generic_set_write_protect = 0x40000f00) + [!provide] PROVIDE (spi_flash_common_write_status_16b_wrsr = 0x40000f0c) + [!provide] PROVIDE (spi_flash_chip_generic_reset = 0x40000f18) + [!provide] PROVIDE (spi_flash_chip_generic_erase_chip = 0x40000f24) + [!provide] PROVIDE (spi_flash_chip_generic_erase_sector = 0x40000f30) + [!provide] PROVIDE (spi_flash_chip_generic_erase_block = 0x40000f3c) + [!provide] PROVIDE (spi_flash_chip_generic_page_program = 0x40000f48) + [!provide] PROVIDE (spi_flash_chip_generic_get_write_protect = 0x40000f54) + [!provide] PROVIDE (spi_flash_common_read_status_16b_rdsr_rdsr2 = 0x40000f60) + [!provide] PROVIDE (spi_flash_chip_generic_read_reg = 0x40000f6c) + [!provide] PROVIDE (spi_flash_chip_generic_yield = 0x40000f78) + [!provide] PROVIDE (spi_flash_generic_wait_host_idle = 0x40000f84) + [!provide] PROVIDE (spi_flash_chip_generic_wait_idle = 0x40000f90) + [!provide] PROVIDE (spi_flash_chip_generic_config_host_io_mode = 0x40000f9c) + [!provide] PROVIDE (spi_flash_chip_generic_read = 0x40000fa8) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr2 = 0x40000fb4) + [!provide] PROVIDE (spi_flash_chip_generic_get_io_mode = 0x40000fc0) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr = 0x40000fcc) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr = 0x40000fd8) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr2 = 0x40000fe4) + [!provide] PROVIDE (spi_flash_common_set_io_mode = 0x40000ff0) + [!provide] PROVIDE (spi_flash_chip_generic_set_io_mode = 0x40000ffc) + [!provide] PROVIDE (spi_flash_chip_gd_get_io_mode = 0x40001008) + [!provide] PROVIDE (spi_flash_chip_gd_probe = 0x40001014) + [!provide] PROVIDE (spi_flash_chip_gd_set_io_mode = 0x40001020) + [!provide] PROVIDE (spi_flash_chip_generic_config_data = 0x3fceffe0) + [!provide] PROVIDE (memspi_host_read_id_hs = 0x4000102c) + [!provide] PROVIDE (memspi_host_read_status_hs = 0x40001038) + [!provide] PROVIDE (memspi_host_flush_cache = 0x40001044) + [!provide] PROVIDE (memspi_host_erase_chip = 0x40001050) + [!provide] PROVIDE (memspi_host_erase_sector = 0x4000105c) + [!provide] PROVIDE (memspi_host_erase_block = 0x40001068) + [!provide] PROVIDE (memspi_host_program_page = 0x40001074) + [!provide] PROVIDE (memspi_host_read = 0x40001080) + [!provide] PROVIDE (memspi_host_set_write_protect = 0x4000108c) + [!provide] PROVIDE (memspi_host_set_max_read_len = 0x40001098) + [!provide] PROVIDE (memspi_host_read_data_slicer = 0x400010a4) + [!provide] PROVIDE (memspi_host_write_data_slicer = 0x400010b0) + [!provide] PROVIDE (esp_flash_chip_driver_initialized = 0x400010bc) + [!provide] PROVIDE (esp_flash_read_id = 0x400010c8) + [!provide] PROVIDE (esp_flash_get_size = 0x400010d4) + [!provide] PROVIDE (esp_flash_erase_chip = 0x400010e0) + [!provide] PROVIDE (rom_esp_flash_erase_region = 0x400010ec) + [!provide] PROVIDE (esp_flash_get_chip_write_protect = 0x400010f8) + [!provide] PROVIDE (esp_flash_set_chip_write_protect = 0x40001104) + [!provide] PROVIDE (esp_flash_get_protectable_regions = 0x40001110) + [!provide] PROVIDE (esp_flash_get_protected_region = 0x4000111c) + [!provide] PROVIDE (esp_flash_set_protected_region = 0x40001128) + [!provide] PROVIDE (esp_flash_read = 0x40001134) + [!provide] PROVIDE (rom_esp_flash_write = 0x40001140) + [!provide] PROVIDE (rom_esp_flash_write_encrypted = 0x4000114c) + [!provide] PROVIDE (esp_flash_read_encrypted = 0x40001158) + [!provide] PROVIDE (esp_flash_get_io_mode = 0x40001164) + [!provide] PROVIDE (esp_flash_set_io_mode = 0x40001170) + [!provide] PROVIDE (spi_flash_boot_attach = 0x4000117c) + [!provide] PROVIDE (spi_flash_dump_counters = 0x40001188) + [!provide] PROVIDE (spi_flash_get_counters = 0x40001194) + [!provide] PROVIDE (spi_flash_op_counters_config = 0x400011a0) + [!provide] PROVIDE (spi_flash_reset_counters = 0x400011ac) + [!provide] PROVIDE (esp_flash_read_chip_id = 0x400011b8) + [!provide] PROVIDE (detect_spi_flash_chip = 0x400011c4) + [!provide] PROVIDE (esp_rom_spiflash_write_disable = 0x400011d0) + [!provide] PROVIDE (esp_flash_default_chip = 0x3fceffdc) + [!provide] PROVIDE (esp_flash_api_funcs = 0x3fceffd8) + 0x400015fc PROVIDE (Cache_Get_ICache_Line_Size = 0x400015fc) + 0x40001608 PROVIDE (Cache_Get_DCache_Line_Size = 0x40001608) + [!provide] PROVIDE (Cache_Get_Mode = 0x40001614) + [!provide] PROVIDE (Cache_Set_ICache_Mode = 0x40001620) + [!provide] PROVIDE (Cache_Set_DCache_Mode = 0x4000162c) + [!provide] PROVIDE (Cache_Address_Through_ICache = 0x40001638) + [!provide] PROVIDE (Cache_Address_Through_DCache = 0x40001644) + [!provide] PROVIDE (Cache_Set_Default_Mode = 0x40001650) + [!provide] PROVIDE (Cache_Enable_Defalut_ICache_Mode = 0x4000165c) + 0x40001668 PROVIDE (ROM_Boot_Cache_Init = 0x40001668) + [!provide] PROVIDE (Cache_Invalidate_ICache_Items = 0x40001674) + [!provide] PROVIDE (Cache_Invalidate_DCache_Items = 0x40001680) + [!provide] PROVIDE (Cache_Clean_Items = 0x4000168c) + [!provide] PROVIDE (Cache_WriteBack_Items = 0x40001698) + [!provide] PROVIDE (Cache_Op_Addr = 0x400016a4) + 0x400016b0 PROVIDE (Cache_Invalidate_Addr = 0x400016b0) + [!provide] PROVIDE (Cache_Clean_Addr = 0x400016bc) + 0x400016c8 PROVIDE (rom_Cache_WriteBack_Addr = 0x400016c8) + [!provide] PROVIDE (Cache_Invalidate_ICache_All = 0x400016d4) + [!provide] PROVIDE (Cache_Invalidate_DCache_All = 0x400016e0) + [!provide] PROVIDE (Cache_Clean_All = 0x400016ec) + [!provide] PROVIDE (Cache_WriteBack_All = 0x400016f8) + [!provide] PROVIDE (Cache_Mask_All = 0x40001704) + [!provide] PROVIDE (Cache_UnMask_Dram0 = 0x40001710) + [!provide] PROVIDE (Cache_Suspend_ICache_Autoload = 0x4000171c) + [!provide] PROVIDE (Cache_Resume_ICache_Autoload = 0x40001728) + 0x40001734 PROVIDE (Cache_Suspend_DCache_Autoload = 0x40001734) + 0x40001740 PROVIDE (Cache_Resume_DCache_Autoload = 0x40001740) + [!provide] PROVIDE (Cache_Start_ICache_Preload = 0x4000174c) + [!provide] PROVIDE (Cache_ICache_Preload_Done = 0x40001758) + [!provide] PROVIDE (Cache_End_ICache_Preload = 0x40001764) + [!provide] PROVIDE (Cache_Start_DCache_Preload = 0x40001770) + [!provide] PROVIDE (Cache_DCache_Preload_Done = 0x4000177c) + [!provide] PROVIDE (Cache_End_DCache_Preload = 0x40001788) + [!provide] PROVIDE (Cache_Config_ICache_Autoload = 0x40001794) + [!provide] PROVIDE (Cache_Config_ICache_Region_Autoload = 0x400017a0) + [!provide] PROVIDE (Cache_Enable_ICache_Autoload = 0x400017ac) + [!provide] PROVIDE (Cache_Disable_ICache_Autoload = 0x400017b8) + [!provide] PROVIDE (Cache_Config_DCache_Autoload = 0x400017c4) + [!provide] PROVIDE (Cache_Config_DCache_Region_Autoload = 0x400017d0) + [!provide] PROVIDE (Cache_Enable_DCache_Autoload = 0x400017dc) + [!provide] PROVIDE (Cache_Disable_DCache_Autoload = 0x400017e8) + [!provide] PROVIDE (Cache_Enable_ICache_PreLock = 0x400017f4) + [!provide] PROVIDE (Cache_Disable_ICache_PreLock = 0x40001800) + [!provide] PROVIDE (Cache_Lock_ICache_Items = 0x4000180c) + [!provide] PROVIDE (Cache_Unlock_ICache_Items = 0x40001818) + [!provide] PROVIDE (Cache_Enable_DCache_PreLock = 0x40001824) + [!provide] PROVIDE (Cache_Disable_DCache_PreLock = 0x40001830) + [!provide] PROVIDE (Cache_Lock_DCache_Items = 0x4000183c) + [!provide] PROVIDE (Cache_Unlock_DCache_Items = 0x40001848) + [!provide] PROVIDE (Cache_Lock_Addr = 0x40001854) + [!provide] PROVIDE (Cache_Unlock_Addr = 0x40001860) + 0x4000186c PROVIDE (Cache_Disable_ICache = 0x4000186c) + 0x40001878 PROVIDE (Cache_Enable_ICache = 0x40001878) + 0x40001884 PROVIDE (Cache_Disable_DCache = 0x40001884) + 0x40001890 PROVIDE (Cache_Enable_DCache = 0x40001890) + 0x4000189c PROVIDE (rom_Cache_Suspend_ICache = 0x4000189c) + 0x400018a8 PROVIDE (Cache_Resume_ICache = 0x400018a8) + 0x400018b4 PROVIDE (rom_Cache_Suspend_DCache = 0x400018b4) + 0x400018c0 PROVIDE (Cache_Resume_DCache = 0x400018c0) + [!provide] PROVIDE (Cache_Occupy_Items = 0x400018cc) + [!provide] PROVIDE (Cache_Occupy_Addr = 0x400018d8) + 0x400018e4 PROVIDE (rom_Cache_Freeze_ICache_Enable = 0x400018e4) + 0x400018f0 PROVIDE (Cache_Freeze_ICache_Disable = 0x400018f0) + 0x400018fc PROVIDE (rom_Cache_Freeze_DCache_Enable = 0x400018fc) + 0x40001908 PROVIDE (Cache_Freeze_DCache_Disable = 0x40001908) + [!provide] PROVIDE (Cache_Set_IDROM_MMU_Size = 0x40001914) + [!provide] PROVIDE (flash2spiram_instruction_offset = 0x40001920) + [!provide] PROVIDE (flash2spiram_rodata_offset = 0x4000192c) + [!provide] PROVIDE (flash_instr_rodata_start_page = 0x40001938) + [!provide] PROVIDE (flash_instr_rodata_end_page = 0x40001944) + [!provide] PROVIDE (Cache_Set_IDROM_MMU_Info = 0x40001950) + [!provide] PROVIDE (Cache_Get_IROM_MMU_End = 0x4000195c) + [!provide] PROVIDE (Cache_Get_DROM_MMU_End = 0x40001968) + [!provide] PROVIDE (Cache_Owner_Init = 0x40001974) + [!provide] PROVIDE (Cache_Occupy_ICache_MEMORY = 0x40001980) + [!provide] PROVIDE (Cache_Occupy_DCache_MEMORY = 0x4000198c) + [!provide] PROVIDE (Cache_MMU_Init = 0x40001998) + [!provide] PROVIDE (Cache_Ibus_MMU_Set = 0x400019a4) + [!provide] PROVIDE (Cache_Dbus_MMU_Set = 0x400019b0) + 0x400019bc PROVIDE (rom_Cache_Count_Flash_Pages = 0x400019bc) + [!provide] PROVIDE (Cache_Flash_To_SPIRAM_Copy = 0x400019c8) + [!provide] PROVIDE (Cache_Travel_Tag_Memory = 0x400019d4) + [!provide] PROVIDE (Cache_Travel_Tag_Memory2 = 0x400019e0) + [!provide] PROVIDE (Cache_Get_Virtual_Addr = 0x400019ec) + [!provide] PROVIDE (Cache_Get_Memory_BaseAddr = 0x400019f8) + [!provide] PROVIDE (Cache_Get_Memory_Addr = 0x40001a04) + [!provide] PROVIDE (Cache_Get_Memory_value = 0x40001a10) + [!provide] PROVIDE (rom_config_instruction_cache_mode = 0x40001a1c) + [!provide] PROVIDE (rom_config_data_cache_mode = 0x40001a28) + [!provide] PROVIDE (rom_cache_op_cb = 0x3fceffc8) + [!provide] PROVIDE (rom_cache_internal_table_ptr = 0x3fceffc4) + 0x40001a34 ets_get_apb_freq = 0x40001a34 + 0x40001a40 ets_get_cpu_frequency = 0x40001a40 + 0x40001a4c ets_update_cpu_frequency = 0x40001a4c + 0x40001a58 ets_get_printf_channel = 0x40001a58 + 0x40001a64 ets_get_xtal_div = 0x40001a64 + 0x40001a70 ets_set_xtal_div = 0x40001a70 + 0x40001a7c ets_get_xtal_freq = 0x40001a7c + 0x40001a88 gpio_input_get = 0x40001a88 + 0x40001a94 gpio_matrix_in = 0x40001a94 + 0x40001aa0 gpio_matrix_out = 0x40001aa0 + 0x40001ac4 gpio_output_set = 0x40001ac4 + 0x40001ad0 gpio_pad_hold = 0x40001ad0 + 0x40001adc gpio_pad_input_disable = 0x40001adc + 0x40001ae8 gpio_pad_input_enable = 0x40001ae8 + 0x40001af4 gpio_pad_pulldown = 0x40001af4 + 0x40001b00 gpio_pad_pullup = 0x40001b00 + 0x40001b0c gpio_pad_select_gpio = 0x40001b0c + 0x40001b18 gpio_pad_set_drv = 0x40001b18 + 0x40001b24 gpio_pad_unhold = 0x40001b24 + 0x40001b30 gpio_pin_wakeup_disable = 0x40001b30 + 0x40001b3c gpio_pin_wakeup_enable = 0x40001b3c + 0x40001b48 gpio_bypass_matrix_in = 0x40001b48 + 0x40001b54 intr_matrix_set = 0x40001b54 + 0x40001b60 ets_intr_lock = 0x40001b60 + 0x40001b6c ets_intr_unlock = 0x40001b6c + 0x40001b78 ets_isr_attach = 0x40001b78 + 0x40001b84 ets_isr_mask = 0x40001b84 + 0x40001b90 ets_isr_unmask = 0x40001b90 + 0x40001b9c xthal_bcopy = 0x40001b9c + 0x40001ba8 xthal_memcpy = 0x40001ba8 + 0x40001bb4 xthal_get_ccompare = 0x40001bb4 + 0x40001bc0 xthal_set_ccompare = 0x40001bc0 + 0x40001bcc xthal_get_ccount = 0x40001bcc + 0x40001bd8 xthal_get_interrupt = 0x40001bd8 + 0x40001be4 xthal_set_intclear = 0x40001be4 + 0x40001bf0 _xtos_ints_off = 0x40001bf0 + 0x40001bfc _xtos_ints_on = 0x40001bfc + 0x40001c08 _xtos_restore_intlevel = 0x40001c08 + 0x40001c14 _xtos_set_exception_handler = 0x40001c14 + 0x40001c20 _xtos_set_interrupt_handler = 0x40001c20 + 0x40001c2c _xtos_set_interrupt_handler_arg = 0x40001c2c + 0x40001c38 _xtos_set_intlevel = 0x40001c38 + 0x40001c44 _xtos_set_vpri = 0x40001c44 + 0x40001c50 md5_vector = 0x40001c50 + 0x40001c5c MD5Init = 0x40001c5c + 0x40001c68 MD5Update = 0x40001c68 + 0x40001c74 MD5Final = 0x40001c74 + 0x40001c80 hmac_md5_vector = 0x40001c80 + 0x40001c8c hmac_md5 = 0x40001c8c + 0x40001c98 crc32_le = 0x40001c98 + 0x40001ca4 crc32_be = 0x40001ca4 + 0x40001cb0 crc16_le = 0x40001cb0 + 0x40001cbc crc16_be = 0x40001cbc + 0x40001cc8 crc8_le = 0x40001cc8 + 0x40001cd4 crc8_be = 0x40001cd4 + 0x40001ce0 esp_crc8 = 0x40001ce0 + 0x40001cec ets_sha_enable = 0x40001cec + 0x40001cf8 ets_sha_disable = 0x40001cf8 + 0x40001d04 ets_sha_get_state = 0x40001d04 + 0x40001d10 ets_sha_init = 0x40001d10 + 0x40001d1c ets_sha_process = 0x40001d1c + 0x40001d28 ets_sha_starts = 0x40001d28 + 0x40001d34 ets_sha_update = 0x40001d34 + 0x40001d40 ets_sha_finish = 0x40001d40 + 0x40001d4c ets_sha_clone = 0x40001d4c + 0x40001d58 ets_hmac_enable = 0x40001d58 + 0x40001d64 ets_hmac_disable = 0x40001d64 + 0x40001d70 ets_hmac_calculate_message = 0x40001d70 + 0x40001d7c ets_hmac_calculate_downstream = 0x40001d7c + 0x40001d88 ets_hmac_invalidate_downstream = 0x40001d88 + 0x40001d94 ets_jtag_enable_temporarily = 0x40001d94 + 0x40001da0 ets_aes_enable = 0x40001da0 + 0x40001dac ets_aes_disable = 0x40001dac + 0x40001db8 ets_aes_setkey = 0x40001db8 + 0x40001dc4 ets_aes_block = 0x40001dc4 + 0x40001dd0 ets_bigint_enable = 0x40001dd0 + 0x40001ddc ets_bigint_disable = 0x40001ddc + 0x40001de8 ets_bigint_multiply = 0x40001de8 + 0x40001df4 ets_bigint_modmult = 0x40001df4 + 0x40001e00 ets_bigint_modexp = 0x40001e00 + 0x40001e0c ets_bigint_wait_finish = 0x40001e0c + 0x40001e18 ets_bigint_getz = 0x40001e18 + 0x40001e24 ets_ds_enable = 0x40001e24 + 0x40001e30 ets_ds_disable = 0x40001e30 + 0x40001e3c ets_ds_start_sign = 0x40001e3c + 0x40001e48 ets_ds_is_busy = 0x40001e48 + 0x40001e54 ets_ds_finish_sign = 0x40001e54 + 0x40001e60 ets_ds_encrypt_params = 0x40001e60 + 0x40001e6c ets_aes_setkey_dec = 0x40001e6c + 0x40001e78 ets_aes_setkey_enc = 0x40001e78 + 0x40001e84 ets_mgf1_sha256 = 0x40001e84 + 0x40001e90 ets_efuse_read = 0x40001e90 + 0x40001e9c ets_efuse_program = 0x40001e9c + 0x40001ea8 ets_efuse_clear_program_registers = 0x40001ea8 + 0x40001eb4 ets_efuse_write_key = 0x40001eb4 + 0x40001ec0 ets_efuse_get_read_register_address = 0x40001ec0 + 0x40001ecc ets_efuse_get_key_purpose = 0x40001ecc + 0x40001ed8 ets_efuse_key_block_unused = 0x40001ed8 + 0x40001ee4 ets_efuse_find_unused_key_block = 0x40001ee4 + 0x40001ef0 ets_efuse_rs_calculate = 0x40001ef0 + 0x40001efc ets_efuse_count_unused_key_blocks = 0x40001efc + 0x40001f08 ets_efuse_secure_boot_enabled = 0x40001f08 + 0x40001f14 ets_efuse_secure_boot_aggressive_revoke_enabled = 0x40001f14 + 0x40001f20 ets_efuse_cache_encryption_enabled = 0x40001f20 + 0x40001f2c ets_efuse_download_modes_disabled = 0x40001f2c + 0x40001f38 ets_efuse_find_purpose = 0x40001f38 + 0x40001f44 ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x40001f44 + 0x40001f50 ets_efuse_force_send_resume = 0x40001f50 + 0x40001f5c ets_efuse_get_flash_delay_us = 0x40001f5c + 0x40001f68 ets_efuse_get_mac = 0x40001f68 + 0x40001f74 ets_efuse_get_spiconfig = 0x40001f74 + 0x40001f80 ets_efuse_usb_print_is_disabled = 0x40001f80 + 0x40001f8c ets_efuse_usb_serial_jtag_print_is_disabled = 0x40001f8c + 0x40001f98 ets_efuse_get_uart_print_control = 0x40001f98 + 0x40001fa4 ets_efuse_get_wp_pad = 0x40001fa4 + 0x40001fb0 ets_efuse_legacy_spi_boot_mode_disabled = 0x40001fb0 + 0x40001fbc ets_efuse_security_download_modes_enabled = 0x40001fbc + 0x40001fc8 ets_efuse_set_timing = 0x40001fc8 + 0x40001fd4 ets_efuse_jtag_disabled = 0x40001fd4 + 0x40001fe0 ets_efuse_usb_download_mode_disabled = 0x40001fe0 + 0x40001fec ets_efuse_usb_module_disabled = 0x40001fec + 0x40001ff8 ets_efuse_usb_device_disabled = 0x40001ff8 + 0x40002004 ets_efuse_flash_octal_mode = 0x40002004 + 0x40002010 ets_efuse_ecc_en = 0x40002010 + 0x4000201c ets_efuse_ecc_flash_page_size = 0x4000201c + 0x40002028 ets_efuse_ecc_16to17_mode = 0x40002028 + 0x40002034 ets_ecc_flash_enable = 0x40002034 + 0x40002040 ets_ecc_flash_enable_all = 0x40002040 + 0x4000204c ets_ecc_flash_disable = 0x4000204c + 0x40002058 ets_ecc_flash_disable_all = 0x40002058 + 0x40002064 ets_ecc_get_flash_page_size = 0x40002064 + 0x40002070 ets_ecc_set_flash_page_size = 0x40002070 + 0x4000207c ets_ecc_set_flash_byte_mode = 0x4000207c + 0x40002088 ets_ecc_get_flash_byte_mode = 0x40002088 + 0x40002094 ets_ecc_set_flash_range = 0x40002094 + 0x400020a0 ets_ecc_get_flash_range = 0x400020a0 + 0x400020ac ets_ecc_sram_enable = 0x400020ac + 0x400020b8 ets_ecc_sram_disable = 0x400020b8 + 0x400020c4 ets_ecc_sram_enable_all = 0x400020c4 + 0x400020d0 ets_ecc_sram_disable_all = 0x400020d0 + 0x400020dc ets_ecc_get_sram_page_size = 0x400020dc + 0x400020e8 ets_ecc_set_sram_page_size = 0x400020e8 + 0x400020f4 ets_ecc_get_sram_byte_mode = 0x400020f4 + 0x40002100 ets_ecc_set_sram_byte_mode = 0x40002100 + 0x4000210c ets_ecc_set_sram_range = 0x4000210c + 0x40002118 ets_ecc_get_sram_range = 0x40002118 + 0x3fceffc0 ets_ecc_table_ptr = 0x3fceffc0 + 0x40002124 ets_emsa_pss_verify = 0x40002124 + 0x40002130 ets_rsa_pss_verify = 0x40002130 + 0x4000213c ets_secure_boot_verify_bootloader_with_keys = 0x4000213c + 0x40002148 ets_secure_boot_verify_signature = 0x40002148 + 0x40002154 ets_secure_boot_read_key_digests = 0x40002154 + 0x40002160 ets_secure_boot_revoke_public_key_digest = 0x40002160 + [!provide] PROVIDE (usb_uart_otg_rx_one_char = 0x400025a4) + [!provide] PROVIDE (usb_uart_otg_rx_one_char_block = 0x400025b0) + [!provide] PROVIDE (usb_uart_otg_tx_flush = 0x400025bc) + [!provide] PROVIDE (usb_uart_otg_tx_one_char = 0x400025c8) + [!provide] PROVIDE (usb_uart_device_rx_one_char = 0x400025d4) + [!provide] PROVIDE (usb_uart_device_rx_one_char_block = 0x400025e0) + [!provide] PROVIDE (usb_uart_device_tx_flush = 0x400025ec) + [!provide] PROVIDE (usb_uart_device_tx_one_char = 0x400025f8) + [!provide] PROVIDE (Uart_Init_USB = 0x40002604) + [!provide] PROVIDE (uart_acm_dev = 0x3fceffbc) + 0x3fceffb9 PROVIDE (g_uart_print = 0x3fceffb9) + 0x3fceffb8 PROVIDE (g_usb_print = 0x3fceffb8) + 0x40002610 cdc_acm_class_handle_req = 0x40002610 + 0x4000261c cdc_acm_init = 0x4000261c + 0x40002628 cdc_acm_fifo_fill = 0x40002628 + 0x40002634 cdc_acm_rx_fifo_cnt = 0x40002634 + 0x40002640 cdc_acm_fifo_read = 0x40002640 + 0x4000264c cdc_acm_irq_tx_enable = 0x4000264c + 0x40002658 cdc_acm_irq_tx_disable = 0x40002658 + 0x40002664 cdc_acm_irq_state_enable = 0x40002664 + 0x40002670 cdc_acm_irq_state_disable = 0x40002670 + 0x4000267c cdc_acm_irq_tx_ready = 0x4000267c + 0x40002688 cdc_acm_irq_rx_enable = 0x40002688 + 0x40002694 cdc_acm_irq_rx_disable = 0x40002694 + 0x400026a0 cdc_acm_irq_rx_ready = 0x400026a0 + 0x400026ac cdc_acm_irq_is_pending = 0x400026ac + 0x400026b8 cdc_acm_irq_callback_set = 0x400026b8 + 0x400026c4 cdc_acm_line_ctrl_set = 0x400026c4 + 0x400026d0 cdc_acm_line_ctrl_get = 0x400026d0 + 0x400026dc cdc_acm_poll_out = 0x400026dc + 0x400026e8 chip_usb_dw_did_persist = 0x400026e8 + 0x400026f4 chip_usb_dw_init = 0x400026f4 + 0x40002700 chip_usb_detach = 0x40002700 + 0x4000270c chip_usb_dw_prepare_persist = 0x4000270c + 0x40002718 chip_usb_get_persist_flags = 0x40002718 + 0x40002724 chip_usb_set_persist_flags = 0x40002724 + 0x40002730 cpio_start = 0x40002730 + 0x4000273c cpio_feed = 0x4000273c + 0x40002748 cpio_done = 0x40002748 + 0x40002754 cpio_destroy = 0x40002754 + 0x40002760 dfu_flash_init = 0x40002760 + 0x4000276c dfu_flash_erase = 0x4000276c + 0x40002778 dfu_flash_program = 0x40002778 + 0x40002784 dfu_flash_read = 0x40002784 + 0x40002790 dfu_flash_attach = 0x40002790 + 0x4000279c dfu_cpio_callback = 0x4000279c + 0x400027a8 dfu_updater_get_err = 0x400027a8 + 0x400027b4 dfu_updater_clear_err = 0x400027b4 + 0x400027c0 dfu_updater_enable = 0x400027c0 + 0x400027cc dfu_updater_begin = 0x400027cc + 0x400027d8 dfu_updater_feed = 0x400027d8 + 0x400027e4 dfu_updater_end = 0x400027e4 + 0x400027f0 dfu_updater_set_raw_addr = 0x400027f0 + 0x400027fc dfu_updater_flash_read = 0x400027fc + 0x40002808 usb_dc_prepare_persist = 0x40002808 + 0x40002814 usb_dw_isr_handler = 0x40002814 + 0x40002820 usb_dc_attach = 0x40002820 + 0x4000282c usb_dc_detach = 0x4000282c + 0x40002838 usb_dc_reset = 0x40002838 + 0x40002844 usb_dc_set_address = 0x40002844 + 0x40002850 usb_dc_ep_check_cap = 0x40002850 + 0x4000285c usb_dc_ep_configure = 0x4000285c + 0x40002868 usb_dc_ep_set_stall = 0x40002868 + 0x40002874 usb_dc_ep_clear_stall = 0x40002874 + 0x40002880 usb_dc_ep_halt = 0x40002880 + 0x4000288c usb_dc_ep_is_stalled = 0x4000288c + 0x40002898 usb_dc_ep_enable = 0x40002898 + 0x400028a4 usb_dc_ep_disable = 0x400028a4 + 0x400028b0 usb_dc_ep_flush = 0x400028b0 + 0x400028bc usb_dc_ep_write_would_block = 0x400028bc + 0x400028c8 usb_dc_ep_write = 0x400028c8 + 0x400028d4 usb_dc_ep_read_wait = 0x400028d4 + 0x400028e0 usb_dc_ep_read_continue = 0x400028e0 + 0x400028ec usb_dc_ep_read = 0x400028ec + 0x400028f8 usb_dc_ep_set_callback = 0x400028f8 + 0x40002904 usb_dc_set_status_callback = 0x40002904 + 0x40002910 usb_dc_ep_mps = 0x40002910 + 0x4000291c usb_dc_check_poll_for_interrupts = 0x4000291c + 0x40002928 mac_addr_to_serial_str_desc = 0x40002928 + 0x40002934 usb_set_current_descriptor = 0x40002934 + 0x40002940 usb_get_descriptor = 0x40002940 + 0x4000294c usb_dev_resume = 0x4000294c + 0x40002958 usb_dev_get_configuration = 0x40002958 + 0x40002964 usb_set_config = 0x40002964 + 0x40002970 usb_deconfig = 0x40002970 + 0x4000297c usb_enable = 0x4000297c + 0x40002988 usb_disable = 0x40002988 + 0x40002994 usb_write_would_block = 0x40002994 + 0x400029a0 usb_write = 0x400029a0 + 0x400029ac usb_read = 0x400029ac + 0x400029b8 usb_ep_set_stall = 0x400029b8 + 0x400029c4 usb_ep_clear_stall = 0x400029c4 + 0x400029d0 usb_ep_read_wait = 0x400029d0 + 0x400029dc usb_ep_read_continue = 0x400029dc + 0x400029e8 usb_transfer_ep_callback = 0x400029e8 + 0x400029f4 usb_transfer = 0x400029f4 + 0x40002a00 usb_cancel_transfer = 0x40002a00 + 0x40002a0c usb_transfer_sync = 0x40002a0c + 0x40002a18 usb_dfu_set_detach_cb = 0x40002a18 + 0x40002a24 dfu_class_handle_req = 0x40002a24 + 0x40002a30 dfu_status_cb = 0x40002a30 + 0x40002a3c dfu_custom_handle_req = 0x40002a3c + 0x40002a48 usb_dfu_init = 0x40002a48 + 0x40002a54 usb_dfu_force_detach = 0x40002a54 + 0x40002a60 usb_dev_deinit = 0x40002a60 + 0x40002a6c usb_dw_ctrl_deinit = 0x40002a6c + 0x3fceffac rom_usb_osglue = 0x3fceffac + 0x3fceffa8 bt_rf_coex_cfg_p = 0x3fceffa8 + 0x3fceffa4 bt_rf_coex_hooks_p = 0x3fceffa4 + 0x3fceffa0 btdm_env_p = 0x3fceffa0 + 0x3fceff9c g_rw_controller_task_handle = 0x3fceff9c + 0x3fceff98 g_rw_init_sem = 0x3fceff98 + 0x3fceff94 g_rw_schd_queue = 0x3fceff94 + 0x3fceff90 lld_init_env = 0x3fceff90 + 0x3fceff8c lld_rpa_renew_env = 0x3fceff8c + 0x3fceff88 lld_scan_env = 0x3fceff88 + 0x3fceff84 lld_scan_sync_env = 0x3fceff84 + 0x3fceff80 lld_test_env = 0x3fceff80 + 0x3fceff7c p_ble_util_buf_env = 0x3fceff7c + 0x3fceff78 p_lld_env = 0x3fceff78 + 0x3fceff74 p_llm_env = 0x3fceff74 + 0x3fceff70 r_h4tl_eif_p = 0x3fceff70 + 0x3fceff6c r_hli_funcs_p = 0x3fceff6c + 0x3fceff68 r_ip_funcs_p = 0x3fceff68 + 0x3fceff64 r_modules_funcs_p = 0x3fceff64 + 0x3fceff60 r_osi_funcs_p = 0x3fceff60 + 0x3fceff5c r_plf_funcs_p = 0x3fceff5c + 0x3fceff58 vhci_env_p = 0x3fceff58 + 0x3fceff54 aa_gen = 0x3fceff54 + 0x3fceff48 aes_env = 0x3fceff48 + 0x3fcefef8 bt_rf_coex_cfg_cb = 0x3fcefef8 + 0x3fcefef4 btdm_pwr_state = 0x3fcefef4 + 0x3fcefef0 btdm_slp_err = 0x3fcefef0 + 0x3fcefee8 ecc_env = 0x3fcefee8 + 0x3fcefee0 esp_handler = 0x3fcefee0 + 0x3fcefed8 esp_vendor_cmd = 0x3fcefed8 + 0x3fcefed4 g_adv_delay_dis = 0x3fcefed4 + 0x3fcefed0 g_conflict_elt = 0x3fcefed0 + 0x3fcefec0 g_eif_api = 0x3fcefec0 + 0x3fcefeb4 g_event_empty = 0x3fcefeb4 + 0x3fcefeaa g_llc_state = 0x3fcefeaa + 0x3fcefea9 g_llm_state = 0x3fcefea9 + 0x3fcefea7 g_max_evt_env = 0x3fcefea7 + 0x3fcefea6 g_misc_state = 0x3fcefea6 + 0x3fcefe8a g_rma_rule_db = 0x3fcefe8a + 0x3fcefe6e g_rtp_rule_db = 0x3fcefe6e + 0x3fcefe6d g_scan_forever = 0x3fcefe6d + 0x3fcefe6c g_time_msb = 0x3fcefe6c + 0x3fcefe44 h4tl_env = 0x3fcefe44 + 0x3fcefe21 hci_env = 0x3fcefe21 + 0x3fcefe20 hci_ext_host = 0x3fcefe20 + 0x3fcefe18 hci_fc_env = 0x3fcefe18 + 0x3fcefdec hci_tl_env = 0x3fcefdec + 0x3fcefdbc ke_env = 0x3fcefdbc + 0x3fcefd7c ke_event_env = 0x3fcefd7c + 0x3fcefd00 ke_task_env = 0x3fcefd00 + 0x3fcefcd8 llc_env = 0x3fcefcd8 + 0x3fcefcb0 lld_adv_env = 0x3fcefcb0 + 0x3fcefc88 lld_con_env = 0x3fcefc88 + 0x3fcefc80 lld_exp_sync_pos_tab = 0x3fcefc80 + 0x3fcefc58 lld_per_adv_env = 0x3fcefc58 + 0x3fcefc30 lld_sync_env = 0x3fcefc30 + 0x3fcefc24 llm_le_adv_flow_env = 0x3fcefc24 + 0x3fcefc20 rw_sleep_enable = 0x3fcefc20 + 0x3fcefc18 rwble_env = 0x3fcefc18 + 0x3fcefbfc rwip_env = 0x3fcefbfc + 0x3fcefbf0 rwip_param = 0x3fcefbf0 + 0x3fcefbec rwip_prog_delay = 0x3fcefbec + 0x3fcefbb4 rwip_rf = 0x3fcefbb4 + 0x3fcefbac sch_alarm_env = 0x3fcefbac + 0x3fcefb98 sch_arb_env = 0x3fcefb98 + 0x3fcefb90 sch_plan_env = 0x3fcefb90 + 0x3fcefa8c sch_prog_env = 0x3fcefa8c + 0x3fcefa2c sch_slice_env = 0x3fcefa2c + 0x3fcefa24 sch_slice_params = 0x3fcefa24 + 0x3fcefa1c timer_env = 0x3fcefa1c + 0x3fcefa18 unloaded_area = 0x3fcefa18 + 0x3fcefa14 vshci_state = 0x3fcefa14 + 0x3fcefa08 TASK_DESC_LLC = 0x3fcefa08 + 0x3fcef9fc TASK_DESC_LLM = 0x3fcef9fc + 0x3fcef9f0 TASK_DESC_VSHCI = 0x3fcef9f0 + 0x3fcef9e8 co_default_bdaddr = 0x3fcef9e8 + 0x3fcef9e4 dbg_assert_block = 0x3fcef9e4 + 0x3fcef9e0 g_bt_plf_log_level = 0x3fcef9e0 + 0x3fcef9bc hci_cmd_desc_tab_vs_esp = 0x3fcef9bc + 0x3fcef9a4 hci_command_handler_tab_esp = 0x3fcef9a4 + 0x3fcef9a0 privacy_en = 0x3fcef9a0 + 0x3fcef958 sdk_cfg_priv_opts = 0x3fcef958 + 0x3ff1ffdc BasePoint_x_256 = 0x3ff1ffdc + 0x3ff1ffbc BasePoint_y_256 = 0x3ff1ffbc + 0x3ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c + 0x3ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c + 0x3ff1ff5c DebugE256SecretKey = 0x3ff1ff5c + 0x3ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0 + 0x3ff1f79a LLM_AA_CT1 = 0x3ff1f79a + 0x3ff1f798 LLM_AA_CT2 = 0x3ff1f798 + 0x3ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790 + 0x3ff1f784 TASK_DESC_MISC = 0x3ff1f784 + 0x3ff1f766 adv_evt_prop2type = 0x3ff1f766 + 0x3ff1f761 adv_evt_type2prop = 0x3ff1f761 + 0x3ff1f751 aes_cmac_zero = 0x3ff1f751 + 0x3ff1f741 aes_k2_salt = 0x3ff1f741 + 0x3ff1f73c aes_k3_id64 = 0x3ff1f73c + 0x3ff1f72c aes_k3_salt = 0x3ff1f72c + 0x3ff1f728 aes_k4_id6 = 0x3ff1f728 + 0x3ff1f718 aes_k4_salt = 0x3ff1f718 + 0x3ff1f6ec bigHexP256 = 0x3ff1f6ec + 0x3ff1f6e2 byte_tx_time = 0x3ff1f6e2 + 0x3ff1f6dc co_null_bdaddr = 0x3ff1f6dc + 0x3ff1f6d7 co_phy_mask_to_rate = 0x3ff1f6d7 + 0x3ff1f6d2 co_phy_mask_to_value = 0x3ff1f6d2 + 0x3ff1f6ce co_phy_to_rate = 0x3ff1f6ce + 0x3ff1f6ca co_phy_value_to_mask = 0x3ff1f6ca + 0x3ff1f6c5 co_rate_to_byte_dur_us = 0x3ff1f6c5 + 0x3ff1f6c0 co_rate_to_phy = 0x3ff1f6c0 + 0x3ff1f6bc co_rate_to_phy_mask = 0x3ff1f6bc + 0x3ff1f6ac co_sca2ppm = 0x3ff1f6ac + 0x3ff1f680 coef_B = 0x3ff1f680 + 0x3ff1f678 connect_req_dur_tab = 0x3ff1f678 + 0x3ff1f5f4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5f4 + 0x3ff1f526 em_base_reg_lut = 0x3ff1f526 + 0x3ff1f51e fixed_tx_time = 0x3ff1f51e + 0x3ff1f518 h4tl_msgtype2hdrlen = 0x3ff1f518 + 0x3ff1f4e8 hci_cmd_desc_root_tab = 0x3ff1f4e8 + 0x3ff1f47c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f47c + 0x3ff1f44c hci_cmd_desc_tab_info_par = 0x3ff1f44c + 0x3ff1f0b0 hci_cmd_desc_tab_le = 0x3ff1f0b0 + 0x3ff1f098 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f098 + 0x3ff1f08c hci_cmd_desc_tab_stat_par = 0x3ff1f08c + 0x3ff1f050 hci_cmd_desc_tab_vs = 0x3ff1f050 + 0x3ff1f008 hci_evt_desc_tab = 0x3ff1f008 + 0x3ff1ef68 hci_evt_le_desc_tab = 0x3ff1ef68 + 0x3ff1ef60 hci_evt_le_desc_tab_esp = 0x3ff1ef60 + 0x3ff1ef57 hci_rsvd_evt_msk = 0x3ff1ef57 + 0x3ff1ef54 lld_aux_phy_to_rate = 0x3ff1ef54 + 0x3ff1ef4c lld_init_max_aux_dur_tab = 0x3ff1ef4c + 0x3ff1ef44 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef44 + 0x3ff1ef3c lld_scan_max_aux_dur_tab = 0x3ff1ef3c + 0x3ff1ef34 lld_sync_max_aux_dur_tab = 0x3ff1ef34 + 0x3ff1ef2c llm_local_le_feats = 0x3ff1ef2c + 0x3ff1ef24 llm_local_le_states = 0x3ff1ef24 + 0x3ff1eefc llm_local_supp_cmds = 0x3ff1eefc + 0x3ff1eedc maxSecretKey_256 = 0x3ff1eedc + 0x3ff1eed4 max_data_tx_time = 0x3ff1eed4 + 0x3ff1eec3 one_bits = 0x3ff1eec3 + 0x3ff1eebe rwip_coex_cfg = 0x3ff1eebe + 0x3ff1eea8 rwip_priority = 0x3ff1eea8 + 0x3ff1ee5c veryBigHexP256 = 0x3ff1ee5c + 0x40005250 esp_pp_rom_version_get = 0x40005250 + 0x4000525c RC_GetBlockAckTime = 0x4000525c + 0x40005268 ebuf_list_remove = 0x40005268 + 0x40005298 GetAccess = 0x40005298 + 0x400052a4 hal_mac_is_low_rate_enabled = 0x400052a4 + 0x400052b0 hal_mac_tx_get_blockack = 0x400052b0 + 0x400052c8 ic_get_trc = 0x400052c8 + 0x400052ec ic_interface_enabled = 0x400052ec + 0x400052f8 is_lmac_idle = 0x400052f8 + 0x40005310 lmacDiscardAgedMSDU = 0x40005310 + 0x40005334 lmacIsIdle = 0x40005334 + 0x40005340 lmacIsLongFrame = 0x40005340 + 0x40005358 lmacPostTxComplete = 0x40005358 + 0x40005364 lmacProcessAllTxTimeout = 0x40005364 + 0x40005370 lmacProcessCollisions = 0x40005370 + 0x4000537c lmacProcessRxSucData = 0x4000537c + 0x40005388 lmacReachLongLimit = 0x40005388 + 0x40005394 lmacReachShortLimit = 0x40005394 + 0x400053a0 lmacRecycleMPDU = 0x400053a0 + 0x400053ac lmacRxDone = 0x400053ac + 0x400053c4 lmacTxDone = 0x400053c4 + 0x400053dc mac_tx_set_duration = 0x400053dc + 0x400053f4 mac_tx_set_plcp0 = 0x400053f4 + 0x4000540c mac_tx_set_plcp2 = 0x4000540c + 0x40005424 pm_disable_dream_timer = 0x40005424 + 0x40005430 pm_disable_sleep_delay_timer = 0x40005430 + 0x40005448 pm_mac_wakeup = 0x40005448 + 0x40005454 pm_mac_sleep = 0x40005454 + 0x40005460 pm_enable_active_timer = 0x40005460 + 0x4000546c pm_enable_sleep_delay_timer = 0x4000546c + 0x40005478 pm_local_tsf_process = 0x40005478 + 0x40005484 //pm_set_beacon_filter = 0x40005484 + 0x4000549c pm_is_waked = 0x4000549c + 0x400054c0 pm_on_data_rx = 0x400054c0 + 0x400054cc pm_on_tbtt = 0x400054cc + 0x40005514 pm_sleep_for = 0x40005514 + 0x4000552c ppAMPDU2Normal = 0x4000552c + 0x40005544 ppCalFrameTimes = 0x40005544 + 0x40005550 ppCalSubFrameLength = 0x40005550 + 0x40005568 ppCheckTxAMPDUlength = 0x40005568 + 0x40005574 ppDequeueRxq_Locked = 0x40005574 + 0x40005580 ppDequeueTxQ = 0x40005580 + 0x4000558c ppEmptyDelimiterLength = 0x4000558c + 0x40005598 ppEnqueueRxq = 0x40005598 + 0x400055a4 ppEnqueueTxDone = 0x400055a4 + 0x400055b0 ppGetTxQFirstAvail_Locked = 0x400055b0 + 0x400055bc ppGetTxframe = 0x400055bc + 0x400055e0 ppProcessRxPktHdr = 0x400055e0 + 0x400055f8 ppRecordBarRRC = 0x400055f8 + 0x40005604 lmacRequestTxopQueue = 0x40005604 + 0x40005610 lmacReleaseTxopQueue = 0x40005610 + 0x4000561c ppRecycleAmpdu = 0x4000561c + 0x40005628 ppRecycleRxPkt = 0x40005628 + 0x40005634 ppResortTxAMPDU = 0x40005634 + 0x40005640 ppResumeTxAMPDU = 0x40005640 + 0x40005670 ppSearchTxQueue = 0x40005670 + 0x4000567c ppSearchTxframe = 0x4000567c + 0x40005688 ppSelectNextQueue = 0x40005688 + 0x40005694 ppSubFromAMPDU = 0x40005694 + 0x400056ac ppTxPkt = 0x400056ac + 0x400056b8 ppTxProtoProc = 0x400056b8 + 0x400056c4 ppTxqUpdateBitmap = 0x400056c4 + 0x400056dc pp_hdrsize = 0x400056dc + 0x400056e8 pp_post = 0x400056e8 + 0x400056f4 pp_process_hmac_waiting_txq = 0x400056f4 + 0x40005700 rcGetAmpduSched = 0x40005700 + 0x4000570c rcUpdateRxDone = 0x4000570c + 0x40005718 rc_get_trc = 0x40005718 + 0x40005724 rc_get_trc_by_index = 0x40005724 + 0x40005730 rcAmpduLowerRate = 0x40005730 + 0x4000573c rcampduuprate = 0x4000573c + 0x40005748 rcClearCurAMPDUSched = 0x40005748 + 0x40005754 rcClearCurSched = 0x40005754 + 0x40005760 rcClearCurStat = 0x40005760 + 0x40005778 rcLowerSched = 0x40005778 + 0x40005784 rcSetTxAmpduLimit = 0x40005784 + 0x4000579c rcUpdateAckSnr = 0x4000579c + 0x400057cc rcUpSched = 0x400057cc + 0x400057d8 rssi_margin = 0x400057d8 + 0x400057e4 rx11NRate2AMPDULimit = 0x400057e4 + 0x400057f0 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x400057f0 + 0x400057fc TRC_AMPDU_PER_UP_THRESHOLD = 0x400057fc + 0x40005808 trc_calc_duration = 0x40005808 + 0x40005814 trc_isTxAmpduOperational = 0x40005814 + 0x40005820 trc_onAmpduOp = 0x40005820 + 0x4000582c TRC_PER_IS_GOOD = 0x4000582c + 0x40005838 trc_SetTxAmpduState = 0x40005838 + 0x40005844 trc_tid_isTxAmpduOperational = 0x40005844 + 0x40005850 trcAmpduSetState = 0x40005850 + 0x4000585c wDevCheckBlockError = 0x4000585c + 0x40005874 wDev_DiscardFrame = 0x40005874 + 0x40005880 wDev_GetNoiseFloor = 0x40005880 + 0x4000588c wDev_IndicateAmpdu = 0x4000588c + 0x400058a4 wdev_bank_store = 0x400058a4 + 0x400058b0 wdev_bank_load = 0x400058b0 + 0x400058bc wdev_mac_reg_load = 0x400058bc + 0x400058c8 wdev_mac_reg_store = 0x400058c8 + 0x400058d4 wdev_mac_special_reg_load = 0x400058d4 + 0x400058e0 wdev_mac_special_reg_store = 0x400058e0 + 0x400058ec wdev_mac_wakeup = 0x400058ec + 0x400058f8 wdev_mac_sleep = 0x400058f8 + 0x40005904 hal_mac_is_dma_enable = 0x40005904 + 0x40005928 wdevProcessRxSucDataAll = 0x40005928 + 0x40005934 wdev_csi_len_align = 0x40005934 + 0x40005940 ppDequeueTxDone_Locked = 0x40005940 + 0x40005964 config_is_cache_tx_buf_enabled = 0x40005964 + 0x40005970 //ppMapWaitTxq = 0x40005970 + 0x4000597c ppProcessWaitingQueue = 0x4000597c + 0x40005988 ppDisableQueue = 0x40005988 + 0x40005994 pm_allow_tx = 0x40005994 + 0x400059a0 wdev_is_data_in_rxlist = 0x400059a0 + 0x400059ac ppProcTxCallback = 0x400059ac + 0x3ff1ee58 our_instances_ptr = 0x3ff1ee58 + 0x3fcef954 pTxRx = 0x3fcef954 + 0x3fcef950 lmacConfMib_ptr = 0x3fcef950 + 0x3fcef94c our_wait_eb = 0x3fcef94c + 0x3fcef948 our_tx_eb = 0x3fcef948 + 0x3fcef944 pp_wdev_funcs = 0x3fcef944 + 0x3fcef940 g_osi_funcs_p = 0x3fcef940 + 0x3fcef93c wDevCtrl_ptr = 0x3fcef93c + 0x3ff1ee54 g_wdev_last_desc_reset_ptr = 0x3ff1ee54 + 0x3fcef938 wDevMacSleep_ptr = 0x3fcef938 + 0x3fcef934 g_lmac_cnt_ptr = 0x3fcef934 + 0x3ff1ee50 our_controls_ptr = 0x3ff1ee50 + 0x3fcef930 pp_sig_cnt_ptr = 0x3fcef930 + 0x3fcef92c g_eb_list_desc_ptr = 0x3fcef92c + 0x3fcef928 s_fragment_ptr = 0x3fcef928 + 0x3fcef924 if_ctrl_ptr = 0x3fcef924 + 0x3fcef920 g_intr_lock_mux = 0x3fcef920 + 0x3fcef91c g_wifi_global_lock = 0x3fcef91c + 0x3fcef918 s_wifi_queue = 0x3fcef918 + 0x3fcef914 pp_task_hdl = 0x3fcef914 + 0x3fcef910 s_pp_task_create_sem = 0x3fcef910 + 0x3fcef90c s_pp_task_del_sem = 0x3fcef90c + 0x3fcef908 g_wifi_menuconfig_ptr = 0x3fcef908 + 0x3fcef904 xphyQueue = 0x3fcef904 + 0x3fcef900 ap_no_lr_ptr = 0x3fcef900 + 0x3fcef8fc rc11BSchedTbl_ptr = 0x3fcef8fc + 0x3fcef8f8 rc11NSchedTbl_ptr = 0x3fcef8f8 + 0x3fcef8f4 rcLoRaSchedTbl_ptr = 0x3fcef8f4 + 0x3fcef8f0 BasicOFDMSched_ptr = 0x3fcef8f0 + 0x3fcef8ec trc_ctl_ptr = 0x3fcef8ec + 0x3fcef8e8 g_pm_cnt_ptr = 0x3fcef8e8 + 0x3fcef8e4 g_pm_ptr = 0x3fcef8e4 + 0x3fcef8e0 g_pm_cfg_ptr = 0x3fcef8e0 + 0x3fcef8dc g_esp_mesh_quick_funcs_ptr = 0x3fcef8dc + 0x3fcef8d8 g_txop_queue_status_ptr = 0x3fcef8d8 + 0x3fcef8d4 g_mac_sleep_en_ptr = 0x3fcef8d4 + 0x3fcef8d0 g_mesh_is_root_ptr = 0x3fcef8d0 + 0x3fcef8cc g_mesh_topology_ptr = 0x3fcef8cc + 0x3fcef8c8 g_mesh_init_ps_type_ptr = 0x3fcef8c8 + 0x3fcef8c4 g_mesh_is_started_ptr = 0x3fcef8c4 + 0x3fcef8c0 g_config_func = 0x3fcef8c0 + 0x3fcef8bc g_net80211_tx_func = 0x3fcef8bc + 0x3fcef8b8 g_timer_func = 0x3fcef8b8 + 0x3fcef8b4 s_michael_mic_failure_cb = 0x3fcef8b4 + 0x3fcef8b0 wifi_sta_rx_probe_req = 0x3fcef8b0 + 0x3fcef8ac g_tx_done_cb_func = 0x3fcef8ac + 0x3fcef860 g_per_conn_trc = 0x3fcef860 + 0x3fcef85c s_encap_amsdu_func = 0x3fcef85c + 0x400059b8 esp_net80211_rom_version_get = 0x400059b8 + 0x400059c4 ampdu_dispatch = 0x400059c4 + 0x400059d0 ampdu_dispatch_all = 0x400059d0 + 0x400059dc ampdu_dispatch_as_many_as_possible = 0x400059dc + 0x400059e8 ampdu_dispatch_movement = 0x400059e8 + 0x400059f4 ampdu_dispatch_upto = 0x400059f4 + 0x40005a00 chm_is_at_home_channel = 0x40005a00 + 0x40005a0c cnx_node_is_existing = 0x40005a0c + 0x40005a18 cnx_node_search = 0x40005a18 + 0x40005a24 ic_ebuf_recycle_rx = 0x40005a24 + 0x40005a30 ic_ebuf_recycle_tx = 0x40005a30 + 0x40005a3c ic_reset_rx_ba = 0x40005a3c + 0x40005a48 ieee80211_align_eb = 0x40005a48 + 0x40005a60 ieee80211_ampdu_start_age_timer = 0x40005a60 + 0x40005a78 ieee80211_is_tx_allowed = 0x40005a78 + 0x40005a84 ieee80211_output_pending_eb = 0x40005a84 + 0x40005a9c ieee80211_set_tx_desc = 0x40005a9c + 0x40005ab4 wifi_get_macaddr = 0x40005ab4 + 0x40005ac0 wifi_rf_phy_disable = 0x40005ac0 + 0x40005acc wifi_rf_phy_enable = 0x40005acc + 0x40005ad8 ic_ebuf_alloc = 0x40005ad8 + 0x40005af0 ieee80211_copy_eb_header = 0x40005af0 + 0x40005afc ieee80211_recycle_cache_eb = 0x40005afc + 0x40005b08 ieee80211_search_node = 0x40005b08 + 0x40005b14 roundup2 = 0x40005b14 + 0x40005b20 ieee80211_crypto_encap = 0x40005b20 + 0x40005b44 ieee80211_set_tx_pti = 0x40005b44 + 0x40005b50 wifi_is_started = 0x40005b50 + 0x40005b5c ieee80211_gettid = 0x40005b5c + 0x3fcef858 net80211_funcs = 0x3fcef858 + 0x3fcef854 g_scan = 0x3fcef854 + 0x3fcef850 g_chm = 0x3fcef850 + 0x3fcef84c g_ic_ptr = 0x3fcef84c + 0x3fcef848 g_hmac_cnt_ptr = 0x3fcef848 + 0x3fcef844 g_tx_cacheq_ptr = 0x3fcef844 + 0x3fcef840 s_netstack_free = 0x3fcef840 + 0x3fcef83c mesh_rxcb = 0x3fcef83c + 0x3fcef838 sta_rxcb = 0x3fcef838 + 0x40005b68 esp_coex_rom_version_get = 0x40005b68 + 0x40005b74 coex_bt_release = 0x40005b74 + 0x40005b80 coex_bt_request = 0x40005b80 + 0x40005b8c coex_core_ble_conn_dyn_prio_get = 0x40005b8c + 0x40005ba4 coex_core_pti_get = 0x40005ba4 + 0x40005bb0 coex_core_release = 0x40005bb0 + 0x40005bbc coex_core_request = 0x40005bbc + 0x40005bc8 coex_core_status_get = 0x40005bc8 + 0x40005be0 coex_event_duration_get = 0x40005be0 + 0x40005bec coex_hw_timer_disable = 0x40005bec + 0x40005bf8 coex_hw_timer_enable = 0x40005bf8 + 0x40005c04 coex_hw_timer_set = 0x40005c04 + 0x40005c10 coex_schm_interval_set = 0x40005c10 + 0x40005c1c coex_schm_lock = 0x40005c1c + 0x40005c28 coex_schm_unlock = 0x40005c28 + 0x40005c40 coex_wifi_release = 0x40005c40 + 0x40005c4c esp_coex_ble_conn_dynamic_prio_get = 0x40005c4c + 0x3fcef834 coex_env_ptr = 0x3fcef834 + 0x3fcef830 coex_pti_tab_ptr = 0x3fcef830 + 0x3fcef82c coex_schm_env_ptr = 0x3fcef82c + 0x3fcef828 coexist_funcs = 0x3fcef828 + 0x3fcef824 g_coa_funcs_p = 0x3fcef824 + 0x3fcef820 g_coex_param_ptr = 0x3fcef820 + 0x40005c58 phy_get_romfuncs = 0x40005c58 + 0x40005c64 rom_abs_temp = 0x40005c64 + 0x40005c70 rom_bb_bss_cbw40_dig = 0x40005c70 + 0x40005c7c rom_bb_wdg_test_en = 0x40005c7c + 0x40005c88 rom_bb_wdt_get_status = 0x40005c88 + 0x40005c94 rom_bb_wdt_int_enable = 0x40005c94 + 0x40005ca0 rom_bb_wdt_rst_enable = 0x40005ca0 + 0x40005cac rom_bb_wdt_timeout_clear = 0x40005cac + 0x40005cb8 rom_cbw2040_cfg = 0x40005cb8 + 0x40005cc4 rom_check_noise_floor = 0x40005cc4 + 0x40005cd0 rom_chip_i2c_readReg = 0x40005cd0 + 0x40005cdc rom_chip_i2c_writeReg = 0x40005cdc + 0x40005ce8 rom_dc_iq_est = 0x40005ce8 + 0x40005cf4 rom_disable_agc = 0x40005cf4 + 0x40005d00 rom_en_pwdet = 0x40005d00 + 0x40005d0c rom_enable_agc = 0x40005d0c + 0x40005d18 rom_get_bbgain_db = 0x40005d18 + 0x40005d24 rom_get_data_sat = 0x40005d24 + 0x40005d30 rom_get_i2c_read_mask = 0x40005d30 + 0x40005d3c rom_get_pwctrl_correct = 0x40005d3c + 0x40005d48 rom_i2c_readReg = 0x40005d48 + 0x40005d54 rom_i2c_readReg_Mask = 0x40005d54 + 0x40005d60 rom_i2c_writeReg = 0x40005d60 + 0x40005d6c rom_i2c_writeReg_Mask = 0x40005d6c + 0x40005d78 rom_index_to_txbbgain = 0x40005d78 + 0x40005d84 rom_iq_est_disable = 0x40005d84 + 0x40005d90 rom_iq_est_enable = 0x40005d90 + 0x40005d9c rom_linear_to_db = 0x40005d9c + 0x40005da8 rom_loopback_mode_en = 0x40005da8 + 0x40005db4 rom_mhz2ieee = 0x40005db4 + 0x40005dc0 rom_noise_floor_auto_set = 0x40005dc0 + 0x40005dcc rom_pbus_debugmode = 0x40005dcc + 0x40005dd8 rom_pbus_force_mode = 0x40005dd8 + 0x40005de4 rom_pbus_force_test = 0x40005de4 + 0x40005df0 rom_pbus_rd = 0x40005df0 + 0x40005dfc rom_pbus_rd_addr = 0x40005dfc + 0x40005e08 rom_pbus_rd_shift = 0x40005e08 + 0x40005e14 rom_pbus_set_dco = 0x40005e14 + 0x40005e20 rom_pbus_set_rxgain = 0x40005e20 + 0x40005e2c rom_pbus_workmode = 0x40005e2c + 0x40005e38 rom_pbus_xpd_rx_off = 0x40005e38 + 0x40005e44 rom_pbus_xpd_rx_on = 0x40005e44 + 0x40005e50 rom_pbus_xpd_tx_off = 0x40005e50 + 0x40005e5c rom_pbus_xpd_tx_on = 0x40005e5c + 0x40005e68 rom_phy_byte_to_word = 0x40005e68 + 0x40005e74 rom_phy_disable_cca = 0x40005e74 + 0x40005e80 rom_phy_enable_cca = 0x40005e80 + 0x40005e8c rom_phy_get_noisefloor = 0x40005e8c + 0x40005e98 rom_phy_get_rx_freq = 0x40005e98 + 0x40005ea4 rom_phy_set_bbfreq_init = 0x40005ea4 + 0x40005eb0 rom_pow_usr = 0x40005eb0 + 0x40005ebc rom_pwdet_sar2_init = 0x40005ebc + 0x40005ec8 rom_read_hw_noisefloor = 0x40005ec8 + 0x40005ed4 rom_read_sar_dout = 0x40005ed4 + 0x40005ee0 rom_set_cal_rxdc = 0x40005ee0 + 0x40005eec rom_set_chan_cal_interp = 0x40005eec + 0x40005ef8 rom_set_loopback_gain = 0x40005ef8 + 0x40005f04 rom_set_noise_floor = 0x40005f04 + 0x40005f10 rom_set_rxclk_en = 0x40005f10 + 0x40005f1c rom_set_tx_dig_gain = 0x40005f1c + 0x40005f28 rom_set_txcap_reg = 0x40005f28 + 0x40005f34 rom_set_txclk_en = 0x40005f34 + 0x40005f40 rom_spur_cal = 0x40005f40 + 0x40005f4c rom_spur_reg_write_one_tone = 0x40005f4c + 0x40005f58 rom_target_power_add_backoff = 0x40005f58 + 0x40005f64 rom_tx_pwctrl_bg_init = 0x40005f64 + 0x40005f70 rom_txbbgain_to_index = 0x40005f70 + 0x40005f7c rom_wifi_11g_rate_chg = 0x40005f7c + 0x40005f88 rom_write_gain_mem = 0x40005f88 + 0x40005f94 chip728_phyrom_version = 0x40005f94 + 0x40005fa0 rom_disable_wifi_agc = 0x40005fa0 + 0x40005fac rom_enable_wifi_agc = 0x40005fac + 0x40005fb8 rom_bt_index_to_bb = 0x40005fb8 + 0x40005fc4 rom_bt_bb_to_index = 0x40005fc4 + 0x40005fd0 rom_spur_coef_cfg = 0x40005fd0 + 0x40005fdc rom_bb_bss_cbw40 = 0x40005fdc + 0x40005fe8 rom_set_cca = 0x40005fe8 + 0x40005ff4 rom_tx_paon_set = 0x40005ff4 + 0x40006000 rom_i2cmst_reg_init = 0x40006000 + 0x4000600c rom_iq_corr_enable = 0x4000600c + 0x40006018 rom_fe_reg_init = 0x40006018 + 0x40006024 rom_agc_reg_init = 0x40006024 + 0x40006030 rom_bb_reg_init = 0x40006030 + 0x4000603c rom_mac_enable_bb = 0x4000603c + 0x40006048 rom_bb_wdg_cfg = 0x40006048 + 0x40006054 rom_force_txon = 0x40006054 + 0x40006060 rom_fe_txrx_reset = 0x40006060 + 0x4000606c rom_set_rx_comp = 0x4000606c + 0x40006078 rom_set_pbus_reg = 0x40006078 + 0x40006084 rom_write_chan_freq = 0x40006084 + 0x40006090 rom_phy_xpd_rf = 0x40006090 + 0x4000609c rom_set_xpd_sar = 0x4000609c + 0x400060a8 rom_get_target_power_offset = 0x400060a8 + 0x400060b4 rom_write_txrate_power_offset = 0x400060b4 + 0x400060c0 rom_get_rate_fcc_index = 0x400060c0 + 0x400060cc rom_get_rate_target_power = 0x400060cc + 0x400060d8 rom_pkdet_vol_start = 0x400060d8 + 0x400060e4 rom_read_sar2_code = 0x400060e4 + 0x400060f0 rom_get_sar2_vol = 0x400060f0 + 0x400060fc rom_get_pll_vol = 0x400060fc + 0x40006108 rom_get_phy_target_power = 0x40006108 + 0x40006114 rom_temp_to_power = 0x40006114 + 0x40006120 rom_phy_track_pll_cap = 0x40006120 + 0x4000612c rom_phy_pwdet_always_en = 0x4000612c + 0x40006138 rom_phy_pwdet_onetime_en = 0x40006138 + 0x40006144 rom_get_i2c_mst0_mask = 0x40006144 + 0x40006150 rom_get_i2c_hostid = 0x40006150 + 0x4000615c rom_enter_critical_phy = 0x4000615c + 0x40006168 rom_exit_critical_phy = 0x40006168 + 0x40006174 rom_chip_i2c_readReg_org = 0x40006174 + 0x40006180 rom_i2c_paral_set_mst0 = 0x40006180 + 0x4000618c rom_i2c_paral_set_read = 0x4000618c + 0x40006198 rom_i2c_paral_read = 0x40006198 + 0x400061a4 rom_i2c_paral_write = 0x400061a4 + 0x400061b0 rom_i2c_paral_write_num = 0x400061b0 + 0x400061bc rom_i2c_paral_write_mask = 0x400061bc + 0x400061c8 rom_bb_bss_cbw40_ana = 0x400061c8 + 0x400061d4 rom_chan_to_freq = 0x400061d4 + 0x400061e0 rom_open_i2c_xpd = 0x400061e0 + 0x400061ec rom_dac_rate_set = 0x400061ec + 0x400061f8 rom_tsens_read_init = 0x400061f8 + 0x40006204 rom_tsens_code_read = 0x40006204 + 0x40006210 rom_tsens_index_to_dac = 0x40006210 + 0x4000621c rom_tsens_index_to_offset = 0x4000621c + 0x40006228 rom_tsens_dac_cal = 0x40006228 + 0x40006234 rom_code_to_temp = 0x40006234 + 0x40006240 rom_write_pll_cap_mem = 0x40006240 + 0x4000624c rom_pll_correct_dcap = 0x4000624c + 0x40006258 rom_phy_en_hw_set_freq = 0x40006258 + 0x40006264 rom_phy_dis_hw_set_freq = 0x40006264 + 0x40006270 rom_pll_vol_cal = 0x40006270 + 0x4000627c rom_wrtie_pll_cap = 0x4000627c + 0x40006288 rom_set_tx_gain_mem = 0x40006288 + 0x40006294 rom_bt_tx_dig_gain = 0x40006294 + 0x400062a0 rom_bt_get_tx_gain = 0x400062a0 + 0x400062ac rom_get_chan_target_power = 0x400062ac + 0x400062b8 rom_get_tx_gain_value = 0x400062b8 + 0x400062c4 rom_wifi_tx_dig_gain = 0x400062c4 + 0x400062d0 rom_wifi_get_tx_gain = 0x400062d0 + 0x400062dc rom_fe_i2c_reg_renew = 0x400062dc + 0x400062e8 rom_wifi_agc_sat_gain = 0x400062e8 + 0x400062f4 rom_i2c_master_reset = 0x400062f4 + 0x40006300 rom_bt_filter_reg = 0x40006300 + 0x4000630c rom_phy_bbpll_cal = 0x4000630c + 0x40006318 rom_i2c_sar2_init_code = 0x40006318 + 0x40006324 rom_phy_param_addr = 0x40006324 + 0x40006330 rom_phy_reg_init = 0x40006330 + 0x4000633c rom_set_chan_reg = 0x4000633c + 0x40006348 rom_phy_wakeup_init = 0x40006348 + 0x40006354 rom_phy_i2c_init1 = 0x40006354 + 0x40006360 rom_tsens_temp_read = 0x40006360 + 0x4000636c rom_bt_track_pll_cap = 0x4000636c + 0x40006378 rom_wifi_track_pll_cap = 0x40006378 + 0x40006384 rom_wifi_set_tx_gain = 0x40006384 + 0x40006390 rom_txpwr_cal_track = 0x40006390 + 0x4000639c rom_tx_pwctrl_background = 0x4000639c + 0x400063a8 rom_bt_set_tx_gain = 0x400063a8 + 0x400063b4 rom_noise_check_loop = 0x400063b4 + 0x400063c0 rom_phy_close_rf = 0x400063c0 + 0x400063cc rom_phy_xpd_tsens = 0x400063cc + 0x400063d8 rom_phy_freq_mem_backup = 0x400063d8 + 0x400063e4 rom_phy_ant_init = 0x400063e4 + 0x400063f0 rom_bt_track_tx_power = 0x400063f0 + 0x400063fc rom_wifi_track_tx_power = 0x400063fc + 0x40006408 rom_phy_dig_reg_backup = 0x40006408 + 0x40006414 chip728_phyrom_version_num = 0x40006414 + 0x40006420 rom_mac_tx_chan_offset = 0x40006420 + 0x4000642c rom_rx_gain_force = 0x4000642c + 0x3fcef81c phy_param_rom = 0x3fcef81c + 0x40001c98 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) + [!provide] PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) + [!provide] PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) + 0x40001b18 PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) + [!provide] PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) + [!provide] PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x40001f74 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + 0x40001fa4 PROVIDE (esp_rom_efuse_get_flash_wp_gpio = ets_efuse_get_wp_pad) + [!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_usb_acm_init = Uart_Init_USB) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + 0x40000690 PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) + 0x4000069c 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) + [!provide] PROVIDE (esp_rom_output_usb_acm_init = Uart_Init_USB) + 0x400006b4 PROVIDE (esp_rom_output_putc = ets_write_char_uart) + 0x40001c5c PROVIDE (esp_rom_md5_init = MD5Init) + 0x40001c68 PROVIDE (esp_rom_md5_update = MD5Update) + 0x40001c74 PROVIDE (esp_rom_md5_final = MD5Final) + 0x400006d8 PROVIDE (esp_rom_software_reset_system = software_reset) + [!provide] PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x400005d0 PROVIDE (esp_rom_printf = ets_printf) + 0x40000600 PROVIDE (esp_rom_delay_us = ets_delay_us) + [!provide] PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x4000057c PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + [!provide] PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x40001a40 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + 0x40001a4c PROVIDE (esp_rom_set_cpu_ticks_per_us = ets_update_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_attach = spi_flash_attach) + [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) + [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) + [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) + [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) + [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) + [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) + [!provide] PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x40005d54 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x40005d60 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x40005d6c PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x40002a78 bt_rf_coex_get_dft_cfg = 0x40002a78 + 0x40002a84 bt_rf_coex_hooks_p_set = 0x40002a84 + 0x40002a90 btdm_con_maxevtime_cal_impl = 0x40002a90 + 0x40002a9c btdm_controller_get_compile_version_impl = 0x40002a9c + 0x40002aa8 btdm_controller_rom_data_init = 0x40002aa8 + 0x40002ab4 btdm_dis_privacy_err_report_impl = 0x40002ab4 + 0x40002ac0 btdm_disable_adv_delay_impl = 0x40002ac0 + 0x40002acc btdm_enable_scan_continue_impl = 0x40002acc + 0x40002ad8 btdm_enable_scan_forever_impl = 0x40002ad8 + 0x40002ae4 btdm_get_power_state_impl = 0x40002ae4 + 0x40002af0 btdm_get_prevent_sleep_flag_impl = 0x40002af0 + 0x40002afc btdm_power_state_active_impl = 0x40002afc + 0x40002b08 btdm_switch_phy_coded_impl = 0x40002b08 + 0x40002b14 hci_acl_data_handler = 0x40002b14 + 0x40002b20 hci_disconnect_cmd_handler = 0x40002b20 + 0x40002b2c hci_le_con_upd_cmd_handler = 0x40002b2c + 0x40002b38 hci_le_ltk_req_neg_reply_cmd_handler = 0x40002b38 + 0x40002b44 hci_le_ltk_req_reply_cmd_handler = 0x40002b44 + 0x40002b50 hci_le_rd_chnl_map_cmd_handler = 0x40002b50 + 0x40002b5c hci_le_rd_phy_cmd_handler = 0x40002b5c + 0x40002b68 hci_le_rd_rem_feats_cmd_handler = 0x40002b68 + 0x40002b74 hci_le_rem_con_param_req_neg_reply_cmd_handler = 0x40002b74 + 0x40002b80 hci_le_rem_con_param_req_reply_cmd_handler = 0x40002b80 + 0x40002b8c hci_le_set_data_len_cmd_handler = 0x40002b8c + 0x40002b98 hci_le_set_phy_cmd_handler = 0x40002b98 + 0x40002ba4 hci_le_start_enc_cmd_handler = 0x40002ba4 + 0x40002bb0 hci_rd_auth_payl_to_cmd_handler = 0x40002bb0 + 0x40002bbc hci_rd_rem_ver_info_cmd_handler = 0x40002bbc + 0x40002bc8 hci_rd_rssi_cmd_handler = 0x40002bc8 + 0x40002bd4 hci_rd_tx_pwr_lvl_cmd_handler = 0x40002bd4 + 0x40002be0 hci_vs_set_pref_slave_evt_dur_cmd_handler = 0x40002be0 + 0x40002bec hci_vs_set_pref_slave_latency_cmd_handler = 0x40002bec + 0x40002bf8 hci_wr_auth_payl_to_cmd_handler = 0x40002bf8 + 0x40002c04 ll_channel_map_ind_handler = 0x40002c04 + 0x40002c10 ll_connection_param_req_handler = 0x40002c10 + 0x40002c1c ll_connection_param_rsp_handler = 0x40002c1c + 0x40002c28 ll_connection_update_ind_handler = 0x40002c28 + 0x40002c34 ll_enc_req_handler = 0x40002c34 + 0x40002c40 ll_enc_rsp_handler = 0x40002c40 + 0x40002c4c ll_feature_req_handler = 0x40002c4c + 0x40002c58 ll_feature_rsp_handler = 0x40002c58 + 0x40002c64 ll_length_req_handler = 0x40002c64 + 0x40002c70 ll_length_rsp_handler = 0x40002c70 + 0x40002c7c ll_min_used_channels_ind_handler = 0x40002c7c + 0x40002c88 ll_pause_enc_req_handler = 0x40002c88 + 0x40002c94 ll_pause_enc_rsp_handler = 0x40002c94 + 0x40002ca0 ll_phy_req_handler = 0x40002ca0 + 0x40002cac ll_phy_rsp_handler = 0x40002cac + 0x40002cb8 ll_phy_update_ind_handler = 0x40002cb8 + 0x40002cc4 ll_ping_req_handler = 0x40002cc4 + 0x40002cd0 ll_ping_rsp_handler = 0x40002cd0 + 0x40002cdc ll_slave_feature_req_handler = 0x40002cdc + 0x40002ce8 ll_start_enc_req_handler = 0x40002ce8 + 0x40002cf4 ll_start_enc_rsp_handler = 0x40002cf4 + 0x40002d00 ll_terminate_ind_handler = 0x40002d00 + 0x40002d0c ll_version_ind_handler = 0x40002d0c + 0x40002d18 llc_auth_payl_nearly_to_handler = 0x40002d18 + 0x40002d24 llc_auth_payl_real_to_handler = 0x40002d24 + 0x40002d30 llc_encrypt_ind_handler = 0x40002d30 + 0x40002d3c llc_hci_command_handler_wrapper = 0x40002d3c + 0x40002d48 llc_ll_connection_param_req_pdu_send = 0x40002d48 + 0x40002d54 llc_ll_connection_param_rsp_pdu_send = 0x40002d54 + 0x40002d60 llc_ll_connection_update_ind_pdu_send = 0x40002d60 + 0x40002d6c llc_ll_enc_req_pdu_send = 0x40002d6c + 0x40002d78 llc_ll_enc_rsp_pdu_send = 0x40002d78 + 0x40002d84 llc_ll_feature_req_pdu_send = 0x40002d84 + 0x40002d90 llc_ll_feature_rsp_pdu_send = 0x40002d90 + 0x40002d9c llc_ll_length_req_pdu_send = 0x40002d9c + 0x40002da8 llc_ll_length_rsp_pdu_send = 0x40002da8 + 0x40002db4 llc_ll_pause_enc_req_pdu_send = 0x40002db4 + 0x40002dc0 llc_ll_pause_enc_rsp_pdu_send = 0x40002dc0 + 0x40002dcc llc_ll_phy_req_pdu_send = 0x40002dcc + 0x40002dd8 llc_ll_phy_rsp_pdu_send = 0x40002dd8 + 0x40002de4 llc_ll_ping_req_pdu_send = 0x40002de4 + 0x40002df0 llc_ll_ping_rsp_pdu_send = 0x40002df0 + 0x40002dfc llc_ll_start_enc_req_pdu_send = 0x40002dfc + 0x40002e08 llc_ll_start_enc_rsp_pdu_send = 0x40002e08 + 0x40002e14 llc_ll_terminate_ind_pdu_send = 0x40002e14 + 0x40002e20 llc_ll_unknown_rsp_pdu_send = 0x40002e20 + 0x40002e2c llc_llcp_ch_map_update_ind_pdu_send = 0x40002e2c + 0x40002e38 llc_llcp_phy_upd_ind_pdu_send = 0x40002e38 + 0x40002e44 llc_llcp_version_ind_pdu_send = 0x40002e44 + 0x40002e50 llc_op_ch_map_upd_ind_handler = 0x40002e50 + 0x40002e5c llc_op_con_upd_ind_handler = 0x40002e5c + 0x40002e68 llc_op_disconnect_ind_handler = 0x40002e68 + 0x40002e74 llc_op_dl_upd_ind_handler = 0x40002e74 + 0x40002e80 llc_op_encrypt_ind_handler = 0x40002e80 + 0x40002e8c llc_op_feats_exch_ind_handler = 0x40002e8c + 0x40002e98 llc_op_le_ping_ind_handler = 0x40002e98 + 0x40002ea4 llc_op_phy_upd_ind_handler = 0x40002ea4 + 0x40002eb0 llc_op_ver_exch_ind_handler = 0x40002eb0 + 0x40002ebc llc_stopped_ind_handler = 0x40002ebc + 0x40002ec8 lld_acl_rx_ind_handler = 0x40002ec8 + 0x40002ed4 lld_acl_tx_cfm_handler = 0x40002ed4 + 0x40002ee0 lld_adv_end_ind_handler = 0x40002ee0 + 0x40002eec lld_adv_rep_ind_handler = 0x40002eec + 0x40002ef8 lld_ch_map_upd_cfm_handler = 0x40002ef8 + 0x40002f04 lld_con_estab_ind_handler = 0x40002f04 + 0x40002f10 lld_con_evt_sd_evt_time_set = 0x40002f10 + 0x40002f1c lld_con_offset_upd_ind_handler = 0x40002f1c + 0x40002f28 lld_con_param_upd_cfm_handler = 0x40002f28 + 0x40002f34 lld_disc_ind_handler = 0x40002f34 + 0x40002f40 lld_init_end_ind_handler = 0x40002f40 + 0x40002f4c lld_llcp_rx_ind_handler_wrapper = 0x40002f4c + 0x40002f58 lld_llcp_tx_cfm_handler = 0x40002f58 + 0x40002f64 lld_per_adv_end_ind_handler = 0x40002f64 + 0x40002f70 lld_per_adv_rep_ind_handler = 0x40002f70 + 0x40002f7c lld_per_adv_rx_end_ind_handler = 0x40002f7c + 0x40002f88 lld_phy_coded_500k_get = 0x40002f88 + 0x40002f94 lld_phy_upd_cfm_handler = 0x40002f94 + 0x40002fa0 lld_scan_end_ind_handler = 0x40002fa0 + 0x40002fac lld_scan_req_ind_handler = 0x40002fac + 0x40002fb8 lld_sync_start_req_handler = 0x40002fb8 + 0x40002fc4 lld_test_end_ind_handler = 0x40002fc4 + 0x40002fd0 lld_update_rxbuf_handler = 0x40002fd0 + 0x40002fdc llm_ch_map_update_ind_handler = 0x40002fdc + 0x40002fe8 llm_hci_command_handler_wrapper = 0x40002fe8 + 0x40002ff4 llm_scan_period_to_handler = 0x40002ff4 + 0x40003000 r_Add2SelfBigHex256 = 0x40003000 + 0x4000300c r_AddBigHex256 = 0x4000300c + 0x40003018 r_AddBigHexModP256 = 0x40003018 + 0x40003024 r_AddP256 = 0x40003024 + 0x40003030 r_AddPdiv2_256 = 0x40003030 + 0x4000303c r_GF_Jacobian_Point_Addition256 = 0x4000303c + 0x40003048 r_GF_Jacobian_Point_Double256 = 0x40003048 + 0x40003054 r_GF_Point_Jacobian_To_Affine256 = 0x40003054 + 0x40003060 r_MultiplyBigHexByUint32_256 = 0x40003060 + 0x4000306c r_MultiplyBigHexModP256 = 0x4000306c + 0x40003078 r_MultiplyByU16ModP256 = 0x40003078 + 0x40003084 r_SubtractBigHex256 = 0x40003084 + 0x40003090 r_SubtractBigHexMod256 = 0x40003090 + 0x4000309c r_SubtractBigHexUint32_256 = 0x4000309c + 0x400030a8 r_SubtractFromSelfBigHex256 = 0x400030a8 + 0x400030b4 r_SubtractFromSelfBigHexSign256 = 0x400030b4 + 0x400030c0 r_aes_alloc = 0x400030c0 + 0x400030cc r_aes_ccm_continue = 0x400030cc + 0x400030d8 r_aes_ccm_process_e = 0x400030d8 + 0x400030e4 r_aes_ccm_xor_128_lsb = 0x400030e4 + 0x400030f0 r_aes_ccm_xor_128_msb = 0x400030f0 + 0x400030fc r_aes_cmac_continue = 0x400030fc + 0x40003108 r_aes_cmac_start = 0x40003108 + 0x40003114 r_aes_k1_continue = 0x40003114 + 0x40003120 r_aes_k2_continue = 0x40003120 + 0x4000312c r_aes_k3_continue = 0x4000312c + 0x40003138 r_aes_k4_continue = 0x40003138 + 0x40003144 r_aes_shift_left_128 = 0x40003144 + 0x40003150 r_aes_start = 0x40003150 + 0x4000315c r_aes_xor_128 = 0x4000315c + 0x40003168 r_assert_err = 0x40003168 + 0x40003174 r_assert_param = 0x40003174 + 0x40003180 r_assert_warn = 0x40003180 + 0x4000318c r_bigHexInversion256 = 0x4000318c + 0x40003198 r_ble_sw_cca_check_isr = 0x40003198 + 0x400031a4 r_ble_util_buf_acl_tx_alloc = 0x400031a4 + 0x400031b0 r_ble_util_buf_acl_tx_elt_get = 0x400031b0 + 0x400031bc r_ble_util_buf_acl_tx_free = 0x400031bc + 0x400031c8 r_ble_util_buf_acl_tx_free_in_isr = 0x400031c8 + 0x400031d4 r_ble_util_buf_adv_tx_alloc = 0x400031d4 + 0x400031e0 r_ble_util_buf_adv_tx_free = 0x400031e0 + 0x400031ec r_ble_util_buf_adv_tx_free_in_isr = 0x400031ec + 0x400031f8 r_ble_util_buf_env_deinit = 0x400031f8 + 0x40003204 r_ble_util_buf_env_init = 0x40003204 + 0x40003210 r_ble_util_buf_get_rx_buf_nb = 0x40003210 + 0x4000321c r_ble_util_buf_get_rx_buf_size = 0x4000321c + 0x40003228 r_ble_util_buf_llcp_tx_alloc = 0x40003228 + 0x40003234 r_ble_util_buf_llcp_tx_free = 0x40003234 + 0x40003240 r_ble_util_buf_rx_alloc = 0x40003240 + 0x4000324c r_ble_util_buf_rx_alloc_in_isr = 0x4000324c + 0x40003258 r_ble_util_buf_rx_free = 0x40003258 + 0x40003264 r_ble_util_buf_rx_free_in_isr = 0x40003264 + 0x40003270 r_ble_util_buf_set_rx_buf_nb = 0x40003270 + 0x4000327c r_ble_util_buf_set_rx_buf_size = 0x4000327c + 0x40003288 r_ble_util_data_rx_buf_reset = 0x40003288 + 0x40003294 r_bt_bb_get_intr_mask = 0x40003294 + 0x400032a0 r_bt_bb_intr_clear = 0x400032a0 + 0x400032ac r_bt_bb_intr_mask_set = 0x400032ac + 0x400032b8 r_bt_bb_isr = 0x400032b8 + 0x400032c4 r_bt_rf_coex_cfg_set = 0x400032c4 + 0x400032d0 r_bt_rf_coex_conn_dynamic_pti_en_get = 0x400032d0 + 0x400032dc r_bt_rf_coex_conn_phy_coded_data_time_limit_en_get = 0x400032dc + 0x400032e8 r_bt_rf_coex_ext_adv_dynamic_pti_en_get = 0x400032e8 + 0x400032f4 r_bt_rf_coex_ext_scan_dynamic_pti_en_get = 0x400032f4 + 0x40003300 r_bt_rf_coex_legacy_adv_dynamic_pti_en_get = 0x40003300 + 0x4000330c r_bt_rf_coex_per_adv_dynamic_pti_en_get = 0x4000330c + 0x40003318 r_bt_rf_coex_pti_table_get = 0x40003318 + 0x40003324 r_bt_rf_coex_st_param_get = 0x40003324 + 0x40003330 r_bt_rf_coex_st_param_set = 0x40003330 + 0x4000333c r_bt_rf_coex_sync_scan_dynamic_pti_en_get = 0x4000333c + 0x40003348 r_bt_rma_apply_rule_cs_fmt = 0x40003348 + 0x40003354 r_bt_rma_apply_rule_cs_idx = 0x40003354 + 0x40003360 r_bt_rma_configure = 0x40003360 + 0x4000336c r_bt_rma_deregister_rule_cs_fmt = 0x4000336c + 0x40003378 r_bt_rma_deregister_rule_cs_idx = 0x40003378 + 0x40003384 r_bt_rma_get_ant_by_act = 0x40003384 + 0x40003390 r_bt_rma_init = 0x40003390 + 0x4000339c r_bt_rma_register_rule_cs_fmt = 0x4000339c + 0x400033a8 r_bt_rma_register_rule_cs_idx = 0x400033a8 + 0x400033b4 r_bt_rtp_apply_rule_cs_fmt = 0x400033b4 + 0x400033c0 r_bt_rtp_apply_rule_cs_idx = 0x400033c0 + 0x400033cc r_bt_rtp_deregister_rule_cs_fmt = 0x400033cc + 0x400033d8 r_bt_rtp_deregister_rule_cs_idx = 0x400033d8 + 0x400033e4 r_bt_rtp_get_txpwr_idx_by_act = 0x400033e4 + 0x400033f0 r_bt_rtp_init = 0x400033f0 + 0x400033fc r_bt_rtp_register_rule_cs_fmt = 0x400033fc + 0x40003408 r_bt_rtp_register_rule_cs_idx = 0x40003408 + 0x40003414 r_btdm_isr = 0x40003414 + 0x40003420 r_btdm_task_post = 0x40003420 + 0x4000342c r_btdm_task_post_from_isr = 0x4000342c + 0x40003438 r_btdm_task_recycle = 0x40003438 + 0x40003444 r_cali_phase_match_p = 0x40003444 + 0x40003450 r_cmp_abs_time = 0x40003450 + 0x4000345c r_cmp_dest_id = 0x4000345c + 0x40003468 r_cmp_timer_id = 0x40003468 + 0x40003474 r_co_bdaddr_compare = 0x40003474 + 0x40003480 r_co_ble_pkt_dur_in_us = 0x40003480 + 0x4000348c r_co_list_extract = 0x4000348c + 0x40003498 r_co_list_extract_after = 0x40003498 + 0x400034a4 r_co_list_extract_sublist = 0x400034a4 + 0x400034b0 r_co_list_find = 0x400034b0 + 0x400034bc r_co_list_init = 0x400034bc + 0x400034c8 r_co_list_insert_after = 0x400034c8 + 0x400034d4 r_co_list_insert_before = 0x400034d4 + 0x400034e0 r_co_list_merge = 0x400034e0 + 0x400034ec r_co_list_pool_init = 0x400034ec + 0x400034f8 r_co_list_pop_front = 0x400034f8 + 0x40003504 r_co_list_push_back = 0x40003504 + 0x40003510 r_co_list_push_back_sublist = 0x40003510 + 0x4000351c r_co_list_push_front = 0x4000351c + 0x40003528 r_co_list_size = 0x40003528 + 0x40003534 r_co_nb_good_le_channels = 0x40003534 + 0x40003540 r_co_util_pack = 0x40003540 + 0x4000354c r_co_util_read_array_size = 0x4000354c + 0x40003558 r_co_util_unpack = 0x40003558 + 0x40003564 r_dbg_env_deinit = 0x40003564 + 0x40003570 r_dbg_env_init = 0x40003570 + 0x4000357c r_dbg_platform_reset_complete = 0x4000357c + 0x40003588 r_dl_upd_proc_start = 0x40003588 + 0x40003594 r_dump_data = 0x40003594 + 0x400035a0 r_ecc_abort_key256_generation = 0x400035a0 + 0x400035ac r_ecc_gen_new_public_key = 0x400035ac + 0x400035b8 r_ecc_gen_new_secret_key = 0x400035b8 + 0x400035c4 r_ecc_generate_key256 = 0x400035c4 + 0x400035d0 r_ecc_get_debug_Keys = 0x400035d0 + 0x400035dc r_ecc_init = 0x400035dc + 0x400035e8 r_ecc_is_valid_point = 0x400035e8 + 0x400035f4 r_ecc_multiplication_event_handler = 0x400035f4 + 0x40003600 r_ecc_point_multiplication_win_256 = 0x40003600 + 0x4000360c r_emi_alloc_em_mapping_by_offset = 0x4000360c + 0x40003618 r_emi_base_reg_lut_show = 0x40003618 + 0x40003624 r_emi_em_base_reg_show = 0x40003624 + 0x40003630 r_emi_free_em_mapping_by_offset = 0x40003630 + 0x4000363c r_emi_get_em_mapping_idx_by_offset = 0x4000363c + 0x40003648 r_emi_get_mem_addr_by_offset = 0x40003648 + 0x40003654 r_emi_overwrite_em_mapping_by_offset = 0x40003654 + 0x40003660 r_esp_vendor_hci_command_handler = 0x40003660 + 0x4000366c r_get_stack_usage = 0x4000366c + 0x40003678 r_h4tl_acl_hdr_rx_evt_handler = 0x40003678 + 0x40003684 r_h4tl_cmd_hdr_rx_evt_handler = 0x40003684 + 0x40003690 r_h4tl_cmd_pld_rx_evt_handler = 0x40003690 + 0x4000369c r_h4tl_eif_io_event_post = 0x4000369c + 0x400036a8 r_h4tl_eif_register = 0x400036a8 + 0x400036b4 r_h4tl_init = 0x400036b4 + 0x400036c0 r_h4tl_out_of_sync = 0x400036c0 + 0x400036cc r_h4tl_out_of_sync_check = 0x400036cc + 0x400036d8 r_h4tl_read_hdr = 0x400036d8 + 0x400036e4 r_h4tl_read_next_out_of_sync = 0x400036e4 + 0x400036f0 r_h4tl_read_payl = 0x400036f0 + 0x400036fc r_h4tl_read_start = 0x400036fc + 0x40003708 r_h4tl_rx_acl_hdr_extract = 0x40003708 + 0x40003714 r_h4tl_rx_cmd_hdr_extract = 0x40003714 + 0x40003720 r_h4tl_rx_done = 0x40003720 + 0x4000372c r_h4tl_start = 0x4000372c + 0x40003738 r_h4tl_stop = 0x40003738 + 0x40003744 r_h4tl_tx_done = 0x40003744 + 0x40003750 r_h4tl_tx_evt_handler = 0x40003750 + 0x4000375c r_h4tl_write = 0x4000375c + 0x40003768 r_hci_acl_tx_data_alloc = 0x40003768 + 0x40003774 r_hci_acl_tx_data_received = 0x40003774 + 0x40003780 r_hci_basic_cmd_send_2_controller = 0x40003780 + 0x4000378c r_hci_ble_adv_report_filter_check = 0x4000378c + 0x40003798 r_hci_ble_adv_report_tx_check = 0x40003798 + 0x400037a4 r_hci_ble_conhdl_register = 0x400037a4 + 0x400037b0 r_hci_ble_conhdl_unregister = 0x400037b0 + 0x400037bc r_hci_build_acl_data = 0x400037bc + 0x400037c8 r_hci_build_cc_evt = 0x400037c8 + 0x400037d4 r_hci_build_cs_evt = 0x400037d4 + 0x400037e0 r_hci_build_evt = 0x400037e0 + 0x400037ec r_hci_build_le_evt = 0x400037ec + 0x400037f8 r_hci_cmd_get_max_param_size = 0x400037f8 + 0x40003804 r_hci_cmd_received = 0x40003804 + 0x40003810 r_hci_cmd_reject = 0x40003810 + 0x4000381c r_hci_evt_mask_check = 0x4000381c + 0x40003828 r_hci_evt_mask_set = 0x40003828 + 0x40003834 r_hci_fc_acl_buf_size_set = 0x40003834 + 0x40003840 r_hci_fc_acl_en = 0x40003840 + 0x4000384c r_hci_fc_acl_packet_sent = 0x4000384c + 0x40003858 r_hci_fc_check_host_available_nb_acl_packets = 0x40003858 + 0x40003864 r_hci_fc_host_nb_acl_pkts_complete = 0x40003864 + 0x40003870 r_hci_fc_init = 0x40003870 + 0x4000387c r_hci_look_for_cmd_desc = 0x4000387c + 0x40003888 r_hci_look_for_evt_desc = 0x40003888 + 0x40003894 r_hci_look_for_le_evt_desc = 0x40003894 + 0x400038a0 r_hci_look_for_le_evt_desc_esp = 0x400038a0 + 0x400038ac r_hci_pack_bytes = 0x400038ac + 0x400038b8 r_hci_register_vendor_desc_tab = 0x400038b8 + 0x400038c4 r_hci_send_2_controller = 0x400038c4 + 0x400038d0 r_hci_send_2_host = 0x400038d0 + 0x400038dc r_hci_tl_c2h_data_flow_on = 0x400038dc + 0x400038e8 r_hci_tl_cmd_hdr_rx_evt_handler = 0x400038e8 + 0x400038f4 r_hci_tl_cmd_pld_rx_evt_handler = 0x400038f4 + 0x40003900 r_hci_tl_get_pkt = 0x40003900 + 0x4000390c r_hci_tl_hci_pkt_handler = 0x4000390c + 0x40003918 r_hci_tl_hci_tx_done_evt_handler = 0x40003918 + 0x40003924 r_hci_tl_inc_nb_h2c_cmd_pkts = 0x40003924 + 0x40003930 r_hci_tl_save_pkt = 0x40003930 + 0x4000393c r_hci_tl_send = 0x4000393c + 0x40003948 r_hci_tx_done = 0x40003948 + 0x40003954 r_hci_tx_start = 0x40003954 + 0x40003960 r_hci_tx_trigger = 0x40003960 + 0x4000396c r_isValidSecretKey_256 = 0x4000396c + 0x40003978 r_ke_check_malloc = 0x40003978 + 0x40003984 r_ke_event_callback_set = 0x40003984 + 0x40003990 r_ke_event_clear = 0x40003990 + 0x4000399c r_ke_event_flush = 0x4000399c + 0x400039a8 r_ke_event_get = 0x400039a8 + 0x400039b4 r_ke_event_get_all = 0x400039b4 + 0x400039c0 r_ke_event_init = 0x400039c0 + 0x400039cc r_ke_event_schedule = 0x400039cc + 0x400039d8 r_ke_event_set = 0x400039d8 + 0x400039e4 r_ke_flush = 0x400039e4 + 0x400039f0 r_ke_free = 0x400039f0 + 0x400039fc r_ke_handler_search = 0x400039fc + 0x40003a08 r_ke_init = 0x40003a08 + 0x40003a14 r_ke_is_free = 0x40003a14 + 0x40003a20 r_ke_malloc = 0x40003a20 + 0x40003a2c r_ke_mem_init = 0x40003a2c + 0x40003a38 r_ke_mem_is_empty = 0x40003a38 + 0x40003a44 r_ke_mem_is_in_heap = 0x40003a44 + 0x40003a50 r_ke_msg_alloc = 0x40003a50 + 0x40003a5c r_ke_msg_dest_id_get = 0x40003a5c + 0x40003a68 r_ke_msg_discard = 0x40003a68 + 0x40003a74 r_ke_msg_forward = 0x40003a74 + 0x40003a80 r_ke_msg_forward_new_id = 0x40003a80 + 0x40003a8c r_ke_msg_free = 0x40003a8c + 0x40003a98 r_ke_msg_in_queue = 0x40003a98 + 0x40003aa4 r_ke_msg_save = 0x40003aa4 + 0x40003ab0 r_ke_msg_send = 0x40003ab0 + 0x40003abc r_ke_msg_send_basic = 0x40003abc + 0x40003ac8 r_ke_msg_src_id_get = 0x40003ac8 + 0x40003ad4 r_ke_queue_extract = 0x40003ad4 + 0x40003ae0 r_ke_queue_insert = 0x40003ae0 + 0x40003aec r_ke_sleep_check = 0x40003aec + 0x40003af8 r_ke_state_get = 0x40003af8 + 0x40003b04 r_ke_state_set = 0x40003b04 + 0x40003b10 r_ke_task_check = 0x40003b10 + 0x40003b1c r_ke_task_create = 0x40003b1c + 0x40003b28 r_ke_task_delete = 0x40003b28 + 0x40003b34 r_ke_task_handler_get = 0x40003b34 + 0x40003b40 r_ke_task_init = 0x40003b40 + 0x40003b4c r_ke_task_msg_flush = 0x40003b4c + 0x40003b58 r_ke_task_saved_update = 0x40003b58 + 0x40003b64 r_ke_task_schedule = 0x40003b64 + 0x40003b70 r_ke_time = 0x40003b70 + 0x40003b7c r_ke_time_cmp = 0x40003b7c + 0x40003b88 r_ke_time_past = 0x40003b88 + 0x40003b94 r_ke_timer_active = 0x40003b94 + 0x40003ba0 r_ke_timer_adjust_all = 0x40003ba0 + 0x40003bac r_ke_timer_clear = 0x40003bac + 0x40003bb8 r_ke_timer_init = 0x40003bb8 + 0x40003bc4 r_ke_timer_schedule = 0x40003bc4 + 0x40003bd0 r_ke_timer_set = 0x40003bd0 + 0x40003bdc r_led_init = 0x40003bdc + 0x40003be8 r_led_set_all = 0x40003be8 + 0x40003bf4 r_llc_aes_res_cb = 0x40003bf4 + 0x40003c00 r_llc_ch_map_up_proc_err_cb = 0x40003c00 + 0x40003c0c r_llc_cleanup = 0x40003c0c + 0x40003c18 r_llc_cmd_cmp_send = 0x40003c18 + 0x40003c24 r_llc_cmd_stat_send = 0x40003c24 + 0x40003c30 r_llc_con_move_cbk = 0x40003c30 + 0x40003c3c r_llc_con_plan_set_update = 0x40003c3c + 0x40003c48 r_llc_con_upd_param_in_range = 0x40003c48 + 0x40003c54 r_llc_disconnect = 0x40003c54 + 0x40003c60 r_llc_disconnect_end = 0x40003c60 + 0x40003c6c r_llc_disconnect_proc_continue = 0x40003c6c + 0x40003c78 r_llc_disconnect_proc_err_cb = 0x40003c78 + 0x40003c84 r_llc_dl_chg_check = 0x40003c84 + 0x40003c90 r_llc_dle_proc_err_cb = 0x40003c90 + 0x40003c9c r_llc_feats_exch_proc_err_cb = 0x40003c9c + 0x40003ca8 r_llc_hci_cmd_handler_tab_p_get = 0x40003ca8 + 0x40003cb4 r_llc_hci_command_handler = 0x40003cb4 + 0x40003cc0 r_llc_hci_con_param_req_evt_send = 0x40003cc0 + 0x40003ccc r_llc_hci_con_upd_info_send = 0x40003ccc + 0x40003cd8 r_llc_hci_disconnected_dis = 0x40003cd8 + 0x40003ce4 r_llc_hci_dl_upd_info_send = 0x40003ce4 + 0x40003cf0 r_llc_hci_enc_evt_send = 0x40003cf0 + 0x40003cfc r_llc_hci_feats_info_send = 0x40003cfc + 0x40003d08 r_llc_hci_le_phy_upd_cmp_evt_send = 0x40003d08 + 0x40003d14 r_llc_hci_ltk_request_evt_send = 0x40003d14 + 0x40003d20 r_llc_hci_nb_cmp_pkts_evt_send = 0x40003d20 + 0x40003d2c r_llc_hci_version_info_send = 0x40003d2c + 0x40003d38 r_llc_init_term_proc = 0x40003d38 + 0x40003d44 r_llc_iv_skd_rand_gen = 0x40003d44 + 0x40003d50 r_llc_le_ping_proc_continue = 0x40003d50 + 0x40003d5c r_llc_le_ping_proc_err_cb = 0x40003d5c + 0x40003d68 r_llc_le_ping_restart = 0x40003d68 + 0x40003d74 r_llc_le_ping_set = 0x40003d74 + 0x40003d80 r_llc_ll_pause_enc_rsp_ack_handler = 0x40003d80 + 0x40003d8c r_llc_ll_reject_ind_ack_handler = 0x40003d8c + 0x40003d98 r_llc_ll_reject_ind_pdu_send = 0x40003d98 + 0x40003da4 r_llc_ll_start_enc_rsp_ack_handler = 0x40003da4 + 0x40003db0 r_llc_ll_terminate_ind_ack = 0x40003db0 + 0x40003dbc r_llc_ll_unknown_ind_handler = 0x40003dbc + 0x40003dc8 r_llc_llcp_send = 0x40003dc8 + 0x40003dd4 r_llc_llcp_state_set = 0x40003dd4 + 0x40003de0 r_llc_llcp_trans_timer_set = 0x40003de0 + 0x40003dec r_llc_llcp_tx_check = 0x40003dec + 0x40003df8 r_llc_loc_ch_map_proc_continue = 0x40003df8 + 0x40003e04 r_llc_loc_con_upd_proc_continue = 0x40003e04 + 0x40003e10 r_llc_loc_con_upd_proc_err_cb = 0x40003e10 + 0x40003e1c r_llc_loc_dl_upd_proc_continue = 0x40003e1c + 0x40003e28 r_llc_loc_encrypt_proc_continue = 0x40003e28 + 0x40003e34 r_llc_loc_encrypt_proc_err_cb = 0x40003e34 + 0x40003e40 r_llc_loc_feats_exch_proc_continue = 0x40003e40 + 0x40003e4c r_llc_loc_phy_upd_proc_continue = 0x40003e4c + 0x40003e58 r_llc_loc_phy_upd_proc_err_cb = 0x40003e58 + 0x40003e64 r_llc_msg_handler_tab_p_get = 0x40003e64 + 0x40003e70 r_llc_pref_param_compute = 0x40003e70 + 0x40003e7c r_llc_proc_collision_check = 0x40003e7c + 0x40003e88 r_llc_proc_err_ind = 0x40003e88 + 0x40003e94 r_llc_proc_get = 0x40003e94 + 0x40003ea0 r_llc_proc_id_get = 0x40003ea0 + 0x40003eac r_llc_proc_reg = 0x40003eac + 0x40003eb8 r_llc_proc_state_get = 0x40003eb8 + 0x40003ec4 r_llc_proc_state_set = 0x40003ec4 + 0x40003ed0 r_llc_proc_timer_pause_set = 0x40003ed0 + 0x40003edc r_llc_proc_timer_set = 0x40003edc + 0x40003ee8 r_llc_proc_unreg = 0x40003ee8 + 0x40003ef4 r_llc_rem_ch_map_proc_continue = 0x40003ef4 + 0x40003f00 r_llc_rem_con_upd_proc_continue = 0x40003f00 + 0x40003f0c r_llc_rem_con_upd_proc_err_cb = 0x40003f0c + 0x40003f18 r_llc_rem_dl_upd_proc = 0x40003f18 + 0x40003f24 r_llc_rem_encrypt_proc_continue = 0x40003f24 + 0x40003f30 r_llc_rem_encrypt_proc_err_cb = 0x40003f30 + 0x40003f3c r_llc_rem_phy_upd_proc_continue = 0x40003f3c + 0x40003f48 r_llc_rem_phy_upd_proc_err_cb = 0x40003f48 + 0x40003f54 r_llc_role_get = 0x40003f54 + 0x40003f60 r_llc_sk_gen = 0x40003f60 + 0x40003f6c r_llc_start = 0x40003f6c + 0x40003f78 r_llc_stop = 0x40003f78 + 0x40003f84 r_llc_ver_exch_loc_proc_continue = 0x40003f84 + 0x40003f90 r_llc_ver_proc_err_cb = 0x40003f90 + 0x40003f9c r_llcp_pdu_handler_tab_p_get = 0x40003f9c + 0x40003fa8 r_lld_aa_gen = 0x40003fa8 + 0x40003fb4 r_lld_adv_adv_data_set = 0x40003fb4 + 0x40003fc0 r_lld_adv_adv_data_update = 0x40003fc0 + 0x40003fcc r_lld_adv_aux_ch_idx_set = 0x40003fcc + 0x40003fd8 r_lld_adv_aux_evt_canceled_cbk = 0x40003fd8 + 0x40003fe4 r_lld_adv_aux_evt_start_cbk = 0x40003fe4 + 0x40003ff0 r_lld_adv_coex_check_ext_adv_synced = 0x40003ff0 + 0x40003ffc r_lld_adv_coex_env_reset = 0x40003ffc + 0x40004008 r_lld_adv_duration_update = 0x40004008 + 0x40004014 r_lld_adv_dynamic_pti_process = 0x40004014 + 0x40004020 r_lld_adv_end = 0x40004020 + 0x4000402c r_lld_adv_evt_canceled_cbk = 0x4000402c + 0x40004038 r_lld_adv_evt_start_cbk = 0x40004038 + 0x40004044 r_lld_adv_ext_chain_construct = 0x40004044 + 0x40004050 r_lld_adv_ext_pkt_prepare = 0x40004050 + 0x4000405c r_lld_adv_frm_cbk = 0x4000405c + 0x40004068 r_lld_adv_frm_isr = 0x40004068 + 0x40004074 r_lld_adv_frm_skip_isr = 0x40004074 + 0x40004080 r_lld_adv_init = 0x40004080 + 0x4000408c r_lld_adv_pkt_rx = 0x4000408c + 0x40004098 r_lld_adv_pkt_rx_connect_ind = 0x40004098 + 0x400040a4 r_lld_adv_pkt_rx_send_scan_req_evt = 0x400040a4 + 0x400040b0 r_lld_adv_rand_addr_update = 0x400040b0 + 0x400040bc r_lld_adv_restart = 0x400040bc + 0x400040c8 r_lld_adv_scan_rsp_data_set = 0x400040c8 + 0x400040d4 r_lld_adv_scan_rsp_data_update = 0x400040d4 + 0x400040e0 r_lld_adv_set_tx_power = 0x400040e0 + 0x400040ec r_lld_adv_start = 0x400040ec + 0x400040f8 r_lld_adv_stop = 0x400040f8 + 0x40004104 r_lld_adv_sync_info_set = 0x40004104 + 0x40004110 r_lld_adv_sync_info_update = 0x40004110 + 0x4000411c r_lld_calc_aux_rx = 0x4000411c + 0x40004128 r_lld_cca_alloc = 0x40004128 + 0x40004134 r_lld_cca_data_reset = 0x40004134 + 0x40004140 r_lld_cca_free = 0x40004140 + 0x4000414c r_lld_ch_assess_data_get = 0x4000414c + 0x40004158 r_lld_ch_idx_get = 0x40004158 + 0x40004164 r_lld_ch_map_set = 0x40004164 + 0x40004170 r_lld_channel_assess = 0x40004170 + 0x4000417c r_lld_con_activity_act_offset_compute = 0x4000417c + 0x40004188 r_lld_con_activity_offset_compute = 0x40004188 + 0x40004194 r_lld_con_ch_map_update = 0x40004194 + 0x400041a0 r_lld_con_cleanup = 0x400041a0 + 0x400041ac r_lld_con_current_tx_power_get = 0x400041ac + 0x400041b8 r_lld_con_data_flow_set = 0x400041b8 + 0x400041c4 r_lld_con_data_len_update = 0x400041c4 + 0x400041d0 r_lld_con_data_tx = 0x400041d0 + 0x400041dc r_lld_con_enc_key_load = 0x400041dc + 0x400041e8 r_lld_con_event_counter_get = 0x400041e8 + 0x400041f4 r_lld_con_evt_canceled_cbk = 0x400041f4 + 0x40004200 r_lld_con_evt_duration_min_get = 0x40004200 + 0x4000420c r_lld_con_evt_max_eff_time_cal = 0x4000420c + 0x40004218 r_lld_con_evt_sd_evt_time_get = 0x40004218 + 0x40004224 r_lld_con_evt_start_cbk = 0x40004224 + 0x40004230 r_lld_con_evt_time_update = 0x40004230 + 0x4000423c r_lld_con_free_all_tx_buf = 0x4000423c + 0x40004248 r_lld_con_frm_cbk = 0x40004248 + 0x40004254 r_lld_con_frm_isr = 0x40004254 + 0x40004260 r_lld_con_frm_skip_isr = 0x40004260 + 0x4000426c r_lld_con_init = 0x4000426c + 0x40004278 r_lld_con_llcp_tx = 0x40004278 + 0x40004284 r_lld_con_max_lat_calc = 0x40004284 + 0x40004290 r_lld_con_offset_get = 0x40004290 + 0x4000429c r_lld_con_param_update = 0x4000429c + 0x400042a8 r_lld_con_phys_update = 0x400042a8 + 0x400042b4 r_lld_con_pref_slave_evt_dur_set = 0x400042b4 + 0x400042c0 r_lld_con_pref_slave_latency_set = 0x400042c0 + 0x400042cc r_lld_con_rssi_get = 0x400042cc + 0x400042d8 r_lld_con_rx = 0x400042d8 + 0x400042e4 r_lld_con_rx_channel_assess = 0x400042e4 + 0x400042f0 r_lld_con_rx_enc = 0x400042f0 + 0x400042fc r_lld_con_rx_isr = 0x400042fc + 0x40004308 r_lld_con_rx_link_info_check = 0x40004308 + 0x40004314 r_lld_con_rx_llcp_check = 0x40004314 + 0x40004320 r_lld_con_rx_sync_time_update = 0x40004320 + 0x4000432c r_lld_con_sched = 0x4000432c + 0x40004338 r_lld_con_set_tx_power = 0x40004338 + 0x40004344 r_lld_con_start = 0x40004344 + 0x40004350 r_lld_con_stop = 0x40004350 + 0x4000435c r_lld_con_tx = 0x4000435c + 0x40004368 r_lld_con_tx_enc = 0x40004368 + 0x40004374 r_lld_con_tx_isr = 0x40004374 + 0x40004380 r_lld_con_tx_len_update = 0x40004380 + 0x4000438c r_lld_con_tx_len_update_for_intv = 0x4000438c + 0x40004398 r_lld_con_tx_len_update_for_rate = 0x40004398 + 0x400043a4 r_lld_con_tx_prog = 0x400043a4 + 0x400043b0 r_lld_conn_dynamic_pti_process = 0x400043b0 + 0x400043bc r_lld_continue_scan_rx_isr_end_process = 0x400043bc + 0x400043c8 r_lld_ext_scan_dynamic_pti_process = 0x400043c8 + 0x400043d4 r_lld_hw_cca_end_isr = 0x400043d4 + 0x400043e0 r_lld_hw_cca_evt_handler = 0x400043e0 + 0x400043ec r_lld_hw_cca_isr = 0x400043ec + 0x400043f8 r_lld_init_cal_anchor_point = 0x400043f8 + 0x40004404 r_lld_init_compute_winoffset = 0x40004404 + 0x40004410 r_lld_init_connect_req_pack = 0x40004410 + 0x4000441c r_lld_init_end = 0x4000441c + 0x40004428 r_lld_init_evt_canceled_cbk = 0x40004428 + 0x40004434 r_lld_init_evt_start_cbk = 0x40004434 + 0x40004440 r_lld_init_frm_cbk = 0x40004440 + 0x4000444c r_lld_init_frm_eof_isr = 0x4000444c + 0x40004458 r_lld_init_frm_skip_isr = 0x40004458 + 0x40004464 r_lld_init_init = 0x40004464 + 0x40004470 r_lld_init_process_pkt_rx = 0x40004470 + 0x4000447c r_lld_init_process_pkt_rx_adv_ext_ind = 0x4000447c + 0x40004488 r_lld_init_process_pkt_rx_adv_ind_or_direct_ind = 0x40004488 + 0x40004494 r_lld_init_process_pkt_rx_aux_connect_rsp = 0x40004494 + 0x400044a0 r_lld_init_process_pkt_tx = 0x400044a0 + 0x400044ac r_lld_init_process_pkt_tx_cal_con_timestamp = 0x400044ac + 0x400044b8 r_lld_init_sched = 0x400044b8 + 0x400044c4 r_lld_init_set_tx_power = 0x400044c4 + 0x400044d0 r_lld_init_start = 0x400044d0 + 0x400044dc r_lld_init_stop = 0x400044dc + 0x400044e8 r_lld_instant_proc_end = 0x400044e8 + 0x400044f4 r_lld_llcp_rx_ind_handler = 0x400044f4 + 0x40004500 r_lld_per_adv_ch_map_update = 0x40004500 + 0x4000450c r_lld_per_adv_chain_construct = 0x4000450c + 0x40004518 r_lld_per_adv_cleanup = 0x40004518 + 0x40004524 r_lld_per_adv_coex_env_reset = 0x40004524 + 0x40004530 r_lld_per_adv_data_set = 0x40004530 + 0x4000453c r_lld_per_adv_data_update = 0x4000453c + 0x40004548 r_lld_per_adv_dynamic_pti_process = 0x40004548 + 0x40004554 r_lld_per_adv_evt_canceled_cbk = 0x40004554 + 0x40004560 r_lld_per_adv_evt_start_cbk = 0x40004560 + 0x4000456c r_lld_per_adv_ext_pkt_prepare = 0x4000456c + 0x40004578 r_lld_per_adv_frm_cbk = 0x40004578 + 0x40004584 r_lld_per_adv_frm_isr = 0x40004584 + 0x40004590 r_lld_per_adv_frm_skip_isr = 0x40004590 + 0x4000459c r_lld_per_adv_init = 0x4000459c + 0x400045a8 r_lld_per_adv_init_info_get = 0x400045a8 + 0x400045b4 r_lld_per_adv_list_add = 0x400045b4 + 0x400045c0 r_lld_per_adv_list_rem = 0x400045c0 + 0x400045cc r_lld_per_adv_sched = 0x400045cc + 0x400045d8 r_lld_per_adv_set_tx_power = 0x400045d8 + 0x400045e4 r_lld_per_adv_start = 0x400045e4 + 0x400045f0 r_lld_per_adv_stop = 0x400045f0 + 0x400045fc r_lld_per_adv_sync_info_get = 0x400045fc + 0x40004608 r_lld_process_cca_data = 0x40004608 + 0x40004614 r_lld_ral_search = 0x40004614 + 0x40004620 r_lld_read_clock = 0x40004620 + 0x4000462c r_lld_res_list_add = 0x4000462c + 0x40004638 r_lld_res_list_clear = 0x40004638 + 0x40004644 r_lld_res_list_is_empty = 0x40004644 + 0x40004650 r_lld_res_list_local_rpa_get = 0x40004650 + 0x4000465c r_lld_res_list_peer_rpa_get = 0x4000465c + 0x40004668 r_lld_res_list_peer_update = 0x40004668 + 0x40004674 r_lld_res_list_priv_mode_update = 0x40004674 + 0x40004680 r_lld_res_list_rem = 0x40004680 + 0x4000468c r_lld_reset_reg = 0x4000468c + 0x40004698 r_lld_rpa_renew = 0x40004698 + 0x400046a4 r_lld_rpa_renew_evt_canceled_cbk = 0x400046a4 + 0x400046b0 r_lld_rpa_renew_evt_start_cbk = 0x400046b0 + 0x400046bc r_lld_rpa_renew_instant_cbk = 0x400046bc + 0x400046c8 r_lld_rxdesc_check = 0x400046c8 + 0x400046d4 r_lld_rxdesc_free = 0x400046d4 + 0x400046e0 r_lld_scan_create_sync = 0x400046e0 + 0x400046ec r_lld_scan_create_sync_cancel = 0x400046ec + 0x400046f8 r_lld_scan_end = 0x400046f8 + 0x40004704 r_lld_scan_evt_canceled_cbk = 0x40004704 + 0x40004710 r_lld_scan_evt_start_cbk = 0x40004710 + 0x4000471c r_lld_scan_frm_cbk = 0x4000471c + 0x40004728 r_lld_scan_frm_eof_isr = 0x40004728 + 0x40004734 r_lld_scan_frm_rx_isr = 0x40004734 + 0x40004740 r_lld_scan_frm_skip_isr = 0x40004740 + 0x4000474c r_lld_scan_init = 0x4000474c + 0x40004758 r_lld_scan_params_update = 0x40004758 + 0x40004764 r_lld_scan_process_pkt_rx = 0x40004764 + 0x40004770 r_lld_scan_process_pkt_rx_adv_rep = 0x40004770 + 0x4000477c r_lld_scan_process_pkt_rx_aux_adv_ind = 0x4000477c + 0x40004788 r_lld_scan_process_pkt_rx_aux_chain_ind = 0x40004788 + 0x40004794 r_lld_scan_process_pkt_rx_aux_scan_rsp = 0x40004794 + 0x400047a0 r_lld_scan_process_pkt_rx_ext_adv = 0x400047a0 + 0x400047ac r_lld_scan_process_pkt_rx_ext_adv_ind = 0x400047ac + 0x400047b8 r_lld_scan_process_pkt_rx_legacy_adv = 0x400047b8 + 0x400047c4 r_lld_scan_restart = 0x400047c4 + 0x400047d0 r_lld_scan_sched = 0x400047d0 + 0x400047dc r_lld_scan_set_tx_power = 0x400047dc + 0x400047e8 r_lld_scan_start = 0x400047e8 + 0x400047f4 r_lld_scan_stop = 0x400047f4 + 0x40004800 r_lld_scan_sync_accept = 0x40004800 + 0x4000480c r_lld_scan_sync_info_unpack = 0x4000480c + 0x40004818 r_lld_scan_trunc_ind = 0x40004818 + 0x40004824 r_lld_sw_cca_evt_handler = 0x40004824 + 0x40004830 r_lld_sw_cca_isr = 0x40004830 + 0x4000483c r_lld_sync_ch_map_update = 0x4000483c + 0x40004848 r_lld_sync_cleanup = 0x40004848 + 0x40004854 r_lld_sync_evt_canceled_cbk = 0x40004854 + 0x40004860 r_lld_sync_evt_start_cbk = 0x40004860 + 0x4000486c r_lld_sync_frm_cbk = 0x4000486c + 0x40004878 r_lld_sync_frm_eof_isr = 0x40004878 + 0x40004884 r_lld_sync_frm_rx_isr = 0x40004884 + 0x40004890 r_lld_sync_frm_skip_isr = 0x40004890 + 0x4000489c r_lld_sync_init = 0x4000489c + 0x400048a8 r_lld_sync_process_pkt_rx = 0x400048a8 + 0x400048b4 r_lld_sync_process_pkt_rx_aux_sync_ind = 0x400048b4 + 0x400048c0 r_lld_sync_process_pkt_rx_pkt_check = 0x400048c0 + 0x400048cc r_lld_sync_scan_dynamic_pti_process = 0x400048cc + 0x400048d8 r_lld_sync_sched = 0x400048d8 + 0x400048e4 r_lld_sync_start = 0x400048e4 + 0x400048f0 r_lld_sync_stop = 0x400048f0 + 0x400048fc r_lld_sync_trunc_ind = 0x400048fc + 0x40004908 r_lld_test_cleanup = 0x40004908 + 0x40004914 r_lld_test_evt_canceled_cbk = 0x40004914 + 0x40004920 r_lld_test_evt_start_cbk = 0x40004920 + 0x4000492c r_lld_test_freq2chnl = 0x4000492c + 0x40004938 r_lld_test_frm_cbk = 0x40004938 + 0x40004944 r_lld_test_frm_isr = 0x40004944 + 0x40004950 r_lld_test_init = 0x40004950 + 0x4000495c r_lld_test_rx_isr = 0x4000495c + 0x40004968 r_lld_test_set_tx_power = 0x40004968 + 0x40004974 r_lld_test_start = 0x40004974 + 0x40004980 r_lld_test_stop = 0x40004980 + 0x4000498c r_lld_update_rxbuf = 0x4000498c + 0x40004998 r_lld_update_rxbuf_isr = 0x40004998 + 0x400049a4 r_lld_white_list_add = 0x400049a4 + 0x400049b0 r_lld_white_list_rem = 0x400049b0 + 0x400049bc r_llm_activity_free_get = 0x400049bc + 0x400049c8 r_llm_activity_free_set = 0x400049c8 + 0x400049d4 r_llm_activity_syncing_get = 0x400049d4 + 0x400049e0 r_llm_adv_con_len_check = 0x400049e0 + 0x400049ec r_llm_adv_hdl_to_id = 0x400049ec + 0x400049f8 r_llm_adv_rep_flow_control_check = 0x400049f8 + 0x40004a04 r_llm_adv_rep_flow_control_update = 0x40004a04 + 0x40004a10 r_llm_adv_reports_list_check = 0x40004a10 + 0x40004a1c r_llm_adv_set_all_release = 0x40004a1c + 0x40004a28 r_llm_adv_set_dft_params = 0x40004a28 + 0x40004a34 r_llm_adv_set_release = 0x40004a34 + 0x40004a40 r_llm_aes_res_cb = 0x40004a40 + 0x40004a4c r_llm_ble_update_adv_flow_control = 0x40004a4c + 0x40004a58 r_llm_ch_map_update = 0x40004a58 + 0x40004a64 r_llm_cmd_cmp_send = 0x40004a64 + 0x40004a70 r_llm_cmd_stat_send = 0x40004a70 + 0x40004a7c r_llm_dev_list_empty_entry = 0x40004a7c + 0x40004a88 r_llm_dev_list_search = 0x40004a88 + 0x40004a94 r_llm_env_adv_dup_filt_deinit = 0x40004a94 + 0x40004aa0 r_llm_env_adv_dup_filt_init = 0x40004aa0 + 0x40004aac r_llm_init_ble_adv_report_flow_contol = 0x40004aac + 0x40004ab8 r_llm_is_dev_connected = 0x40004ab8 + 0x40004ac4 r_llm_is_dev_synced = 0x40004ac4 + 0x40004ad0 r_llm_is_non_con_act_ongoing_check = 0x40004ad0 + 0x40004adc r_llm_is_wl_accessible = 0x40004adc + 0x40004ae8 r_llm_le_evt_mask_check = 0x40004ae8 + 0x40004af4 r_llm_le_features_get = 0x40004af4 + 0x40004b00 r_llm_link_disc = 0x40004b00 + 0x40004b0c r_llm_master_ch_map_get = 0x40004b0c + 0x40004b18 r_llm_msg_handler_tab_p_get = 0x40004b18 + 0x40004b24 r_llm_no_activity = 0x40004b24 + 0x40004b30 r_llm_per_adv_slot_dur = 0x40004b30 + 0x40004b3c r_llm_plan_elt_get = 0x40004b3c + 0x40004b48 r_llm_rx_path_comp_get = 0x40004b48 + 0x40004b54 r_llm_scan_start = 0x40004b54 + 0x40004b60 r_llm_scan_sync_acad_attach = 0x40004b60 + 0x40004b6c r_llm_scan_sync_acad_detach = 0x40004b6c + 0x40004b78 r_llm_send_adv_lost_event_to_host = 0x40004b78 + 0x40004b84 r_llm_tx_path_comp_get = 0x40004b84 + 0x40004b90 r_misc_deinit = 0x40004b90 + 0x40004b9c r_misc_free_em_buf_in_isr = 0x40004b9c + 0x40004ba8 r_misc_init = 0x40004ba8 + 0x40004bb4 r_misc_msg_handler_tab_p_get = 0x40004bb4 + 0x40004bc0 r_notEqual256 = 0x40004bc0 + 0x40004bcc r_phy_upd_proc_start = 0x40004bcc + 0x40004bd8 r_platform_reset = 0x40004bd8 + 0x40004be4 r_register_esp_vendor_cmd_handler = 0x40004be4 + 0x40004bf0 r_rf_em_init = 0x40004bf0 + 0x40004bfc r_rf_force_agc_enable = 0x40004bfc + 0x40004c08 r_rf_reg_rd = 0x40004c08 + 0x40004c14 r_rf_reg_wr = 0x40004c14 + 0x40004c20 r_rf_reset = 0x40004c20 + 0x40004c2c r_rf_rssi_convert = 0x40004c2c + 0x40004c38 r_rf_rw_v9_le_disable = 0x40004c38 + 0x40004c44 r_rf_rw_v9_le_enable = 0x40004c44 + 0x40004c50 r_rf_sleep = 0x40004c50 + 0x40004c5c r_rf_txpwr_cs_get = 0x40004c5c + 0x40004c68 r_rf_txpwr_dbm_get = 0x40004c68 + 0x40004c74 r_rf_util_cs_fmt_convert = 0x40004c74 + 0x40004c80 r_rw_crypto_aes_ccm = 0x40004c80 + 0x40004c8c r_rw_crypto_aes_encrypt = 0x40004c8c + 0x40004c98 r_rw_crypto_aes_init = 0x40004c98 + 0x40004ca4 r_rw_crypto_aes_k1 = 0x40004ca4 + 0x40004cb0 r_rw_crypto_aes_k2 = 0x40004cb0 + 0x40004cbc r_rw_crypto_aes_k3 = 0x40004cbc + 0x40004cc8 r_rw_crypto_aes_k4 = 0x40004cc8 + 0x40004cd4 r_rw_crypto_aes_rand = 0x40004cd4 + 0x40004ce0 r_rw_crypto_aes_result_handler = 0x40004ce0 + 0x40004cec r_rw_crypto_aes_s1 = 0x40004cec + 0x40004cf8 r_rw_cryto_aes_cmac = 0x40004cf8 + 0x40004d04 r_rw_v9_init_em_radio_table = 0x40004d04 + 0x40004d10 r_rwble_isr = 0x40004d10 + 0x40004d1c r_rwble_sleep_enter = 0x40004d1c + 0x40004d28 r_rwble_sleep_wakeup_end = 0x40004d28 + 0x40004d34 r_rwbtdm_isr_wrapper = 0x40004d34 + 0x40004d40 r_rwip_active_check = 0x40004d40 + 0x40004d4c r_rwip_aes_encrypt = 0x40004d4c + 0x40004d58 r_rwip_assert = 0x40004d58 + 0x40004d64 r_rwip_crypt_evt_handler = 0x40004d64 + 0x40004d70 r_rwip_crypt_isr_handler = 0x40004d70 + 0x40004d7c r_rwip_eif_get = 0x40004d7c + 0x40004d88 r_rwip_half_slot_2_lpcycles = 0x40004d88 + 0x40004d94 r_rwip_hus_2_lpcycles = 0x40004d94 + 0x40004da0 r_rwip_isr = 0x40004da0 + 0x40004dac r_rwip_lpcycles_2_hus = 0x40004dac + 0x40004db8 r_rwip_prevent_sleep_clear = 0x40004db8 + 0x40004dc4 r_rwip_prevent_sleep_set = 0x40004dc4 + 0x40004dd0 r_rwip_schedule = 0x40004dd0 + 0x40004ddc r_rwip_sleep = 0x40004ddc + 0x40004de8 r_rwip_sw_int_handler = 0x40004de8 + 0x40004df4 r_rwip_sw_int_req = 0x40004df4 + 0x40004e00 r_rwip_time_get = 0x40004e00 + 0x40004e0c r_rwip_timer_10ms_handler = 0x40004e0c + 0x40004e18 r_rwip_timer_10ms_set = 0x40004e18 + 0x40004e24 r_rwip_timer_hs_handler = 0x40004e24 + 0x40004e30 r_rwip_timer_hs_set = 0x40004e30 + 0x40004e3c r_rwip_timer_hus_handler = 0x40004e3c + 0x40004e48 r_rwip_timer_hus_set = 0x40004e48 + 0x40004e54 r_rwip_wakeup = 0x40004e54 + 0x40004e60 r_rwip_wakeup_end = 0x40004e60 + 0x40004e6c r_rwip_wlcoex_set = 0x40004e6c + 0x40004e78 r_sch_alarm_clear = 0x40004e78 + 0x40004e84 r_sch_alarm_init = 0x40004e84 + 0x40004e90 r_sch_alarm_prog = 0x40004e90 + 0x40004e9c r_sch_alarm_set = 0x40004e9c + 0x40004ea8 r_sch_alarm_timer_isr = 0x40004ea8 + 0x40004eb4 r_sch_arb_conflict_check = 0x40004eb4 + 0x40004ec0 r_sch_arb_elt_cancel = 0x40004ec0 + 0x40004ecc r_sch_arb_event_start_isr = 0x40004ecc + 0x40004ed8 r_sch_arb_init = 0x40004ed8 + 0x40004ee4 r_sch_arb_insert = 0x40004ee4 + 0x40004ef0 r_sch_arb_prog_timer = 0x40004ef0 + 0x40004efc r_sch_arb_remove = 0x40004efc + 0x40004f08 r_sch_arb_sw_isr = 0x40004f08 + 0x40004f14 r_sch_plan_chk = 0x40004f14 + 0x40004f20 r_sch_plan_clock_wrap_offset_update = 0x40004f20 + 0x40004f2c r_sch_plan_init = 0x40004f2c + 0x40004f38 r_sch_plan_interval_req = 0x40004f38 + 0x40004f44 r_sch_plan_offset_max_calc = 0x40004f44 + 0x40004f50 r_sch_plan_offset_req = 0x40004f50 + 0x40004f5c r_sch_plan_position_range_compute = 0x40004f5c + 0x40004f68 r_sch_plan_rem = 0x40004f68 + 0x40004f74 r_sch_plan_req = 0x40004f74 + 0x40004f80 r_sch_plan_set = 0x40004f80 + 0x40004f8c r_sch_prog_end_isr = 0x40004f8c + 0x40004f98 r_sch_prog_init = 0x40004f98 + 0x40004fa4 r_sch_prog_push = 0x40004fa4 + 0x40004fb0 r_sch_prog_rx_isr = 0x40004fb0 + 0x40004fbc r_sch_prog_skip_isr = 0x40004fbc + 0x40004fc8 r_sch_prog_tx_isr = 0x40004fc8 + 0x40004fd4 r_sch_slice_bg_add = 0x40004fd4 + 0x40004fe0 r_sch_slice_bg_remove = 0x40004fe0 + 0x40004fec r_sch_slice_compute = 0x40004fec + 0x40004ff8 r_sch_slice_fg_add = 0x40004ff8 + 0x40005004 r_sch_slice_fg_remove = 0x40005004 + 0x40005010 r_sch_slice_init = 0x40005010 + 0x4000501c r_sch_slice_per_add = 0x4000501c + 0x40005028 r_sch_slice_per_remove = 0x40005028 + 0x40005034 r_sdk_config_get_bt_sleep_enable = 0x40005034 + 0x40005040 r_sdk_config_get_hl_derived_opts = 0x40005040 + 0x4000504c r_sdk_config_get_opts = 0x4000504c + 0x40005058 r_sdk_config_get_priv_opts = 0x40005058 + 0x40005064 r_sdk_config_set_bt_sleep_enable = 0x40005064 + 0x40005070 r_sdk_config_set_hl_derived_opts = 0x40005070 + 0x4000507c r_sdk_config_set_opts = 0x4000507c + 0x40005088 r_specialModP256 = 0x40005088 + 0x40005094 r_unloaded_area_init = 0x40005094 + 0x400050a0 r_vhci_flow_off = 0x400050a0 + 0x400050ac r_vhci_flow_on = 0x400050ac + 0x400050b8 r_vhci_notify_host_send_available = 0x400050b8 + 0x400050c4 r_vhci_send_to_host = 0x400050c4 + 0x400050d0 r_vnd_hci_command_handler = 0x400050d0 + 0x400050dc r_vshci_init = 0x400050dc + 0x400050e8 vnd_hci_command_handler_wrapper = 0x400050e8 + 0x400050f4 r_lld_legacy_adv_dynamic_pti_get = 0x400050f4 + 0x40005100 r_lld_legacy_adv_dynamic_pti_process = 0x40005100 + 0x4000510c r_lld_ext_adv_dynamic_pti_get = 0x4000510c + 0x40005118 r_lld_ext_adv_dynamic_aux_pti_process = 0x40005118 + 0x40005124 r_lld_ext_adv_dynamic_pti_process = 0x40005124 + 0x40005130 r_lld_adv_ext_pkt_prepare_set = 0x40005130 + 0x4000513c r_lld_adv_ext_chain_none_construct = 0x4000513c + 0x40005148 r_lld_adv_ext_chain_connectable_construct = 0x40005148 + 0x40005154 r_lld_adv_ext_chain_scannable_construct = 0x40005154 + 0x40005160 r_lld_adv_pkt_rx_connect_post = 0x40005160 + 0x4000516c r_lld_adv_start_init_evt_param = 0x4000516c + 0x40005178 r_lld_adv_start_set_cs = 0x40005178 + 0x40005184 r_lld_adv_start_update_filter_policy = 0x40005184 + 0x40005190 r_lld_adv_start_schedule_asap = 0x40005190 + 0x4000519c r_lld_con_tx_prog_new_packet_coex = 0x4000519c + 0x400051a8 r_lld_con_tx_prog_new_packet = 0x400051a8 + 0x400051b4 r_lld_per_adv_dynamic_pti_get = 0x400051b4 + 0x400051c0 r_lld_per_adv_evt_start_chm_upd = 0x400051c0 + 0x400051cc r_lld_ext_scan_dynamic_pti_get = 0x400051cc + 0x400051d8 r_lld_scan_try_sched = 0x400051d8 + 0x400051e4 r_lld_sync_insert = 0x400051e4 + 0x400051f0 r_sch_prog_ble_push = 0x400051f0 + 0x400051fc r_sch_prog_bt_push = 0x400051fc + 0x40005208 r_lld_init_evt_end_type_set = 0x40005208 + 0x40005214 r_lld_init_evt_end_type_get = 0x40005214 + 0x40005220 r_lld_adv_direct_adv_use_rpa_addr_state_set = 0x40005220 + 0x4000522c r_lld_adv_direct_adv_use_rpa_addr_state_get = 0x4000522c + 0x40005238 r_lld_init_evt_end_type_check_state_set = 0x40005238 + 0x40005244 r_lld_init_evt_end_type_check_state_get = 0x40005244 + 0x40001c60 r_llc_loc_encrypt_proc_continue_hook = 0x40001c60 + 0x40001c64 r_llc_loc_phy_upd_proc_continue_hook = 0x40001c64 + 0x40001c68 r_llc_rem_phy_upd_proc_continue_hook = 0x40001c68 + 0x40001c6c r_lld_scan_frm_eof_isr_hook = 0x40001c6c + 0x40001c70 r_lld_scan_evt_start_cbk_hook = 0x40001c70 + 0x40001c78 r_lld_scan_process_pkt_rx_ext_adv_hook = 0x40001c78 + 0x40001c7c r_lld_scan_sched_hook = 0x40001c7c + 0x40001c84 r_lld_adv_evt_start_cbk_hook = 0x40001c84 + 0x40001c88 r_lld_adv_aux_evt_start_cbk_hook = 0x40001c88 + 0x40001c8c r_lld_adv_frm_isr_hook = 0x40001c8c + 0x40001c90 r_lld_adv_start_init_evt_param_hook = 0x40001c90 + 0x40001c94 r_lld_con_evt_canceled_cbk_hook = 0x40001c94 + 0x40001c98 r_lld_con_frm_isr_hook = 0x40001c98 + 0x40001c9c r_lld_con_tx_hook = 0x40001c9c + 0x40001ca0 r_lld_con_rx_hook = 0x40001ca0 + 0x40001ca4 r_lld_con_evt_start_cbk_hook = 0x40001ca4 + 0x40001cac r_lld_con_tx_prog_new_packet_hook = 0x40001cac + 0x40001cb0 r_lld_init_frm_eof_isr_hook = 0x40001cb0 + 0x40001cb4 r_lld_init_evt_start_cbk_hook = 0x40001cb4 + 0x40001cbc r_lld_init_sched_hook = 0x40001cbc + 0x40001cc0 r_lld_init_process_pkt_tx_hook = 0x40001cc0 + 0x40001cc4 r_lld_per_adv_evt_start_cbk_hook = 0x40001cc4 + 0x40001cc8 r_lld_per_adv_frm_isr_hook = 0x40001cc8 + 0x40001ccc r_lld_per_adv_start_hook = 0x40001ccc + 0x40001cd0 r_lld_sync_frm_eof_isr_hook = 0x40001cd0 + 0x40001cd4 r_lld_sync_evt_start_cbk_hook = 0x40001cd4 + 0x40001cd8 r_lld_sync_start_hook = 0x40001cd8 + 0x40001cdc r_lld_sync_process_pkt_rx_pkt_check_hook = 0x40001cdc + 0x40001ce0 r_sch_arb_insert_hook = 0x40001ce0 + 0x40001ce4 r_sch_plan_offset_req_hook = 0x40001ce4 + 0x4000216c __absvdi2 = 0x4000216c + 0x40002178 __absvsi2 = 0x40002178 + 0x40002184 __adddf3 = 0x40002184 + 0x40002190 __addsf3 = 0x40002190 + 0x4000219c __addvdi3 = 0x4000219c + 0x400021a8 __addvsi3 = 0x400021a8 + 0x400021b4 __ashldi3 = 0x400021b4 + 0x400021c0 __ashrdi3 = 0x400021c0 + 0x400021cc __bswapdi2 = 0x400021cc + 0x400021d8 __bswapsi2 = 0x400021d8 + 0x400021e4 __clear_cache = 0x400021e4 + 0x400021f0 __clrsbdi2 = 0x400021f0 + 0x400021fc __clrsbsi2 = 0x400021fc + 0x40002208 __clzdi2 = 0x40002208 + 0x40002214 __clzsi2 = 0x40002214 + 0x40002220 __cmpdi2 = 0x40002220 + 0x4000222c __ctzdi2 = 0x4000222c + 0x40002238 __ctzsi2 = 0x40002238 + 0x40002244 __divdc3 = 0x40002244 + 0x40002250 __divdf3 = 0x40002250 + 0x4000225c __divdi3 = 0x4000225c + 0x40002268 __divsc3 = 0x40002268 + 0x40002274 __divsf3 = 0x40002274 + 0x40002280 __divsi3 = 0x40002280 + 0x4000228c __eqdf2 = 0x4000228c + 0x40002298 __eqsf2 = 0x40002298 + 0x400022a4 __extendsfdf2 = 0x400022a4 + 0x400022b0 __ffsdi2 = 0x400022b0 + 0x400022bc __ffssi2 = 0x400022bc + 0x400022c8 __fixdfdi = 0x400022c8 + 0x400022d4 __fixdfsi = 0x400022d4 + 0x400022e0 __fixsfdi = 0x400022e0 + 0x400022ec __fixsfsi = 0x400022ec + 0x400022f8 __fixunsdfsi = 0x400022f8 + 0x40002304 __fixunssfdi = 0x40002304 + 0x40002310 __fixunssfsi = 0x40002310 + 0x4000231c __floatdidf = 0x4000231c + 0x40002328 __floatdisf = 0x40002328 + 0x40002334 __floatsidf = 0x40002334 + 0x40002340 __floatsisf = 0x40002340 + 0x4000234c __floatundidf = 0x4000234c + 0x40002358 __floatundisf = 0x40002358 + 0x40002364 __floatunsidf = 0x40002364 + 0x40002370 __floatunsisf = 0x40002370 + 0x4000237c __gcc_bcmp = 0x4000237c + 0x40002388 __gedf2 = 0x40002388 + 0x40002394 __gesf2 = 0x40002394 + 0x400023a0 __gtdf2 = 0x400023a0 + 0x400023ac __gtsf2 = 0x400023ac + 0x400023b8 __ledf2 = 0x400023b8 + 0x400023c4 __lesf2 = 0x400023c4 + 0x400023d0 __lshrdi3 = 0x400023d0 + 0x400023dc __ltdf2 = 0x400023dc + 0x400023e8 __ltsf2 = 0x400023e8 + 0x400023f4 __moddi3 = 0x400023f4 + 0x40002400 __modsi3 = 0x40002400 + 0x4000240c __muldc3 = 0x4000240c + 0x40002418 __muldf3 = 0x40002418 + 0x40002424 __muldi3 = 0x40002424 + 0x40002430 __mulsc3 = 0x40002430 + 0x4000243c __mulsf3 = 0x4000243c + 0x40002448 __mulsi3 = 0x40002448 + 0x40002454 __mulvdi3 = 0x40002454 + 0x40002460 __mulvsi3 = 0x40002460 + 0x4000246c __nedf2 = 0x4000246c + 0x40002478 __negdf2 = 0x40002478 + 0x40002484 __negdi2 = 0x40002484 + 0x40002490 __negsf2 = 0x40002490 + 0x4000249c __negvdi2 = 0x4000249c + 0x400024a8 __negvsi2 = 0x400024a8 + 0x400024b4 __nesf2 = 0x400024b4 + 0x400024c0 __paritysi2 = 0x400024c0 + 0x400024cc __popcountdi2 = 0x400024cc + 0x400024d8 __popcountsi2 = 0x400024d8 + 0x400024e4 __powidf2 = 0x400024e4 + 0x400024f0 __powisf2 = 0x400024f0 + 0x400024fc __subdf3 = 0x400024fc + 0x40002508 __subsf3 = 0x40002508 + 0x40002514 __subvdi3 = 0x40002514 + 0x40002520 __subvsi3 = 0x40002520 + 0x4000252c __truncdfsf2 = 0x4000252c + 0x40002538 __ucmpdi2 = 0x40002538 + 0x40002544 __udivdi3 = 0x40002544 + 0x40002550 __udivmoddi4 = 0x40002550 + 0x4000255c __udivsi3 = 0x4000255c + 0x40002568 __udiv_w_sdiv = 0x40002568 + 0x40002574 __umoddi3 = 0x40002574 + 0x40002580 __umodsi3 = 0x40002580 + 0x4000258c __unorddf2 = 0x4000258c + 0x40002598 __unordsf2 = 0x40002598 + 0x40000dbc PROVIDE (wdt_hal_init = 0x40000dbc) + [!provide] PROVIDE (wdt_hal_deinit = 0x40000dc8) + 0x40000dd4 PROVIDE (wdt_hal_config_stage = 0x40000dd4) + 0x40000de0 PROVIDE (wdt_hal_write_protect_disable = 0x40000de0) + 0x40000dec PROVIDE (wdt_hal_write_protect_enable = 0x40000dec) + 0x40000df8 PROVIDE (wdt_hal_enable = 0x40000df8) + [!provide] PROVIDE (wdt_hal_disable = 0x40000e04) + [!provide] PROVIDE (wdt_hal_handle_intr = 0x40000e10) + [!provide] PROVIDE (wdt_hal_feed = 0x40000e1c) + 0x40000e28 PROVIDE (wdt_hal_set_flashboot_en = 0x40000e28) + [!provide] PROVIDE (wdt_hal_is_enabled = 0x40000e34) + 0x40000570 _rom_chip_id = 0x40000570 + 0x40000574 _rom_eco_version = 0x40000574 + 0x400011dc esp_rom_newlib_init_common_mutexes = 0x400011dc + 0x400011e8 memset = 0x400011e8 + 0x400011f4 memcpy = 0x400011f4 + 0x40001200 memmove = 0x40001200 + 0x4000120c memcmp = 0x4000120c + 0x40001218 strcpy = 0x40001218 + 0x40001224 strncpy = 0x40001224 + 0x40001230 strcmp = 0x40001230 + 0x4000123c strncmp = 0x4000123c + 0x40001248 strlen = 0x40001248 + 0x40001254 strstr = 0x40001254 + 0x40001260 bzero = 0x40001260 + 0x40001278 sbrk = 0x40001278 + 0x40001284 isalnum = 0x40001284 + 0x40001290 isalpha = 0x40001290 + 0x4000129c isascii = 0x4000129c + 0x400012a8 isblank = 0x400012a8 + 0x400012b4 iscntrl = 0x400012b4 + 0x400012c0 isdigit = 0x400012c0 + 0x400012cc islower = 0x400012cc + 0x400012d8 isgraph = 0x400012d8 + 0x400012e4 isprint = 0x400012e4 + 0x400012f0 ispunct = 0x400012f0 + 0x400012fc isspace = 0x400012fc + 0x40001308 isupper = 0x40001308 + 0x40001314 toupper = 0x40001314 + 0x40001320 tolower = 0x40001320 + 0x4000132c toascii = 0x4000132c + 0x40001338 memccpy = 0x40001338 + 0x40001344 memchr = 0x40001344 + 0x40001350 memrchr = 0x40001350 + 0x4000135c strcasecmp = 0x4000135c + 0x40001368 strcasestr = 0x40001368 + 0x40001374 strcat = 0x40001374 + 0x4000138c strchr = 0x4000138c + 0x40001398 strcspn = 0x40001398 + 0x400013a4 strcoll = 0x400013a4 + 0x400013b0 strlcat = 0x400013b0 + 0x400013bc strlcpy = 0x400013bc + 0x400013c8 strlwr = 0x400013c8 + 0x400013d4 strncasecmp = 0x400013d4 + 0x400013e0 strncat = 0x400013e0 + 0x400013f8 strnlen = 0x400013f8 + 0x40001404 strrchr = 0x40001404 + 0x40001410 strsep = 0x40001410 + 0x4000141c strspn = 0x4000141c + 0x40001428 strtok_r = 0x40001428 + 0x40001434 strupr = 0x40001434 + 0x40001440 longjmp = 0x40001440 + 0x4000144c setjmp = 0x4000144c + 0x40001458 abs = 0x40001458 + 0x40001464 div = 0x40001464 + 0x40001470 labs = 0x40001470 + 0x4000147c ldiv = 0x4000147c + 0x40001488 qsort = 0x40001488 + 0x40001494 rand_r = 0x40001494 + 0x400014b8 utoa = 0x400014b8 + 0x400014c4 itoa = 0x400014c4 + 0x3fceffd4 syscall_table_ptr = 0x3fceffd4 + 0x3fceffd0 _global_impure_ptr = 0x3fceffd0 + 0x40001380 strdup = 0x40001380 + 0x400013ec strndup = 0x400013ec + 0x400014a0 rand = 0x400014a0 + 0x400014ac srand = 0x400014ac + 0x400014d0 atoi = 0x400014d0 + 0x400014dc atol = 0x400014dc + 0x400014e8 strtol = 0x400014e8 + 0x400014f4 strtoul = 0x400014f4 + [!provide] PROVIDE (fflush = 0x40001500) + [!provide] PROVIDE (_fflush_r = 0x4000150c) + [!provide] PROVIDE (_fwalk = 0x40001518) + [!provide] PROVIDE (_fwalk_reent = 0x40001524) + [!provide] PROVIDE (__swbuf_r = 0x40001548) + 0x40001554 __swbuf = 0x40001554 + 0x60000000 PROVIDE (UART0 = 0x60000000) + 0x60002000 PROVIDE (SPIMEM1 = 0x60002000) + 0x60003000 PROVIDE (SPIMEM0 = 0x60003000) + [!provide] PROVIDE (GPIO = 0x60004000) + [!provide] PROVIDE (SDM = 0x60004f00) + 0x60007000 PROVIDE (EFUSE = 0x60007000) + 0x60008000 PROVIDE (RTCCNTL = 0x60008000) + [!provide] PROVIDE (RTCIO = 0x60008400) + 0x60008800 PROVIDE (SENS = 0x60008800) + [!provide] PROVIDE (RTC_I2C = 0x60008c00) + [!provide] PROVIDE (HINF = 0x6000b000) + [!provide] PROVIDE (I2S0 = 0x6000f000) + [!provide] PROVIDE (I2S1 = 0x6002d000) + [!provide] PROVIDE (UART1 = 0x60010000) + [!provide] PROVIDE (I2C0 = 0x60013000) + [!provide] PROVIDE (UHCI0 = 0x60014000) + [!provide] PROVIDE (HOST = 0x60015000) + [!provide] PROVIDE (RMT = 0x60016000) + [!provide] PROVIDE (RMTMEM = 0x60016800) + [!provide] PROVIDE (PCNT = 0x60017000) + [!provide] PROVIDE (SLC = 0x60018000) + [!provide] PROVIDE (LEDC = 0x60019000) + [!provide] PROVIDE (MCPWM0 = 0x6001e000) + [!provide] PROVIDE (MCPWM1 = 0x6002c000) + [!provide] PROVIDE (MCP = 0x600c3000) + 0x6001f000 PROVIDE (TIMERG0 = 0x6001f000) + [!provide] PROVIDE (TIMERG1 = 0x60020000) + [!provide] PROVIDE (SYSTIMER = 0x60023000) + [!provide] PROVIDE (GPSPI2 = 0x60024000) + [!provide] PROVIDE (GPSPI3 = 0x60025000) + [!provide] PROVIDE (SYSCON = 0x60026000) + [!provide] PROVIDE (I2C1 = 0x60027000) + [!provide] PROVIDE (SDMMC = 0x60028000) + [!provide] PROVIDE (TWAI = 0x6002b000) + [!provide] PROVIDE (GDMA = 0x6003f000) + [!provide] PROVIDE (UART2 = 0x6002e000) + [!provide] PROVIDE (DMA = 0x6003f000) + [!provide] PROVIDE (APB_SARADC = 0x60040000) + [!provide] PROVIDE (LCD_CAM = 0x60041000) + [!provide] PROVIDE (USB_SERIAL_JTAG = 0x60038000) + [!provide] PROVIDE (USB0 = 0x60080000) + [!provide] PROVIDE (USB_DWC = 0x60080000) + [!provide] PROVIDE (USB_WRAP = 0x60039000) + [!provide] PROVIDE (WORLD_CONTROLLER = 0x600d0000) + 0x600c0000 PROVIDE (SYSTEM = 0x600c0000) + 0x006f0000 iram_dram_offset = 0x6f0000 + 0x3fce9700 bootloader_usable_dram_end = 0x3fce9700 + 0x00002000 bootloader_stack_overhead = 0x2000 + 0x00005000 bootloader_dram_seg_len = 0x5000 + 0x00007000 bootloader_iram_loader_seg_len = 0x7000 + 0x00003000 bootloader_iram_seg_len = 0x3000 + 0x3fce7700 bootloader_dram_seg_end = (bootloader_usable_dram_end - bootloader_stack_overhead) + 0x3fce2700 bootloader_dram_seg_start = (bootloader_dram_seg_end - bootloader_dram_seg_len) + 0x403cb700 bootloader_iram_loader_seg_start = ((bootloader_dram_seg_start - bootloader_iram_loader_seg_len) + iram_dram_offset) + 0x403c8700 bootloader_iram_seg_start = (bootloader_iram_loader_seg_start - bootloader_iram_seg_len) + 0x00000001 ASSERT ((bootloader_iram_loader_seg_start == 0x403cb700), bootloader_iram_loader_seg_start inconsistent with SRAM_IRAM_END) + +.iram_loader.text + 0x403cb700 0x31c0 + 0x403cb700 . = ALIGN (0x10) + 0x403cb700 _loader_text_start = ABSOLUTE (.) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.iram1 .iram1.*) + .iram1.0.literal + 0x403cb700 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x403cb700 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x38 (size before relaxing) + .iram1.2.literal + 0x403cb730 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x403cb730 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x3c (size before relaxing) + .iram1.3.literal + 0x403cb734 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x14 (size before relaxing) + .iram1.4.literal + 0x403cb73c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x403cb740 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x48 (size before relaxing) + .iram1.8.literal + 0x403cb754 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0.literal + 0x403cb758 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x10 (size before relaxing) + .iram1.2.literal + 0x403cb764 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.4.literal + 0x403cb770 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x20 (size before relaxing) + .iram1.3.literal + 0x403cb77c 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x403cb77c 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x403cb77c 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x8 (size before relaxing) + .iram1.7.literal + 0x403cb77c 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x403cb77c 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x403cb77c 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x403cb77c 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x14 (size before relaxing) + .iram1.12.literal + 0x403cb77c 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x18 (size before relaxing) + .iram1.0.literal + 0x403cb77c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x403cb77c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x403cb77c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x403cb77c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x403cb77c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x403cb77c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x403cb77c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_early_timestamp + 0x403cb77c 0x4 esp-idf/log/liblog.a(log_timestamp.c.obj) + .literal.bootloader_common_check_chip_revision_validity + 0x403cb780 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x28 (size before relaxing) + .literal.bootloader_common_ota_select_crc + 0x403cb794 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_valid + 0x403cb798 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_common_check_efuse_blk_validity + 0x403cb798 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_common_check_chip_validity + 0x403cb7a4 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_common_get_active_otadata + 0x403cb7a8 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0xc (size before relaxing) + .literal.bootloader_mmap + 0x403cb7a8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_munmap + 0x403cb7b8 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xc (size before relaxing) + .literal.bootloader_flash_read + 0x403cb7b8 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x44 (size before relaxing) + .literal.bootloader_flash_erase_sector + 0x403cb7d0 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_flash_write + 0x403cb7d4 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_enable_wp + 0x403cb7e8 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_flash_get_spi_mode + 0x403cb7e8 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_fill_random + 0x403cb7ec 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_random_disable + 0x403cb7fc 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + 0x30 (size before relaxing) + .literal.log_invalid_app_partition + 0x403cb81c 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x28 (size before relaxing) + .literal.cache_ll_l1_get_bus + 0x403cb830 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x14 (size before relaxing) + .literal.cache_ll_l1_enable_bus + 0x403cb840 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.load_image + 0x403cb848 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x74 (size before relaxing) + .literal.try_load_partition + 0x403cb85c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x14 (size before relaxing) + .literal.set_actual_ota_seq + 0x403cb860 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_common_read_otadata + 0x403cb870 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x28 (size before relaxing) + .literal.bootloader_utility_load_partition_table + 0x403cb878 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xa0 (size before relaxing) + .literal.bootloader_utility_get_selected_boot_partition + 0x403cb8d8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x48 (size before relaxing) + .literal.bootloader_reset + 0x403cb8e8 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xc (size before relaxing) + .literal.bootloader_utility_load_boot_image + 0x403cb8ec 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x5c (size before relaxing) + .literal.bootloader_sha256_start + 0x403cb8fc 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x403cb908 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x18 (size before relaxing) + .literal.bootloader_sha256_finish + 0x403cb918 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x1c (size before relaxing) + .literal.bootloader_console_deinit + 0x403cb920 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .literal.__assert_func + 0x403cb924 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x8 (size before relaxing) + .literal.unlikely.abort + 0x403cb928 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x10 (size before relaxing) + .literal.bootloader_ana_super_wdt_reset_config + 0x403cb934 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .literal.bootloader_ana_clock_glitch_reset_config + 0x403cb940 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0xc (size before relaxing) + .literal.process_checksum + 0x403cb948 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x1c (size before relaxing) + .literal.process_image_header + 0x403cb950 0xc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_util_regions_overlap + 0x403cb95c 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + .literal.verify_load_addresses + 0x403cb96c 0x78 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x9c (size before relaxing) + .literal.process_appended_hash_and_sig$isra$0 + 0x403cb9e4 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + .literal.should_load + 0x403cb9e8 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x8 (size before relaxing) + .literal.process_segments + 0x403cb9ec 0x2c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x9c (size before relaxing) + .literal.image_load + 0x403cba18 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x58 (size before relaxing) + .literal.bootloader_load_image + 0x403cba28 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_table_verify + 0x403cba28 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x54 (size before relaxing) + .literal.spi_flash_wrap_probe_c0 + 0x403cba54 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable_c0 + 0x403cba58 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_wrap_enable_77 + 0x403cba58 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_wrap_clear_c0 + 0x403cba5c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_wrap_clear_77 + 0x403cba5c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_wrap_probe + 0x403cba5c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_wrap_disable + 0x403cba64 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x4 (size before relaxing) + .literal.mmu_hal_unmap_all + 0x403cba64 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_init + 0x403cba68 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x8 (size before relaxing) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x403cba6c 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xc (size before relaxing) + .literal.mmu_hal_map_region + 0x403cba74 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xc (size before relaxing) + .literal.s_cache_hal_init_ctx + 0x403cba78 0xc esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_init + 0x403cba84 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x18 (size before relaxing) + .literal.cache_hal_disable + 0x403cba8c 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x10 (size before relaxing) + .literal.cache_hal_enable + 0x403cba94 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_32k_enable + 0x403cba94 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enable + 0x403cbab0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x403cbab8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x403cbab8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x403cbab8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x403cbac0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_src_get + 0x403cbac0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x403cbac0 0xc 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 + 0x403cbacc 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 + 0x403cbacc 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x403cbad8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_xtal + 0x403cbb00 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x403cbb00 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x5c (size before relaxing) + .literal.rtc_clk_xtal_freq_update + 0x403cbb20 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x403cbb24 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_apb_freq_get + 0x403cbb24 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_divider_set + 0x403cbb24 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8m_divider_set + 0x403cbb30 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.startup.enable_timer_group0_for_calibration + 0x403cbb30 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .iram1.0 0x403cbb38 0xa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xd (size before relaxing) + 0x403cbb38 esp_flash_encryption_enabled + *fill* 0x403cbb42 0x2 + .iram1.1 0x403cbb44 0x262 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x403cbb44 bootloader_flash_execute_command_common + *fill* 0x403cbda6 0x2 + .iram1.2 0x403cbda8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x403cbda8 bootloader_execute_flash_command + .iram1.0 0x403cbdc8 0x138 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x158 (size before relaxing) + 0x403cbdc8 bootloader_flash_unlock_default + 0x403cbdc8 bootloader_flash_unlock + .iram1.3 0x403cbf00 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x36 (size before relaxing) + 0x403cbf00 bootloader_flash_read_sfdp + *fill* 0x403cbf32 0x2 + .iram1.4 0x403cbf34 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x28 (size before relaxing) + 0x403cbf34 bootloader_read_flash_id + .iram1.6 0x403cbf58 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xbb (size before relaxing) + 0x403cbf58 bootloader_flash_xmc_startup + *fill* 0x403cbff7 0x1 + .iram1.8 0x403cbff8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x403cbff8 bootloader_flash_is_octal_mode_enabled + .iram1.0 0x403cc008 0x9a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x403cc008 bootloader_flash_cs_timing_config + *fill* 0x403cc0a2 0x2 + .iram1.2 0x403cc0a4 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x403cc0a4 bootloader_flash_set_dummy_out + .iram1.4 0x403cc0cc 0x7d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x403cc0cc bootloader_configure_spi_pins + *fill* 0x403cc149 0x3 + .iram1.3 0x403cc14c 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x403cc14c bootloader_read_status_8b_rdsr + *fill* 0x403cc161 0x3 + .iram1.4 0x403cc164 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x403cc164 bootloader_read_status_8b_rdsr2 + *fill* 0x403cc179 0x3 + .iram1.6 0x403cc17c 0x25 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x29 (size before relaxing) + 0x403cc17c bootloader_read_status_16b_rdsr_rdsr2 + *fill* 0x403cc1a1 0x3 + .iram1.7 0x403cc1a4 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x403cc1a4 bootloader_write_status_8b_wrsr + *fill* 0x403cc1b7 0x1 + .iram1.8 0x403cc1b8 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x403cc1b8 bootloader_write_status_8b_wrsr2 + *fill* 0x403cc1cb 0x1 + .iram1.10 0x403cc1cc 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x403cc1cc bootloader_write_status_16b_wrsr + *fill* 0x403cc1df 0x1 + .iram1.11 0x403cc1e0 0x34 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x3c (size before relaxing) + 0x403cc1e0 bootloader_read_status_8b_xmc25qu64a + .iram1.12 0x403cc214 0x3a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x42 (size before relaxing) + 0x403cc214 bootloader_write_status_8b_xmc25qu64a + *fill* 0x403cc24e 0x2 + .iram1.0 0x403cc250 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x403cc250 efuse_hal_chip_revision + .iram1.1 0x403cc268 0x23 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x403cc268 efuse_hal_blk_version + *fill* 0x403cc28b 0x1 + .iram1.2 0x403cc28c 0x11 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x403cc28c efuse_hal_get_disable_wafer_version_major + *fill* 0x403cc29d 0x3 + .iram1.4 0x403cc2a0 0x11 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x403cc2a0 efuse_hal_get_disable_blk_version_major + *fill* 0x403cc2b1 0x3 + .iram1.5 0x403cc2b4 0x20 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x403cc2b4 efuse_hal_flash_encryption_enabled + .iram1.0 0x403cc2d4 0x41 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x403cc2d4 efuse_hal_get_major_chip_version + *fill* 0x403cc315 0x3 + .iram1.1 0x403cc318 0x3a esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x403cc318 efuse_hal_get_minor_chip_version + *fill* 0x403cc352 0x2 + .iram1.5 0x403cc354 0x4a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *fill* 0x403cc39e 0x0 + *liblog.a:(.literal .text .literal.* .text.*) + *fill* 0x403cc39e 0x2 + .text.esp_log_early_timestamp + 0x403cc3a0 0x1d esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x403cc3a0 esp_log_early_timestamp + 0x403cc3a0 esp_log_timestamp + *fill* 0x403cc3bd 0x0 + *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* 0x403cc3bd 0x3 + .text.bootloader_common_check_chip_revision_validity + 0x403cc3c0 0xc9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0xd1 (size before relaxing) + 0x403cc3c0 bootloader_common_check_chip_revision_validity + *fill* 0x403cc489 0x3 + .text.bootloader_common_ota_select_crc + 0x403cc48c 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x403cc48c bootloader_common_ota_select_crc + .text.bootloader_common_ota_select_valid + 0x403cc4a0 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x27 (size before relaxing) + 0x403cc4a0 bootloader_common_ota_select_valid + *fill* 0x403cc4c3 0x1 + .text.bootloader_common_check_efuse_blk_validity + 0x403cc4c4 0xab esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0xb7 (size before relaxing) + 0x403cc4c4 bootloader_common_check_efuse_blk_validity + *fill* 0x403cc56f 0x1 + .text.bootloader_common_check_chip_validity + 0x403cc570 0x52 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x55 (size before relaxing) + 0x403cc570 bootloader_common_check_chip_validity + *fill* 0x403cc5c2 0x2 + .text.bootloader_common_get_active_otadata + 0x403cc5c4 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x30 (size before relaxing) + 0x403cc5c4 bootloader_common_get_active_otadata + *fill* 0x403cc5ec 0x0 + *fill* 0x403cc5ec 0x0 + .text.bootloader_common_ota_select_invalid + 0x403cc5ec 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x403cc5ec bootloader_common_ota_select_invalid + *fill* 0x403cc60a 0x0 + *fill* 0x403cc60a 0x0 + *fill* 0x403cc60a 0x0 + *fill* 0x403cc60a 0x2 + .text.bootloader_common_select_otadata + 0x403cc60c 0x47 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x403cc60c bootloader_common_select_otadata + *fill* 0x403cc653 0x0 + *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*) + *fill* 0x403cc653 0x1 + .text.bootloader_mmap + 0x403cc654 0x9a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xa9 (size before relaxing) + 0x403cc654 bootloader_mmap + *fill* 0x403cc6ee 0x2 + .text.bootloader_munmap + 0x403cc6f0 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x22 (size before relaxing) + 0x403cc6f0 bootloader_munmap + *fill* 0x403cc70e 0x2 + .text.bootloader_flash_read + 0x403cc710 0xdd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xf5 (size before relaxing) + 0x403cc710 bootloader_flash_read + *fill* 0x403cc7ed 0x3 + .text.bootloader_flash_erase_sector + 0x403cc7f0 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x16 (size before relaxing) + 0x403cc7f0 bootloader_flash_erase_sector + *fill* 0x403cc802 0x2 + .text.bootloader_flash_write + 0x403cc804 0x95 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x99 (size before relaxing) + 0x403cc804 bootloader_flash_write + *fill* 0x403cc899 0x3 + .text.bootloader_enable_wp + 0x403cc89c 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x403cc89c bootloader_enable_wp + *fill* 0x403cc8af 0x1 + .text.bootloader_flash_get_spi_mode + 0x403cc8b0 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x403cc8b0 bootloader_flash_get_spi_mode + *fill* 0x403cc8de 0x2 + .text.spi_to_esp_err + 0x403cc8e0 0x1f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x403cc8ff 0x1 + .text.bootloader_mmap_get_free_pages + 0x403cc900 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x403cc900 bootloader_mmap_get_free_pages + *fill* 0x403cc908 0x0 + *fill* 0x403cc908 0x0 + *fill* 0x403cc908 0x0 + *fill* 0x403cc908 0x0 + *fill* 0x403cc908 0x0 + *fill* 0x403cc908 0x0 + *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*) + .text.bootloader_fill_random + 0x403cc908 0x55 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x403cc908 bootloader_fill_random + *fill* 0x403cc95d 0x0 + *libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_random_disable) + *fill* 0x403cc95d 0x3 + .text.bootloader_random_disable + 0x403cc960 0xb2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + 0x403cc960 bootloader_random_disable + *fill* 0x403cca12 0x0 + *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.*) + *fill* 0x403cca12 0x2 + .text.log_invalid_app_partition + 0x403cca14 0x53 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x5b (size before relaxing) + *fill* 0x403cca67 0x1 + .text.cache_ll_l1_get_bus + 0x403cca68 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.cache_ll_l1_enable_bus + 0x403ccaa8 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x403ccae6 0x2 + .text.load_image + 0x403ccae8 0x169 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x1a9 (size before relaxing) + *fill* 0x403ccc51 0x3 + .text.try_load_partition + 0x403ccc54 0x2f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x33 (size before relaxing) + *fill* 0x403ccc83 0x1 + .text.set_actual_ota_seq + 0x403ccc84 0x77 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x8b (size before relaxing) + *fill* 0x403cccfb 0x1 + .text.bootloader_common_read_otadata + 0x403cccfc 0x77 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x7f (size before relaxing) + 0x403cccfc bootloader_common_read_otadata + *fill* 0x403ccd73 0x1 + .text.bootloader_utility_load_partition_table + 0x403ccd74 0x18e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x1a2 (size before relaxing) + 0x403ccd74 bootloader_utility_load_partition_table + *fill* 0x403ccf02 0x2 + .text.bootloader_utility_get_selected_boot_partition + 0x403ccf04 0xd6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xf2 (size before relaxing) + 0x403ccf04 bootloader_utility_get_selected_boot_partition + *fill* 0x403ccfda 0x2 + .text.bootloader_reset + 0x403ccfdc 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x1b (size before relaxing) + 0x403ccfdc bootloader_reset + *fill* 0x403ccff4 0x0 + .text.bootloader_utility_load_boot_image + 0x403ccff4 0xf3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x113 (size before relaxing) + 0x403ccff4 bootloader_utility_load_boot_image + *fill* 0x403cd0e7 0x0 + *fill* 0x403cd0e7 0x0 + *fill* 0x403cd0e7 0x0 + *fill* 0x403cd0e7 0x1 + .text.index_to_partition + 0x403cd0e8 0x39 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x403cd121 0x0 + *fill* 0x403cd121 0x0 + *fill* 0x403cd121 0x0 + *fill* 0x403cd121 0x0 + *fill* 0x403cd121 0x0 + *fill* 0x403cd121 0x0 + *fill* 0x403cd121 0x0 + *fill* 0x403cd121 0x3 + .text.bootloader_debug_buffer + 0x403cd124 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x403cd124 bootloader_debug_buffer + *libbootloader_support.a:bootloader_sha.*(.literal .text .literal.* .text.*) + *fill* 0x403cd129 0x3 + .text.bootloader_sha256_start + 0x403cd12c 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x403cd12c bootloader_sha256_start + .text.bootloader_sha256_data + 0x403cd144 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x2a (size before relaxing) + 0x403cd144 bootloader_sha256_data + *fill* 0x403cd16a 0x2 + .text.bootloader_sha256_finish + 0x403cd16c 0x31 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x403cd16c bootloader_sha256_finish + *fill* 0x403cd19d 0x0 + *fill* 0x403cd19d 0x0 + *libbootloader_support.a:bootloader_console_loader.*(.literal .text .literal.* .text.*) + *fill* 0x403cd19d 0x3 + .text.bootloader_console_deinit + 0x403cd1a0 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + 0x403cd1a0 bootloader_console_deinit + *fill* 0x403cd1ae 0x0 + *libbootloader_support.a:bootloader_panic.*(.literal .text .literal.* .text.*) + *fill* 0x403cd1ae 0x2 + .text.__assert_func + 0x403cd1b0 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x403cd1b0 __assert_func + *fill* 0x403cd1c7 0x1 + .text.unlikely.abort + 0x403cd1c8 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x403cd1c8 abort + *fill* 0x403cd1f5 0x0 + *fill* 0x403cd1f5 0x0 + *libbootloader_support.a:bootloader_soc.*(.literal .text .literal.* .text.*) + *fill* 0x403cd1f5 0x3 + .text.bootloader_ana_super_wdt_reset_config + 0x403cd1f8 0x3b esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x403cd1f8 bootloader_ana_super_wdt_reset_config + *fill* 0x403cd233 0x1 + .text.bootloader_ana_clock_glitch_reset_config + 0x403cd234 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x403cd234 bootloader_ana_clock_glitch_reset_config + *fill* 0x403cd26e 0x0 + *fill* 0x403cd26e 0x0 + *libbootloader_support.a:esp_image_format.*(.literal .text .literal.* .text.*) + *fill* 0x403cd26e 0x2 + .text.process_checksum + 0x403cd270 0xb1 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x403cd321 0x3 + .text.process_image_header + 0x403cd324 0xbf esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0xd3 (size before relaxing) + *fill* 0x403cd3e3 0x1 + .text.bootloader_util_regions_overlap + 0x403cd3e4 0x2f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x33 (size before relaxing) + *fill* 0x403cd413 0x1 + .text.verify_load_addresses + 0x403cd414 0x17b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x193 (size before relaxing) + *fill* 0x403cd58f 0x1 + .text.process_appended_hash_and_sig$isra$0 + 0x403cd590 0x5f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x403cd5ef 0x1 + .text.should_load + 0x403cd5f0 0x70 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segments + 0x403cd660 0x2fe esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x322 (size before relaxing) + *fill* 0x403cd95e 0x2 + .text.image_load + 0x403cd960 0x1bb esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x1cf (size before relaxing) + *fill* 0x403cdb1b 0x1 + .text.bootloader_load_image + 0x403cdb1c 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + 0x403cdb1c bootloader_load_image + *fill* 0x403cdb2c 0x0 + *fill* 0x403cdb2c 0x0 + *fill* 0x403cdb2c 0x0 + *fill* 0x403cdb2c 0x0 + *fill* 0x403cdb2c 0x0 + *fill* 0x403cdb2c 0x0 + *fill* 0x403cdb2c 0x0 + *fill* 0x403cdb2c 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.*) + .text.esp_partition_table_verify + 0x403cdb2c 0x115 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x11c (size before relaxing) + 0x403cdb2c esp_partition_table_verify + *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.*) + *fill* 0x403cdc41 0x3 + .text.spi_flash_wrap_probe_c0 + 0x403cdc44 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x403cdc44 spi_flash_wrap_probe_c0 + *fill* 0x403cdc56 0x2 + .text.spi_flash_wrap_enable_c0 + 0x403cdc58 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x403cdc58 spi_flash_wrap_enable_c0 + *fill* 0x403cdc86 0x2 + .text.spi_flash_wrap_enable_77 + 0x403cdc88 0x56 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x5a (size before relaxing) + 0x403cdc88 spi_flash_wrap_enable_77 + *fill* 0x403cdcde 0x2 + .text.spi_flash_wrap_clear_c0 + 0x403cdce0 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x403cdce0 spi_flash_wrap_clear_c0 + *fill* 0x403cdcfe 0x2 + .text.spi_flash_wrap_clear_77 + 0x403cdd00 0x42 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x46 (size before relaxing) + 0x403cdd00 spi_flash_wrap_clear_77 + *fill* 0x403cdd42 0x2 + .text.spi_flash_wrap_probe + 0x403cdd44 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x403cdd44 spi_flash_wrap_probe + .text.spi_flash_wrap_disable + 0x403cdd8c 0x2d esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x403cdd8c spi_flash_wrap_disable + *fill* 0x403cddb9 0x0 + *fill* 0x403cddb9 0x0 + *fill* 0x403cddb9 0x0 + *fill* 0x403cddb9 0x0 + *fill* 0x403cddb9 0x0 + *libhal.a:wdt_hal_iram.*(.literal .text .literal.* .text.*) + *libhal.a:mmu_hal.*(.literal .text .literal.* .text.*) + *fill* 0x403cddb9 0x3 + .text.mmu_hal_unmap_all + 0x403cddbc 0x24 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x403cddbc mmu_hal_unmap_all + .text.mmu_hal_init + 0x403cdde0 0xe esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x11 (size before relaxing) + 0x403cdde0 mmu_hal_init + *fill* 0x403cddee 0x2 + .text.mmu_hal_check_valid_ext_vaddr_region + 0x403cddf0 0x50 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x403cddf0 mmu_hal_check_valid_ext_vaddr_region + .text.mmu_hal_map_region + 0x403cde40 0x75 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x79 (size before relaxing) + 0x403cde40 mmu_hal_map_region + *fill* 0x403cdeb5 0x0 + *fill* 0x403cdeb5 0x0 + *libhal.a:cache_hal.*(.literal .text .literal.* .text.*) + *fill* 0x403cdeb5 0x3 + .text.s_cache_hal_init_ctx + 0x403cdeb8 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x403cdeb8 s_cache_hal_init_ctx + *fill* 0x403cdef2 0x2 + .text.cache_hal_init + 0x403cdef4 0x8c esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x403cdef4 cache_hal_init + .text.cache_hal_disable + 0x403cdf80 0x27 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x2b (size before relaxing) + 0x403cdf80 cache_hal_disable + *fill* 0x403cdfa7 0x1 + .text.cache_hal_enable + 0x403cdfa8 0x37 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x3b (size before relaxing) + 0x403cdfa8 cache_hal_enable + *fill* 0x403cdfdf 0x0 + *fill* 0x403cdfdf 0x0 + *fill* 0x403cdfdf 0x0 + *libhal.a:efuse_hal.*(.literal .text .literal.* .text.*) + *libesp_hw_support.a:rtc_clk.*(.literal .text .literal.* .text.*) + *fill* 0x403cdfdf 0x1 + .text.rtc_clk_32k_enable + 0x403cdfe0 0xce esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x403cdfe0 rtc_clk_32k_enable + *fill* 0x403ce0ae 0x2 + .text.rtc_clk_8m_enable + 0x403ce0b0 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x403ce0b0 rtc_clk_8m_enable + *fill* 0x403ce12e 0x2 + .text.rtc_clk_slow_src_set + 0x403ce130 0x7b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x7e (size before relaxing) + 0x403ce130 rtc_clk_slow_src_set + *fill* 0x403ce1ab 0x1 + .text.rtc_clk_slow_src_get + 0x403ce1ac 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x403ce1ac rtc_clk_slow_src_get + *fill* 0x403ce1ca 0x2 + .text.rtc_clk_slow_freq_get_hz + 0x403ce1cc 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1d (size before relaxing) + 0x403ce1cc rtc_clk_slow_freq_get_hz + *fill* 0x403ce1e5 0x3 + .text.rtc_clk_fast_src_set + 0x403ce1e8 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x403ce1e8 rtc_clk_fast_src_set + .text.rtc_clk_fast_src_get + 0x403ce224 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x403ce224 rtc_clk_fast_src_get + .text.rtc_clk_xtal_freq_get + 0x403ce234 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x403ce234 rtc_clk_xtal_freq_get + 0x403ce234 rtc_get_xtal + .text.rtc_clk_cpu_freq_mhz_to_config + 0x403ce270 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x403ce270 rtc_clk_cpu_freq_mhz_to_config + *fill* 0x403ce2c6 0x2 + .text.rtc_clk_cpu_freq_get_config + 0x403ce2c8 0xb7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xbb (size before relaxing) + 0x403ce2c8 rtc_clk_cpu_freq_get_config + *fill* 0x403ce37f 0x1 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x403ce380 0x16f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x176 (size before relaxing) + *fill* 0x403ce4ef 0x1 + .text.rtc_clk_cpu_freq_to_xtal + 0x403ce4f0 0xb9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc1 (size before relaxing) + 0x403ce4f0 rtc_clk_cpu_freq_to_xtal + *fill* 0x403ce5a9 0x3 + .text.rtc_clk_cpu_freq_set_config + 0x403ce5ac 0x1ea esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1f5 (size before relaxing) + 0x403ce5ac rtc_clk_cpu_freq_set_config + *fill* 0x403ce796 0x2 + .text.rtc_clk_xtal_freq_update + 0x403ce798 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x403ce798 rtc_clk_xtal_freq_update + .text.rtc_clk_apb_freq_update + 0x403ce7c0 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x403ce7c0 rtc_clk_apb_freq_update + *fill* 0x403ce7ca 0x2 + .text.rtc_clk_apb_freq_get + 0x403ce7cc 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x403ce7cc rtc_clk_apb_freq_get + *fill* 0x403ce7d6 0x2 + .text.rtc_clk_divider_set + 0x403ce7d8 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4f (size before relaxing) + 0x403ce7d8 rtc_clk_divider_set + *fill* 0x403ce824 0x0 + .text.rtc_clk_8m_divider_set + 0x403ce824 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4d (size before relaxing) + 0x403ce824 rtc_clk_8m_divider_set + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *fill* 0x403ce86e 0x0 + *libesp_hw_support.a:rtc_time.*(.literal .text .literal.* .text.*) + *fill* 0x403ce86e 0x2 + .text.startup.enable_timer_group0_for_calibration + 0x403ce870 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *fill* 0x403ce8c0 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.literal .text .literal.* .text.*) + *libefuse.a:*.*(.literal .text .literal.* .text.*) + *(.fini.literal) + *(.fini) + *(.gnu.version) + 0x403ce8c0 _loader_text_end = ABSOLUTE (.) + +.iram.text 0x403c8700 0x0 + 0x403c8700 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + +.dram0.bss 0x3fce2700 0x118 + 0x3fce2700 . = ALIGN (0x8) + 0x3fce2700 _dram_start = ABSOLUTE (.) + 0x3fce2700 _bss_start = ABSOLUTE (.) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.bss) + *(.bss.*) + .bss.ota_has_initial_contents + 0x3fce2700 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x3fce2701 0x3 + .bss.s_bootloader_partition_offset + 0x3fce2704 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss.ram_obfs_value + 0x3fce2708 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss.ctx 0x3fce2710 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss.mapped 0x3fce27e8 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x3fce27e9 0x3 + .bss.bootloader_image_hdr + 0x3fce27ec 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x3fce27ec bootloader_image_hdr + .bss.s_bbpll_digi_consumers_ref_count + 0x3fce2804 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_apb_freq + 0x3fce2808 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_cur_pll_freq + 0x3fce280c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.ctx 0x3fce2810 0x4 esp-idf/hal/libhal.a(cache_hal.c.obj) + .bss.chip_wrap + 0x3fce2814 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + *(.gnu.linkonce.b.*) + *(COMMON) + 0x3fce2818 . = ALIGN (0x8) + 0x3fce2818 _bss_end = ABSOLUTE (.) + +.dram0.bootdesc + 0x3fce2820 0x50 + 0x3fce2820 _data_start = ABSOLUTE (.) + *(.data_bootloader_desc .data_bootloader_desc.*) + .data_bootloader_desc + 0x3fce2820 0x50 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x3fce2820 esp_bootloader_desc + +.dram0.data 0x3fce2870 0xa0 + *(.dram1 .dram1.*) + .dram1.2 0x3fce2870 0x1 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x3fce2870 bootloader_flash_qe_list_count + *fill* 0x3fce2871 0x3 + .dram1.1 0x3fce2874 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x3fce2874 bootloader_flash_qe_support_list + .dram1.0 0x3fce2878 0x7e esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x3fce2878 bootloader_flash_qe_support_list_default + *(.data) + *(.data.*) + *fill* 0x3fce28f6 0x2 + .data.current_read_mapping + 0x3fce28f8 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data.g_rtc_dbias_pvt_non_240m + 0x3fce28fc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3fce28fc g_rtc_dbias_pvt_non_240m + .data.g_dig_dbias_pvt_non_240m + 0x3fce2900 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3fce2900 g_dig_dbias_pvt_non_240m + .data.g_rtc_dbias_pvt_240m + 0x3fce2904 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3fce2904 g_rtc_dbias_pvt_240m + .data.g_dig_dbias_pvt_240m + 0x3fce2908 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3fce2908 g_dig_dbias_pvt_240m + .data._putc1 0x3fce290c 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x3fce290c _putc1 + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + 0x3fce2910 _data_end = ABSOLUTE (.) + +.dram0.rodata 0x3fce2910 0x1610 + 0x3fce2910 _rodata_start = ABSOLUTE (.) + *(.rodata) + .rodata 0x3fce2910 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .rodata 0x3fce2918 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata 0x3fce2920 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + *(.rodata.*) + .rodata.__assert_func.str1.1 + 0x3fce2934 0x14df esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x22 (size before relaxing) + .rodata.abort.str1.1 + 0x3fce3e13 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .rodata.call_start_cpu0.str1.1 + 0x3fce3e13 0x2e esp-idf/main/libmain.a(bootloader_start.c.obj) + .rodata.log_invalid_app_partition.str1.1 + 0x3fce3e13 0x8e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.1 + 0x3fce3e13 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.try_load_partition.str1.1 + 0x3fce3e13 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.1 + 0x3fce3e13 0x6c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_common_read_otadata.str1.1 + 0x3fce3e13 0x7b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.1 + 0x3fce3e13 0x1e5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.1 + 0x3fce3e13 0xe6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.1 + 0x3fce3e13 0xbf esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.esp_partition_table_verify.str1.1 + 0x3fce3e13 0x12d esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.process_checksum.str1.1 + 0x3fce3e13 0x42 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_image_header.str1.1 + 0x3fce3e13 0x87 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.bootloader_util_regions_overlap.str1.1 + 0x3fce3e13 0x5a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_load_addresses.str1.1 + 0x3fce3e13 0xe1 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash_and_sig$isra$0.str1.1 + 0x3fce3e13 0x42 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.1 + 0x3fce3e13 0x17d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.1 + 0x3fce3e13 0x50 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.__func__$0 + 0x3fce3e13 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.__func__$1 + 0x3fce3e33 0x16 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.bootloader_sha256_data.str1.1 + 0x3fce3e49 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$2 + 0x3fce3e49 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$3 + 0x3fce3e62 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_init.str1.1 + 0x3fce3e79 0x119 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .rodata.__func__$0 + 0x3fce3e79 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .rodata.bootloader_common_check_chip_revision_validity.str1.1 + 0x3fce3e89 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_efuse_blk_validity.str1.1 + 0x3fce3e89 0x98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.1 + 0x3fce3e89 0x35 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_fill_random.str1.1 + 0x3fce3e89 0x4b esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .rodata.__func__$0 + 0x3fce3e89 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .rodata.bootloader_mmap.str1.1 + 0x3fce3ea0 0x87 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_flash_read.str1.1 + 0x3fce3ea0 0xc4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.str1.1 + 0x3fce3ea0 0xc5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_flash_write.str1.1 + 0x3fce3ea0 0xc9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$1 + 0x3fce3ea0 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$0 + 0x3fce3ebb 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_init_spi_flash.str1.1 + 0x3fce3ee3 0xd5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.bootloader_read_bootloader_header.str1.1 + 0x3fce3ee3 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_check_bootloader_validity.str1.1 + 0x3fce3ee3 0x4d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_enable_random.str1.1 + 0x3fce3ee3 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_print_banner.str1.1 + 0x3fce3ee3 0x6c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_enable_qio_mode.str1.1 + 0x3fce3ee3 0x9c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.str1.1 + 0x3fce3ee3 0x22 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.rtc_clk_xtal_freq_get.str1.1 + 0x3fce3ee3 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.1 + 0x3fce3ee3 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_set_config.str1.1 + 0x3fce3ee3 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.__func__$0 + 0x3fce3ee3 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_init.str1.1 + 0x3fce3efa 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .rodata.str1.1 + 0x3fce3efa 0xf esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .rodata.spi_flash_wrap_list + 0x3fce3efa 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x3fce3efa spi_flash_wrap_list + *(.gnu.linkonce.r.*) + *(.rodata1) + *(.sdata2 .sdata2.*) + 0x3fce3f1a __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + *(.eh_frame_hdr) + *(.eh_frame) + 0x3fce3ff8 . = ((. + 0x3) & 0xfffffffffffffffc) + *fill* 0x3fce3f1a 0x2 + 0x3fce3f1c __init_array_start = ABSOLUTE (.) + *crtbegin.*(.ctors) + *(EXCLUDE_FILE(*crtend.*) .ctors) + .ctors 0x3fce3f1c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *(SORT_BY_NAME(.ctors.*)) + *(.ctors) + 0x3fce3f20 __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + *(EXCLUDE_FILE(*crtend.*) .dtors) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + 0x3fce3f20 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x3fce3f20 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x3fce3f20 _rodata_end = ABSOLUTE (.) + 0x3fce3f20 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x3fce3f20 _lit4_end = ABSOLUTE (.) + 0x3fce3f20 . = ALIGN (0x4) + 0x3fce3f20 _dram_end = ABSOLUTE (.) + +.iram.text 0x403c8700 0xebf + 0x403c8700 _stext = . + 0x403c8700 _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 + 0x403c8700 0x4 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .literal.call_start_cpu0 + 0x403c8704 0x1c esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x3c (size before relaxing) + .literal.bootloader_init + 0x403c8720 0x8c esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + 0xf0 (size before relaxing) + .literal.bootloader_clock_configure + 0x403c87ac 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_init_mem + 0x403c87cc 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_random_enable + 0x403c87cc 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + 0x64 (size before relaxing) + .literal.bootloader_flash_update_id + 0x403c8824 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_init_spi_flash + 0x403c8828 0x64 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0xac (size before relaxing) + .literal.bootloader_clear_bss_section + 0x403c888c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0xc (size before relaxing) + .literal.bootloader_read_bootloader_header + 0x403c888c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x18 (size before relaxing) + .literal.bootloader_check_bootloader_validity + 0x403c8894 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x30 (size before relaxing) + .literal.bootloader_config_wdt + 0x403c88a0 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x38 (size before relaxing) + .literal.bootloader_enable_random + 0x403c88bc 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_print_banner + 0x403c88c0 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_console_init + 0x403c88cc 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + 0x28 (size before relaxing) + .literal.bootloader_enable_qio_mode + 0x403c88e4 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x5c (size before relaxing) + .literal.esp_cpu_configure_region_protection + 0x403c890c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_init + 0x403c8914 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x60 (size before relaxing) + .literal.esp_rom_install_uart_printf + 0x403c8930 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text.esp_bootloader_get_description + 0x403c8944 0x8 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x403c8944 esp_bootloader_get_description + .text.call_start_cpu0 + 0x403c894c 0x6c esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x7c (size before relaxing) + 0x403c894c call_start_cpu0 + .text.bootloader_init + 0x403c89b8 0x1f6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + 0x22e (size before relaxing) + 0x403c89b8 bootloader_init + *fill* 0x403c8bae 0x2 + .text.bootloader_clock_configure + 0x403c8bb0 0xc5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0xc9 (size before relaxing) + 0x403c8bb0 bootloader_clock_configure + *fill* 0x403c8c75 0x3 + .text.bootloader_init_mem + 0x403c8c78 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0xb (size before relaxing) + 0x403c8c78 bootloader_init_mem + *fill* 0x403c8c80 0x0 + .text.bootloader_random_enable + 0x403c8c80 0x242 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + 0x403c8c80 bootloader_random_enable + *fill* 0x403c8ec2 0x2 + .text.bootloader_flash_update_id + 0x403c8ec4 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x403c8ec4 bootloader_flash_update_id + *fill* 0x403c8ed6 0x2 + .text.bootloader_init_spi_flash + 0x403c8ed8 0x179 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x1a5 (size before relaxing) + 0x403c8ed8 bootloader_init_spi_flash + *fill* 0x403c9051 0x3 + .text.bootloader_clear_bss_section + 0x403c9054 0x16 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x403c9054 bootloader_clear_bss_section + *fill* 0x403c906a 0x2 + .text.bootloader_read_bootloader_header + 0x403c906c 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x2e (size before relaxing) + 0x403c906c bootloader_read_bootloader_header + *fill* 0x403c9096 0x2 + .text.bootloader_check_bootloader_validity + 0x403c9098 0x6b esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x77 (size before relaxing) + 0x403c9098 bootloader_check_bootloader_validity + *fill* 0x403c9103 0x1 + .text.bootloader_config_wdt + 0x403c9104 0x8c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x403c9104 bootloader_config_wdt + .text.bootloader_enable_random + 0x403c9190 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x20 (size before relaxing) + 0x403c9190 bootloader_enable_random + *fill* 0x403c91a9 0x3 + .text.bootloader_print_banner + 0x403c91ac 0x42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x52 (size before relaxing) + 0x403c91ac bootloader_print_banner + *fill* 0x403c91ee 0x2 + .text.bootloader_console_init + 0x403c91f0 0xb2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + 0xba (size before relaxing) + 0x403c91f0 bootloader_console_init + *fill* 0x403c92a2 0x2 + .text.bootloader_enable_qio_mode + 0x403c92a4 0x168 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x178 (size before relaxing) + 0x403c92a4 bootloader_enable_qio_mode + .text.esp_cpu_configure_region_protection + 0x403c940c 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x32 (size before relaxing) + 0x403c940c esp_cpu_configure_region_protection + *fill* 0x403c943a 0x2 + .text.rtc_clk_init + 0x403c943c 0x11b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x13f (size before relaxing) + 0x403c943c rtc_clk_init + *fill* 0x403c9557 0x1 + .text.esp_rom_install_uart_printf + 0x403c9558 0x22 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x403c9558 esp_rom_install_uart_printf + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x0 + *fill* 0x403c957a 0x2 + .text.mpu_hal_set_region_access + 0x403c957c 0x33 esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x403c957c mpu_hal_set_region_access + *(.iram .iram.*) + *(.fini.literal) + *(.fini) + *(.gnu.version) + 0x403c95bf . = (. + 0x10) + *fill* 0x403c95af 0x10 + 0x403c95bf _text_end = ABSOLUTE (.) + 0x403c95bf _etext = . + +.xt.prop 0x00000000 0x2a84 + *(.xt.prop .gnu.linkonce.prop.*) + .xt.prop 0x00000000 0x3c esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .xt.prop 0x0000003c 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .xt.prop 0x0000009c 0x6c esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x00000108 0x5c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x738 (size before relaxing) + .xt.prop 0x000006cc 0xf0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.prop 0x000007bc 0x660 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x840 (size before relaxing) + .xt.prop 0x00000e1c 0xcc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x00000ee8 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .xt.prop 0x00000f18 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .xt.prop 0x00000fa8 0x9c esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .xt.prop 0x00001044 0x228 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x0000126c 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .xt.prop 0x000012e4 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00001308 0x6c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.prop 0x00001374 0x24 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x204 (size before relaxing) + .xt.prop 0x00001398 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .xt.prop 0x000013f8 0x570 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x66c (size before relaxing) + .xt.prop 0x00001968 0x1a4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x234 (size before relaxing) + .xt.prop 0x00001b0c 0x138 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x144 (size before relaxing) + .xt.prop 0x00001c44 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .xt.prop 0x00001c74 0x198 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x258 (size before relaxing) + .xt.prop 0x00001e0c 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x1530 (size before relaxing) + .xt.prop 0x00001e0c 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x00001e0c 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x504 (size before relaxing) + .xt.prop 0x00001e0c 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x558 (size before relaxing) + .xt.prop 0x00001e0c 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x774 (size before relaxing) + .xt.prop 0x00001e0c 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x234 (size before relaxing) + .xt.prop 0x00001e0c 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.prop 0x00001e54 0x618 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x984 (size before relaxing) + .xt.prop 0x0000246c 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .xt.prop 0x000024c0 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x1e0 (size before relaxing) + .xt.prop 0x000024f0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x294 (size before relaxing) + .xt.prop 0x000024f0 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x330 (size before relaxing) + .xt.prop 0x0000252c 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00002568 0x30 esp-idf/log/liblog.a(log_timestamp.c.obj) + .xt.prop 0x00002598 0x60 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xt.prop 0x000025f8 0xcc esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x168 (size before relaxing) + .xt.prop 0x000026c4 0x78 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x0000273c 0xfc esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x00002838 0xf0 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x00002928 0x15c esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00002a84 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x1b0 (size before relaxing) + .xt.prop 0x00002a84 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + 0x54 (size before relaxing) + .xt.prop 0x00002a84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + 0x3c (size before relaxing) + .xt.prop 0x00002a84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + 0x3c (size before relaxing) + .xt.prop 0x00002a84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + 0x24 (size before relaxing) + .xt.prop 0x00002a84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + 0x30 (size before relaxing) + .xt.prop 0x00002a84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + 0x174 (size before relaxing) + .xt.prop 0x00002a84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + 0x144 (size before relaxing) + .xt.prop 0x00002a84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + 0x30 (size before relaxing) + .xt.prop 0x00002a84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + 0x90 (size before relaxing) + .xt.prop 0x00002a84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + 0x18 (size before relaxing) + .xt.prop 0x00002a84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + 0x15c (size before relaxing) + .xt.prop 0x00002a84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + 0xd8 (size before relaxing) + +.xt.lit 0x00000000 0x2b0 + *(.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) + 0x10 (size before relaxing) + .xt.lit 0x00000020 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000078 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.lit 0x00000080 0x40 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000000c0 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000000d8 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .xt.lit 0x000000e0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .xt.lit 0x000000f0 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .xt.lit 0x000000f8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x30 (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 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000128 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .xt.lit 0x00000138 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000190 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x000001b8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000001e0 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .xt.lit 0x000001e8 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x000001f0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001f0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x000001f0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000001f0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x000001f0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001f0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.lit 0x000001f8 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x108 (size before relaxing) + .xt.lit 0x00000240 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .xt.lit 0x00000248 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000248 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000248 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000250 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000258 0x8 esp-idf/log/liblog.a(log_timestamp.c.obj) + .xt.lit 0x00000260 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000260 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000260 0x20 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000280 0x18 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000298 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000002b0 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000002b0 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + 0x8 (size before relaxing) + .xt.lit 0x000002b0 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + 0x8 (size before relaxing) + .xt.lit 0x000002b0 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + 0x8 (size before relaxing) + +.xtensa.info 0x00000000 0x38 + *(.xtensa.info) + .xtensa.info 0x00000000 0x38 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.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_esp32s3.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(flash_encrypt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.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_esp32s3.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/bootloader_support/libbootloader_support.a(flash_qio_mode.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_sleep.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/log/liblog.a(log_timestamp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mpu_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(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.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_ashldi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + +.debug + *(.debug) + +.line + *(.line) + +.debug_srcinfo + *(.debug_srcinfo) + +.debug_sfnames + *(.debug_sfnames) + +.debug_aranges 0x00000000 0x9e0 + *(.debug_aranges) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_aranges + 0x00000020 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_aranges + 0x00000048 0x28 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_aranges + 0x00000070 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x00000110 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x00000130 0xa0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x000001d0 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x00000218 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_aranges + 0x00000238 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_aranges + 0x00000260 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_aranges + 0x00000280 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x000002d8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_aranges + 0x000002f8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x00000318 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_aranges + 0x00000338 0x40 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x00000378 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_aranges + 0x000003a0 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x00000458 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_aranges + 0x000004b0 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_aranges + 0x000004f8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_aranges + 0x00000518 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_aranges + 0x00000588 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_aranges + 0x000005a8 0x120 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x000006c8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_aranges + 0x000006e8 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x00000720 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x00000780 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_aranges + 0x000007b0 0x20 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_aranges + 0x000007d0 0x20 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_aranges + 0x000007f0 0x50 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000840 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000898 0x60 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x000008f8 0x88 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_aranges + 0x00000980 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + +.debug_pubnames + *(.debug_pubnames) + +.debug_info 0x00000000 0x38c0a + *(.debug_info .gnu.linkonce.wi.*) + .debug_info 0x00000000 0x18e esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_info 0x0000018e 0x235 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_info 0x000003c3 0xd7f esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_info 0x00001142 0x23e5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x00003527 0x692 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x00003bb9 0x2bcd esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x00006786 0x5ef esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x00006d75 0xc6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_info 0x00006e3b 0xdf esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_info 0x00006f1a 0x47a0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_info 0x0000b6ba 0xd51 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x0000c40b 0x366 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_info 0x0000c771 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x0000c810 0x283 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_info 0x0000ca93 0xb97 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x0000d62a 0x25f esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_info 0x0000d889 0x8461 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x00015cea 0xe69 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_info 0x00016b53 0x5650 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_info 0x0001c1a3 0x1a7a esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_info 0x0001dc1d 0xdad esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_info 0x0001e9ca 0x17b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_info 0x0001eb45 0x3993 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x000224d8 0x9f3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_info 0x00022ecb 0x4c0a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x00027ad5 0x6418 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x0002deed 0x238 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_info 0x0002e125 0x132 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_info 0x0002e257 0x233 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_info 0x0002e48a 0x3a73 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x00031efd 0x3dce esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x00035ccb 0xe2e esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x00036af9 0x1727 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_info 0x00038220 0x9ea esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + +.debug_abbrev 0x00000000 0x5cc9 + *(.debug_abbrev) + .debug_abbrev 0x00000000 0xaa esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_abbrev 0x000000aa 0x163 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_abbrev 0x0000020d 0x34c esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_abbrev 0x00000559 0x530 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x00000a89 0x258 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x00000ce1 0x5b1 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x00001292 0x1cb esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x0000145d 0x86 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_abbrev 0x000014e3 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_abbrev 0x00001563 0x3ca esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_abbrev 0x0000192d 0x2d3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x00001c00 0x12e esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_abbrev 0x00001d2e 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x00001d90 0x172 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_abbrev 0x00001f02 0x33a esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x0000223c 0xaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_abbrev 0x000022eb 0x62e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x00002919 0x319 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_abbrev 0x00002c32 0x374 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_abbrev 0x00002fa6 0x2e9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_abbrev 0x0000328f 0x337 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_abbrev 0x000035c6 0x10b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_abbrev 0x000036d1 0x69d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x00003d6e 0x346 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_abbrev 0x000040b4 0x50d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x000045c1 0x423 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x000049e4 0x130 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_abbrev 0x00004b14 0xe6 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_abbrev 0x00004bfa 0x140 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_abbrev 0x00004d3a 0x210 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00004f4a 0x38d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x000052d7 0x33f esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x00005616 0x429 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_abbrev 0x00005a3f 0x28a esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + +.debug_line 0x00000000 0x19295 + *(.debug_line) + .debug_line 0x00000000 0x20c esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_line 0x0000020c 0x408 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_line 0x00000614 0x6d9 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_line 0x00000ced 0x29c5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x000036b2 0x807 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x00003eb9 0x2bdc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x00006a95 0x53f esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x00006fd4 0x1ff esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_line 0x000071d3 0x2a6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_line 0x00007479 0x134c esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_line 0x000087c5 0xb1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x000092e0 0x433 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_line 0x00009713 0xf0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x00009803 0x4e6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_line 0x00009ce9 0x112d esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x0000ae16 0x66a esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_line 0x0000b480 0x212d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x0000d5ad 0xe18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_line 0x0000e3c5 0xbf5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_line 0x0000efba 0x511 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_line 0x0000f4cb 0xcc4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_line 0x0001018f 0x204 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_line 0x00010393 0x20a0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x00012433 0x820 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_line 0x00012c53 0x1865 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x000144b8 0xe2d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x000152e5 0x333 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_line 0x00015618 0x2da esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_line 0x000158f2 0x2ec esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_line 0x00015bde 0x509 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x000160e7 0x91c esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x00016a03 0xe23 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x00017826 0x127f esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_line 0x00018aa5 0x7f0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + +.debug_frame 0x00000000 0x1630 + *(.debug_frame) + .debug_frame 0x00000000 0x28 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_frame 0x00000028 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_frame 0x00000068 0x40 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_frame 0x000000a8 0x1a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x00000250 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x00000278 0x1a8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x00000420 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x000004c0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_frame 0x000004e8 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_frame 0x00000528 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_frame 0x00000550 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x00000620 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_frame 0x00000648 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x00000670 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_frame 0x00000698 0x88 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x00000720 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_frame 0x00000760 0x1f0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x00000950 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_frame 0x00000a20 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_frame 0x00000ac0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_frame 0x00000ae8 0x118 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_frame 0x00000c00 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_frame 0x00000c28 0x328 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x00000f50 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_frame 0x00000f78 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x00000fe8 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x000010d0 0x58 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_frame 0x00001128 0x28 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_frame 0x00001150 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_frame 0x00001178 0xb8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00001230 0xd0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00001300 0xe8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x000013e8 0x160 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_frame 0x00001548 0xe8 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + +.debug_str 0x00000000 0x12ebc + *(.debug_str) + .debug_str 0x00000000 0x12ebc esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x332 (size before relaxing) + .debug_str 0x00012ebc 0x339 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_str 0x00012ebc 0xb9d esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_str 0x00012ebc 0x1c37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x00012ebc 0x5a3 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x00012ebc 0x1e33 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x00012ebc 0x4d4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x00012ebc 0x2c7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_str 0x00012ebc 0x2f0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_str 0x00012ebc 0x3de8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_str 0x00012ebc 0x1413 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x00012ebc 0x7ac esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_str 0x00012ebc 0x2b0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_str 0x00012ebc 0x34c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_str 0x00012ebc 0xb7b esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_str 0x00012ebc 0x2f6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_str 0x00012ebc 0x5d0b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_str 0x00012ebc 0x1876 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_str 0x00012ebc 0x42aa esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_str 0x00012ebc 0x12d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_str 0x00012ebc 0x1586 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_str 0x00012ebc 0x338 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_str 0x00012ebc 0x2fc2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_str 0x00012ebc 0xe5a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_str 0x00012ebc 0x3e31 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_str 0x00012ebc 0x4d04 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_str 0x00012ebc 0x480 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_str 0x00012ebc 0x304 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_str 0x00012ebc 0x34d esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_str 0x00012ebc 0x2b43 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x00012ebc 0x2d0e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x00012ebc 0x67f esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_str 0x00012ebc 0xa36 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_str 0x00012ebc 0x11be esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + +.debug_loc 0x00000000 0x8724 + *(.debug_loc) + .debug_loc 0x00000000 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_loc 0x00000023 0xd0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_loc 0x000000f3 0x112a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x0000121d 0x1bd esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x000013da 0x1e06 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x000031e0 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x00003202 0x1f5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_loc 0x000033f7 0x458 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x0000384f 0xbc esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_loc 0x0000390b 0x21d esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x00003b28 0x10a3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x00004bcb 0x217 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_loc 0x00004de2 0xea esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_loc 0x00004ecc 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_loc 0x00004f6b 0x168 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_loc 0x000050d3 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_loc 0x00005112 0x8ca esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x000059dc 0x116 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_loc 0x00005af2 0x818 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x0000630a 0x575 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x0000687f 0x15 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_loc 0x00006894 0x7f esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_loc 0x00006913 0x38 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x0000694b 0x15d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00006aa8 0xacb esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x00007573 0xe9b esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_loc 0x0000840e 0x316 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + +.debug_macinfo + *(.debug_macinfo) + +.debug_pubtypes + *(.debug_pubtypes) + +.debug_ranges 0x00000000 0x16d8 + *(.debug_ranges) + .debug_ranges 0x00000000 0x10 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_ranges 0x00000010 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_ranges 0x00000028 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_ranges 0x00000058 0x180 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x000001d8 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x00000248 0x3a8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x000005f0 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x00000628 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_ranges 0x00000638 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_ranges 0x00000650 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_ranges 0x00000660 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x000006a8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_ranges 0x000006b8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x000006c8 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_ranges 0x000006f8 0x80 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x00000778 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_ranges 0x00000790 0x248 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x000009d8 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_ranges 0x00000a50 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_ranges 0x00000a88 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_ranges 0x00000ab0 0xa0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_ranges 0x00000b50 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_ranges 0x00000b60 0x2a8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x00000e08 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_ranges 0x00000e48 0x158 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x00000fa0 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x00001070 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_ranges 0x00001090 0x10 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_ranges 0x000010a0 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_ranges 0x000010c8 0x90 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00001158 0x78 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x000011d0 0x1e8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x000013b8 0x2d0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_ranges 0x00001688 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.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/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .comment 0x0000002f 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .comment 0x0000002f 0x30 esp-idf/log/liblog.a(log_timestamp.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) + .comment 0x0000002f 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + +.note.GNU-stack + *(.note.GNU-stack) + +.noload 0x00000000 0x0 + 0x00000000 _noload_keep_in_elf_start = ABSOLUTE (.) + *(.noload_keep_in_elf .noload_keep_in_elf.*) + 0x00000000 _noload_keep_in_elf_end = ABSOLUTE (.) +OUTPUT(bootloader.elf elf32-xtensa-le) + +Cross Reference Table + +Symbol File +Cache_Count_Flash_Pages esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +Cache_Disable_DCache esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Disable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Enable_DCache esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Enable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_DCache_Disable esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_DCache_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_ICache_Disable esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_ICache_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Get_DCache_Line_Size esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Get_ICache_Line_Size esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Invalidate_Addr esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Resume_DCache esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Resume_DCache_Autoload esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +Cache_Resume_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Suspend_DCache esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Suspend_DCache_Autoload esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +Cache_Suspend_ICache esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_WriteBack_Addr esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/hal/libhal.a(cache_hal.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/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIG_DBIAS_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_DCACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_DCACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_USB_OTG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_OTG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_ECC_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_ECC_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_PAGE_SIZE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TYPE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_K_DIG_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_K_RTC_LDO 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_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PIN_POWER_SELECTION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_PSRAM_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PSRAM_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PSRAM_VENDOR 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_BLOCK_KEY0 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_BLOCK_KEY1 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_BLOCK_KEY2 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_BLOCK_KEY3 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_BLOCK_KEY4 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_BLOCK_KEY5 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_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_SPI_BOOT_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_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CS 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_D4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D7 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_DQS 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_SPI_PAD_CONFIG_WP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_STRAP_JTAG_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USB_EXT_PHY_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USB_PHY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USER_DATA_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_VDD_SPI_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_VDD_SPI_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_VDD_SPI_XPD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_V_DIG_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR_HI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR_LO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WDT_DELAY_SEL 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_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK1 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_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLOCK_KEY0 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_BLOCK_KEY1 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_BLOCK_KEY2 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_BLOCK_KEY3 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_BLOCK_KEY4 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_BLOCK_KEY5 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_BLOCK_SYS_DATA2 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_BLOCK_USR_DATA 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_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIG_DBIAS_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DCACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_DCACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_ICACHE 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_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_OTG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_ECC_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_ECC_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_PAGE_SIZE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_TYPE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 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_KEY_PURPOSE_1 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_KEY_PURPOSE_2 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_KEY_PURPOSE_3 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_KEY_PURPOSE_4 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_KEY_PURPOSE_5 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_K_DIG_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_K_RTC_LDO 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_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PIN_POWER_SELECTION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PSRAM_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PSRAM_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PSRAM_VENDOR 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_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 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_SECURE_BOOT_KEY_REVOKE1 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_SECURE_BOOT_KEY_REVOKE2 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_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_BOOT_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_WR_DIS_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS 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_D4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD 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_SPI_PAD_CONFIG_WP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_STRAP_JTAG_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SYS_DATA_PART1 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_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_USB_EXT_PHY_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_USB_PHY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VDD_SPI_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VDD_SPI_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VDD_SPI_XPD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_V_DIG_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ROM_Boot_Cache_Init esp-idf/hal/libhal.a(mmu_hal.c.obj) +RTCCNTL esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) +SENS esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +SPIMEM0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SPIMEM1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SYSTEM esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +TIMERG0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +UART0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) +__ashldi3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/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/esp_hw_support/libesp_hw_support.a(rtc_sleep.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/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_esp32s3.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +__getreent esp-idf/main/libmain.a(bootloader_start.c.obj) +__lshrdi3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_lshrdi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__popcountsi2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__sf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) +__udivdi3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) +__umoddi3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/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_esp32s3.c.obj) +_bss_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) +_data_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) +_data_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.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) +_impure_data C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) +_impure_ptr C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) +_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/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.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_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_ana_super_wdt_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.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_esp32s3.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_esp32s3.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_esp32s3.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_efuse_blk_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_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_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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_config_wdt esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) +bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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_esp32s3.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_qio_mode esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_enable_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.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_esp32s3.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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_esp32s3.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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) + esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.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_esp32s3.c.obj) +bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_flash_qe_list_count esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_flash_qe_support_list esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_flash_qe_support_list_default esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.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_set_dummy_out esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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_esp32s3.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_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) +bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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_esp32s3.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_esp32s3.c.obj) +bootloader_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) +bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.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(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(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_esp32s3.c.obj) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.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_esp32s3.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_esp32s3.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_esp32s3.c.obj) +bootloader_read_status_16b_rdsr_rdsr2 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_read_status_8b_rdsr esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_read_status_8b_rdsr2 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_read_status_8b_rdsr3 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_read_status_8b_xmc25qu64a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.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) +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) + 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) +bootloader_write_status_16b_wrsr esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_write_status_8b_wrsr esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_write_status_8b_wrsr2 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_write_status_8b_wrsr3 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_write_status_8b_xmc25qu64a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bzero C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + 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) +cache_hal_disable esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +cache_hal_enable esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +cache_hal_freeze esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_init esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) +cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_resume esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_suspend esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_unfreeze esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_hal_writeback_addr esp-idf/hal/libhal.a(cache_hal.c.obj) +cache_writeback_items_freeze esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.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/bootloader_support/libbootloader_support.a(bootloader_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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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_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) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.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_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_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_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_destroy_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_enable_rom_secure_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-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_find_unused_key_block 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_efuse_get_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.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 esp-idf/efuse/libefuse.a(esp_efuse_api_key.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-idf/bootloader_support/libbootloader_support.a(flash_encrypt.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-idf/bootloader_support/libbootloader_support.a(flash_encrypt.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-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_get_purpose_field esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.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_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_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_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.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_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_keypurpose_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_set_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.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-idf/efuse/libefuse.a(esp_efuse_api_key.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_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-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.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/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_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_log_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.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_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/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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_esp32s3.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_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_utility.c.obj) +esp_rom_efuse_get_flash_gpio_info esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +esp_rom_efuse_get_flash_wp_gpio esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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_esp32s3.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_pad_set_drv esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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_rom/libesp_rom.a(esp_rom_sys.c.obj) + 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_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/spi_flash/libspi_flash.a(spi_flash_wrap.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_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/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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_esp32s3.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_init.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_sleep.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/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) +esp_rom_set_cpu_ticks_per_us 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_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +esp_rom_spiflash_config_readmode esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_erase_block esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_select_qio_pins esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_wait_idle esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ets_efuse_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) +ets_efuse_rs_calculate esp-idf/hal/libhal.a(efuse_hal.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_install_uart_printf 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) +ets_sha_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +ets_sha_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +ets_sha_update esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +g_dig_dbias_pvt_240m 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) +g_dig_dbias_pvt_non_240m 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) +g_rtc_dbias_pvt_240m 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) +g_rtc_dbias_pvt_non_240m 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) +g_uart_print esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +g_usb_print esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +memcmp C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.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(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +memset C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + 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(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_init esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) +mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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_flash.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) +mpu_hal_set_region_access esp-idf/hal/libhal.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) +rom_Cache_Count_Flash_Pages esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_Cache_Freeze_DCache_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_Cache_Freeze_ICache_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_Cache_Suspend_DCache esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_Cache_Suspend_ICache esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_Cache_WriteBack_Addr esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_spiflash_legacy_data esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.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_divider_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_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) +rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.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_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_bbpll_add_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_bbpll_remove_consumer 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(rtc_init.c.obj) +rtc_clk_cal_internal 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) +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_init.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_init.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) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.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) +rtc_clk_cpu_set_to_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_divider_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_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/esp_hw_support/libesp_hw_support.a(rtc_init.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) +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/bootloader_support/libbootloader_support.a(bootloader_console.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_sleep_get_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_sleep_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_sleep_low_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_sleep_pu esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +rtc_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.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(rtc_init.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) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +rtc_vddsdio_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +rtc_vddsdio_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +s_cache_hal_init_ctx esp-idf/hal/libhal.a(cache_hal.c.obj) +s_revoke_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +spi_flash_support_wrap_size esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_clear_77 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_clear_c0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_disable esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +spi_flash_wrap_enable esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_enable_77 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_enable_c0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_list esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +spi_flash_wrap_probe_c0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +wdt_hal_config_stage esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_set_flashboot_en esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_write_protect_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_write_protect_enable 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..06f4998 --- /dev/null +++ b/build/bootloader/build.ninja @@ -0,0 +1,2878 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# 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 = F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/ + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + + +############################################# +# Utility command for confserver + +build confserver: phony CMakeFiles/confserver + + +############################################# +# Utility command for save-defconfig + +build save-defconfig: phony CMakeFiles/save-defconfig + + +############################################# +# Utility command for gen_project_binary + +build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp bootloader.elf + + +############################################# +# Utility command for app + +build app: phony CMakeFiles/app esp-idf/esptool_py/bootloader_check_size gen_project_binary + + +############################################# +# Utility command for erase_flash + +build erase_flash: phony CMakeFiles/erase_flash + + +############################################# +# Utility command for merge-bin + +build merge-bin: phony CMakeFiles/merge-bin gen_project_binary + + +############################################# +# Utility command for monitor + +build monitor: phony CMakeFiles/monitor bootloader.elf + + +############################################# +# Utility command for _project_elf_src + +build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32s3.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_esp32s3.c + +build CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj: C_COMPILER__bootloader.2eelf_unscanned_ F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/project_elf_src_esp32s3.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_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always + INCLUDES = -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/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_esp32s3.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/ld/esp32s3.peripherals.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.bt_funcs.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.wdt.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.libc.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/ld/esp32s3/bootloader.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/ld/esp32s3/bootloader.rom.ld || _project_elf_src esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + LINK_FLAGS = -nostartfiles -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32S3=0 -Wl,--Map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=warn -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T esp32s3.rom.ld -T esp32s3.rom.api.ld -T esp32s3.rom.bt_funcs.ld -T esp32s3.rom.libgcc.ld -T esp32s3.rom.wdt.ld -T esp32s3.rom.version.ld -T esp32s3.rom.libc.ld -T esp32s3.rom.newlib.ld -T esp32s3.peripherals.ld -T bootloader.ld -T bootloader.rom.ld + LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a -u __assert_func -u esp_bootloader_desc -u abort -u __ubsan_include -u esp_system_include_startup_funcs -u esp_sleep_gpio_include -u bootloader_hooks_include + LINK_PATH = -LC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld -LC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/ld -LC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/ld/esp32s3 + 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 + + +############################################# +# 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 dfu + +build dfu: phony CMakeFiles/dfu gen_project_binary + + +############################################# +# Utility command for dfu-list + +build dfu-list: phony CMakeFiles/dfu-list + + +############################################# +# Utility command for dfu-flash + +build dfu-flash: phony CMakeFiles/dfu-flash + + +############################################# +# Utility command for uf2 + +build uf2: phony CMakeFiles/uf2 + + +############################################# +# Utility command for uf2-app + +build uf2-app: phony CMakeFiles/uf2-app + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config.env && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Vecmocon/esp/v5.5.1/esp-idf/sdkconfig.rename --config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config.env --env IDF_TARGET=esp32s3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --dont-write-deprecated --output config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/check_term.py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/kconfigs_projbuild.in KCONFIG_CONFIG=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig IDF_TARGET=esp32s3 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.5.1 IDF_MINIMAL_BUILD=n C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe -m menuconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/Kconfig && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Vecmocon/esp/v5.5.1/esp-idf/sdkconfig.rename --config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config.env --env IDF_TARGET=esp32s3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --output config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig" + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config.env && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfserver --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config.env --kconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Vecmocon/esp/v5.5.1/esp-idf/sdkconfig.rename --config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig" + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config.env && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Vecmocon/esp/v5.5.1/esp-idf/sdkconfig.rename --config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config.env --dont-write-deprecated --output savedefconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/sdkconfig.defaults" + pool = console + + +############################################# +# Phony custom command for CMakeFiles\gen_project_binary + +build CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony .bin_timestamp || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a + + +############################################# +# Custom command for .bin_timestamp + +build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND bootloader.elf || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32s3 elf2image --flash_mode dio --flash_freq 80m --flash_size 4MB --min-rev-full 0 --max-rev-full 99 -o F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.bin F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.elf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Generated F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.bin" && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E md5sum F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.bin > F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/.bin_timestamp" + DESC = Generating binary image from built executable + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\app + +build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esptool_py/bootloader_check_size esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary + + +############################################# +# 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:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -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 bootloader || _project_elf_src bootloader.elf 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_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=merge_bin;-o;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/merged-binary.bin;@F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/flash_args -D WORKING_DIRECTORY=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\monitor + +build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || _project_elf_src bootloader.elf 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_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--toolchain-prefix;xtensa-esp32s3-elf-;;--target;esp32s3;;--revision;0;;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.elf -D WORKING_DIRECTORY=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader -P run_serial_tool.cmake" + 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_esp32s3.c + + +############################################# +# Custom command for project_elf_src_esp32s3.c + +build project_elf_src_esp32s3.c | ${cmake_ninja_workdir}project_elf_src_esp32s3.c: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/project_elf_src_esp32s3.c" + DESC = Generating project_elf_src_esp32s3.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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu + +build CMakeFiles/dfu | ${cmake_ninja_workdir}CMakeFiles/dfu: CUSTOM_COMMAND bootloader || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/mkdfu.py write -o F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/dfu.bin --json F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/flasher_args.json --pid 9 --flash-size 4MB" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu-list + +build CMakeFiles/dfu-list | ${cmake_ninja_workdir}CMakeFiles/dfu-list: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D ESP_DFU_LIST="1" -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/run_dfu_util.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu-flash + +build CMakeFiles/dfu-flash | ${cmake_ninja_workdir}CMakeFiles/dfu-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D ESP_DFU_BIN="F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/dfu.bin" -D ESP_DFU_PID="9" -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/run_dfu_util.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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D UF2_CMD=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32s3 -D UF2_ARGS=--json;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/flasher_args.json;-o;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/uf2.bin -P C:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D UF2_CMD=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32s3 -D UF2_ARGS=--json;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/flasher_args.json;-o;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/uf2-app.bin;--bin;app -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register + 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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\xtensa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\xtensa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\newlib && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\newlib && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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_micro-ecc + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_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/esp32s3/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\interrupts.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\gpio_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/uart_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/uart_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\uart_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/adc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/adc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\adc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\dedic_gpio_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/gdma_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/gdma_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\gdma_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/spi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/spi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\spi_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/ledc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/ledc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\ledc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/pcnt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/pcnt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\pcnt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/rmt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/rmt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\rmt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/sdm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/sdm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\sdm_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/i2s_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/i2s_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\i2s_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/i2c_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/i2c_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\i2c_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\temperature_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/timer_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/timer_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\timer_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/lcd_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/lcd_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\lcd_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/mcpwm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\mcpwm_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/mpi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\mpi_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/sdmmc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\sdmmc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/touch_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/touch_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\touch_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/twai_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/twai_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\twai_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/wdt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/wdt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\wdt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/usb_dwc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/usb_dwc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\usb_dwc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/rtc_io_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\rtc_io_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/cam_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/cam_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\cam_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/power_supply_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/power_supply_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\power_supply_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + 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/esp32s3/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj || esp-idf/micro-ecc/libmicro-ecc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\soc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\soc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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_hal + +build esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj: C_COMPILER____idf_micro-ecc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register + 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/hal/libhal.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\micro-ecc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\micro-ecc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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_spi_flash + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register + 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/mpu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mpu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\mpu_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register + 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/esp32s3/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\efuse_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register + 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/cache_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\cache_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register + 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/mpu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj || esp-idf/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\hal && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\hal && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\spi_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\spi_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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_bootloader_support + +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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register + 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/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_bootloader_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_bootloader_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_app_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_app_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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/esp32s3/bootloader_soc.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/bootloader_soc.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\bootloader_soc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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\esp32s3 + 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/esp32s3/bootloader_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/bootloader_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\bootloader_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_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/esp32s3/bootloader_soc.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj || esp-idf/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\bootloader_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\bootloader_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\esp_efuse_table.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + 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/esp32s3/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + 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/esp32s3/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\esp_efuse_rtc_calib.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + 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/esp32s3/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\with_key_purposes\esp_efuse_api_key.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes + 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/esp32s3/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj || esp-idf/esp_system/libesp_system.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\efuse && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256" + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\efuse && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256 --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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\efuse && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32s3 --max_blk_len 256" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_security && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_security && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_system && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_system && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/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/esp32s3/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\esp_cpu_intr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/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\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/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/esp32s3/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\cpu_region_protect.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/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\esp32s3 + 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/esp32s3/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\rtc_clk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/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\esp32s3 + 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/esp32s3/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\rtc_clk_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/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\esp32s3 + 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/esp32s3/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\rtc_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/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\esp32s3 + 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/esp32s3/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\rtc_sleep.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/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\esp32s3 + 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/esp32s3/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\rtc_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/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\esp32s3 + 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/esp32s3/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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\esp32s3\chip_info.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/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\esp32s3 + 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/esp32s3/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/esp32s3/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj || esp-idf/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_hw_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_hw_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_hw_support\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/edit_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_hw_support\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/edit_cache: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/rebuild_cache: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_hw_support\lowpower && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_hw_support\lowpower && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_common && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_common && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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_uart.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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_uart.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.1\" -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 = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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_systimer.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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_systimer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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_wdt.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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_wdt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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_cache_esp32s2_esp32s3.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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_cache_esp32s2_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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_cache_writeback_esp32s3.S.obj: ASM_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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_cache_writeback_esp32s3.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_rom && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esp_rom && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/noos/log_timestamp.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/noos/log_lock.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/noos/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_format_text.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_print.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\log && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\log && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for bootloader_check_size + +build esp-idf/esptool_py/bootloader_check_size: phony esp-idf/esptool_py/CMakeFiles/bootloader_check_size gen_project_binary + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 + + +############################################# +# Custom command for esp-idf\esptool_py\CMakeFiles\bootloader_check_size + +build esp-idf/esptool_py/CMakeFiles/bootloader_check_size | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/bootloader_check_size: CUSTOM_COMMAND || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\esptool_py && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\freertos && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\freertos && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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:/Users/Vecmocon/esp/v5.5.1/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_xtensa + +build esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/bootloader_start.c || cmake_object_order_depends_target___idf_main + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/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 || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\main && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader\esp-idf\main && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader\subproject -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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_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_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 bootloader_check_size: phony esp-idf/esptool_py/bootloader_check_size + +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_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_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: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader + +build all: phony app bootloader.elf esp-idf/all + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf + +build esp-idf/all: phony esp-idf/xtensa/all esp-idf/newlib/all esp-idf/soc/all esp-idf/micro-ecc/all esp-idf/hal/all esp-idf/spi_flash/all esp-idf/esp_bootloader_format/all esp-idf/esp_app_format/all esp-idf/bootloader_support/all esp-idf/efuse/all esp-idf/esp_security/all esp-idf/esp_system/all esp-idf/esp_hw_support/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/log/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/bootloader/all esp-idf/freertos/all esp-idf/main/all + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_app_format + +build esp-idf/esp_app_format/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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/esp32s3/all esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all esp-idf/esp_hw_support/lowpower/all + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/lowpower + +build esp-idf/esp_hw_support/lowpower/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/port/esp32s3 + +build esp-idf/esp_hw_support/port/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_security + +build esp-idf/esp_security/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_system + +build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/freertos + +build esp-idf/freertos/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/micro-ecc + +build esp-idf/micro-ecc/all: phony esp-idf/micro-ecc/libmicro-ecc.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/newlib + +build esp-idf/newlib/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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: RERUN_CMAKE | C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/sources.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/openthread/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/build.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/component.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/dfu.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/idf.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/openocd.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project_description.json.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/targets.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/utilities.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/version.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig config/sdkconfig.cmake config/sdkconfig.h + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/sources.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/openthread/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/build.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/component.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/dfu.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/idf.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/openocd.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project_description.json.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/targets.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/utilities.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/version.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig config/sdkconfig.cmake config/sdkconfig.h: 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..b3ace3e --- /dev/null +++ b/build/bootloader/cmake_install.cmake @@ -0,0 +1,62 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/cmake_install.cmake") +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) + string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") + file(WRITE "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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..b40b31a --- /dev/null +++ b/build/bootloader/compile_commands.json @@ -0,0 +1,632 @@ +[ +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -o CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32s3.c.obj -c F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\build\\bootloader\\project_elf_src_esp32s3.c", + "file": "F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\build\\bootloader\\project_elf_src_esp32s3.c", + "output": "CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32s3.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\eri.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\eri.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xt_trax.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xt_trax.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\dedic_gpio_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\dedic_gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\temperature_sensor_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\temperature_sensor_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\touch_sensor_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\touch_sensor_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_dwc_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\usb_dwc_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\usb_dwc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_dwc_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rtc_io_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rtc_io_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\cam_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\cam_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\cam_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\cam_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\power_supply_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\power_supply_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\power_supply_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\power_supply_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mpu_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mpu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_soc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_soc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_soc.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_soc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_esp32s3.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_esp32s3.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_esp32s3.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_esp32s3.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_table.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_table.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_fields.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_utility.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_cpu_intr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_cpu_intr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_cpu_intr.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_cpu_intr.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\cpu_region_protect.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\cpu_region_protect.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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_cache_writeback_esp32s3.S.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_lock.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_lock.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\util.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\util.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\util.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=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 -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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/component_manager_run_counter.38272 b/build/bootloader/component_manager_run_counter.38272 new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/build/bootloader/component_manager_run_counter.38272 @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/build/bootloader/config.env b/build/bootloader/config.env new file mode 100644 index 0000000..ab74cce --- /dev/null +++ b/build/bootloader/config.env @@ -0,0 +1,12 @@ +{ + "COMPONENT_KCONFIGS": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32s3;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename.esp32s3;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/sdkconfig.rename.esp32s3;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/sdkconfig.rename", + "IDF_TARGET": "esp32s3", + "IDF_TOOLCHAIN": "gcc", + "IDF_VERSION": "5.5.1", + "IDF_ENV_FPGA": "", + "IDF_PATH": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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..061c89d --- /dev/null +++ b/build/bootloader/config/kconfig_menus.json @@ -0,0 +1,12048 @@ +[ + { + "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_UART_SUPPORTED", + "name": "SOC_UART_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_TWAI_SUPPORTED", + "name": "SOC_TWAI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_SUPPORTED", + "name": "SOC_GDMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UHCI_SUPPORTED", + "name": "SOC_UHCI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_SUPPORTED", + "name": "SOC_AHB_GDMA_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_LCDCAM_SUPPORTED", + "name": "SOC_LCDCAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_SUPPORTED", + "name": "SOC_LCDCAM_CAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_LCD_SUPPORTED", + "name": "SOC_LCDCAM_I80_LCD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_LCD_SUPPORTED", + "name": "SOC_LCDCAM_RGB_LCD_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_DEDICATED_GPIO_SUPPORTED", + "name": "SOC_DEDICATED_GPIO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_SUPPORT_WRAP", + "name": "SOC_CACHE_SUPPORT_WRAP", + "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_ULP_FSM_SUPPORTED", + "name": "SOC_ULP_FSM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RISCV_COPROC_SUPPORTED", + "name": "SOC_RISCV_COPROC_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_USB_OTG_SUPPORTED", + "name": "SOC_USB_OTG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "name": "SOC_USB_SERIAL_JTAG_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_ASYNC_MEMCPY_SUPPORTED", + "name": "SOC_ASYNC_MEMCPY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORTS_SECURE_DL_MODE", + "name": "SOC_SUPPORTS_SECURE_DL_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "name": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "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_SDMMC_HOST_SUPPORTED", + "name": "SOC_SDMMC_HOST_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_PSRAM_DMA_CAPABLE", + "name": "SOC_PSRAM_DMA_CAPABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XT_WDT_SUPPORTED", + "name": "SOC_XT_WDT_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_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_SYSTIMER_SUPPORTED", + "name": "SOC_SYSTIMER_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_TEMP_SENSOR_SUPPORTED", + "name": "SOC_TEMP_SENSOR_SUPPORTED", + "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_HMAC_SUPPORTED", + "name": "SOC_HMAC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DIG_SIGN_SUPPORTED", + "name": "SOC_DIG_SIGN_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_MEMPROT_SUPPORTED", + "name": "SOC_MEMPROT_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_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_SIMD_INSTRUCTION_SUPPORTED", + "name": "SOC_SIMD_INSTRUCTION_SUPPORTED", + "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_APPCPU_HAS_CLOCK_GATING_BUG", + "name": "SOC_APPCPU_HAS_CLOCK_GATING_BUG", + "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_ARBITER_SUPPORTED", + "name": "SOC_ADC_ARBITER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", + "name": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MONITOR_SUPPORTED", + "name": "SOC_ADC_MONITOR_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_IIR_FILTER_NUM", + "name": "SOC_ADC_DIGI_IIR_FILTER_NUM", + "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_CALIBRATION_V1_SUPPORTED", + "name": "SOC_ADC_CALIBRATION_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "name": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_APB_BACKUP_DMA", + "name": "SOC_APB_BACKUP_DMA", + "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_CACHE_WRITEBACK_SUPPORTED", + "name": "SOC_CACHE_WRITEBACK_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_FREEZE_SUPPORTED", + "name": "SOC_CACHE_FREEZE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC", + "name": "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC", + "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_SIMD_PREFERRED_DATA_ALIGNMENT", + "name": "SOC_SIMD_PREFERRED_DATA_ALIGNMENT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "name": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "name": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "name": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_VERSION", + "name": "SOC_AHB_GDMA_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_NUM_GROUPS_MAX", + "name": "SOC_GDMA_NUM_GROUPS_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PAIRS_PER_GROUP", + "name": "SOC_GDMA_PAIRS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "name": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_SUPPORT_PSRAM", + "name": "SOC_AHB_GDMA_SUPPORT_PSRAM", + "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_SUPPORT_PIN_GLITCH_FILTER", + "name": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", + "name": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "name": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_FORCE_HOLD", + "name": "SOC_GPIO_SUPPORT_FORCE_HOLD", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "name": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE", + "name": "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_FIFO_LEN", + "name": "SOC_I2C_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_CMD_REG_NUM", + "name": "SOC_I2C_CMD_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "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_SUPPORT_HW_CLR_BUS", + "name": "SOC_I2C_SUPPORT_HW_CLR_BUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_XTAL", + "name": "SOC_I2C_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_RTC", + "name": "SOC_I2C_SUPPORT_RTC", + "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_SLAVE_SUPPORT_BROADCAST", + "name": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "name": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "name": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_NUM", + "name": "SOC_I2S_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_HW_VERSION_2", + "name": "SOC_I2S_HW_VERSION_2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_XTAL", + "name": "SOC_I2S_SUPPORTS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PLL_F160M", + "name": "SOC_I2S_SUPPORTS_PLL_F160M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PCM", + "name": "SOC_I2S_SUPPORTS_PCM", + "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_I2S_SUPPORTS_TDM", + "name": "SOC_I2S_SUPPORTS_TDM", + "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_XTAL_CLOCK", + "name": "SOC_LEDC_SUPPORT_XTAL_CLOCK", + "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_LEDC_SUPPORT_FADE_STOP", + "name": "SOC_LEDC_SUPPORT_FADE_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GROUPS", + "name": "SOC_MCPWM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_OPERATORS_PER_GROUP", + "name": "SOC_MCPWM_OPERATORS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "name": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "name": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "name": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "name": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "name": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_MMU_PERIPH_NUM", + "name": "SOC_MMU_PERIPH_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_PCNT_GROUPS", + "name": "SOC_PCNT_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_UNITS_PER_GROUP", + "name": "SOC_PCNT_UNITS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_CHANNELS_PER_UNIT", + "name": "SOC_PCNT_CHANNELS_PER_UNIT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_THRES_POINT_PER_UNIT", + "name": "SOC_PCNT_THRES_POINT_PER_UNIT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_GROUPS", + "name": "SOC_RMT_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_CHANNELS_PER_GROUP", + "name": "SOC_RMT_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "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_RMT_SUPPORT_RX_PINGPONG", + "name": "SOC_RMT_SUPPORT_RX_PINGPONG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "name": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "name": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "name": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "name": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "name": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "name": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_XTAL", + "name": "SOC_RMT_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RC_FAST", + "name": "SOC_RMT_SUPPORT_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_APB", + "name": "SOC_RMT_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_DMA", + "name": "SOC_RMT_SUPPORT_DMA", + "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_LCD_RGB_SUPPORTED", + "name": "SOC_LCD_RGB_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_BUSES", + "name": "SOC_LCD_I80_BUSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_RGB_PANELS", + "name": "SOC_LCD_RGB_PANELS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_BUS_WIDTH", + "name": "SOC_LCD_I80_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_RGB_DATA_WIDTH", + "name": "SOC_LCD_RGB_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_SUPPORT_RGB_YUV_CONV", + "name": "SOC_LCD_SUPPORT_RGB_YUV_CONV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_NUM_BUSES", + "name": "SOC_LCDCAM_I80_NUM_BUSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_BUS_WIDTH", + "name": "SOC_LCDCAM_I80_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_NUM_PANELS", + "name": "SOC_LCDCAM_RGB_NUM_PANELS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_DATA_WIDTH", + "name": "SOC_LCDCAM_RGB_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", + "name": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", + "name": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH", + "name": "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH", + "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_LP_IO_CLOCK_IS_INDEPENDENT", + "name": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_GROUPS", + "name": "SOC_SDM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_CHANNELS_PER_GROUP", + "name": "SOC_SDM_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_CLK_SUPPORT_APB", + "name": "SOC_SDM_CLK_SUPPORT_APB", + "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_MAX_CS_NUM", + "name": "SOC_SPI_MAX_CS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "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_SUPPORT_DDRCLK", + "name": "SOC_SPI_SUPPORT_DDRCLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "name": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CD_SIG", + "name": "SOC_SPI_SUPPORT_CD_SIG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "name": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "name": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_SUPPORT_CLK_XTAL", + "name": "SOC_SPI_SUPPORT_CLK_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", + "name": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_IS_INDEPENDENT", + "name": "SOC_MEMSPI_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_SPI_SUPPORT_OCT", + "name": "SOC_SPI_SUPPORT_OCT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_SUPPORTED", + "name": "SOC_SPI_SCT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_REG_NUM", + "name": "SOC_SPI_SCT_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "name": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "name": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_20M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "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_SPIRAM_XIP_SUPPORTED", + "name": "SOC_SPIRAM_XIP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_COUNTER_NUM", + "name": "SOC_SYSTIMER_COUNTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_NUM", + "name": "SOC_SYSTIMER_ALARM_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_LO", + "name": "SOC_SYSTIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_HI", + "name": "SOC_SYSTIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_FIXED_DIVIDER", + "name": "SOC_SYSTIMER_FIXED_DIVIDER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_INT_LEVEL", + "name": "SOC_SYSTIMER_INT_LEVEL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "name": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUPS", + "name": "SOC_TIMER_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "name": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "name": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "name": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_APB", + "name": "SOC_TIMER_GROUP_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "range": null, + "title": null, + "type": "int" + }, + { + "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_SENSOR_NUM", + "name": "SOC_TOUCH_SENSOR_NUM", + "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_BENCHMARK", + "name": "SOC_TOUCH_SUPPORT_BENCHMARK", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_SUPPORT_WATERPROOF", + "name": "SOC_TOUCH_SUPPORT_WATERPROOF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_PROX_SENSING", + "name": "SOC_TOUCH_SUPPORT_PROX_SENSING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_DENOISE_CHAN", + "name": "SOC_TOUCH_SUPPORT_DENOISE_CHAN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PROXIMITY_CHANNEL_NUM", + "name": "SOC_TOUCH_PROXIMITY_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED", + "name": "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED", + "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_TWAI_CLK_SUPPORT_APB", + "name": "SOC_TWAI_CLK_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MIN", + "name": "SOC_TWAI_BRP_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MAX", + "name": "SOC_TWAI_BRP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORTS_RX_STATUS", + "name": "SOC_TWAI_SUPPORTS_RX_STATUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_SUPPORT_FSM_TX_WAIT_SEND", + "name": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_WAKEUP_INT", + "name": "SOC_UART_SUPPORT_WAKEUP_INT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_RTC_CLK", + "name": "SOC_UART_SUPPORT_RTC_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_XTAL_CLK", + "name": "SOC_UART_SUPPORT_XTAL_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_UHCI_NUM", + "name": "SOC_UHCI_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_OTG_PERIPH_NUM", + "name": "SOC_USB_OTG_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "name": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_DMA", + "name": "SOC_SHA_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_RESUME", + "name": "SOC_SHA_SUPPORT_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_GDMA", + "name": "SOC_SHA_GDMA", + "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_SHA224", + "name": "SOC_SHA_SUPPORT_SHA224", + "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_SHA_SUPPORT_SHA512_224", + "name": "SOC_SHA_SUPPORT_SHA512_224", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512_256", + "name": "SOC_SHA_SUPPORT_SHA512_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512_T", + "name": "SOC_SHA_SUPPORT_SHA512_T", + "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_DMA", + "name": "SOC_AES_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_GDMA", + "name": "SOC_AES_GDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_256", + "name": "SOC_AES_SUPPORT_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_WIFI_WAKEUP", + "name": "SOC_PM_SUPPORT_WIFI_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_BT_WAKEUP", + "name": "SOC_PM_SUPPORT_BT_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_CPU_PD", + "name": "SOC_PM_SUPPORT_CPU_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_TAGMEM_PD", + "name": "SOC_PM_SUPPORT_TAGMEM_PD", + "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_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_MAC_BB_PD", + "name": "SOC_PM_SUPPORT_MAC_BB_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_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "name": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", + "name": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", + "name": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", + "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_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_D2", + "name": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "name": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DOWNLOAD_DCACHE", + "name": "SOC_EFUSE_DIS_DOWNLOAD_DCACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_HARD_DIS_JTAG", + "name": "SOC_EFUSE_HARD_DIS_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_USB_JTAG", + "name": "SOC_EFUSE_DIS_USB_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SOFT_DIS_JTAG", + "name": "SOC_EFUSE_SOFT_DIS_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DIRECT_BOOT", + "name": "SOC_EFUSE_DIS_DIRECT_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_ICACHE", + "name": "SOC_EFUSE_DIS_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "name": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_V2_RSA", + "name": "SOC_SECURE_BOOT_V2_RSA", + "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_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "name": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_FLASH_ENCRYPTION_XTS_AES", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_256", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", + "name": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMPROT_MEM_ALIGN_SIZE", + "name": "SOC_MEMPROT_MEM_ALIGN_SIZE", + "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_MAC_BB_PD_MEM_SIZE", + "name": "SOC_MAC_BB_PD_MEM_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "name": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE", + "name": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_TIMING_TUNING", + "name": "SOC_SPI_MEM_SUPPORT_TIMING_TUNING", + "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_SPI_MEM_SUPPORT_WRAP", + "name": "SOC_SPI_MEM_SUPPORT_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY", + "name": "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM", + "name": "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP", + "name": "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_COEX_HW_PTI", + "name": "SOC_COEX_HW_PTI", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_ADVANCE", + "name": "SOC_EXTERNAL_COEX_ADVANCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "name": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_USE_GPIO_MATRIX", + "name": "SOC_SDMMC_USE_GPIO_MATRIX", + "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_SUPPORT_XTAL_CLOCK", + "name": "SOC_SDMMC_SUPPORT_XTAL_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_DELAY_PHASE_NUM", + "name": "SOC_SDMMC_DELAY_PHASE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_HW_TSF", + "name": "SOC_WIFI_HW_TSF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_FTM_SUPPORT", + "name": "SOC_WIFI_FTM_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_GCMP_SUPPORT", + "name": "SOC_WIFI_GCMP_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_PHY_NEEDS_USB_WORKAROUND", + "name": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", + "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_BLE_50_SUPPORTED", + "name": "SOC_BLE_50_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_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_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV", + "name": "SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_PERIPH_NUM", + "name": "SOC_LCDCAM_CAM_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_DATA_WIDTH_MAX", + "name": "SOC_LCDCAM_CAM_DATA_WIDTH_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "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.py to load the generated .bin file into ram and execute.\n\nExample:\n esptool.py --chip {chip} -p {port} -b {baud} --no-stub load_ram {app.bin}\n\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_RAM=y\n CONFIG_VFS_SUPPORT_TERMIOS=\n CONFIG_NEWLIB_NANO_FORMAT=y\n CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y\n CONFIG_ESP_DEBUG_STUBS_ENABLE=\n CONFIG_ESP_ERR_TO_NAME_LOOKUP=", + "id": "build-type-application-build-type", + "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", + "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", + "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", + "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.py 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", + "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" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ARCH_XTENSA || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2) && ", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0) (Deprecated, will be removed in IDF v6.0)", + "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", + "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", + "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", + "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", + "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", + "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", + "name": "BOOTLOADER_LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "bootloader-config-log-settings", + "title": "Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "bootloader-config-log", + "title": "Log", + "type": "menu" + }, + { + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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.py generate_signing_key secure_boot_signing_key.pem\n\nSee the Secure Boot section of the ESP-IDF Programmer's Guide for this version for details.", + "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.py.\nVersion 1 to enable ECDSA Based Secure Boot and Version 2 to enable RSA based Secure Boot.\n(for example, on a remote signing server.)", + "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.py\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.py 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.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", + "id": "security-features-hardware-key-encoding", + "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": "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 && !(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 && ", + "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", + "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", + "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": "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.py.", + "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", + "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 only the app image that is present in the partition of type app", + "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.\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", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "title": "Strength of the pseudo rounds function", + "type": "choice" + } + ], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE && 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.py, espefuse.py and similar tools.\n\nOnce disabled, if the SoC is booted with strapping pins set for ROM Download Mode\nthen an error is printed instead.\n\nIt is recommended to enable this option in any production application where Flash\nEncryption and/or Secure Boot is enabled and access to Download Mode is not required.\n\nIt is also possible to permanently disable Download Mode by calling\nesp_efuse_disable_rom_download_mode() at runtime.", + "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.py flasher stub feature,\nespefuse.py, read/writing memory or registers, encrypted download, or any other\nfeatures that interact with unsupported Download Mode commands.\n\nSecure Download mode should be enabled in any application where Flash Encryption\nand/or Secure Boot is enabled. Disabling this option does not immediately cancel\nthe benefits of the security features, but it increases the potential \"attack\nsurface\" for an attacker to try and bypass them with a successful physical attack.\n\nIt is also possible to enable secure download mode at runtime by calling\nesp_efuse_enable_rom_secure_download_mode()\n\nNote: Secure Download mode is not available for ESP32.", + "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", + "name": "SECURE_UART_ROM_DL_MODE", + "title": "UART ROM download mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "security-features", + "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", + "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_UART_CLK_IS_XTAL", + "name": "ESP_ROM_UART_CLK_IS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "name": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "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_HAS_ERASE_0_REGION_BUG", + "name": "ESP_ROM_HAS_ERASE_0_REGION_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", + "name": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_GET_CLK_FREQ", + "name": "ESP_ROM_GET_CLK_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_HAL_WDT", + "name": "ESP_ROM_HAS_HAL_WDT", + "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_LAYOUT_TABLE", + "name": "ESP_ROM_HAS_LAYOUT_TABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SPI_FLASH", + "name": "ESP_ROM_HAS_SPI_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SPI_FLASH_MMAP", + "name": "ESP_ROM_HAS_SPI_FLASH_MMAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_ETS_PRINTF_BUG", + "name": "ESP_ROM_HAS_ETS_PRINTF_BUG", + "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_NEEDS_SET_CACHE_MMU_SIZE", + "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "name": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG", + "name": "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG", + "name": "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CACHE_WRITEBACK_BUG", + "name": "ESP_ROM_HAS_CACHE_WRITEBACK_BUG", + "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_HAS_VERSION", + "name": "ESP_ROM_HAS_VERSION", + "range": null, + "title": null, + "type": "bool" + }, + { + "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": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_CONSOLE_OUTPUT_SECONDARY", + "name": "ESP_ROM_CONSOLE_OUTPUT_SECONDARY", + "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", + "name": "BOOT_ROM_LOG_SCHEME", + "title": "Permanently change Boot ROM output", + "type": "choice" + } + ], + "depends_on": null, + "id": "boot-rom-behavior", + "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", + "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", + "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": "(SPI_FLASH_HPM_ON || ESPTOOLPY_OCT_FLASH) && (ESPTOOLPY_FLASH_SAMPLE_MODE_STR || IDF_EXPERIMENTAL_FEATURES) && ", + "help": "- Optional feature for QSPI Flash. Read docs and enable `CONFIG_SPI_FLASH_HPM_ENA` first!\n- Flash 120 MHz SDR mode is stable.\n- Flash 120 MHz DDR mode is an experimental feature, it works when\n the temperature is stable.\n\n Risks:\n If your chip powers on at a certain temperature, then after the temperature\n increases or decreases by approximately 20 Celsius degrees (depending on the\n chip), the program will crash randomly.", + "id": "ESPTOOLPY_FLASHFREQ_120M", + "name": "ESPTOOLPY_FLASHFREQ_120M", + "range": null, + "title": "120 MHz (READ DOCS FIRST)", + "type": "bool" + }, + { + "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_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", + "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", + "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.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-before-flashing", + "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.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-after-flashing", + "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", + "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", + "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 address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", + "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", + "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", + "name": "COMPILER_OPTIMIZATION", + "title": "Optimization Level", + "type": "choice" + }, + { + "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", + "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.\n\nIn ESP-IDF v6.0 the default behavior will change to \"no\" to be in line with the\nstandard.", + "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", + "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", + "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": "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", + "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": "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", + "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" + } + ], + "depends_on": null, + "id": "compiler-options", + "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", + "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", + "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", + "title": "Common ESP-related", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_0", + "name": "ESP32S3_REV_MIN_0", + "range": null, + "title": "Rev v0.0 (ECO0)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_1", + "name": "ESP32S3_REV_MIN_1", + "range": null, + "title": "Rev v0.1 (ECO1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_2", + "name": "ESP32S3_REV_MIN_2", + "range": null, + "title": "Rev v0.2 (ECO2)", + "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-s3-revision", + "name": "ESP32S3_REV_MIN", + "title": "Minimum Supported ESP32-S3 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_REV_MIN_FULL", + "name": "ESP32S3_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": "ESP32S3_REV_MAX_FULL", + "name": "ESP32S3_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-S3 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", + "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": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32S3_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", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32S3_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", + "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": "esp32c2, esp32c3, esp32s3, esp32c5, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\na small electrostatic pulse during light sleep, with specific condition\n\n- GPIO needs to be configured as input-mode only\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\n voltage is higher than 6 V\n\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\nThe hardware design needs to controlled it with determined supply or ground voltage\nis necessary.\n\nThis option provides a software workaround for this issue. Configure to isolate all\nGPIO pins in sleep state.", + "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", + "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 136 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 32 kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32 kHz oscillator at 32K_XP pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_8MD256", + "name": "RTC_CLK_SRC_INT_8MD256", + "range": null, + "title": "Internal 17.5 MHz oscillator, divided by 256", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.", + "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", + "name": "RTC_CLK_SRC", + "title": "RTC clock source", + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-rtc-clock-config", + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-peripheral-control", + "title": "Peripheral Control", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ETM_SUPPORTED", + "help": "whether to enable the debug log message for ETM core driver.\nNote that, this option only controls the ETM related driver log, won't affect other drivers.", + "id": "ETM_ENABLE_DEBUG_LOG", + "name": "ETM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_ETM_SUPPORTED", + "id": "component-config-hardware-settings-etm-configuration", + "title": "ETM Configuration", + "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_SUPPORTED", + "help": "This will ensure the GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).\nIf this option is enabled, ALL GDMA channel's ISR handlers should be placed in IRAM, which is a overkill.\nIt's recommend to set the \"isr_cache_safe\" in the \"gdma_channel_alloc_config_t\".\nThen other GDMA channels won't be influenced.", + "id": "GDMA_ISR_IRAM_SAFE", + "name": "GDMA_ISR_IRAM_SAFE", + "range": null, + "title": "GDMA ISR IRAM-Safe (Deprecated. Read Help!)", + "type": "bool" + } + ], + "depends_on": "SOC_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-gdma-configurations", + "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-hardware-settings-dw_gdma-configurations", + "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-hardware-settings-2d-dma-configurations", + "title": "2D-DMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "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.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", + "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", + "title": "Main XTAL Config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_7", + "name": "ESP_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.44V", + "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.56V", + "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.67V", + "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.84V", + "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.98V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "3.19V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_1", + "name": "ESP_BROWNOUT_DET_LVL_SEL_1", + "range": null, + "title": "3.30V", + "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 ESP3-S3 chip.\n\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\n#of the brownout threshold levels.", + "id": "component-config-hardware-settings-power-supplier-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level", + "name": "ESP_BROWNOUT_DET_LVL_SEL", + "title": "Brownout voltage level", + "type": "choice" + } + ], + "depends_on": "!IDF_ENV_FPGA", + "help": "The ESP32-S3 has a built-in brownout detector which can detect if the voltage is lower than\na specific value. If this happens, it will reset the chip in order to prevent unintended\nbehaviour.", + "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.\nThis is because for some special workflow, the chip needs do more things when brownout happens\nbefore restart instead of restarting directly. This part needs to be done in callback function\nof 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", + "title": "Brownout Detector", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-power-supplier", + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings", + "title": "Hardware Settings", + "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", + "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", + "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", + "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.", + "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", + "title": "ESP Security Specific", + "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", + "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": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_16KB", + "name": "ESP32S3_INSTRUCTION_CACHE_16KB", + "range": null, + "title": "16KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_32KB", + "name": "ESP32S3_INSTRUCTION_CACHE_32KB", + "range": null, + "title": "32KB", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache size to be set on application startup.\nIf you use 16KB instruction cache rather than 32KB instruction cache,\nthen the other 16KB will be managed by heap allocator.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-size", + "name": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "title": "Instruction cache size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "name": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_4WAYS", + "name": "ESP32S3_INSTRUCTION_CACHE_4WAYS", + "range": null, + "title": "4 ways", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_8WAYS", + "name": "ESP32S3_INSTRUCTION_CACHE_8WAYS", + "range": null, + "title": "8 ways", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache associated ways to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-associated-ways", + "name": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "title": "Instruction cache associated ways", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "name": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32S3_INSTRUCTION_CACHE_16KB && ", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_16B", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_16B", + "range": null, + "title": "16 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_32B", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_32B", + "range": null, + "title": "32 Bytes", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache line size to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-line-size", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "title": "Instruction cache line size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!SPIRAM_ECC_ENABLE", + "help": "If enabled, instruction cache will use wrap mode to read spi flash or spi ram.\nThe wrap length equals to ESP32S3_INSTRUCTION_CACHE_LINE_SIZE.\nHowever, it depends on complex conditions.", + "id": "ESP32S3_INSTRUCTION_CACHE_WRAP", + "name": "ESP32S3_INSTRUCTION_CACHE_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_16KB", + "name": "ESP32S3_DATA_CACHE_16KB", + "range": null, + "title": "16KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_32KB", + "name": "ESP32S3_DATA_CACHE_32KB", + "range": null, + "title": "32KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_64KB", + "name": "ESP32S3_DATA_CACHE_64KB", + "range": null, + "title": "64KB", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache size to be set on application startup.\nIf you use 32KB data cache rather than 64KB data cache,\nthe other 32KB will be added to the heap.", + "id": "component-config-esp-system-settings-cache-config-data-cache-size", + "name": "ESP32S3_DATA_CACHE_SIZE", + "title": "Data cache size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DATA_CACHE_SIZE", + "name": "ESP32S3_DATA_CACHE_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_4WAYS", + "name": "ESP32S3_DATA_CACHE_4WAYS", + "range": null, + "title": "4 ways", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_8WAYS", + "name": "ESP32S3_DATA_CACHE_8WAYS", + "range": null, + "title": "8 ways", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache associated ways to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-data-cache-associated-ways", + "name": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "title": "Data cache associated ways", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "name": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "(ESP32S3_DATA_CACHE_16KB || ESP32S3_DATA_CACHE_32KB) && ", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_16B", + "name": "ESP32S3_DATA_CACHE_LINE_16B", + "range": null, + "title": "16 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_32B", + "name": "ESP32S3_DATA_CACHE_LINE_32B", + "range": null, + "title": "32 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_64B", + "name": "ESP32S3_DATA_CACHE_LINE_64B", + "range": null, + "title": "64 Bytes", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache line size to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-data-cache-line-size", + "name": "ESP32S3_DATA_CACHE_LINE_SIZE", + "title": "Data cache line size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_SIZE", + "name": "ESP32S3_DATA_CACHE_LINE_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!SPIRAM_ECC_ENABLE", + "help": "If enabled, data cache will use wrap mode to read spi flash or spi ram.\nThe wrap length equals to ESP32S3_DATA_CACHE_LINE_SIZE.\nHowever, it depends on complex conditions.", + "id": "ESP32S3_DATA_CACHE_WRAP", + "name": "ESP32S3_DATA_CACHE_WRAP", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-cache-config", + "title": "Cache config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP32S3_RTCDATA_IN_FAST_MEM", + "name": "ESP32S3_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": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "help": "RAM size dedicated for static variables (.data & .bss sections).\nThis value is less than the chips total memory, as not all of it can be used for this purpose.\nE.g. parts are used by the software bootloader, and will only be available\nas heap memory after app startup.", + "id": "ESP32S3_FIXED_STATIC_RAM_SIZE", + "name": "ESP32S3_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 ESP32S3_FIXED_STATIC_RAM_SIZE", + "id": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "name": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Use fixed static RAM size", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory", + "title": "Memory", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_MEMMAP_TRACEMEM", + "name": "ESP32S3_MEMMAP_TRACEMEM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_MEMMAP_TRACEMEM_TWOBANKS", + "name": "ESP32S3_MEMMAP_TRACEMEM_TWOBANKS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32S3_TRAX && !ESP_SYSTEM_SINGLE_CORE_MODE", + "help": "The esp32-s3 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.", + "id": "ESP32S3_TRAX_TWOBANKS", + "name": "ESP32S3_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-s3 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.", + "id": "ESP32S3_TRAX", + "name": "ESP32S3_TRAX", + "range": null, + "title": "Use TRAX tracing feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_TRACEMEM_RESERVE_DRAM", + "name": "ESP32S3_TRACEMEM_RESERVE_DRAM", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-trace-memory", + "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- USB CDC functions for the esp_rom_printf (if ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF=y)\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", + "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", + "name": "ESP_BACKTRACING_METHOD", + "title": "Backtracing method", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_PMP_IDRAM_SPLIT", + "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_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "name": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "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", + "help": "If enabled, the CPU watches all the memory access and raises an exception in case\nof any memory violation. This feature automatically splits\nthe SRAM memory, using PMP, into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", + "id": "ESP_SYSTEM_PMP_IDRAM_SPLIT", + "name": "ESP_SYSTEM_PMP_IDRAM_SPLIT", + "range": null, + "title": "Enable IRAM/DRAM split protection", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE", + "help": "This option enables the default memory protection provided by TEE.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", + "name": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", + "range": null, + "title": "Enable memory protection (via TEE)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_SYSTEM_MEMPROT_FEATURE", + "help": "Once locked, memory protection settings cannot be changed anymore.\nThe lock is reset only on the chip startup.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", + "name": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", + "range": null, + "title": "Lock memory protection settings", + "type": "bool" + } + ], + "depends_on": "SOC_MEMPROT_SUPPORTED", + "help": "If enabled, the permission control module watches all the memory access and fires the panic handler\nif a permission violation is detected. This feature automatically splits\nthe SRAM memory into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE", + "name": "ESP_SYSTEM_MEMPROT_FEATURE", + "range": null, + "title": "Enable memory protection", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory-protection", + "title": "Memory protection", + "type": "menu" + }, + { + "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", + "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": "", + "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-system-settings-channel-for-console-output", + "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-system-settings-channel-for-console-secondary-output", + "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-system-settings-uart-peripheral-to-use-for-console-output-0-1-", + "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" + }, + { + "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", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL", + "title": "Interrupt level to use for Interrupt Watchdog and other system checks", + "type": "choice" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED && !SECURE_ENABLE_TEE", + "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", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP_SYSTEM_SINGLE_CORE_MODE || APPTRACE_GCOV_ENABLE", + "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-", + "title": "IPC (Inter-Processor Call)", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32P4", + "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", + "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", + "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 && !FREERTOS_SMP", + "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", + "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", + "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": "!FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "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": null, + "help": "THIS OPTION IS DEPRECATED. Use FREERTOS_TASK_PRE_DELETION_HOOK instead.\n\nEnable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", + "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "range": null, + "title": "Enable static task clean up hook (DEPRECATED)", + "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-", + "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", + "name": "FREERTOS_RUN_TIME_STATS_CLK", + "title": "Choose the clock source for run time stats", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "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" + } + ], + "depends_on": null, + "help": "When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\nThis saves up to 8KB of IRAM depending on which functions are used.", + "id": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "name": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place FreeRTOS functions 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", + "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", + "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_ENABLE_TASK_SNAPSHOT", + "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_PANIC_HANDLER_IRAM", + "help": null, + "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "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" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_IN_IRAM", + "name": "FREERTOS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos", + "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", + "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", + "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": "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-", + "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", + "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", + "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", + "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", + "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", + "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", + "title": "Level Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-log-log-level", + "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", + "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", + "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", + "name": "LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-settings", + "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", + "title": "Log", + "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 && IDF_EXPERIMENTAL_FEATURES && ", + "help": null, + "id": "LIBC_PICOLIBC", + "name": "LIBC_PICOLIBC", + "range": null, + "title": "Picolibc (EXPERIMENTAL)", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-libc-libc-to-build-application-with", + "name": "LIBC", + "title": "LibC to build application with", + "type": "choice" + }, + { + "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": "LIBC_NEWLIB", + "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", + "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", + "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", + "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\nThis increases the image size by ~1000 bytes.\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" + } + ], + "depends_on": null, + "id": "component-config-libc", + "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": "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", + "title": "MMU Config", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-soc-settings", + "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", + "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) && !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-", + "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-", + "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 && !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-", + "title": "Optional and Experimental Features (READ DOCS FIRST)", + "type": "menu" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration", + "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": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this flag to use patched versions of SPI flash ROM driver functions.\nThis option should be enabled, if any one of the following is true: (1) need to write\nto flash on ESP32-D2WD; (2) main SPI flash is connected to non-default pins; (3) main\nSPI flash chip is manufactured by ISSI.", + "id": "SPI_FLASH_ROM_DRIVER_PATCH", + "name": "SPI_FLASH_ROM_DRIVER_PATCH", + "range": null, + "title": "Enable SPI flash ROM driver patched functions", + "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", + "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": null, + "id": "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_TH_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", + "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" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-spi-flash-driver", + "title": "SPI Flash driver", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config", + "title": "Component config", + "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_LIBC_PICOLIBC", + "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..2bb5373 --- /dev/null +++ b/build/bootloader/config/sdkconfig.cmake @@ -0,0 +1,931 @@ +# + # Automatically generated file. DO NOT EDIT. + # Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file + # +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_UART_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_PHY_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_GDMA_SUPPORTED "y") +set(CONFIG_SOC_UHCI_SUPPORTED "y") +set(CONFIG_SOC_AHB_GDMA_SUPPORTED "y") +set(CONFIG_SOC_GPTIMER_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_CAM_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED "y") +set(CONFIG_SOC_MCPWM_SUPPORTED "y") +set(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED "y") +set(CONFIG_SOC_CACHE_SUPPORT_WRAP "y") +set(CONFIG_SOC_ULP_SUPPORTED "y") +set(CONFIG_SOC_ULP_FSM_SUPPORTED "y") +set(CONFIG_SOC_RISCV_COPROC_SUPPORTED "y") +set(CONFIG_SOC_BT_SUPPORTED "y") +set(CONFIG_SOC_USB_OTG_SUPPORTED "y") +set(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED "y") +set(CONFIG_SOC_CCOMP_TIMER_SUPPORTED "y") +set(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED "y") +set(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE "y") +set(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD "y") +set(CONFIG_SOC_EFUSE_SUPPORTED "y") +set(CONFIG_SOC_SDMMC_HOST_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_PSRAM_DMA_CAPABLE "y") +set(CONFIG_SOC_XT_WDT_SUPPORTED "y") +set(CONFIG_SOC_I2S_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_SYSTIMER_SUPPORTED "y") +set(CONFIG_SOC_SUPPORT_COEXISTENCE "y") +set(CONFIG_SOC_TEMP_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_AES_SUPPORTED "y") +set(CONFIG_SOC_MPI_SUPPORTED "y") +set(CONFIG_SOC_SHA_SUPPORTED "y") +set(CONFIG_SOC_HMAC_SUPPORTED "y") +set(CONFIG_SOC_DIG_SIGN_SUPPORTED "y") +set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") +set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") +set(CONFIG_SOC_MEMPROT_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_BOD_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_SIMD_INSTRUCTION_SUPPORTED "y") +set(CONFIG_SOC_XTAL_SUPPORT_40M "y") +set(CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG "y") +set(CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_ARBITER_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED "y") +set(CONFIG_SOC_ADC_MONITOR_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 "24") +set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "4") +set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") +set(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM "2") +set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "2") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "83333") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "611") +set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") +set(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED "y") +set(CONFIG_SOC_ADC_SHARED_POWER "y") +set(CONFIG_SOC_APB_BACKUP_DMA "y") +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") +set(CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED "y") +set(CONFIG_SOC_CACHE_FREEZE_SUPPORTED "y") +set(CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC "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_SIMD_PREFERRED_DATA_ALIGNMENT "16") +set(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN "4096") +set(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH "16") +set(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US "1100") +set(CONFIG_SOC_AHB_GDMA_VERSION "1") +set(CONFIG_SOC_GDMA_NUM_GROUPS_MAX "1") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP "5") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX "5") +set(CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM "y") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "49") +set(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER "y") +set(CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT "y") +set(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD "y") +set(CONFIG_SOC_GPIO_VALID_GPIO_MASK "0x1ffffffffffff") +set(CONFIG_SOC_GPIO_IN_RANGE_MAX "48") +set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "48") +set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0x1fffffc000000") +set(CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX "y") +set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") +set(CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP "y") +set(CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE "y") +set(CONFIG_SOC_I2C_NUM "2") +set(CONFIG_SOC_HP_I2C_NUM "2") +set(CONFIG_SOC_I2C_FIFO_LEN "32") +set(CONFIG_SOC_I2C_CMD_REG_NUM "8") +set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") +set(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS "y") +set(CONFIG_SOC_I2C_SUPPORT_XTAL "y") +set(CONFIG_SOC_I2C_SUPPORT_RTC "y") +set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS "y") +set(CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE "y") +set(CONFIG_SOC_I2S_NUM "2") +set(CONFIG_SOC_I2S_HW_VERSION_2 "y") +set(CONFIG_SOC_I2S_SUPPORTS_XTAL "y") +set(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M "y") +set(CONFIG_SOC_I2S_SUPPORTS_PCM "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 "2") +set(CONFIG_SOC_I2S_PDM_MAX_RX_LINES "4") +set(CONFIG_SOC_I2S_SUPPORTS_TDM "y") +set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_LEDC_TIMER_NUM "4") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "8") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "14") +set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") +set(CONFIG_SOC_MCPWM_GROUPS "2") +set(CONFIG_SOC_MCPWM_TIMERS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP "y") +set(CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER "3") +set(CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE "y") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") +set(CONFIG_SOC_MMU_PERIPH_NUM "1") +set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") +set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") +set(CONFIG_SOC_PCNT_GROUPS "1") +set(CONFIG_SOC_PCNT_UNITS_PER_GROUP "4") +set(CONFIG_SOC_PCNT_CHANNELS_PER_UNIT "2") +set(CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT "2") +set(CONFIG_SOC_RMT_GROUPS "1") +set(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP "4") +set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "4") +set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "48") +set(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG "y") +set(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY "y") +set(CONFIG_SOC_RMT_SUPPORT_XTAL "y") +set(CONFIG_SOC_RMT_SUPPORT_RC_FAST "y") +set(CONFIG_SOC_RMT_SUPPORT_APB "y") +set(CONFIG_SOC_RMT_SUPPORT_DMA "y") +set(CONFIG_SOC_LCD_I80_SUPPORTED "y") +set(CONFIG_SOC_LCD_RGB_SUPPORTED "y") +set(CONFIG_SOC_LCD_I80_BUSES "1") +set(CONFIG_SOC_LCD_RGB_PANELS "1") +set(CONFIG_SOC_LCD_I80_BUS_WIDTH "16") +set(CONFIG_SOC_LCD_RGB_DATA_WIDTH "16") +set(CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV "y") +set(CONFIG_SOC_LCDCAM_I80_NUM_BUSES "1") +set(CONFIG_SOC_LCDCAM_I80_BUS_WIDTH "16") +set(CONFIG_SOC_LCDCAM_RGB_NUM_PANELS "1") +set(CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH "16") +set(CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH "128") +set(CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM "549") +set(CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH "128") +set(CONFIG_SOC_RTCIO_PIN_COUNT "22") +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_LP_IO_CLOCK_IS_INDEPENDENT "y") +set(CONFIG_SOC_SDM_GROUPS "1") +set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_SDM_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_SPI_PERIPH_NUM "3") +set(CONFIG_SOC_SPI_MAX_CS_NUM "6") +set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") +set(CONFIG_SOC_SPI_SUPPORT_DDRCLK "y") +set(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_CD_SIG "y") +set(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_APB "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL "y") +set(CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT "y") +set(CONFIG_SOC_MEMSPI_IS_INDEPENDENT "y") +set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "16") +set(CONFIG_SOC_SPI_SUPPORT_OCT "y") +set(CONFIG_SOC_SPI_SCT_SUPPORTED "y") +set(CONFIG_SOC_SPI_SCT_REG_NUM "14") +set(CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX "y") +set(CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX "0x3fffa") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") +set(CONFIG_SOC_SPIRAM_SUPPORTED "y") +set(CONFIG_SOC_SPIRAM_XIP_SUPPORTED "y") +set(CONFIG_SOC_SYSTIMER_COUNTER_NUM "2") +set(CONFIG_SOC_SYSTIMER_ALARM_NUM "3") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI "20") +set(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER "y") +set(CONFIG_SOC_SYSTIMER_INT_LEVEL "y") +set(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE "y") +set(CONFIG_SOC_TIMER_GROUPS "2") +set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "2") +set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "54") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL "y") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_APB "y") +set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "4") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") +set(CONFIG_SOC_TOUCH_SENSOR_VERSION "2") +set(CONFIG_SOC_TOUCH_SENSOR_NUM "15") +set(CONFIG_SOC_TOUCH_MIN_CHAN_ID "1") +set(CONFIG_SOC_TOUCH_MAX_CHAN_ID "14") +set(CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK "y") +set(CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP "y") +set(CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF "y") +set(CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING "y") +set(CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN "y") +set(CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM "3") +set(CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED "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_TWAI_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_TWAI_BRP_MIN "2") +set(CONFIG_SOC_TWAI_BRP_MAX "16384") +set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") +set(CONFIG_SOC_UART_NUM "3") +set(CONFIG_SOC_UART_HP_NUM "3") +set(CONFIG_SOC_UART_FIFO_LEN "128") +set(CONFIG_SOC_UART_BITRATE_MAX "5000000") +set(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND "y") +set(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT "y") +set(CONFIG_SOC_UART_SUPPORT_APB_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_RTC_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_XTAL_CLK "y") +set(CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE "y") +set(CONFIG_SOC_UHCI_NUM "1") +set(CONFIG_SOC_USB_OTG_PERIPH_NUM "1") +set(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE "3968") +set(CONFIG_SOC_SHA_SUPPORT_DMA "y") +set(CONFIG_SOC_SHA_SUPPORT_RESUME "y") +set(CONFIG_SOC_SHA_GDMA "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA224 "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_SHA_SUPPORT_SHA512_224 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512_256 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512_T "y") +set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") +set(CONFIG_SOC_MPI_OPERATIONS_NUM "3") +set(CONFIG_SOC_RSA_MAX_BIT_LEN "4096") +set(CONFIG_SOC_AES_SUPPORT_DMA "y") +set(CONFIG_SOC_AES_GDMA "y") +set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") +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_WIFI_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_CPU_PD "y") +set(CONFIG_SOC_PM_SUPPORT_TAGMEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") +set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MAC_BB_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") +set(CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED "y") +set(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY "y") +set(CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL "y") +set(CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA "y") +set(CONFIG_SOC_PM_MODEM_PD_BY_SW "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_D2 "y") +set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE "y") +set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE "y") +set(CONFIG_SOC_EFUSE_HARD_DIS_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_USB_JTAG "y") +set(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT "y") +set(CONFIG_SOC_EFUSE_DIS_ICACHE "y") +set(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK "y") +set(CONFIG_SOC_SECURE_BOOT_V2_RSA "y") +set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "3") +set(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS "y") +set(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY "y") +set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "64") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 "y") +set(CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE "16") +set(CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE "256") +set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") +set(CONFIG_SOC_MAC_BB_PD_MEM_SIZE "192") +set(CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH "12") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP "y") +set(CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY "y") +set(CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP "y") +set(CONFIG_SOC_COEX_HW_PTI "y") +set(CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE "y") +set(CONFIG_SOC_SDMMC_USE_GPIO_MATRIX "y") +set(CONFIG_SOC_SDMMC_NUM_SLOTS "2") +set(CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_SDMMC_DELAY_PHASE_NUM "4") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC "y") +set(CONFIG_SOC_WIFI_HW_TSF "y") +set(CONFIG_SOC_WIFI_FTM_SUPPORT "y") +set(CONFIG_SOC_WIFI_GCMP_SUPPORT "y") +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_PHY_NEEDS_USB_WORKAROUND "y") +set(CONFIG_SOC_BLE_SUPPORTED "y") +set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") +set(CONFIG_SOC_BLE_50_SUPPORTED "y") +set(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED "y") +set(CONFIG_SOC_BLUFI_SUPPORTED "y") +set(CONFIG_SOC_ULP_HAS_ADC "y") +set(CONFIG_SOC_PHY_COMBO_MODULE "y") +set(CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV "y") +set(CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM "1") +set(CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX "16") +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 "esp32s3") +set(CONFIG_IDF_INIT_VERSION "5.5.1") +set(CONFIG_IDF_TARGET_ESP32S3 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x9") +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_BOOTLOADER_COMPILE_TIME_DATE "y") +set(CONFIG_BOOTLOADER_PROJECT_VER "1") +set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "") +set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x0") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE "") +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_FLASH_DC_AWARE "") +set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") +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_V2_RSA_SUPPORTED "y") +set(CONFIG_SECURE_BOOT_V2_PREFERRED "y") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +set(CONFIG_SECURE_ROM_DL_MODE_ENABLED "y") +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_UART_CLK_IS_XTAL "y") +set(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING "y") +set(CONFIG_ESP_ROM_USB_OTG_NUM "3") +set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "4") +set(CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG "y") +set(CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV "y") +set(CONFIG_ESP_ROM_GET_CLK_FREQ "y") +set(CONFIG_ESP_ROM_HAS_HAL_WDT "y") +set(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND "y") +set(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE "y") +set(CONFIG_ESP_ROM_HAS_SPI_FLASH "y") +set(CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP "y") +set(CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG "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_NEEDS_SET_CACHE_MMU_SIZE "y") +set(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT "y") +set(CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG "y") +set(CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG "y") +set(CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG "y") +set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") +set(CONFIG_ESP_ROM_HAS_VERSION "y") +set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") +set(CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC "y") +set(CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_ON "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW "") +set(CONFIG_ESPTOOLPY_NO_STUB "") +set(CONFIG_ESPTOOLPY_OCT_FLASH "") +set(CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") +set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") +set(CONFIG_ESPTOOLPY_FLASHMODE "dio") +set(CONFIG_ESPTOOLPY_FLASHFREQ_120M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_80M "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "80m") +set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "y") +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 "4MB") +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 "y") +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 "y") +set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC14_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_WARNING "y") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") +set(CONFIG_COMPILER_STATIC_ANALYZER "") +set(CONFIG_EFUSE_CUSTOM_TABLE "") +set(CONFIG_EFUSE_VIRTUAL "") +set(CONFIG_EFUSE_MAX_BLK_LEN "256") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_ESP32S3_REV_MIN_0 "y") +set(CONFIG_ESP32S3_REV_MIN_1 "") +set(CONFIG_ESP32S3_REV_MIN_2 "") +set(CONFIG_ESP32S3_REV_MIN_FULL "0") +set(CONFIG_ESP_REV_MIN_FULL "0") +set(CONFIG_ESP32S3_REV_MAX_FULL "99") +set(CONFIG_ESP_REV_MAX_FULL "99") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "199") +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_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES "4") +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 "y") +set(CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "y") +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_ESP_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_GDMA_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_GDMA_OBJ_DRAM_SAFE "y") +set(CONFIG_GDMA_ENABLE_DEBUG_LOG "") +set(CONFIG_GDMA_ISR_IRAM_SAFE "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ "40") +set(CONFIG_ESP_BROWNOUT_DET "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP_BROWNOUT_USE_INTR "y") +set(CONFIG_ESP_INTR_IN_IRAM "y") +set(CONFIG_ESP_ROM_PRINT_IN_IRAM "y") +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_ESP32S3_INSTRUCTION_CACHE_16KB "y") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE "0x4000") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS "y") +set(CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS "8") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B "y") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE "32") +set(CONFIG_ESP32S3_DATA_CACHE_16KB "") +set(CONFIG_ESP32S3_DATA_CACHE_32KB "y") +set(CONFIG_ESP32S3_DATA_CACHE_64KB "") +set(CONFIG_ESP32S3_DATA_CACHE_SIZE "0x8000") +set(CONFIG_ESP32S3_DATA_CACHE_4WAYS "") +set(CONFIG_ESP32S3_DATA_CACHE_8WAYS "y") +set(CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS "8") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_16B "") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_32B "y") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_64B "") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE "32") +set(CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM "") +set(CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE "") +set(CONFIG_ESP32S3_TRAX "") +set(CONFIG_ESP32S3_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_RTC_FAST_MEM_AS_HEAP_DEPCHECK "y") +set(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP "y") +set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE "y") +set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK "y") +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_CONSOLE_UART_DEFAULT "y") +set(CONFIG_ESP_CONSOLE_USB_CDC "") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG "y") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED "y") +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_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_4 "y") +set(CONFIG_ESP_SYSTEM_BBPLL_RECALIB "y") +set(CONFIG_ESP_IPC_ENABLE "y") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1280") +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_ENABLE_STATIC_TASK_CLEAN_UP "") +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_SYSTIMER "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 "") +set(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER "y") +set(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH "") +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_ENABLE_TASK_SNAPSHOT "y") +set(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH "y") +set(CONFIG_FREERTOS_NUMBER_OF_CORES "2") +set(CONFIG_FREERTOS_IN_IRAM "y") +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_WDT_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_LIBC_NEWLIB "y") +set(CONFIG_LIBC_MISC_IN_IRAM "y") +set(CONFIG_LIBC_LOCKS_PLACE_IN_IRAM "y") +set(CONFIG_LIBC_NEWLIB_NANO_FORMAT "") +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_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_HPM_ENA "") +set(CONFIG_SPI_FLASH_HPM_AUTO "y") +set(CONFIG_SPI_FLASH_HPM_DIS "") +set(CONFIG_SPI_FLASH_HPM_ON "y") +set(CONFIG_SPI_FLASH_HPM_DC_AUTO "y") +set(CONFIG_SPI_FLASH_HPM_DC_DISABLE "") +set(CONFIG_SPI_FLASH_AUTO_SUSPEND "") +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_ROM_DRIVER_PATCH "y") +set(CONFIG_SPI_FLASH_ROM_IMPL "") +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_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_VENDOR_BOYA_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_TH_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 "y") +set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP "y") +set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") +set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") +set(CONFIGS_LIST CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_UHCI_SUPPORTED;CONFIG_SOC_AHB_GDMA_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_LCDCAM_SUPPORTED;CONFIG_SOC_LCDCAM_CAM_SUPPORTED;CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED;CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_CACHE_SUPPORT_WRAP;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_ULP_FSM_SUPPORTED;CONFIG_SOC_RISCV_COPROC_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_USB_OTG_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_PSRAM_DMA_CAPABLE;CONFIG_SOC_XT_WDT_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_MEMPROT_SUPPORTED;CONFIG_SOC_TOUCH_SENSOR_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_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_SIMD_INSTRUCTION_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG;CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_ARBITER_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_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_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_ADC_SHARED_POWER;CONFIG_SOC_APB_BACKUP_DMA;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED;CONFIG_SOC_CACHE_FREEZE_SUPPORTED;CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC;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_SIMD_PREFERRED_DATA_ALIGNMENT;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_AHB_GDMA_VERSION;CONFIG_SOC_GDMA_NUM_GROUPS_MAX;CONFIG_SOC_GDMA_PAIRS_PER_GROUP;CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX;CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_VALID_GPIO_MASK;CONFIG_SOC_GPIO_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_GPIO_SUPPORT_HOLD_IO_IN_DSLP;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST;CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS;CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_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_I2S_SUPPORTS_TDM;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_MCPWM_GROUPS;CONFIG_SOC_MCPWM_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP;CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR;CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER;CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP;CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_PCNT_GROUPS;CONFIG_SOC_PCNT_UNITS_PER_GROUP;CONFIG_SOC_PCNT_CHANNELS_PER_UNIT;CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_SUPPORT_DMA;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_LCD_RGB_SUPPORTED;CONFIG_SOC_LCD_I80_BUSES;CONFIG_SOC_LCD_RGB_PANELS;CONFIG_SOC_LCD_I80_BUS_WIDTH;CONFIG_SOC_LCD_RGB_DATA_WIDTH;CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_LCDCAM_I80_NUM_BUSES;CONFIG_SOC_LCDCAM_I80_BUS_WIDTH;CONFIG_SOC_LCDCAM_RGB_NUM_PANELS;CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM;CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_APB;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_SUPPORT_OCT;CONFIG_SOC_SPI_SCT_SUPPORTED;CONFIG_SOC_SPI_SCT_REG_NUM;CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX;CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX;CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SPIRAM_XIP_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_TOUCH_SENSOR_VERSION;CONFIG_SOC_TOUCH_SENSOR_NUM;CONFIG_SOC_TOUCH_MIN_CHAN_ID;CONFIG_SOC_TOUCH_MAX_CHAN_ID;CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK;CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP;CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF;CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING;CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN;CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM;CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED;CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_MASK_FILTER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_APB;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE;CONFIG_SOC_UHCI_NUM;CONFIG_SOC_USB_OTG_PERIPH_NUM;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_SHA_SUPPORT_SHA512_224;CONFIG_SOC_SHA_SUPPORT_SHA512_256;CONFIG_SOC_SHA_SUPPORT_SHA512_T;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP;CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_TAGMEM_PD;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MAC_BB_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL;CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA;CONFIG_SOC_PM_MODEM_PD_BY_SW;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_D2;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE;CONFIG_SOC_EFUSE_HARD_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256;CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE;CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_MAC_BB_PD_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE;CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY;CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM;CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE;CONFIG_SOC_SDMMC_USE_GPIO_MATRIX;CONFIG_SOC_SDMMC_NUM_SLOTS;CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_SDMMC_DELAY_PHASE_NUM;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW;CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_ULP_HAS_ADC;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM;CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX;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_ESP32S3;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_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_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;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_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;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_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_MZ_CRC32;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG;CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP;CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG;CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG;CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_HAS_VERSION;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC;CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_OCT_FLASH;CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_120M;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ;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_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP32S3_REV_MIN_0;CONFIG_ESP32S3_REV_MIN_1;CONFIG_ESP32S3_REV_MIN_2;CONFIG_ESP32S3_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32S3_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_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_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES;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_ESP32S3_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_ESP32S3_RTC_CLK_SRC_INT_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES;CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_HANDLER_IN_IRAM;CONFIG_GDMA_OBJ_DRAM_SAFE;CONFIG_GDMA_ENABLE_DEBUG_LOG;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32S3_BROWNOUT_DET_LVL;CONFIG_ESP_BROWNOUT_USE_INTR;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_INTR_IN_IRAM;CONFIG_ESP_ROM_PRINT_IN_IRAM;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE;CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS;CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE;CONFIG_ESP32S3_DATA_CACHE_16KB;CONFIG_ESP32S3_DATA_CACHE_32KB;CONFIG_ESP32S3_DATA_CACHE_64KB;CONFIG_ESP32S3_DATA_CACHE_SIZE;CONFIG_ESP32S3_DATA_CACHE_4WAYS;CONFIG_ESP32S3_DATA_CACHE_8WAYS;CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_DATA_CACHE_LINE_16B;CONFIG_ESP32S3_DATA_CACHE_LINE_32B;CONFIG_ESP32S3_DATA_CACHE_LINE_64B;CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE;CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM;CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32S3_TRAX;CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_IN_IRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1;CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_CDC;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_INT_WDT_CHECK_CPU1;CONFIG_INT_WDT_CHECK_CPU1;CONFIG_ESP_TASK_WDT_EN;CONFIG_ESP_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_ESP32S3_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_SYSTEM_BBPLL_RECALIB;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_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_FPU_IN_ISR;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_NUMBER_OF_CORES;CONFIG_FREERTOS_IN_IRAM;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_ASSERTION_ENABLE;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_LOG_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_LIBC_NEWLIB;CONFIG_LIBC_MISC_IN_IRAM;CONFIG_LIBC_LOCKS_PLACE_IN_IRAM;CONFIG_LIBC_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC;CONFIG_LIBC_TIME_SYSCALL_USE_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_NONE;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE;CONFIG_MMU_PAGE_SIZE_64KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_HPM_ENA;CONFIG_SPI_FLASH_HPM_AUTO;CONFIG_SPI_FLASH_HPM_DIS;CONFIG_SPI_FLASH_HPM_ON;CONFIG_SPI_FLASH_HPM_DC_AUTO;CONFIG_SPI_FLASH_HPM_DC_DISABLE;CONFIG_SPI_FLASH_AUTO_SUSPEND;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_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_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_VENDOR_BOYA_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_TH_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_SUPPORT_MXIC_OPI_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_APP_ROLLBACK_ENABLE "") +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 "y") +set(CONFIG_FLASHMODE_QOUT "") +set(CONFIG_FLASHMODE_DIO "") +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_ESP_SYSTEM_PD_FLASH "") +set(CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_ESP32S3_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80 "") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 "y") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240 "") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_MAIN_TASK_STACK_SIZE "3584") +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_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_ESP32S3_DEBUG_OCDAWARE "y") +set(CONFIG_IPC_TASK_STACK_SIZE "1280") +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_NEWLIB_NANO_FORMAT "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE "") +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..12636e3 --- /dev/null +++ b/build/bootloader/config/sdkconfig.h @@ -0,0 +1,703 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header + */ +#pragma once +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_UART_SUPPORTED 1 +#define CONFIG_SOC_PCNT_SUPPORTED 1 +#define CONFIG_SOC_PHY_SUPPORTED 1 +#define CONFIG_SOC_WIFI_SUPPORTED 1 +#define CONFIG_SOC_TWAI_SUPPORTED 1 +#define CONFIG_SOC_GDMA_SUPPORTED 1 +#define CONFIG_SOC_UHCI_SUPPORTED 1 +#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1 +#define CONFIG_SOC_GPTIMER_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_CAM_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED 1 +#define CONFIG_SOC_MCPWM_SUPPORTED 1 +#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1 +#define CONFIG_SOC_CACHE_SUPPORT_WRAP 1 +#define CONFIG_SOC_ULP_SUPPORTED 1 +#define CONFIG_SOC_ULP_FSM_SUPPORTED 1 +#define CONFIG_SOC_RISCV_COPROC_SUPPORTED 1 +#define CONFIG_SOC_BT_SUPPORTED 1 +#define CONFIG_SOC_USB_OTG_SUPPORTED 1 +#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1 +#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1 +#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1 +#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1 +#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1 +#define CONFIG_SOC_EFUSE_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_HOST_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_PSRAM_DMA_CAPABLE 1 +#define CONFIG_SOC_XT_WDT_SUPPORTED 1 +#define CONFIG_SOC_I2S_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_SYSTIMER_SUPPORTED 1 +#define CONFIG_SOC_SUPPORT_COEXISTENCE 1 +#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_AES_SUPPORTED 1 +#define CONFIG_SOC_MPI_SUPPORTED 1 +#define CONFIG_SOC_SHA_SUPPORTED 1 +#define CONFIG_SOC_HMAC_SUPPORTED 1 +#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1 +#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 +#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 +#define CONFIG_SOC_MEMPROT_SUPPORTED 1 +#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_BOD_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_SIMD_INSTRUCTION_SUPPORTED 1 +#define CONFIG_SOC_XTAL_SUPPORT_40M 1 +#define CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG 1 +#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_ARBITER_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1 +#define CONFIG_SOC_ADC_MONITOR_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 24 +#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4 +#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 +#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2 +#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 2 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611 +#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12 +#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1 +#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1 +#define CONFIG_SOC_ADC_SHARED_POWER 1 +#define CONFIG_SOC_APB_BACKUP_DMA 1 +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 +#define CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED 1 +#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1 +#define CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC 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_SIMD_PREFERRED_DATA_ALIGNMENT 16 +#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 4096 +#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16 +#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100 +#define CONFIG_SOC_AHB_GDMA_VERSION 1 +#define CONFIG_SOC_GDMA_NUM_GROUPS_MAX 1 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP 5 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 5 +#define CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM 1 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 49 +#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 +#define CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT 1 +#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1 +#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0x1FFFFFFFFFFFF +#define CONFIG_SOC_GPIO_IN_RANGE_MAX 48 +#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 48 +#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x0001FFFFFC000000 +#define CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX 1 +#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3 +#define CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP 1 +#define CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE 1 +#define CONFIG_SOC_I2C_NUM 2 +#define CONFIG_SOC_HP_I2C_NUM 2 +#define CONFIG_SOC_I2C_FIFO_LEN 32 +#define CONFIG_SOC_I2C_CMD_REG_NUM 8 +#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 +#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1 +#define CONFIG_SOC_I2C_SUPPORT_XTAL 1 +#define CONFIG_SOC_I2C_SUPPORT_RTC 1 +#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS 1 +#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1 +#define CONFIG_SOC_I2S_NUM 2 +#define CONFIG_SOC_I2S_HW_VERSION_2 1 +#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1 +#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1 +#define CONFIG_SOC_I2S_SUPPORTS_PCM 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 2 +#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 4 +#define CONFIG_SOC_I2S_SUPPORTS_TDM 1 +#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1 +#define CONFIG_SOC_LEDC_TIMER_NUM 4 +#define CONFIG_SOC_LEDC_CHANNEL_NUM 8 +#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 14 +#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1 +#define CONFIG_SOC_MCPWM_GROUPS 2 +#define CONFIG_SOC_MCPWM_TIMERS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP 1 +#define CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER 3 +#define CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE 1 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1 +#define CONFIG_SOC_MMU_PERIPH_NUM 1 +#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 +#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 +#define CONFIG_SOC_PCNT_GROUPS 1 +#define CONFIG_SOC_PCNT_UNITS_PER_GROUP 4 +#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2 +#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2 +#define CONFIG_SOC_RMT_GROUPS 1 +#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 4 +#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 4 +#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48 +#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1 +#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1 +#define CONFIG_SOC_RMT_SUPPORT_XTAL 1 +#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1 +#define CONFIG_SOC_RMT_SUPPORT_APB 1 +#define CONFIG_SOC_RMT_SUPPORT_DMA 1 +#define CONFIG_SOC_LCD_I80_SUPPORTED 1 +#define CONFIG_SOC_LCD_RGB_SUPPORTED 1 +#define CONFIG_SOC_LCD_I80_BUSES 1 +#define CONFIG_SOC_LCD_RGB_PANELS 1 +#define CONFIG_SOC_LCD_I80_BUS_WIDTH 16 +#define CONFIG_SOC_LCD_RGB_DATA_WIDTH 16 +#define CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV 1 +#define CONFIG_SOC_LCDCAM_I80_NUM_BUSES 1 +#define CONFIG_SOC_LCDCAM_I80_BUS_WIDTH 16 +#define CONFIG_SOC_LCDCAM_RGB_NUM_PANELS 1 +#define CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH 16 +#define CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH 128 +#define CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM 549 +#define CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH 128 +#define CONFIG_SOC_RTCIO_PIN_COUNT 22 +#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_LP_IO_CLOCK_IS_INDEPENDENT 1 +#define CONFIG_SOC_SDM_GROUPS 1 +#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_SPI_PERIPH_NUM 3 +#define CONFIG_SOC_SPI_MAX_CS_NUM 6 +#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 +#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1 +#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1 +#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1 +#define CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT 1 +#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1 +#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16 +#define CONFIG_SOC_SPI_SUPPORT_OCT 1 +#define CONFIG_SOC_SPI_SCT_SUPPORTED 1 +#define CONFIG_SOC_SPI_SCT_REG_NUM 14 +#define CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX 1 +#define CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX 0x3FFFA +#define CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 +#define CONFIG_SOC_SPIRAM_SUPPORTED 1 +#define CONFIG_SOC_SPIRAM_XIP_SUPPORTED 1 +#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2 +#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20 +#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1 +#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1 +#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 +#define CONFIG_SOC_TIMER_GROUPS 2 +#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 2 +#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1 +#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 4 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16 +#define CONFIG_SOC_TOUCH_SENSOR_VERSION 2 +#define CONFIG_SOC_TOUCH_SENSOR_NUM 15 +#define CONFIG_SOC_TOUCH_MIN_CHAN_ID 1 +#define CONFIG_SOC_TOUCH_MAX_CHAN_ID 14 +#define CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK 1 +#define CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP 1 +#define CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF 1 +#define CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING 1 +#define CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN 1 +#define CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM 3 +#define CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED 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_TWAI_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_TWAI_BRP_MIN 2 +#define CONFIG_SOC_TWAI_BRP_MAX 16384 +#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 +#define CONFIG_SOC_UART_NUM 3 +#define CONFIG_SOC_UART_HP_NUM 3 +#define CONFIG_SOC_UART_FIFO_LEN 128 +#define CONFIG_SOC_UART_BITRATE_MAX 5000000 +#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1 +#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1 +#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1 +#define CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE 1 +#define CONFIG_SOC_UHCI_NUM 1 +#define CONFIG_SOC_USB_OTG_PERIPH_NUM 1 +#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968 +#define CONFIG_SOC_SHA_SUPPORT_DMA 1 +#define CONFIG_SOC_SHA_SUPPORT_RESUME 1 +#define CONFIG_SOC_SHA_GDMA 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA224 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_SHA_SUPPORT_SHA512_224 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512_256 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512_T 1 +#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 +#define CONFIG_SOC_MPI_OPERATIONS_NUM 3 +#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096 +#define CONFIG_SOC_AES_SUPPORT_DMA 1 +#define CONFIG_SOC_AES_GDMA 1 +#define CONFIG_SOC_AES_SUPPORT_AES_128 1 +#define CONFIG_SOC_AES_SUPPORT_AES_256 1 +#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_WIFI_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1 +#define CONFIG_SOC_PM_SUPPORT_TAGMEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 +#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MAC_BB_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 +#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1 +#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 1 +#define CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL 1 +#define CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA 1 +#define CONFIG_SOC_PM_MODEM_PD_BY_SW 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_D2 1 +#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE 1 +#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE 1 +#define CONFIG_SOC_EFUSE_HARD_DIS_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1 +#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1 +#define CONFIG_SOC_EFUSE_DIS_ICACHE 1 +#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1 +#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1 +#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3 +#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1 +#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1 +#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 64 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 1 +#define CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE 16 +#define CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE 256 +#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 +#define CONFIG_SOC_MAC_BB_PD_MEM_SIZE 192 +#define CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH 12 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1 +#define CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY 1 +#define CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP 1 +#define CONFIG_SOC_COEX_HW_PTI 1 +#define CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE 1 +#define CONFIG_SOC_SDMMC_USE_GPIO_MATRIX 1 +#define CONFIG_SOC_SDMMC_NUM_SLOTS 2 +#define CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK 1 +#define CONFIG_SOC_SDMMC_DELAY_PHASE_NUM 4 +#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1 +#define CONFIG_SOC_WIFI_HW_TSF 1 +#define CONFIG_SOC_WIFI_FTM_SUPPORT 1 +#define CONFIG_SOC_WIFI_GCMP_SUPPORT 1 +#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_PHY_NEEDS_USB_WORKAROUND 1 +#define CONFIG_SOC_BLE_SUPPORTED 1 +#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 +#define CONFIG_SOC_BLE_50_SUPPORTED 1 +#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1 +#define CONFIG_SOC_BLUFI_SUPPORTED 1 +#define CONFIG_SOC_ULP_HAS_ADC 1 +#define CONFIG_SOC_PHY_COMBO_MODULE 1 +#define CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV 1 +#define CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM 1 +#define CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX 16 +#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 "esp32s3" +#define CONFIG_IDF_INIT_VERSION "5.5.1" +#define CONFIG_IDF_TARGET_ESP32S3 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0009 +#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 0x0 +#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_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_V2_RSA_SUPPORTED 1 +#define CONFIG_SECURE_BOOT_V2_PREFERRED 1 +#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 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_UART_CLK_IS_XTAL 1 +#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1 +#define CONFIG_ESP_ROM_USB_OTG_NUM 3 +#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 4 +#define CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG 1 +#define CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV 1 +#define CONFIG_ESP_ROM_GET_CLK_FREQ 1 +#define CONFIG_ESP_ROM_HAS_HAL_WDT 1 +#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1 +#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1 +#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1 +#define CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP 1 +#define CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG 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_NEEDS_SET_CACHE_MMU_SIZE 1 +#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1 +#define CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG 1 +#define CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG 1 +#define CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG 1 +#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 +#define CONFIG_ESP_ROM_HAS_VERSION 1 +#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 +#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1 +#define CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY 1 +#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 +#define CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT 1 +#define CONFIG_ESPTOOLPY_FLASHMODE_QIO 1 +#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 +#define CONFIG_ESPTOOLPY_FLASHMODE "dio" +#define CONFIG_ESPTOOLPY_FLASHFREQ_80M 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ "80m" +#define CONFIG_ESPTOOLPY_FLASHSIZE_4MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "4MB" +#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_ASSERT_NDEBUG_EVALUATE 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_DISABLE_DEFAULT_ERRORS 1 +#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 +#define CONFIG_COMPILER_RT_LIB_NAME "gcc" +#define CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING 1 +#define CONFIG_EFUSE_MAX_BLK_LEN 256 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 +#define CONFIG_ESP32S3_REV_MIN_0 1 +#define CONFIG_ESP32S3_REV_MIN_FULL 0 +#define CONFIG_ESP_REV_MIN_FULL 0 +#define CONFIG_ESP32S3_REV_MAX_FULL 99 +#define CONFIG_ESP_REV_MAX_FULL 99 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 199 +#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_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU 1 +#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_GPIO_RESET_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_ESP_PERIPH_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_GDMA_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_GDMA_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_GDMA_OBJ_DRAM_SAFE 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_7 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 7 +#define CONFIG_ESP_BROWNOUT_USE_INTR 1 +#define CONFIG_ESP_INTR_IN_IRAM 1 +#define CONFIG_ESP_ROM_PRINT_IN_IRAM 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB 1 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE 0x4000 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS 1 +#define CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS 8 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B 1 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE 32 +#define CONFIG_ESP32S3_DATA_CACHE_32KB 1 +#define CONFIG_ESP32S3_DATA_CACHE_SIZE 0x8000 +#define CONFIG_ESP32S3_DATA_CACHE_8WAYS 1 +#define CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS 8 +#define CONFIG_ESP32S3_DATA_CACHE_LINE_32B 1 +#define CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE 32 +#define CONFIG_ESP32S3_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_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1 +#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1 +#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE 1 +#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK 1 +#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_CONSOLE_UART_DEFAULT 1 +#define CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG 1 +#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 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_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_SYSTEM_BBPLL_RECALIB 1 +#define CONFIG_ESP_IPC_ENABLE 1 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1280 +#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_SYSTIMER 1 +#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1 +#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 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_ENABLE_TASK_SNAPSHOT 1 +#define CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH 1 +#define CONFIG_FREERTOS_NUMBER_OF_CORES 2 +#define CONFIG_FREERTOS_IN_IRAM 1 +#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 +#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 +#define CONFIG_HAL_WDT_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_LIBC_NEWLIB 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_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_HPM_AUTO 1 +#define CONFIG_SPI_FLASH_HPM_ON 1 +#define CONFIG_SPI_FLASH_HPM_DC_AUTO 1 +#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 +#define CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM 1 +#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 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_VENDOR_BOYA_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_TH_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_SUPPORT_BOYA_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_TH_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_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_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 +#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_ESP32S3_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_ESP32S3_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 +#define CONFIG_ESP32S3_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE +#define CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 +#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ +#define CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES +#define CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#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_QIO CONFIG_ESPTOOLPY_FLASHMODE_QIO +#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_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 diff --git a/build/bootloader/config/sdkconfig.json b/build/bootloader/config/sdkconfig.json new file mode 100644 index 0000000..d60f1c9 --- /dev/null +++ b/build/bootloader/config/sdkconfig.json @@ -0,0 +1,823 @@ +{ + "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_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_NONE": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, + "BOOTLOADER_COMPILE_TIME_DATE": true, + "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": 0, + "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_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "BOOT_ROM_LOG_ALWAYS_OFF": false, + "BOOT_ROM_LOG_ALWAYS_ON": true, + "BOOT_ROM_LOG_ON_GPIO_HIGH": false, + "BOOT_ROM_LOG_ON_GPIO_LOW": false, + "COMPILER_ASSERT_NDEBUG_EVALUATE": true, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_DEFAULT_ERRORS": true, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DISABLE_GCC14_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_PLACE": false, + "COMPILER_ORPHAN_SECTIONS_WARNING": true, + "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_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 256, + "EFUSE_VIRTUAL": false, + "ESP32S3_DATA_CACHE_16KB": false, + "ESP32S3_DATA_CACHE_32KB": true, + "ESP32S3_DATA_CACHE_4WAYS": false, + "ESP32S3_DATA_CACHE_64KB": false, + "ESP32S3_DATA_CACHE_8WAYS": true, + "ESP32S3_DATA_CACHE_LINE_16B": false, + "ESP32S3_DATA_CACHE_LINE_32B": true, + "ESP32S3_DATA_CACHE_LINE_64B": false, + "ESP32S3_DATA_CACHE_LINE_SIZE": 32, + "ESP32S3_DATA_CACHE_SIZE": 32768, + "ESP32S3_DCACHE_ASSOCIATED_WAYS": 8, + "ESP32S3_ICACHE_ASSOCIATED_WAYS": 8, + "ESP32S3_INSTRUCTION_CACHE_16KB": true, + "ESP32S3_INSTRUCTION_CACHE_32KB": false, + "ESP32S3_INSTRUCTION_CACHE_4WAYS": false, + "ESP32S3_INSTRUCTION_CACHE_8WAYS": true, + "ESP32S3_INSTRUCTION_CACHE_LINE_16B": false, + "ESP32S3_INSTRUCTION_CACHE_LINE_32B": true, + "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE": 32, + "ESP32S3_INSTRUCTION_CACHE_SIZE": 16384, + "ESP32S3_REV_MAX_FULL": 99, + "ESP32S3_REV_MIN_0": true, + "ESP32S3_REV_MIN_1": false, + "ESP32S3_REV_MIN_2": false, + "ESP32S3_REV_MIN_FULL": 0, + "ESP32S3_RTCDATA_IN_FAST_MEM": false, + "ESP32S3_TRACEMEM_RESERVE_DRAM": 0, + "ESP32S3_TRAX": false, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32S3_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": "80m", + "ESPTOOLPY_FLASHFREQ_120M": false, + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_40M": false, + "ESPTOOLPY_FLASHFREQ_80M": true, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": false, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": true, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "4MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": false, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": true, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_MODE_AUTO_DETECT": true, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESPTOOLPY_OCT_FLASH": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 7, + "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": true, + "ESP_BROWNOUT_USE_INTR": true, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, + "ESP_CONSOLE_SECONDARY_NONE": false, + "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, + "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_CONSOLE_USB_CDC": false, + "ESP_CONSOLE_USB_SERIAL_JTAG": false, + "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, + "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": 199, + "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, + "ESP_ERR_TO_NAME_LOOKUP": 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": 1280, + "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_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": 99, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_CONSOLE_OUTPUT_SECONDARY": true, + "ESP_ROM_GET_CLK_FREQ": true, + "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG": true, + "ESP_ROM_HAS_CACHE_WRITEBACK_BUG": true, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV": true, + "ESP_ROM_HAS_ERASE_0_REGION_BUG": true, + "ESP_ROM_HAS_ETS_PRINTF_BUG": true, + "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG": true, + "ESP_ROM_HAS_HAL_WDT": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_LAYOUT_TABLE": 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_RETARGETABLE_LOCKING": true, + "ESP_ROM_HAS_SPI_FLASH": true, + "ESP_ROM_HAS_SPI_FLASH_MMAP": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_VERSION": true, + "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_PRINT_IN_IRAM": true, + "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, + "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, + "ESP_ROM_UART_CLK_IS_XTAL": true, + "ESP_ROM_USB_OTG_NUM": 3, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": 4, + "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": true, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": true, + "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000, + "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, + "ESP_SYSTEM_BBPLL_RECALIB": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_SYSTEM_IN_IRAM": true, + "ESP_SYSTEM_MEMPROT_FEATURE": true, + "ESP_SYSTEM_MEMPROT_FEATURE_LOCK": 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_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, + "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_SYSTIMER_LVL1": true, + "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, + "FREERTOS_DEBUG_OCDAWARE": true, + "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, + "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, + "FREERTOS_ENABLE_TASK_SNAPSHOT": true, + "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": true, + "FREERTOS_ISR_STACKSIZE": 1536, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_NUMBER_OF_CORES": 2, + "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, + "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_SYSTIMER": 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_SYSTIMER": 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, + "GDMA_CTRL_FUNC_IN_IRAM": true, + "GDMA_ENABLE_DEBUG_LOG": false, + "GDMA_ISR_HANDLER_IN_IRAM": true, + "GDMA_ISR_IRAM_SAFE": false, + "GDMA_OBJ_DRAM_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_WDT_USE_ROM_IMPL": true, + "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, + "IDF_FIRMWARE_CHIP_ID": 9, + "IDF_INIT_VERSION": "5.5.1", + "IDF_TARGET": "esp32s3", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32S3": true, + "IDF_TOOLCHAIN": "gcc", + "IDF_TOOLCHAIN_GCC": true, + "LIBC_LOCKS_PLACE_IN_IRAM": true, + "LIBC_MISC_IN_IRAM": true, + "LIBC_NEWLIB": true, + "LIBC_NEWLIB_NANO_FORMAT": 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, + "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_SRC_EXT_CRYS": false, + "RTC_CLK_SRC_EXT_OSC": false, + "RTC_CLK_SRC_INT_8MD256": false, + "RTC_CLK_SRC_INT_RC": true, + "SECURE_BOOT": false, + "SECURE_BOOT_V2_PREFERRED": true, + "SECURE_BOOT_V2_RSA_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_ROM_DL_MODE_ENABLED": true, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ARBITER_SUPPORTED": true, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, + "SOC_ADC_DIGI_CONTROLLER_NUM": 2, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 12, + "SOC_ADC_DIGI_MONITOR_NUM": 2, + "SOC_ADC_DIGI_RESULT_BYTES": 4, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 10, + "SOC_ADC_MONITOR_SUPPORTED": true, + "SOC_ADC_PATT_LEN_MAX": 24, + "SOC_ADC_PERIPH_NUM": 2, + "SOC_ADC_RTC_CTRL_SUPPORTED": true, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 12, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, + "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_AES_GDMA": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_AES_SUPPORT_DMA": true, + "SOC_AHB_GDMA_SUPPORTED": true, + "SOC_AHB_GDMA_SUPPORT_PSRAM": true, + "SOC_AHB_GDMA_VERSION": 1, + "SOC_APB_BACKUP_DMA": true, + "SOC_APPCPU_HAS_CLOCK_GATING_BUG": true, + "SOC_ASYNC_MEMCPY_SUPPORTED": true, + "SOC_BLE_50_SUPPORTED": true, + "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC": true, + "SOC_CACHE_FREEZE_SUPPORTED": true, + "SOC_CACHE_SUPPORT_WRAP": true, + "SOC_CACHE_WRITEBACK_SUPPORTED": true, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2": 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_COEX_HW_PTI": 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_DEDICATED_GPIO_SUPPORTED": true, + "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, + "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE": true, + "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, + "SOC_DEEP_SLEEP_SUPPORTED": true, + "SOC_DIG_SIGN_SUPPORTED": true, + "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, + "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, + "SOC_DS_SIGNATURE_MAX_BIT_LEN": 4096, + "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, + "SOC_EFUSE_DIS_DIRECT_BOOT": true, + "SOC_EFUSE_DIS_DOWNLOAD_DCACHE": true, + "SOC_EFUSE_DIS_DOWNLOAD_ICACHE": true, + "SOC_EFUSE_DIS_ICACHE": true, + "SOC_EFUSE_DIS_USB_JTAG": true, + "SOC_EFUSE_HARD_DIS_JTAG": true, + "SOC_EFUSE_KEY_PURPOSE_FIELD": true, + "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, + "SOC_EFUSE_SOFT_DIS_JTAG": true, + "SOC_EFUSE_SUPPORTED": true, + "SOC_EXTERNAL_COEX_LEADER_TX_LINE": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 64, + "SOC_FLASH_ENCRYPTION_XTS_AES": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_256": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS": true, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GDMA_NUM_GROUPS_MAX": 1, + "SOC_GDMA_PAIRS_PER_GROUP": 5, + "SOC_GDMA_PAIRS_PER_GROUP_MAX": 5, + "SOC_GDMA_SUPPORTED": true, + "SOC_GPIO_CLOCKOUT_BY_IO_MUX": true, + "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, + "SOC_GPIO_FILTER_CLK_SUPPORT_APB": true, + "SOC_GPIO_IN_RANGE_MAX": 48, + "SOC_GPIO_OUT_RANGE_MAX": 48, + "SOC_GPIO_PIN_COUNT": 49, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_SUPPORT_FORCE_HOLD": true, + "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true, + "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, + "SOC_GPIO_SUPPORT_RTC_INDEPENDENT": true, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 562949886312448, + "SOC_GPIO_VALID_GPIO_MASK": 562949953421311, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HMAC_SUPPORTED": true, + "SOC_HP_CPU_HAS_MULTIPLE_CORES": true, + "SOC_HP_I2C_NUM": 2, + "SOC_I2C_CMD_REG_NUM": 8, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, + "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, + "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_10BIT_ADDR": true, + "SOC_I2C_SUPPORT_HW_CLR_BUS": true, + "SOC_I2C_SUPPORT_RTC": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2C_SUPPORT_XTAL": true, + "SOC_I2S_HW_VERSION_2": true, + "SOC_I2S_NUM": 2, + "SOC_I2S_PDM_MAX_RX_LINES": 4, + "SOC_I2S_PDM_MAX_TX_LINES": 2, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_PCM": 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_I2S_SUPPORTS_PLL_F160M": true, + "SOC_I2S_SUPPORTS_TDM": true, + "SOC_I2S_SUPPORTS_XTAL": true, + "SOC_LCDCAM_CAM_DATA_WIDTH_MAX": 16, + "SOC_LCDCAM_CAM_PERIPH_NUM": 1, + "SOC_LCDCAM_CAM_SUPPORTED": true, + "SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV": true, + "SOC_LCDCAM_I80_BUS_WIDTH": 16, + "SOC_LCDCAM_I80_LCD_SUPPORTED": true, + "SOC_LCDCAM_I80_NUM_BUSES": 1, + "SOC_LCDCAM_RGB_DATA_WIDTH": 16, + "SOC_LCDCAM_RGB_LCD_SUPPORTED": true, + "SOC_LCDCAM_RGB_NUM_PANELS": 1, + "SOC_LCDCAM_SUPPORTED": true, + "SOC_LCD_I80_BUSES": 1, + "SOC_LCD_I80_BUS_WIDTH": 16, + "SOC_LCD_I80_SUPPORTED": true, + "SOC_LCD_RGB_DATA_WIDTH": 16, + "SOC_LCD_RGB_PANELS": 1, + "SOC_LCD_RGB_SUPPORTED": true, + "SOC_LCD_SUPPORT_RGB_YUV_CONV": true, + "SOC_LEDC_CHANNEL_NUM": 8, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_FADE_STOP": true, + "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 14, + "SOC_LEDC_TIMER_NUM": 4, + "SOC_LIGHT_SLEEP_SUPPORTED": true, + "SOC_LP_IO_CLOCK_IS_INDEPENDENT": true, + "SOC_LP_PERIPH_SHARE_INTERRUPT": true, + "SOC_LP_TIMER_BIT_WIDTH_HI": 16, + "SOC_LP_TIMER_BIT_WIDTH_LO": 32, + "SOC_MAC_BB_PD_MEM_SIZE": 192, + "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": 3, + "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP": true, + "SOC_MCPWM_COMPARATORS_PER_OPERATOR": 2, + "SOC_MCPWM_GENERATORS_PER_OPERATOR": 2, + "SOC_MCPWM_GPIO_FAULTS_PER_GROUP": 3, + "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP": 3, + "SOC_MCPWM_GROUPS": 2, + "SOC_MCPWM_OPERATORS_PER_GROUP": 3, + "SOC_MCPWM_SUPPORTED": true, + "SOC_MCPWM_SWSYNC_CAN_PROPAGATE": true, + "SOC_MCPWM_TIMERS_PER_GROUP": 3, + "SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2, + "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE": 16, + "SOC_MEMPROT_MEM_ALIGN_SIZE": 256, + "SOC_MEMPROT_SUPPORTED": true, + "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM": true, + "SOC_MEMSPI_IS_INDEPENDENT": true, + "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, + "SOC_MMU_PERIPH_NUM": 1, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": 3, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_MPU_SUPPORTED": true, + "SOC_PCNT_CHANNELS_PER_UNIT": 2, + "SOC_PCNT_GROUPS": 1, + "SOC_PCNT_SUPPORTED": true, + "SOC_PCNT_THRES_POINT_PER_UNIT": 2, + "SOC_PCNT_UNITS_PER_GROUP": 4, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PHY_SUPPORTED": true, + "SOC_PM_CPU_RETENTION_BY_RTCCNTL": true, + "SOC_PM_MODEM_PD_BY_SW": true, + "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA": true, + "SOC_PM_SUPPORTED": true, + "SOC_PM_SUPPORT_BT_WAKEUP": true, + "SOC_PM_SUPPORT_CPU_PD": true, + "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY": true, + "SOC_PM_SUPPORT_EXT0_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MAC_BB_PD": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_TAGMEM_PD": true, + "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_PM_SUPPORT_WIFI_WAKEUP": true, + "SOC_PSRAM_DMA_CAPABLE": true, + "SOC_RISCV_COPROC_SUPPORTED": true, + "SOC_RMT_CHANNELS_PER_GROUP": 8, + "SOC_RMT_GROUPS": 1, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, + "SOC_RMT_RX_CANDIDATES_PER_GROUP": 4, + "SOC_RMT_SUPPORTED": true, + "SOC_RMT_SUPPORT_APB": true, + "SOC_RMT_SUPPORT_DMA": true, + "SOC_RMT_SUPPORT_RC_FAST": true, + "SOC_RMT_SUPPORT_RX_DEMODULATION": true, + "SOC_RMT_SUPPORT_RX_PINGPONG": true, + "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, + "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, + "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP": true, + "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, + "SOC_RMT_SUPPORT_TX_SYNCHRO": true, + "SOC_RMT_SUPPORT_XTAL": true, + "SOC_RMT_TX_CANDIDATES_PER_GROUP": 4, + "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": 22, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH": 128, + "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM": 549, + "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH": 128, + "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_SDMMC_DELAY_PHASE_NUM": 4, + "SOC_SDMMC_HOST_SUPPORTED": true, + "SOC_SDMMC_NUM_SLOTS": 2, + "SOC_SDMMC_SUPPORT_XTAL_CLOCK": true, + "SOC_SDMMC_USE_GPIO_MATRIX": true, + "SOC_SDM_CHANNELS_PER_GROUP": 8, + "SOC_SDM_CLK_SUPPORT_APB": true, + "SOC_SDM_GROUPS": 1, + "SOC_SDM_SUPPORTED": true, + "SOC_SECURE_BOOT_SUPPORTED": true, + "SOC_SECURE_BOOT_V2_RSA": true, + "SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968, + "SOC_SHA_GDMA": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_DMA": true, + "SOC_SHA_SUPPORT_RESUME": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA224": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SHA_SUPPORT_SHA384": true, + "SOC_SHA_SUPPORT_SHA512": true, + "SOC_SHA_SUPPORT_SHA512_224": true, + "SOC_SHA_SUPPORT_SHA512_256": true, + "SOC_SHA_SUPPORT_SHA512_T": true, + "SOC_SIMD_INSTRUCTION_SUPPORTED": true, + "SOC_SIMD_PREFERRED_DATA_ALIGNMENT": 16, + "SOC_SPIRAM_SUPPORTED": true, + "SOC_SPIRAM_XIP_SUPPORTED": true, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MAX_CS_NUM": 6, + "SOC_SPI_MAX_PRE_DIVIDER": 16, + "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, + "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, + "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP": true, + "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE": true, + "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_TIMING_TUNING": true, + "SOC_SPI_MEM_SUPPORT_WRAP": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": true, + "SOC_SPI_SCT_BUFFER_NUM_MAX": true, + "SOC_SPI_SCT_CONF_BITLEN_MAX": 262138, + "SOC_SPI_SCT_REG_NUM": 14, + "SOC_SPI_SCT_SUPPORTED": true, + "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, + "SOC_SPI_SUPPORT_CD_SIG": true, + "SOC_SPI_SUPPORT_CLK_APB": true, + "SOC_SPI_SUPPORT_CLK_XTAL": true, + "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, + "SOC_SPI_SUPPORT_DDRCLK": true, + "SOC_SPI_SUPPORT_OCT": true, + "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, + "SOC_SUPPORTS_SECURE_DL_MODE": true, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true, + "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true, + "SOC_SYSTIMER_ALARM_NUM": 3, + "SOC_SYSTIMER_BIT_WIDTH_HI": 20, + "SOC_SYSTIMER_BIT_WIDTH_LO": 32, + "SOC_SYSTIMER_COUNTER_NUM": 2, + "SOC_SYSTIMER_FIXED_DIVIDER": true, + "SOC_SYSTIMER_INT_LEVEL": true, + "SOC_SYSTIMER_SUPPORTED": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, + "SOC_TEMP_SENSOR_SUPPORTED": true, + "SOC_TIMER_GROUPS": 2, + "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, + "SOC_TIMER_GROUP_SUPPORT_APB": true, + "SOC_TIMER_GROUP_SUPPORT_XTAL": true, + "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 2, + "SOC_TIMER_GROUP_TOTAL_TIMERS": 4, + "SOC_TOUCH_MAX_CHAN_ID": 14, + "SOC_TOUCH_MIN_CHAN_ID": 1, + "SOC_TOUCH_PROXIMITY_CHANNEL_NUM": 3, + "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED": true, + "SOC_TOUCH_SAMPLE_CFG_NUM": 1, + "SOC_TOUCH_SENSOR_NUM": 15, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_SENSOR_VERSION": 2, + "SOC_TOUCH_SUPPORT_BENCHMARK": true, + "SOC_TOUCH_SUPPORT_DENOISE_CHAN": true, + "SOC_TOUCH_SUPPORT_PROX_SENSING": true, + "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP": true, + "SOC_TOUCH_SUPPORT_WATERPROOF": true, + "SOC_TWAI_BRP_MAX": 16384, + "SOC_TWAI_BRP_MIN": 2, + "SOC_TWAI_CLK_SUPPORT_APB": true, + "SOC_TWAI_CONTROLLER_NUM": 1, + "SOC_TWAI_MASK_FILTER_NUM": 1, + "SOC_TWAI_SUPPORTED": true, + "SOC_TWAI_SUPPORTS_RX_STATUS": 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_FSM_TX_WAIT_SEND": true, + "SOC_UART_SUPPORT_RTC_CLK": true, + "SOC_UART_SUPPORT_WAKEUP_INT": true, + "SOC_UART_SUPPORT_XTAL_CLK": true, + "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true, + "SOC_UHCI_NUM": 1, + "SOC_UHCI_SUPPORTED": true, + "SOC_ULP_FSM_SUPPORTED": true, + "SOC_ULP_HAS_ADC": true, + "SOC_ULP_SUPPORTED": true, + "SOC_USB_OTG_PERIPH_NUM": 1, + "SOC_USB_OTG_SUPPORTED": true, + "SOC_USB_SERIAL_JTAG_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_FTM_SUPPORT": true, + "SOC_WIFI_GCMP_SUPPORT": true, + "SOC_WIFI_HW_TSF": true, + "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": 12, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_40M": true, + "SOC_XT_WDT_SUPPORTED": true, + "SPI_FLASH_AUTO_SUSPEND": 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_HPM_AUTO": true, + "SPI_FLASH_HPM_DC_AUTO": true, + "SPI_FLASH_HPM_DC_DISABLE": false, + "SPI_FLASH_HPM_DIS": false, + "SPI_FLASH_HPM_ENA": false, + "SPI_FLASH_HPM_ON": true, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_ROM_IMPL": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": true, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP": true, + "SPI_FLASH_SUPPORT_TH_CHIP": true, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, + "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, + "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_TH_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_40": true +} \ 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..9c23d4a --- /dev/null +++ b/build/bootloader/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..cfddf4b 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_esp32s3.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj new file mode 100644 index 0000000..383cf38 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.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..efd7bd5 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..19eb0f3 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..2257294 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..d336a63 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..cbb76c4 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..38102e5 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..8c35232 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..9fac286 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..1197372 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..0850318 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..37ab125 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..38e5dd8 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_esp32s3.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj new file mode 100644 index 0000000..7bef816 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.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..ae471c4 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..f109f5c 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/esp32s3/bootloader_esp32s3.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj new file mode 100644 index 0000000..772ad5a Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj new file mode 100644 index 0000000..b1d6e88 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/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..8309be2 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..ae1ad4f 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..4ae2643 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..7c090c3 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..7ff44df --- /dev/null +++ b/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..1525b2f 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..c9180f7 --- /dev/null +++ b/build/bootloader/esp-idf/cmake_install.cmake @@ -0,0 +1,144 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/newlib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/hal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/spi_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_security/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_system/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_rom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/log/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esptool_py/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/partition_table/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/freertos/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/main/cmake_install.cmake") +endif() + diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj new file mode 100644 index 0000000..8ebdcb4 Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj new file mode 100644 index 0000000..dad44af Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj new file mode 100644 index 0000000..cf3aa32 Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj new file mode 100644 index 0000000..45376aa Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj new file mode 100644 index 0000000..7b7b225 Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/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..010c1a2 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..77a93c1 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..19085ec 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..1b39b55 --- /dev/null +++ b/build/bootloader/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..9f46531 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..5b0573d --- /dev/null +++ b/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..e626a8a 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..6f8346f --- /dev/null +++ b/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..1fda149 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..f8764eb 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..823b9dd --- /dev/null +++ b/build/bootloader/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..21f956b Binary files /dev/null and b/build/bootloader/esp-idf/esp_common/libesp_common.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..01a253e 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..f9ec4a7 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/esp32s3/chip_info.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj new file mode 100644 index 0000000..5ab672c Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj new file mode 100644 index 0000000..485994d Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj new file mode 100644 index 0000000..34eb7fc Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj new file mode 100644 index 0000000..c7a473c Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj new file mode 100644 index 0000000..cf5eaa2 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj new file mode 100644 index 0000000..022991e Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj new file mode 100644 index 0000000..1289623 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj new file mode 100644 index 0000000..7319368 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/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..8be7456 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") +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..c766bbe 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..dd44125 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake b/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..972a1ab --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3 + +# 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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake b/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..17de8a4 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3 + +# 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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj new file mode 100644 index 0000000..5ebcd74 Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj new file mode 100644 index 0000000..24c9de4 Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj differ 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..73d64c3 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..668e5ff 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..a657a92 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..cc191ca 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..d739d46 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_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..491513f 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..c37aaed 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/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj new file mode 100644 index 0000000..9d67cd7 Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj new file mode 100644 index 0000000..bcf19a2 Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj new file mode 100644 index 0000000..2200012 Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.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..c4b9e6b --- /dev/null +++ b/build/bootloader/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..dcb5d45 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/cmake_install.cmake b/build/bootloader/esp-idf/esp_security/cmake_install.cmake new file mode 100644 index 0000000..bb6e3a8 --- /dev/null +++ b/build/bootloader/esp-idf/esp_security/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..fb34e4a 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..07539b0 --- /dev/null +++ b/build/bootloader/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..44201f4 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..d75be7d --- /dev/null +++ b/build/bootloader/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..1d7198a --- /dev/null +++ b/build/bootloader/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj new file mode 100644 index 0000000..44a19c3 Binary files /dev/null and b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj differ 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..c5f3110 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/esp32s3/efuse_hal.c.obj b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj new file mode 100644 index 0000000..902b127 Binary files /dev/null and b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/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..6be5245 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..c1a76d0 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/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj new file mode 100644 index 0000000..86c7bbf Binary files /dev/null and b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_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..c8996e1 --- /dev/null +++ b/build/bootloader/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..bfc333f 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..6f943f5 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..5b65e3e 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..9b0d0cc 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..2078271 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..7fd010b 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..9aa42b5 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..4750d04 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..fba683a 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..3da5c23 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..bc602a6 --- /dev/null +++ b/build/bootloader/esp-idf/log/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..dc7ec25 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..bf18885 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..7b48167 --- /dev/null +++ b/build/bootloader/esp-idf/main/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..07d59a5 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..1831de6 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..8f4d678 --- /dev/null +++ b/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..9d439c9 Binary files /dev/null and b/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a differ diff --git a/build/bootloader/esp-idf/newlib/cmake_install.cmake b/build/bootloader/esp-idf/newlib/cmake_install.cmake new file mode 100644 index 0000000..f895513 --- /dev/null +++ b/build/bootloader/esp-idf/newlib/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib + +# 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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + 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..db0cc16 --- /dev/null +++ b/build/bootloader/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..dc490d1 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/esp32s3/adc_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj new file mode 100644 index 0000000..b56ff71 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj new file mode 100644 index 0000000..9da4bd8 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj new file mode 100644 index 0000000..5c56d3e Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj new file mode 100644 index 0000000..6cd442b Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj new file mode 100644 index 0000000..534871a Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj new file mode 100644 index 0000000..e2369a2 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj new file mode 100644 index 0000000..541b866 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj new file mode 100644 index 0000000..9810567 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj new file mode 100644 index 0000000..e9f23a2 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj new file mode 100644 index 0000000..d071370 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj new file mode 100644 index 0000000..fb53016 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj new file mode 100644 index 0000000..1b8eeb2 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj new file mode 100644 index 0000000..44516cc Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj new file mode 100644 index 0000000..d51faf2 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj new file mode 100644 index 0000000..f13f874 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj new file mode 100644 index 0000000..02d0552 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj new file mode 100644 index 0000000..ba11a54 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj new file mode 100644 index 0000000..a39f882 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj new file mode 100644 index 0000000..fa23827 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj new file mode 100644 index 0000000..70dfd31 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj new file mode 100644 index 0000000..e880b5d Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj new file mode 100644 index 0000000..1247f9e Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj new file mode 100644 index 0000000..48011fd Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj new file mode 100644 index 0000000..315851b Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj new file mode 100644 index 0000000..8aaf1d1 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj new file mode 100644 index 0000000..fd841d7 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_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..cd2ab32 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..41cc91b --- /dev/null +++ b/build/bootloader/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..68d2073 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..0eb1d65 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..8071e79 --- /dev/null +++ b/build/bootloader/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..801a28f 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..9d889ac 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..f71ac19 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..b549f19 --- /dev/null +++ b/build/bootloader/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..b2c3de1 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..fe3d7a4 --- /dev/null +++ b/build/bootloader/gdbinit/gdbinit @@ -0,0 +1,2 @@ +source F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/gdbinit/symbols +source F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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..e000a0e --- /dev/null +++ b/build/bootloader/gdbinit/symbols @@ -0,0 +1,20 @@ +# Load esp32s3 ROM ELF symbols +define target hookpost-remote +set confirm off + # if $_streq((char *) 0x3ff194ad, "Mar 1 2021") + if (*(int*) 0x3ff194ad) == 0x2072614d && (*(int*) 0x3ff194b1) == 0x32203120 && (*(int*) 0x3ff194b5) == 0x313230 + add-symbol-file C:/Users/Vecmocon/.espressif/tools/esp-rom-elfs/20241011/esp32s3_rev0_rom.elf + else + echo Warning: Unknown esp32s3 ROM revision.\n + end +set confirm on +end + + +# Load bootloader symbols +set confirm off + # Bootloader elf was not found +set confirm on + +# Load application symbols +file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.elf diff --git a/build/bootloader/kconfigs.in b/build/bootloader/kconfigs.in new file mode 100644 index 0000000..4f71969 --- /dev/null +++ b/build/bootloader/kconfigs.in @@ -0,0 +1,12 @@ +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/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..b00f886 --- /dev/null +++ b/build/bootloader/kconfigs_projbuild.in @@ -0,0 +1,5 @@ +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild" \ No newline at end of file diff --git a/build/bootloader/project_description.json b/build/bootloader/project_description.json new file mode 100644 index 0000000..0c7e24b --- /dev/null +++ b/build/bootloader/project_description.json @@ -0,0 +1,1677 @@ +{ + "version": "1.2", + "project_name": "bootloader", + "project_version": "v5.5.1", + "project_path": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject", + "idf_path": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf", + "build_dir": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", + "config_file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig", + "config_defaults": "", + "bootloader_elf": "", + "app_elf": "bootloader.elf", + "app_bin": "bootloader.bin", + "build_type": "flash_app", + "git_revision": "v5.5.1", + "target": "esp32s3", + "rev": "", + "min_rev": "0", + "max_rev": "99", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32s3-elf-", + "c_compiler": "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild" + }, + "common_component_reqs": [ "log", "esp_rom", "esp_common", "esp_hw_support", "newlib", "xtensa" ], + "build_components" : [ "bootloader", "bootloader_support", "efuse", "esp_app_format", "esp_bootloader_format", "esp_common", "esp_hw_support", "esp_rom", "esp_security", "esp_system", "esptool_py", "freertos", "hal", "log", "main", "micro-ecc", "newlib", "partition_table", "soc", "spi_flash", "xtensa", "" ], + "build_component_paths" : [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/main", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa", "" ], + "build_component_info" : { + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/secure_boot.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32s3.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_partitions.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp_image_format.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_sha.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_console.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_console_loader.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/bootloader_soc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/bootloader_esp32s3.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse", + "type": "LIBRARY", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/efuse/libefuse.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_fields.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_rtc_calib.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_utility.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c" ], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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_bootloader_format": { + "alias": "idf::esp_bootloader_format", + "target": "___idf_esp_bootloader_format", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format", + "type": "LIBRARY", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_common/libesp_common.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c" ], + "include_dirs": [ "include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/cpu.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/cpu_region_protect.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_sleep.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_time.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/chip_info.c" ], + "include_dirs": [ "include", "include/soc", "include/soc/esp32s3", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S" ], + "include_dirs": [ "include", "esp32s3/include", "esp32s3/include/esp32s3", "esp32s3" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_security", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [ "spi_flash" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/esp_system/libesp_system.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/esp_err.c" ], + "include_dirs": [] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/hal/libhal.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/hal_utils.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mpu_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/efuse_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/efuse_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mmu_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/cache_hal.c" ], + "include_dirs": [ "platform_port/include", "esp32s3/include", "include" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log", + "type": "LIBRARY", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/log/liblog.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/noos/log_timestamp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/noos/log_lock.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/noos/util.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/util.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_format_text.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_print.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log.c" ], + "include_dirs": [ "include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/main", + "type": "LIBRARY", + "lib": "__idf_main", + "reqs": [ "bootloader", "bootloader_support" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/main/libmain.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc", + "type": "LIBRARY", + "lib": "__idf_micro-ecc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c" ], + "include_dirs": [ ".", "micro-ecc" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib", + "type": "CONFIG_ONLY", + "lib": "__idf_newlib", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "platform_include" ] + }, + "partition_table": { + "alias": "idf::partition_table", + "target": "___idf_partition_table", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/soc/libsoc.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/lldesc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/dport_access_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/interrupts.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/gpio_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/uart_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/adc_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/dedic_gpio_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/gdma_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/spi_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/ledc_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/pcnt_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/rmt_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/sdm_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/i2s_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/i2c_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/temperature_sensor_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/timer_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/lcd_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/mcpwm_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/mpi_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/sdmmc_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/touch_sensor_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/twai_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/wdt_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/usb_dwc_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/rtc_io_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/cam_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/power_supply_periph.c" ], + "include_dirs": [ "include", "esp32s3", "esp32s3/include", "esp32s3/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash", + "type": "LIBRARY", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/spi_flash/libspi_flash.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_wrap.c" ], + "include_dirs": [ "include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa", + "type": "LIBRARY", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/esp-idf/xtensa/libxtensa.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/eri.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xt_trax.c" ], + "include_dirs": [ "esp32s3/include", "include", "deprecated_include" ] + } + }, + "all_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "micro-ecc", "spi_flash", "efuse", "esp_bootloader_format", "esp_app_format", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "bootloader_flash/include", "private_include" ] + }, + "bt": { + "alias": "idf::bt", + "target": "___idf_bt", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt", + "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" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console", + "lib": "__idf_console", + "reqs": [ "vfs", "esp_vfs_console" ], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver", + "lib": "__idf_driver", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls", + "lib": "__idf_esp-tls", + "reqs": [ "mbedtls" ], + "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "esp32s3/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format", + "lib": "__idf_esp_app_format", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler", + "lib": "__idf_esp_driver_bitscrambler", + "reqs": [], + "priv_reqs": [ "esp_mm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam", + "lib": "__idf_esp_driver_cam", + "reqs": [ "esp_driver_isp", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac", + "lib": "__idf_esp_driver_dac", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio", + "lib": "__idf_esp_driver_gpio", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c", + "lib": "__idf_esp_driver_i2c", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s", + "lib": "__idf_esp_driver_i2s", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp", + "lib": "__idf_esp_driver_isp", + "reqs": [ "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg", + "lib": "__idf_esp_driver_jpeg", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm", "esp_psram" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc", + "lib": "__idf_esp_driver_ledc", + "reqs": [ "esp_driver_gpio" ], + "priv_reqs": [ "esp_pm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio", + "lib": "__idf_esp_driver_parlio", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt", + "lib": "__idf_esp_driver_pcnt", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa", + "lib": "__idf_esp_driver_ppa", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt", + "lib": "__idf_esp_driver_rmt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm", + "lib": "__idf_esp_driver_sdm", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "sdmmc", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens", + "lib": "__idf_esp_driver_touch_sens", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens", + "lib": "__idf_esp_driver_tsens", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai", + "lib": "__idf_esp_driver_twai", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart", + "lib": "__idf_esp_driver_uart", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf", "esp_mm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub", + "lib": "__idf_esp_gdbstub", + "reqs": [ "freertos" ], + "priv_reqs": [ "soc", "esp_rom", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hid": { + "alias": "idf::esp_hid", + "target": "___idf_esp_hid", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/soc", "include/soc/esp32s3", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd", + "lib": "__idf_esp_lcd", + "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], + "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm", + "lib": "__idf_esp_mm", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_netif": { + "alias": "idf::esp_netif", + "target": "___idf_esp_netif", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif_stack", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition", + "lib": "__idf_esp_partition", + "reqs": [ "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "esp_driver_gpio", "efuse", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include", "esp32s3/include/esp32s3", "esp32s3" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security", + "lib": "__idf_esp_security", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system", + "lib": "__idf_esp_system", + "reqs": [ "spi_flash" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_tee": { + "alias": "idf::esp_tee", + "target": "___idf_esp_tee", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_tee", + "lib": "__idf_esp_tee", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_vfs_console": { + "alias": "idf::esp_vfs_console", + "target": "___idf_esp_vfs_console", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console", + "lib": "__idf_esp_vfs_console", + "reqs": [], + "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "esptool_py", "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], + "priv_reqs": [ "vfs", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_port/include", "esp32s3/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32s3" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154", + "lib": "__idf_ieee802154", + "reqs": [ "esp_coex" ], + "priv_reqs": [ "esp_phy", "esp_timer", "soc", "hal", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "json": { + "alias": "idf::json", + "target": "___idf_json", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json", + "lib": "__idf_json", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "cJSON" ] + }, + "linux": { + "alias": "idf::linux", + "target": "___idf_linux", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/linux", + "lib": "__idf_linux", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "cJSON" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls", + "lib": "__idf_mbedtls", + "reqs": [], + "priv_reqs": [ "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "mqtt": { + "alias": "idf::mqtt", + "target": "___idf_mqtt", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt", + "lib": "__idf_mqtt", + "reqs": [ "esp_event", "tcp_transport" ], + "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support", "heap" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib", + "lib": "__idf_newlib", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_include" ] + }, + "nvs_flash": { + "alias": "idf::nvs_flash", + "target": "___idf_nvs_flash", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "mbedtls" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider", + "lib": "__idf_nvs_sec_provider", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "driver" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/riscv", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc", + "lib": "__idf_sdmmc", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3", "esp32s3/include", "esp32s3/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "spiffs": { + "alias": "idf::spiffs", + "target": "___idf_spiffs", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport", + "lib": "__idf_tcp_transport", + "reqs": [ "esp-tls", "lwip", "esp_timer" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "touch_element": { + "alias": "idf::touch_element", + "target": "___idf_touch_element", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element", + "lib": "__idf_touch_element", + "reqs": [ "driver" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp", + "lib": "__idf_ulp", + "reqs": [ "driver", "esp_adc" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "unity": { + "alias": "idf::unity", + "target": "___idf_unity", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity", + "lib": "__idf_unity", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "unity/src" ] + }, + "usb": { + "alias": "idf::usb", + "target": "___idf_usb", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling", + "lib": "__idf_wear_levelling", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wifi_provisioning": { + "alias": "idf::wifi_provisioning", + "target": "___idf_wifi_provisioning", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning", + "lib": "__idf_wifi_provisioning", + "reqs": [ "lwip", "protocomm" ], + "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wpa_supplicant": { + "alias": "idf::wpa_supplicant", + "target": "___idf_wpa_supplicant", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32s3/include", "include", "deprecated_include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/main", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc", + "lib": "__idf_micro-ecc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ ".", "micro-ecc" ] + } + }, + "debug_prefix_map_gdbinit": "", + "gdbinit_files": { + "01_symbols": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/gdbinit/symbols", + "02_prefix_map": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/gdbinit/prefix_map", + "03_py_extensions": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/gdbinit/py_extensions", + "04_connect": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/gdbinit/connect" + }, + "debug_arguments_openocd": "-f board/esp32s3-builtin.cfg" +} diff --git a/build/bootloader/project_elf_src_esp32s3.c b/build/bootloader/project_elf_src_esp32s3.c new file mode 100644 index 0000000..e69de29 diff --git a/build/build.ninja b/build/build.ninja new file mode 100644 index 0000000..6cb1fcf --- /dev/null +++ b/build/build.ninja @@ -0,0 +1,23286 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: esp32-s3_fota_test_wifi +# 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 = F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/ + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + + +############################################# +# Utility command for confserver + +build confserver: phony CMakeFiles/confserver + + +############################################# +# Utility command for save-defconfig + +build save-defconfig: phony CMakeFiles/save-defconfig + + +############################################# +# 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 gen_project_binary + +build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp esp32-s3_fota_test_wifi.elf + + +############################################# +# Utility command for app + +build app: phony CMakeFiles/app esp-idf/esptool_py/app_check_size gen_project_binary + + +############################################# +# 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 esp32-s3_fota_test_wifi.elf + + +############################################# +# Utility command for flash + +build flash: phony CMakeFiles/flash app bootloader esp-idf/app_update/blank_ota_data esp-idf/partition_table/partition_table_bin + + +############################################# +# Utility command for encrypted-flash + +build encrypted-flash: phony CMakeFiles/encrypted-flash esp-idf/app_update/blank_ota_data + + +############################################# +# Utility command for _project_elf_src + +build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32s3.c + +# ============================================================================= +# Object build statements for EXECUTABLE target esp32-s3_fota_test_wifi.elf + + +############################################# +# Order-only phony target for esp32-s3_fota_test_wifi.elf + +build cmake_object_order_depends_target_esp32-s3_fota_test_wifi.elf: phony || __ldgen_output_sections.ld _project_elf_src cmake_object_order_depends_target___idf_app_trace cmake_object_order_depends_target___idf_cmock cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_driver_cam cmake_object_order_depends_target___idf_esp_driver_touch_sens cmake_object_order_depends_target___idf_esp_eth 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_espcoredump cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_fota_manager cmake_object_order_depends_target___idf_ftp_manager cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_mqtt_manager cmake_object_order_depends_target___idf_nvs_sec_provider 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_rpc_job_parser cmake_object_order_depends_target___idf_rt cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_touch_element cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_usb cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa project_elf_src_esp32s3.c + +build CMakeFiles/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.c.obj: C_COMPILER__esp32-s3_fota_test_wifi.2eelf_unscanned_ F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/project_elf_src_esp32s3.c || cmake_object_order_depends_target_esp32-s3_fota_test_wifi.elf + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = CMakeFiles\esp32-s3_fota_test_wifi.elf.dir\project_elf_src_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always + INCLUDES = -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/main -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager + OBJECT_DIR = CMakeFiles\esp32-s3_fota_test_wifi.elf.dir + OBJECT_FILE_DIR = CMakeFiles\esp32-s3_fota_test_wifi.elf.dir + TARGET_COMPILE_PDB = CMakeFiles\esp32-s3_fota_test_wifi.elf.dir\ + TARGET_PDB = esp32-s3_fota_test_wifi.elf.pdb + + +# ============================================================================= +# Link build statements for EXECUTABLE target esp32-s3_fota_test_wifi.elf + + +############################################# +# Link the executable esp32-s3_fota_test_wifi.elf + +build esp32-s3_fota_test_wifi.elf: CXX_EXECUTABLE_LINKER__esp32-s3_fota_test_wifi.2eelf_ CMakeFiles/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_eth/libesp_eth.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/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/fota_manager/libfota_manager.a esp-idf/ftp_manager/libftp_manager.a esp-idf/rpc_job_parser/librpc_job_parser.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/app_trace/libapp_trace.a esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/mqtt/libmqtt.a esp-idf/fota_manager/libfota_manager.a esp-idf/ftp_manager/libftp_manager.a esp-idf/rpc_job_parser/librpc_job_parser.a esp-idf/json/libjson.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_system/ld/memory.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.bt_funcs.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.wdt.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_master.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_50.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_smp.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_dtm.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_test.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_scan.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.libc.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/ld/esp32s3.peripherals.ld esp-idf/esp_system/ld/sections.ld || __ldgen_output_sections.ld _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_eth/libesp_eth.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/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/ftp_manager/libftp_manager.a esp-idf/json/libjson.a esp-idf/main/libmain.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.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/rpc_job_parser/librpc_job_parser.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + LINK_FLAGS = -nostartfiles -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32S3=0 -Wl,--Map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=warn -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T esp32s3.peripherals.ld -T esp32s3.rom.ld -T esp32s3.rom.api.ld -T esp32s3.rom.bt_funcs.ld -T esp32s3.rom.libgcc.ld -T esp32s3.rom.wdt.ld -T esp32s3.rom.version.ld -T esp32s3.rom.ble_master.ld -T esp32s3.rom.ble_50.ld -T esp32s3.rom.ble_smp.ld -T esp32s3.rom.ble_dtm.ld -T esp32s3.rom.ble_test.ld -T esp32s3.rom.ble_scan.ld -T esp32s3.rom.libc.ld -T esp32s3.rom.newlib.ld -T memory.ld -T sections.ld + LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_eth/libesp_eth.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/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/fota_manager/libfota_manager.a esp-idf/ftp_manager/libftp_manager.a esp-idf/rpc_job_parser/librpc_job_parser.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/app_trace/libapp_trace.a esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/espcoredump/libespcoredump.a -u esp_system_include_coredump_init esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a -u nvs_sec_provider_include_impl esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/mqtt/libmqtt.a esp-idf/fota_manager/libfota_manager.a esp-idf/ftp_manager/libftp_manager.a esp-idf/rpc_job_parser/librpc_job_parser.a esp-idf/json/libjson.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a -u esp_app_desc -u esp_efuse_startup_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_security_init_include_impl -u esp_sleep_gpio_include -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/newlib/libnewlib.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 include_esp_phy_override -lphy -lbtbb esp-idf/esp_phy/libesp_phy.a -lphy -lbtbb esp-idf/esp_phy/libesp_phy.a -lphy -lbtbb -u usb_serial_jtag_vfs_include_dev_init -u usb_serial_jtag_connection_monitor_include -u esp_vfs_include_console_register -u vfs_include_syscalls_impl -u esp_vfs_include_nullfs_register + LINK_PATH = -LC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/ld -LC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld -LF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld -LC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3 -LC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3 + OBJECT_DIR = CMakeFiles\esp32-s3_fota_test_wifi.elf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = CMakeFiles\esp32-s3_fota_test_wifi.elf.dir\ + TARGET_FILE = esp32-s3_fota_test_wifi.elf + TARGET_PDB = esp32-s3_fota_test_wifi.elf.pdb + RSP_FILE = CMakeFiles\esp32-s3_fota_test_wifi.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 dfu + +build dfu: phony CMakeFiles/dfu bootloader gen_project_binary + + +############################################# +# Utility command for dfu-list + +build dfu-list: phony CMakeFiles/dfu-list + + +############################################# +# Utility command for dfu-flash + +build dfu-flash: phony CMakeFiles/dfu-flash + + +############################################# +# 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/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_eth/libesp_eth.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/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/ftp_manager/libftp_manager.a esp-idf/json/libjson.a esp-idf/main/libmain.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.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/rpc_job_parser/librpc_job_parser.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config.env && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Vecmocon/esp/v5.5.1/esp-idf/sdkconfig.rename --config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig --defaults F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig.defaults --env IDF_MINIMAL_BUILD=n --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config.env --env IDF_TARGET=esp32s3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --dont-write-deprecated --output config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/check_term.py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/kconfigs_projbuild.in KCONFIG_CONFIG=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig IDF_TARGET=esp32s3 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.5.1 IDF_MINIMAL_BUILD=n C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe -m menuconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/Kconfig && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Vecmocon/esp/v5.5.1/esp-idf/sdkconfig.rename --config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig --defaults F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig.defaults --env IDF_MINIMAL_BUILD=n --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config.env --env IDF_TARGET=esp32s3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --output config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig" + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config.env && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfserver --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config.env --kconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Vecmocon/esp/v5.5.1/esp-idf/sdkconfig.rename --config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig" + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config.env && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Vecmocon/esp/v5.5.1/esp-idf/sdkconfig.rename --config F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig --defaults F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig.defaults --env IDF_MINIMAL_BUILD=n --env-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config.env --dont-write-deprecated --output savedefconfig F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig.defaults" + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E make_directory F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/CMakeFiles/bootloader-complete && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DSDKCONFIG=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig -DIDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -DIDF_TARGET=esp32s3 -DPYTHON_DEPS_CHECKED=1 -DPYTHON=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe -DEXTRA_COMPONENT_DIRS=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader -DPROJECT_SOURCE_DIR=F:/ESP_32_Projects/esp32-s3_fota_test_wifi -DIGNORE_EXTRA_COMPONENT= -GNinja -S C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject -B F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -Dcfgdir= -P F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader-prefix/src/bootloader-stamp/bootloader-update" + DESC = No update step for 'bootloader' + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\gen_project_binary + +build CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony .bin_timestamp || __ldgen_output_sections.ld _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/freertos/libfreertos.a esp-idf/ftp_manager/libftp_manager.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/newlib/libnewlib.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/rpc_job_parser/librpc_job_parser.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a esp32-s3_fota_test_wifi.elf + + +############################################# +# Custom command for .bin_timestamp + +build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND esp32-s3_fota_test_wifi.elf || __ldgen_output_sections.ld _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/freertos/libfreertos.a esp-idf/ftp_manager/libftp_manager.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/newlib/libnewlib.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/rpc_job_parser/librpc_job_parser.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a esp32-s3_fota_test_wifi.elf + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32s3 elf2image --flash_mode dio --flash_freq 80m --flash_size 4MB --elf-sha256-offset 0xb0 --min-rev-full 0 --max-rev-full 99 -o F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.bin F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.elf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Generated F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.bin" && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E md5sum F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.bin > F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/.bin_timestamp" + DESC = Generating binary image from built executable + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\app + +build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || __ldgen_output_sections.ld _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/freertos/libfreertos.a esp-idf/ftp_manager/libftp_manager.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/newlib/libnewlib.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/rpc_job_parser/librpc_job_parser.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a esp32-s3_fota_test_wifi.elf gen_project_binary + + +############################################# +# 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:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -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_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/freertos/libfreertos.a esp-idf/ftp_manager/libftp_manager.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/newlib/libnewlib.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/rpc_job_parser/librpc_job_parser.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a esp32-s3_fota_test_wifi.elf gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=merge_bin;-o;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/merged-binary.bin;@F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/flash_args -D WORKING_DIRECTORY=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/freertos/libfreertos.a esp-idf/ftp_manager/libftp_manager.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/newlib/libnewlib.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/rpc_job_parser/librpc_job_parser.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a esp32-s3_fota_test_wifi.elf + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--toolchain-prefix;xtensa-esp32s3-elf-;;--target;esp32s3;;--revision;0;;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.elf -D WORKING_DIRECTORY=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\flash + +build CMakeFiles/flash | ${cmake_ninja_workdir}CMakeFiles/flash: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src app bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/blank_ota_data 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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/freertos/libfreertos.a esp-idf/ftp_manager/libftp_manager.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/newlib/libnewlib.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/rpc_job_parser/librpc_job_parser.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a esp32-s3_fota_test_wifi.elf gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\encrypted-flash + +build CMakeFiles/encrypted-flash | ${cmake_ninja_workdir}CMakeFiles/encrypted-flash: CUSTOM_COMMAND || esp-idf/app_update/blank_ota_data + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-flash requires" && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" + + +############################################# +# Phony custom command for CMakeFiles\_project_elf_src + +build CMakeFiles/_project_elf_src | ${cmake_ninja_workdir}CMakeFiles/_project_elf_src: phony project_elf_src_esp32s3.c + + +############################################# +# Custom command for project_elf_src_esp32s3.c + +build project_elf_src_esp32s3.c | ${cmake_ninja_workdir}project_elf_src_esp32s3.c: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/project_elf_src_esp32s3.c" + DESC = Generating project_elf_src_esp32s3.c + restat = 1 + + +############################################# +# Custom command for CMakeFiles\size + +build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND esp32-s3_fota_test_wifi.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.map -D OUTPUT_JSON= -P C:/Users/Vecmocon/esp/v5.5.1/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 esp32-s3_fota_test_wifi.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.map -D OUTPUT_JSON= -P C:/Users/Vecmocon/esp/v5.5.1/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 esp32-s3_fota_test_wifi.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.map -D OUTPUT_JSON= -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu + +build CMakeFiles/dfu | ${cmake_ninja_workdir}CMakeFiles/dfu: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/freertos/libfreertos.a esp-idf/ftp_manager/libftp_manager.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/newlib/libnewlib.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/rpc_job_parser/librpc_job_parser.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a esp32-s3_fota_test_wifi.elf gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/mkdfu.py write -o F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/dfu.bin --json F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/flasher_args.json --pid 9 --flash-size 4MB" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu-list + +build CMakeFiles/dfu-list | ${cmake_ninja_workdir}CMakeFiles/dfu-list: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D ESP_DFU_LIST="1" -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/run_dfu_util.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu-flash + +build CMakeFiles/dfu-flash | ${cmake_ninja_workdir}CMakeFiles/dfu-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D ESP_DFU_BIN="F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/dfu.bin" -D ESP_DFU_PID="9" -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/run_dfu_util.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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D UF2_CMD=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32s3 -D UF2_ARGS=--json;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/flasher_args.json;-o;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/uf2.bin -P C:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D UF2_CMD=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32s3 -D UF2_ARGS=--json;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/flasher_args.json;-o;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/uf2-app.bin;--bin;app -P C:/Users/Vecmocon/esp/v5.5.1/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_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/freertos/libfreertos.a esp-idf/ftp_manager/libftp_manager.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/newlib/libnewlib.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/rpc_job_parser/librpc_job_parser.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + + +############################################# +# 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/app.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/common.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/soc.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/linker_common.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/newlib.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/system_libs.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/linker.lf C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/linker.lf esp-idf/xtensa/libxtensa.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.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/xtensa/libxtensa.a esp-idf/spi_flash/libspi_flash.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/lwip/liblwip.a esp-idf/vfs/libvfs.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_mm/libesp_mm.a esp-idf/vfs/libvfs.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/esp_security/libesp_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/esp_mm/libesp_mm.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/driver/libdriver.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_adc/libesp_adc.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/nvs_flash/libnvs_flash.a esp-idf/mbedtls/libmbedtls.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 esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_security/libesp_security.a esp-idf/pthread/libpthread.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_pm/libesp_pm.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/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_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.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_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_eth/libesp_eth.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/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/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/json/libjson.a esp-idf/main/libmain.a esp-idf/fota_manager/libfota_manager.a esp-idf/ftp_manager/libftp_manager.a esp-idf/rpc_job_parser/librpc_job_parser.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/mqtt/libmqtt.a esp-idf/rpc_job_parser/librpc_job_parser.a esp-idf/ftp_manager/libftp_manager.a esp-idf/fota_manager/libfota_manager.a F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/freertos/libfreertos.a esp-idf/ftp_manager/libftp_manager.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/newlib/libnewlib.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/rpc_job_parser/librpc_job_parser.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = CMakeFiles\sections.ld-d65dc84.bat ef435244dd58aa6d + DESC = Generating esp-idf/esp_system/ld/sections.ld + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_driver_gpio + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: C_COMPILER____idf_xtensa_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\eri.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xt_trax.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xtensa_context.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_context.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xtensa_intr_asm.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_intr_asm.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xtensa_intr.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_intr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xtensa_vectors.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_vectors.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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_driver_gpio/libesp_driver_gpio.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\xtensa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\xtensa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\xtensa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\xtensa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\xtensa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_pm + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/rtc_io.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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/dedic_gpio.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\dedic_gpio.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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_pin_glitch_filter.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_pin_glitch_filter.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj || esp-idf/esp_pm/libesp_pm.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_gpio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_gpio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_gpio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_gpio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_gpio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_mbedtls + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj: C_COMPILER____idf_esp_pm_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/pm_locks.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_locks.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/pm_trace.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_trace.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/pm_impl.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_impl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/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/mbedtls/libmbedtls.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_pm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_pm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_pm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_pm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_pm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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_ F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/x509_crt_bundle.S || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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/3rdparty/everest/libeverest.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D DATA_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/x509_crt_bundle -D SOURCE_FILE=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/x509_crt_bundle.S -D FILE_TYPE=BINARY -P C:/Users/Vecmocon/esp/v5.5.1/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/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/gen_crt_bundle.py --input C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_all.pem C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for apidoc + +build esp-idf/mbedtls/mbedtls/apidoc: phony esp-idf/mbedtls/mbedtls/CMakeFiles/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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\apidoc + +build esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\mbedtls\doxygen && doxygen mbedtls.doxyfile" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/3rdparty/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/install: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/3rdparty/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/3rdparty/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/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/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj: C_COMPILER__everest_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library\everest.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj: C_COMPILER__everest_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library\x25519.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj: C_COMPILER__everest_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library\Hacl_Curve25519_joined.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target everest + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.a + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a: CXX_STATIC_LIBRARY_LINKER__everest_ esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj || esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/install: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/3rdparty/everest/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/3rdparty/everest/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/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_mbedcrypto + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj: C_COMPILER__p256m_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m_driver_entrypoints.c || cmake_object_order_depends_target_p256m + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256-m_driver_entrypoints.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj: C_COMPILER__p256m_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m/p256-m.c || cmake_object_order_depends_target_p256m + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256-m\p256-m.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256-m + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target p256m + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.a + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a: CXX_STATIC_LIBRARY_LINKER__p256m_ esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/3rdparty/p256-m/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/3rdparty/p256-m/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedcrypto + + +############################################# +# Order-only phony target for mbedcrypto + +build cmake_object_order_depends_target_mbedcrypto: phony || cmake_object_order_depends_target_mbedx509 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\aes.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aesni.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\aesni.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aesce.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\aesce.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aria.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\aria.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\asn1parse.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/asn1write.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\asn1write.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/base64.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\base64.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\bignum.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_core.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\bignum_core.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\bignum_mod.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod_raw.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\bignum_mod_raw.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/block_cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\block_cipher.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/camellia.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\camellia.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ccm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\ccm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/chacha20.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\chacha20.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\chachapoly.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\cipher.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\cipher_wrap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/constant_time.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\constant_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cmac.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\cmac.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\ctr_drbg.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/des.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\des.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/dhm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\dhm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecdh.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\ecdh.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\ecdsa.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\ecjpake.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\ecp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\ecp_curves.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves_new.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\ecp_curves_new.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/entropy.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\entropy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\entropy_poll.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/error.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\error.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/gcm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\gcm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/hkdf.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\hkdf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\hmac_drbg.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/lmots.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\lmots.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/lms.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\lms.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/md.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\md.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/md5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\md5.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\memory_buffer_alloc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\nist_kw.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/oid.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\oid.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/padlock.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\padlock.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\pem.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\pk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk_ecc.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\pk_ecc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\pk_wrap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\pkcs12.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\pkcs5.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkparse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\pkparse.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\pkwrite.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/platform.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\platform.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/platform_util.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\platform_util.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/poly1305.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\poly1305.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_aead.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_aead.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_cipher.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_client.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_client.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_driver_wrappers_no_static.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ecp.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_ecp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_ffdh.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_hash.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_hash.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_mac.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_mac.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_pake.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_pake.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_rsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_rsa.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_se.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_se.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_slot_management.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_storage.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_crypto_storage.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_its_file.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_its_file.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_util.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\psa_util.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\ripemd160.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/rsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\rsa.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/rsa_alt_helpers.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\rsa_alt_helpers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\sha1.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\sha256.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\sha512.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha3.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\sha3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/threading.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\threading.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\timing.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\version.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\version_features.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha_gdma_impl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma\esp_aes_gdma_impl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma\esp_aes_dma_core.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\crypto_shared_gdma\esp_crypto_shared_gdma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\crypto_shared_gdma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_hardware.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_mem.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_timing.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\esp_aes_xts.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\esp_aes_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma\esp_aes.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\esp_sha.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core\sha.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds\esp_rsa_sign_alt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds\esp_rsa_dec_alt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds\esp_ds_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\bignum\esp_bignum.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\bignum + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\bignum\bignum_alt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\bignum + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha1.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha256.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha512.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\esp_aes_gcm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\md\esp_md.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\md + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedcrypto + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedcrypto.a + +build esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a: CXX_STATIC_LIBRARY_LINKER__mbedcrypto_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedx509.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + RSP_FILE = CMakeFiles\mbedcrypto.rsp + +# ============================================================================= +# 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/pkcs7.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs7.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_create.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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/pkcs7.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedtls.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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___idf_esp_app_format + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + 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_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\mbedtls_debug.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\Users\Vecmocon\esp\v5.5.1\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_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_platform_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\Users\Vecmocon\esp\v5.5.1\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_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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_\Users\Vecmocon\esp\v5.5.1\esp-idf\components\mbedtls\port\net_sockets.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\Users\Vecmocon\esp\v5.5.1\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/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.obj || esp-idf/esp_app_format/libesp_app_format.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + POST_BUILD = cd . + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for bootloader-flash + +build esp-idf/bootloader/bootloader-flash: phony esp-idf/bootloader/CMakeFiles/bootloader-flash bootloader + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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\bootloader-flash + +build esp-idf/bootloader/CMakeFiles/bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/bootloader-flash: CUSTOM_COMMAND || bootloader esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@bootloader-flash_args -D WORKING_DIRECTORY=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bootloader && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-bootloader-flash requires" && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for app-flash + +build esp-idf/esptool_py/app-flash: phony esp-idf/esptool_py/CMakeFiles/app-flash app + + +############################################# +# Utility command for encrypted-app-flash + +build esp-idf/esptool_py/encrypted-app-flash: phony esp-idf/esptool_py/CMakeFiles/encrypted-app-flash + + +############################################# +# Utility command for app_check_size + +build esp-idf/esptool_py/app_check_size: phony esp-idf/esptool_py/CMakeFiles/app_check_size esp-idf/partition_table/partition_table_bin gen_project_binary + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 + + +############################################# +# Custom command for esp-idf\esptool_py\CMakeFiles\app-flash + +build esp-idf/esptool_py/CMakeFiles/app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app-flash: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src app esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/freertos/libfreertos.a esp-idf/ftp_manager/libftp_manager.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/newlib/libnewlib.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/rpc_job_parser/librpc_job_parser.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a esp32-s3_fota_test_wifi.elf gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@app-flash_args -D WORKING_DIRECTORY=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for esp-idf\esptool_py\CMakeFiles\encrypted-app-flash + +build esp-idf/esptool_py/CMakeFiles/encrypted-app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/encrypted-app-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esptool_py && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-app-flash requires" && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" + + +############################################# +# Custom command for esp-idf\esptool_py\CMakeFiles\app_check_size + +build esp-idf/esptool_py/CMakeFiles/app_check_size | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app_check_size: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_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_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_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_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_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_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/freertos/libfreertos.a esp-idf/ftp_manager/libftp_manager.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.a esp-idf/newlib/libnewlib.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/rpc_job_parser/librpc_job_parser.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/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a esp32-s3_fota_test_wifi.elf gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esptool_py && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/partition_table/partition-table.bin F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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/partition-table-flash: phony esp-idf/partition_table/CMakeFiles/partition-table-flash + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/partitions.csv C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x0 --flash-size 4MB -- F:/ESP_32_Projects/esp32-s3_fota_test_wifi/partitions.csv F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/partition_table/partition-table.bin && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo ******************************************************************************* && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x0 --flash-size 4MB -- F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/partition_table/partition-table.bin && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo ******************************************************************************* && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x0 --flash-size 4MB -- F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/partition_table/partition-table.bin && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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\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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@partition-table-flash_args -D WORKING_DIRECTORY=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-partition-table-flash requires" && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/Vecmocon/esp/v5.5.1/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-flash + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\partition_table && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/esp_app_desc.c || cmake_object_order_depends_target___idf_esp_app_format + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\"esp32-s3_fota_test_wifi\" -DPROJECT_VER=\"1\" + DEP_FILE = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\esp_app_desc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_app_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_app_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_app_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_app_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_app_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c || cmake_object_order_depends_target___idf_esp_bootloader_format + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_bootloader_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_bootloader_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_bootloader_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_bootloader_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_bootloader_format && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/esp_ota_ops.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\esp_ota_ops.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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 + +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj: C_COMPILER____idf_app_update_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/esp_ota_app_desc.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\esp_ota_app_desc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj || esp-idf/esp_partition/libesp_partition.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 blank_ota_data + +build esp-idf/app_update/blank_ota_data: phony esp-idf/app_update/CMakeFiles/blank_ota_data ota_data_initial.bin + + +############################################# +# Utility command for read-otadata + +build esp-idf/app_update/read-otadata: phony esp-idf/app_update/CMakeFiles/read-otadata + + +############################################# +# Utility command for read_otadata + +build esp-idf/app_update/read_otadata: phony esp-idf/app_update/CMakeFiles/read_otadata esp-idf/app_update/read-otadata + + +############################################# +# Utility command for erase-otadata + +build esp-idf/app_update/erase-otadata: phony esp-idf/app_update/CMakeFiles/erase-otadata + + +############################################# +# Utility command for erase_otadata + +build esp-idf/app_update/erase_otadata: phony esp-idf/app_update/CMakeFiles/erase_otadata esp-idf/app_update/erase-otadata + + +############################################# +# Utility command for otadata-flash + +build esp-idf/app_update/otadata-flash: phony esp-idf/app_update/CMakeFiles/otadata-flash + + +############################################# +# Utility command for encrypted-otadata-flash + +build esp-idf/app_update/encrypted-otadata-flash: phony esp-idf/app_update/CMakeFiles/encrypted-otadata-flash + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_update && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_update && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_update && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_update && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_update && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 + + +############################################# +# Phony custom command for esp-idf\app_update\CMakeFiles\blank_ota_data + +build esp-idf/app_update/CMakeFiles/blank_ota_data | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/blank_ota_data: phony ota_data_initial.bin + + +############################################# +# Custom command for ota_data_initial.bin + +build ota_data_initial.bin | ${cmake_ninja_workdir}ota_data_initial.bin: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_update && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/gen_empty_partition.py 0x2000 F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/ota_data_initial.bin" + DESC = Generating ../../ota_data_initial.bin + restat = 1 + + +############################################# +# Custom command for esp-idf\app_update\CMakeFiles\read-otadata + +build esp-idf/app_update/CMakeFiles/read-otadata | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/read-otadata: CUSTOM_COMMAND F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/partitions.csv + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/otatool.py -D SERIAL_TOOL_ARGS=--esptool-args;before=default_reset;after=hard_reset;--partition-table-file;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/partitions.csv;--partition-table-offset;0x8000;read_otadata -D WORKING_DIRECTORY=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for esp-idf\app_update\CMakeFiles\read_otadata + +build esp-idf/app_update/CMakeFiles/read_otadata | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/read_otadata: CUSTOM_COMMAND || esp-idf/app_update/read-otadata + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_update && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "read_otadata" is deprecated. Have you wanted to run "read-otadata" instead? + + +############################################# +# Custom command for esp-idf\app_update\CMakeFiles\erase-otadata + +build esp-idf/app_update/CMakeFiles/erase-otadata | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/erase-otadata: CUSTOM_COMMAND F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/partitions.csv + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/otatool.py -D SERIAL_TOOL_ARGS=--esptool-args;before=default_reset;after=hard_reset;--partition-table-file;F:/ESP_32_Projects/esp32-s3_fota_test_wifi/partitions.csv;--partition-table-offset;0x8000;erase_otadata -D WORKING_DIRECTORY=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for esp-idf\app_update\CMakeFiles\erase_otadata + +build esp-idf/app_update/CMakeFiles/erase_otadata | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/erase_otadata: CUSTOM_COMMAND || esp-idf/app_update/erase-otadata + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_update && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "erase_otadata" is deprecated. Have you wanted to run "erase-otadata" instead? + + +############################################# +# Custom command for esp-idf\app_update\CMakeFiles\otadata-flash + +build esp-idf/app_update/CMakeFiles/otadata-flash | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/otadata-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\Vecmocon\esp\v5.5.1\esp-idf\components\app_update && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Vecmocon/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Vecmocon/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@otadata-flash_args -D WORKING_DIRECTORY=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for esp-idf\app_update\CMakeFiles\encrypted-otadata-flash + +build esp-idf/app_update/CMakeFiles/encrypted-otadata-flash | ${cmake_ninja_workdir}esp-idf/app_update/CMakeFiles/encrypted-otadata-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_update && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-otadata-flash requires" && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/partition.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\partition.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/partition_target.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\partition_target.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_partition && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_partition && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_partition && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_partition && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_partition && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_bootloader_support + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_table.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + 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/esp32s3/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + 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/esp32s3/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_rtc_calib.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + 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/esp32s3/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_api.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes\esp_efuse_api_key.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_startup.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_startup.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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/esp32s3/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj || esp-idf/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\efuse && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256" + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\efuse && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256 --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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\efuse && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\efuse && C:\Users\Vecmocon\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32s3 --max_blk_len 256" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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_esp_mm + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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/esp32s3/secure_boot_secure_features.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/secure_boot_secure_features.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\esp32s3\secure_boot_secure_features.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/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\esp32s3 + 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_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj || esp-idf/esp_mm/libesp_mm.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bootloader_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bootloader_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bootloader_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bootloader_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bootloader_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_spi_flash + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/esp_mmu_map.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_mmu_map.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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/esp32s3/ext_mem_layout.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/port/esp32s3/ext_mem_layout.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\port\esp32s3\ext_mem_layout.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/esp_cache_msync.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_cache_msync.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/esp_cache_utils.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_cache_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/heap_align_hw.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\heap_align_hw.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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/esp32s3/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/heap_align_hw.c.obj || esp-idf/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_mm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_mm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_mm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_mm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_mm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/flash_brownout_hook.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_brownout_hook.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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/esp32s3/spi_flash_oct_flash_init.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp32s3\spi_flash_oct_flash_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp32s3 + 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_hpm_enable.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_hpm_enable.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_hpm_enable.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_drivers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_generic.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_issi.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_mxic.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_gd.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_winbond.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_winbond.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_boya.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_boya.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_th.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_th.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\memspi_host_driver.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/cache_utils.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\cache_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_mmap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/flash_ops.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_ops.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_wrap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp_flash_api.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp_flash_spi_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_os_func_app.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_os_func_noos.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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/esp32s3/spi_flash_oct_flash_init.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj || esp-idf/esp_system/libesp_system.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\spi_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\spi_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\spi_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\spi_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\spi_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_err.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/crosscore_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\crosscore_int.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/esp_ipc.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_ipc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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_console.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/esp_system_console.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_system_console.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/freertos_hooks.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\freertos_hooks.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/int_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\int_wdt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/panic.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\panic.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/esp_system.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_system.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/startup.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\startup.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/startup_funcs.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\startup_funcs.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/system_time.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\system_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/stack_check.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\stack_check.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/ubsan.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\ubsan.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/xt_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\xt_wdt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/task_wdt/task_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt\task_wdt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/cpu_start.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\cpu_start.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/panic_handler.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\panic_handler.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/esp_system_chip.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\esp_system_chip.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/image_process.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\image_process.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/esp_ipc_isr.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\esp_ipc_isr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/panic_arch.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/trax.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\trax.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/highint_hdl.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/highint_hdl.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\highint_hdl.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/clk.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/clk.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\clk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/reset_reason.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/reset_reason.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\reset_reason.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/system_internal.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/system_internal.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\system_internal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/cache_err_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/cache_err_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\cache_err_int.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/apb_backup_dma.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/apb_backup_dma.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\apb_backup_dma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp_system_console.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/esp32s3/highint_hdl.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj || esp-idf/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 + +build esp-idf/esp_system/memory.ld: phony esp-idf/esp_system/CMakeFiles/memory.ld esp-idf/esp_system/ld/memory.ld + + +############################################# +# Utility command for sections.ld.in + +build esp-idf/esp_system/sections.ld.in: phony esp-idf/esp_system/CMakeFiles/sections.ld.in 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 + +build esp-idf/esp_system/CMakeFiles/memory.ld | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/memory.ld: phony esp-idf/esp_system/ld/memory.ld + + +############################################# +# 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/ld/esp32s3/memory.ld.in config/sdkconfig.h + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCC=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe -DSOURCE=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/ld/esp32s3/memory.ld.in -DTARGET=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld/memory.ld -DCONFIG_DIR=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -DLD_DIR=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/ld -P F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld/linker_script_generator.cmake" + DESC = Generating F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld/memory.ld linker script... + restat = 1 + + +############################################# +# Phony custom command for esp-idf\esp_system\CMakeFiles\sections.ld.in + +build esp-idf/esp_system/CMakeFiles/sections.ld.in | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/sections.ld.in: 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/ld/esp32s3/sections.ld.in config/sdkconfig.h + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCC=C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe -DSOURCE=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/ld/esp32s3/sections.ld.in -DTARGET=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld/sections.ld.in -DCONFIG_DIR=F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -DLD_DIR=C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/ld -P F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld/linker_script_generator.cmake" + DESC = Generating F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/ld/sections.ld.in linker script... + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system\port && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system\port && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system\port && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system\port && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system\port && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system\port\soc\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32s3/edit_cache: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system\port\soc\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32s3/rebuild_cache: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_system/port/soc/esp32s3/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32s3/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system\port\soc\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32s3/install: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32s3/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system\port\soc\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/esp32s3/install/local: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32s3/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_system\port\soc\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/esp32s3/install/strip: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_common && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_common && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_common && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_common && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_common && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_sys.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_print.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_crc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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_uart.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_uart.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_spiflash.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_efuse.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_gpio.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_longjmp.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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_systimer.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_systimer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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_wdt.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_wdt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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_cache_esp32s2_esp32s3.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_cache_esp32s2_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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_cache_writeback_esp32s3.S.obj: ASM_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_cache_writeback_esp32s3.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj || esp-idf/hal/libhal.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_rom && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_rom && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_rom && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_rom && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_rom && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hal_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/mpu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mpu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mpu_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\efuse_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\efuse_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mmu_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/cache_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\cache_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/color_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/color_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\color_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/spi_flash_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/spi_flash_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/spi_flash_encrypt_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_encrypt_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/clk_tree_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/clk_tree_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\clk_tree_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/systimer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/systimer_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\systimer_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/uart_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/uart_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\uart_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/uart_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/uart_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\uart_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/gpio_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/gpio_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gpio_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/rtc_io_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/rtc_io_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\rtc_io_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/timer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/timer_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\timer_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/ledc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/ledc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ledc_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/ledc_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/ledc_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ledc_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/i2c_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/i2c_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2c_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/i2c_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/i2c_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2c_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/rmt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/rmt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\rmt_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/pcnt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/pcnt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\pcnt_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/mcpwm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mcpwm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mcpwm_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/uhci_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/uhci_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\uhci_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/twai_hal_sja1000.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/twai_hal_sja1000.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\twai_hal_sja1000.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/gdma_hal_top.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/gdma_hal_top.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gdma_hal_top.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/gdma_hal_ahb_v1.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/gdma_hal_ahb_v1.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gdma_hal_ahb_v1.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/i2s_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/i2s_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2s_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/sdm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/sdm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sdm_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/sdmmc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sdmmc_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/adc_hal_common.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/adc_hal_common.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_hal_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/adc_oneshot_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/adc_oneshot_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_oneshot_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/adc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/adc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/lcd_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/lcd_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\lcd_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/mpi_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mpi_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mpi_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/sha_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/sha_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sha_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/aes_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/aes_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\aes_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/brownout_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\brownout_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/spi_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/spi_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/spi_slave_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_slave_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/spi_slave_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/spi_slave_hd_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_slave_hd_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hd_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/spi_flash_hal_gpspi.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal_gpspi.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal_gpspi.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/hmac_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/hmac_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hmac_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/ds_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/ds_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ds_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/cam_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/cam_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\cam_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/usb_serial_jtag_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/usb_serial_jtag_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\usb_serial_jtag_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/usb_dwc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/usb_dwc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\usb_dwc_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/usb_wrap_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/usb_wrap_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\usb_wrap_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\touch_sensor_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\touch_sensor_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/touch_sens_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/touch_sens_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\touch_sens_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/xt_wdt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/xt_wdt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\xt_wdt_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/rtc_cntl_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/rtc_cntl_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\rtc_cntl_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/mpu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\hal && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\hal && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\hal && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\hal && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\hal && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/os/log_timestamp.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_timestamp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_timestamp_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/os/log_lock.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_lock.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer\log_buffers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/os/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\util.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\util.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_format_text.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_format_text.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_print.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_print.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/os/log_write.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_write.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_level/log_level.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\log_level.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\log && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\log && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\log && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\log && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\log && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/heap_caps_base.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps_base.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/heap_caps.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/heap_caps_init.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/multi_heap.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\multi_heap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/tlsf.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\tlsf\tlsf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/port/memory_layout_utils.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\memory_layout_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/memory_layout.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/port/esp32s3/memory_layout.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\esp32s3\memory_layout.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/memory_layout.c.obj || esp-idf/soc/libsoc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\heap && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\heap && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\heap && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\heap && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\heap && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_security + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\lldesc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\dport_access_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\interrupts.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\gpio_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/uart_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/uart_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\uart_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/adc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/adc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\adc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\dedic_gpio_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/gdma_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/gdma_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\gdma_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/spi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/spi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\spi_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/ledc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/ledc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\ledc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/pcnt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/pcnt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\pcnt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/rmt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/rmt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\rmt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/sdm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/sdm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdm_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/i2s_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/i2s_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\i2s_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/i2c_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/i2c_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\i2c_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\temperature_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/timer_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/timer_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\timer_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/lcd_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/lcd_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\lcd_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/mcpwm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\mcpwm_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/mpi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\mpi_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/sdmmc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdmmc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/touch_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/touch_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\touch_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/twai_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/twai_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\twai_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/wdt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/wdt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\wdt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/usb_dwc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/usb_dwc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\usb_dwc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/rtc_io_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\rtc_io_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/cam_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/cam_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\cam_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/power_supply_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/power_supply_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\power_supply_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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/esp32s3/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj || esp-idf/esp_security/libesp_security.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\soc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\soc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\soc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\soc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\soc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_hw_support + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/init.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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_hmac.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp_hmac.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_hmac.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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_ds.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp_ds.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_ds.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_lock.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_crypto_lock.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_periph_clk.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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_hmac.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.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_hw_support/libesp_hw_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_security && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_security && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_security && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_security && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_security && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\cpu.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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/esp32s3/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\esp_cpu_intr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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/esp32s3/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\cpu_region_protect.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_clk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/clk_ctrl_os.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/hw_random.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\hw_random.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/intr_alloc.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\intr_alloc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mac_addr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mac_addr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\periph_ctrl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/revision.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\revision.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/rtc_module.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\rtc_module.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/regi2c_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\regi2c_ctrl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_gpio_reserve.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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_periph_ctrl_common.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sar_periph_ctrl_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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/esp32s3/io_mux.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/io_mux.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\io_mux.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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/esp32s3/esp_clk_tree.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_clk_tree.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\esp_clk_tree.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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/dma/esp_dma_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\esp_dma_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\dma + 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/dma/gdma_link.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma_link.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma_link.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\dma + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/spi_bus_lock.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/clk_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\clk_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_modem.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_modem.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_modes.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_modes.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_console.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_console.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_usb.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_usb.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_gpio.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_gpio.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_event.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_event.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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/dma/gdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\dma + 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/deprecated/gdma_legacy.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\deprecated\gdma_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\deprecated + 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/dma/esp_async_memcpy.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\esp_async_memcpy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\dma + 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/dma/async_memcpy_gdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\async_memcpy_gdma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\dma + 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/esp32s3/systimer.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/systimer.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\systimer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_wake_stub.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_clock_output.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/brownout.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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/esp32s3/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_clk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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/esp32s3/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_clk_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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/esp32s3/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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/esp32s3/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_sleep.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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/esp32s3/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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/esp32s3/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\chip_info.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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/esp32s3/sar_periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\sar_periph_ctrl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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/esp32s3/esp_memprot.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_memprot.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\esp_memprot.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\esp32s3 + 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_memprot_conv.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp_memprot_conv.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp_memprot_conv.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning\port\esp32s3\mspi_timing_config.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\port\esp32s3 + 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/port/esp32s3/mspi_timing_by_mspi_delay.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning\port\esp32s3\mspi_timing_by_mspi_delay.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\port\esp32s3 + 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/lowpower/port/esp32s3/sleep_cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/port/esp32s3/sleep_cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32s3\sleep_cpu.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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\lowpower\port\esp32s3 + 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/esp32s3/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/esp32s3/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.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_console.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/dma/gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/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/esp32s3/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.c.obj || esp-idf/freertos/libfreertos.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/edit_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/port/esp32s3/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32s3/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/install: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32s3/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/esp32s3/install/local: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32s3/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/esp32s3/install/strip: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/edit_cache: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/rebuild_cache: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/install: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/mspi_timing_tuning/port/esp32s3/install/local: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/mspi_timing_tuning/port/esp32s3/install/strip: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\lowpower && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\lowpower && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\lowpower && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\lowpower && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hw_support\lowpower && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_newlib + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/heap_idf.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\heap_idf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/app_startup.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\app_startup.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/port_common.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\port_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/port_systick.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\port_systick.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/list.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\list.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\queue.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\tasks.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\timers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\event_groups.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\stream_buffer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\port.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\portasm.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\xtensa_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/freertos_compatibility.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/freertos_compatibility.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\freertos_compatibility.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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_event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\idf_additions_event_groups.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/idf_additions.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\idf_additions.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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/freertos_compatibility.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/newlib/libnewlib.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\freertos && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\freertos && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\freertos && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\freertos && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\freertos && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_newlib + + +############################################# +# Order-only phony target for __idf_newlib + +build cmake_object_order_depends_target___idf_newlib: phony || cmake_object_order_depends_target___idf_pthread + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/abort.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\abort.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/assert.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\assert.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/heap.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\heap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/locks.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\locks.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/poll.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\poll.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/pthread.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\pthread.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/random.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\random.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/getentropy.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\getentropy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/termios.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\termios.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/stdatomic.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\stdatomic.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/time.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/sysconf.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\sysconf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/realpath.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\realpath.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/scandir.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\scandir.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/syscalls.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\syscalls.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/reent_syscalls.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\reent_syscalls.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/port/esp_time_impl.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\port\esp_time_impl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\port + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/flockfile.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\flockfile.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/reent_init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\reent_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/newlib_init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\newlib_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_newlib + + +############################################# +# Link the static library esp-idf\newlib\libnewlib.a + +build esp-idf/newlib/libnewlib.a: C_STATIC_LIBRARY_LINKER____idf_newlib_ esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj || esp-idf/pthread/libpthread.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_FILE = esp-idf\newlib\libnewlib.a + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\newlib && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\newlib && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/newlib/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/newlib/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\newlib && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/newlib/install: phony esp-idf/newlib/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/newlib/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\newlib && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/newlib/install/local: phony esp-idf/newlib/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/newlib/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\newlib && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/newlib/install/strip: phony esp-idf/newlib/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/src/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\newlib\src\port && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/newlib/src/port/edit_cache: phony esp-idf/newlib/src/port/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/newlib/src/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\newlib\src\port && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/newlib/src/port/rebuild_cache: phony esp-idf/newlib/src/port/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/newlib/src/port/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/newlib/src/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/src/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\newlib\src\port && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/newlib/src/port/install: phony esp-idf/newlib/src/port/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/newlib/src/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/src/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\newlib\src\port && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/newlib/src/port/install/local: phony esp-idf/newlib/src/port/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/newlib/src/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/src/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\newlib\src\port && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/newlib/src/port/install/strip: phony esp-idf/newlib/src/port/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/pthread.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/pthread_cond_var.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_cond_var.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/pthread_local_storage.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_local_storage.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/pthread_rwlock.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_rwlock.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/pthread_semaphore.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_semaphore.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\pthread && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\pthread && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\pthread && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\pthread && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\pthread && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx/cxx_exception_stubs.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_exception_stubs.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx/cxx_guards.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_guards.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx/cxx_init.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_init.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\cxx && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\cxx && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\cxx && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\cxx && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\cxx && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_driver_gptimer + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_init.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\ets_timer_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/system_time.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\system_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_common.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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_systimer.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_impl_systimer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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_systimer.c.obj || esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_timer && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_timer && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_timer && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_timer && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_timer && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_esp_ringbuf + +build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer.c || cmake_object_order_depends_target___idf_esp_driver_gptimer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src\gptimer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c || cmake_object_order_depends_target___idf_esp_driver_gptimer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/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/esp_ringbuf/libesp_ringbuf.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_gptimer && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_gptimer && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_gptimer && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_gptimer && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_gptimer && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_driver_uart + +build esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj: C_COMPILER____idf_esp_ringbuf_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/ringbuf.c || cmake_object_order_depends_target___idf_esp_ringbuf + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\ringbuf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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_driver_uart/libesp_driver_uart.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_ringbuf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_ringbuf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_ringbuf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_ringbuf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_ringbuf && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uart.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uart.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uart_wakeup.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/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/uhci.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uhci.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uhci.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uart_vfs.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/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/uhci.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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_uart && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_uart && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_uart && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_uart && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_uart && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_app_trace + + +############################################# +# Order-only phony target for __idf_app_trace + +build cmake_object_order_depends_target___idf_app_trace: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj: C_COMPILER____idf_app_trace_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/app_trace.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\app_trace.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + TARGET_COMPILE_PDB = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\__idf_app_trace.pdb + TARGET_PDB = esp-idf\app_trace\libapp_trace.pdb + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj: C_COMPILER____idf_app_trace_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/app_trace_util.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\app_trace_util.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + TARGET_COMPILE_PDB = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\__idf_app_trace.pdb + TARGET_PDB = esp-idf\app_trace\libapp_trace.pdb + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj: C_COMPILER____idf_app_trace_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/host_file_io.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\host_file_io.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + TARGET_COMPILE_PDB = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\__idf_app_trace.pdb + TARGET_PDB = esp-idf\app_trace\libapp_trace.pdb + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj: C_COMPILER____idf_app_trace_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/port/port_uart.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\port\port_uart.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\port + TARGET_COMPILE_PDB = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\__idf_app_trace.pdb + TARGET_PDB = esp-idf\app_trace\libapp_trace.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_app_trace + + +############################################# +# Link the static library esp-idf\app_trace\libapp_trace.a + +build esp-idf/app_trace/libapp_trace.a: C_STATIC_LIBRARY_LINKER____idf_app_trace_ esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\__idf_app_trace.pdb + TARGET_FILE = esp-idf\app_trace\libapp_trace.a + TARGET_PDB = esp-idf\app_trace\libapp_trace.pdb + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_trace && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_trace && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_trace && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_trace && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\app_trace && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_flash + +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj: C_COMPILER____idf_esp_event_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/default_event_loop.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\default_event_loop.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/esp_event.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\esp_event.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/esp_event_private.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\esp_event_private.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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_flash/libnvs_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_event && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_event && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_event && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_event && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_event && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_api.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_cxx_api.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_item_hash_list.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_page.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_page.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_pagemanager.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_storage.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_storage.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_handle_simple.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_handle_locked.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition_lookup.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition_manager.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_types.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_types.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_platform.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_platform.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader.c || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_bootloader.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_encrypted_partition.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader_aes.c || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_bootloader_aes.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader_xts_aes.c || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_bootloader_xts_aes.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\nvs_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\nvs_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\nvs_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\nvs_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\nvs_flash && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_esp_driver_usb_serial_jtag + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_override.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_override.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\lib_printf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_common.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_init.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/phy_init_data.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/phy_init_data.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\esp32s3\phy_init_data.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/src/btbb_init.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\btbb_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/phy_init_data.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj || esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_phy && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_phy && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_phy && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_phy && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_phy && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_usb_serial_jtag + + +############################################# +# Order-only phony target for __idf_esp_driver_usb_serial_jtag + +build cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag: phony || cmake_object_order_depends_target___idf_esp_vfs_console + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src\usb_serial_jtag.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb + TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src\usb_serial_jtag_connection_monitor.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb + TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_vfs.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src\usb_serial_jtag_vfs.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb + TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_usb_serial_jtag + + +############################################# +# Link the static library esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.a + +build esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_usb_serial_jtag_ esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj || esp-idf/esp_vfs_console/libesp_vfs_console.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb + TARGET_FILE = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.a + TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_vfs_console + + +############################################# +# Order-only phony target for __idf_esp_vfs_console + +build cmake_object_order_depends_target___idf_esp_vfs_console: phony || cmake_object_order_depends_target___idf_vfs + +build esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj: C_COMPILER____idf_esp_vfs_console_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/vfs_console.c || cmake_object_order_depends_target___idf_esp_vfs_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir\vfs_console.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include + OBJECT_DIR = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir + OBJECT_FILE_DIR = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir + TARGET_COMPILE_PDB = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir\__idf_esp_vfs_console.pdb + TARGET_PDB = esp-idf\esp_vfs_console\libesp_vfs_console.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_vfs_console + + +############################################# +# Link the static library esp-idf\esp_vfs_console\libesp_vfs_console.a + +build esp-idf/esp_vfs_console/libesp_vfs_console.a: C_STATIC_LIBRARY_LINKER____idf_esp_vfs_console_ esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj || esp-idf/vfs/libvfs.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir\__idf_esp_vfs_console.pdb + TARGET_FILE = esp-idf\esp_vfs_console\libesp_vfs_console.a + TARGET_PDB = esp-idf\esp_vfs_console\libesp_vfs_console.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_vfs_console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_vfs_console && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_vfs_console/edit_cache: phony esp-idf/esp_vfs_console/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_vfs_console && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_vfs_console/rebuild_cache: phony esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_vfs_console/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_vfs_console/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_vfs_console && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_vfs_console/install: phony esp-idf/esp_vfs_console/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_vfs_console/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_vfs_console && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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_vfs_console/install/local: phony esp-idf/esp_vfs_console/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_vfs_console/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_vfs_console && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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_vfs_console/install/strip: phony esp-idf/esp_vfs_console/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/vfs.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/vfs_eventfd.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_eventfd.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/vfs_semihost.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_semihost.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/nullfs.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\nullfs.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_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_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\vfs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\vfs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\vfs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\vfs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\vfs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\sntp\sntp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\api_lib.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\api_msg.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\err.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\if_api.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netbuf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netdb.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netifapi.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\sockets.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\tcpip.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\sntp\sntp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\netbiosns\netbiosns.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\def.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\dns.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\inet_chksum.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ip.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\mem.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\memp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\netif.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\pbuf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\raw.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\stats.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\sys.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp_in.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp_out.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\timeouts.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\udp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\autoip.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\dhcp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\etharp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\icmp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\igmp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_napt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_addr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_frag.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\dhcp6.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ethip6.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\icmp6.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\inet6.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6_addr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6_frag.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\mld6.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\nd6.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ethernet.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\bridgeif.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\bridgeif_fdb.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\slipif.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\auth.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ccp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap-md5.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap-new.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap_ms.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-array-parameter + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\demand.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\eap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ecp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\eui64.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\fsm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ipcp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ipv6cp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\lcp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\magic.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\mppe.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\multilink.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ppp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppapi.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppcrypt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppoe.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppol2tp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppos.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\upap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\vj.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks\tcp_isn_default.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks\lwip_default_hooks.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\debug\lwip_debug.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/sockets_ext.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\sockets_ext.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\freertos\sys_arch.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/if_index.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\if_index.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\acd_dhcp_check.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32xx\vfs_lwip.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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/esp_ping.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/apps/ping/esp_ping.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\esp_ping.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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/apps/ping/ping.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/apps/ping/ping.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\ping.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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/apps/ping/ping_sock.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\ping_sock.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\arc4.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\des.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\md4.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\md5.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\sha1.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\dhcpserver\dhcpserver.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/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/esp_ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\lwip && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\lwip && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\lwip && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\lwip && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\lwip && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_netif_stack && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_netif_stack && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_netif_stack && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_netif_stack && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_netif_stack && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_handlers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_objects.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_defaults.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_lwip.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_sntp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\wlanif.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\ethernetif.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_netif && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_netif && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_netif && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_netif && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_netif && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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/fastpsk.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpsk.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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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\fastpsk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.5.1\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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/esp_supplicant/src/crypto/fastpsk.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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wpa_supplicant && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wpa_supplicant && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wpa_supplicant && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wpa_supplicant && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wpa_supplicant && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/esp_coex_adapter.c.obj: C_COMPILER____idf_esp_coex_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/esp32s3/esp_coex_adapter.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\esp32s3\esp_coex_adapter.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/src/coexist_debug_diagram.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\src\coexist_debug_diagram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/src/coexist_debug.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\src\coexist_debug.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_coex && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_coex && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_coex && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_coex && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_coex && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_driver_spi + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\lib_printf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/mesh_event.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\mesh_event.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/smartconfig.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\smartconfig.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_init.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_default.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_default.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_netif.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_netif.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_default_ap.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_default_ap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/esp_adapter.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/esp32s3/esp_adapter.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\esp32s3\esp_adapter.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/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\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/regulatory/esp_wifi_regulatory.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\regulatory\esp_wifi_regulatory.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/smartconfig_ack.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\smartconfig_ack.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/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/esp32s3/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_driver_spi/libesp_driver_spi.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_wifi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_wifi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_wifi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_wifi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_wifi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_esp_gdbstub + +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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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_hd.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_slave_hd.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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_slave_hd.c.obj || esp-idf/esp_gdbstub/libesp_gdbstub.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_spi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_spi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_spi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_spi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_spi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_driver_pcnt + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/gdbstub.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\gdbstub.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\gdbstub_transport.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/packet.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\packet.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub_xtensa.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub-entry.S || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/xt_debugexception.S || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + 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_driver_pcnt/libesp_driver_pcnt.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_gdbstub && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_gdbstub && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_gdbstub && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_gdbstub && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_gdbstub && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\bt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src/unity.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_compat.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_runner.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_utils_freertos.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_utils_cache.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_utils_memory.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_port_esp32.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\unity && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\unity && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\unity && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\unity && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\unity && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src/cmock.c || cmake_object_order_depends_target___idf_cmock + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\cmock && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\cmock && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\cmock && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\cmock && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\cmock && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/commands.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\commands.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/esp_console_common.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\esp_console_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/esp_console_repl_internal.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\esp_console_repl_internal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/split_argv.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\split_argv.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/linenoise/linenoise.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\linenoise\linenoise.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/esp_console_repl_chip.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\esp_console_repl_chip.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_cmd.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_cmd.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_date.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_date.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dbl.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_dbl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dstr.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_dstr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_end.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_end.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_file.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_file.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_hashtable.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_hashtable.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_int.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_int.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_lit.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_lit.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rem.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_rem.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rex.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_rex.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_str.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_str.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_utils.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/argtable3.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\argtable3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\console && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\console && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\console && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\console && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\console && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_driver_mcpwm + +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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/src/pulse_cnt.c || cmake_object_order_depends_target___idf_esp_driver_pcnt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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_driver_mcpwm/libesp_driver_mcpwm.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_pcnt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_pcnt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_pcnt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_pcnt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_pcnt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_driver_i2s + +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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cap.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cmpr.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_com.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_fault.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_gen.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_oper.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_sync.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_timer.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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_driver_i2s/libesp_driver_i2s.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_mcpwm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_mcpwm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_mcpwm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_mcpwm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_mcpwm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ana_cmpr && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ana_cmpr && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ana_cmpr && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ana_cmpr && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ana_cmpr && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_sdmmc + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_common.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_std.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_std.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_pdm.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_pdm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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_tdm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_tdm.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_tdm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_platform.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_platform.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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_tdm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj || esp-idf/sdmmc/libsdmmc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_i2s && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_i2s && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_i2s && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_i2s && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_i2s && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_esp_driver_sdmmc + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_cmd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_cmd.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_common.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_init.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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_io.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_io.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_io.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_mmc.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_mmc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_sd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_sd.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sd_pwr_ctrl\sd_pwr_ctrl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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 + + +# ============================================================================= +# 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_io.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj || esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\sdmmc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\sdmmc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\sdmmc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\sdmmc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\sdmmc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_sdspi + +build esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj: C_COMPILER____idf_esp_driver_sdmmc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/src/sdmmc_transaction.c || cmake_object_order_depends_target___idf_esp_driver_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\src\sdmmc_transaction.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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/sdmmc_host.c.obj: C_COMPILER____idf_esp_driver_sdmmc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/src/sdmmc_host.c || cmake_object_order_depends_target___idf_esp_driver_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\src\sdmmc_host.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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/src/sdmmc_transaction.c.obj esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj || esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdmmc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdmmc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdmmc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdmmc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdmmc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_rmt + +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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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_rmt/libesp_driver_rmt.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdspi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdspi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdspi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdspi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdspi && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_dac && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_dac && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_dac && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_dac && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_dac && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_bitscrambler && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_bitscrambler && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_bitscrambler && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_bitscrambler && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_bitscrambler && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_driver_tsens + +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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_common.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_rx.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_tx.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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_driver_tsens/libesp_driver_tsens.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_rmt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_rmt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_rmt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_rmt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_rmt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_tsens + + +############################################# +# Order-only phony target for __idf_esp_driver_tsens + +build cmake_object_order_depends_target___idf_esp_driver_tsens: phony || cmake_object_order_depends_target___idf_esp_driver_sdm + +build esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj: C_COMPILER____idf_esp_driver_tsens_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c || cmake_object_order_depends_target___idf_esp_driver_tsens + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src\temperature_sensor.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include + OBJECT_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\__idf_esp_driver_tsens.pdb + TARGET_PDB = esp-idf\esp_driver_tsens\libesp_driver_tsens.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_tsens + + +############################################# +# Link the static library esp-idf\esp_driver_tsens\libesp_driver_tsens.a + +build esp-idf/esp_driver_tsens/libesp_driver_tsens.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_tsens_ esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj || esp-idf/esp_driver_sdm/libesp_driver_sdm.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\__idf_esp_driver_tsens.pdb + TARGET_FILE = esp-idf\esp_driver_tsens\libesp_driver_tsens.a + TARGET_PDB = esp-idf\esp_driver_tsens\libesp_driver_tsens.pdb + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_tsens && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_tsens && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_tsens && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_tsens && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_tsens && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_esp_driver_i2c + +build esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj: C_COMPILER____idf_esp_driver_sdm_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/src/sdm.c || cmake_object_order_depends_target___idf_esp_driver_sdm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\src\sdm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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/esp_driver_i2c/libesp_driver_i2c.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_sdm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_esp_driver_ledc + +build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_master.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_master.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_common.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_slave.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_slave.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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/esp_driver_ledc/libesp_driver_ledc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_i2c && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_i2c && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_i2c && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_i2c && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_i2c && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_driver_twai + +build esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj: C_COMPILER____idf_esp_driver_ledc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/src/ledc.c || cmake_object_order_depends_target___idf_esp_driver_ledc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\src\ledc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/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_driver_twai/libesp_driver_twai.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ledc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ledc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ledc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ledc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ledc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_parlio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_parlio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_parlio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_parlio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_parlio && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_driver + +build esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj: C_COMPILER____idf_esp_driver_twai_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/esp_twai.c || cmake_object_order_depends_target___idf_esp_driver_twai + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\esp_twai.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/esp_twai_onchip.c || cmake_object_order_depends_target___idf_esp_driver_twai + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/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/driver/libdriver.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_twai && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_twai && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_twai && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_twai && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_twai && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_http_parser + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/adc_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\adc_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + 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/deprecated/adc_dma_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/adc_dma_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\adc_dma_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + 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/deprecated/timer_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/timer_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\timer_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + 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/i2c/i2c.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/i2c.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2c\i2c.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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/deprecated/i2s_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/i2s_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\i2s_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + 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/deprecated/mcpwm_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/mcpwm_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\mcpwm_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + 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/deprecated/pcnt_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/pcnt_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\pcnt_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + 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/deprecated/rmt_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/rmt_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\rmt_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + 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/deprecated/sigma_delta_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/sigma_delta_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\sigma_delta_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + 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/deprecated/rtc_temperature_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\rtc_temperature_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/touch_sensor_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor\touch_sensor_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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/esp32s3/touch_sensor.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/touch_sensor.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor\esp32s3\touch_sensor.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor\esp32s3 + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/twai.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\twai\twai.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/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/deprecated/adc_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj || esp-idf/http_parser/libhttp_parser.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\driver && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\driver && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\driver && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\driver && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\driver && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser/http_parser.c || cmake_object_order_depends_target___idf_http_parser + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir\http_parser.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\http_parser && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\http_parser && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\http_parser && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\http_parser && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\http_parser && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_adc + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj: C_COMPILER____idf_esp-tls_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_error_capture.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_platform_port.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_mbedtls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/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_adc/libesp_adc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp-tls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp-tls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp-tls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp-tls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp-tls && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_oneshot.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_oneshot.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_common.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_cali.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_cali.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_cali_curve_fitting.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_cali_curve_fitting.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/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/deprecated/esp_adc_cal_common_legacy.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\deprecated\esp_adc_cal_common_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\deprecated + 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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_continuous.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_continuous.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/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_monitor.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_monitor.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_monitor.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/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/gdma/adc_dma.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/gdma/adc_dma.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\gdma\adc_dma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\gdma + 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_filter.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_filter.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_filter.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/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/esp32s3/curve_fitting_coefficients.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/curve_fitting_coefficients.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\esp32s3\curve_fitting_coefficients.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\esp32s3 + 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/deprecated/esp32s3/esp_adc_cal_legacy.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/esp32s3/esp_adc_cal_legacy.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\deprecated\esp32s3\esp_adc_cal_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\deprecated\esp32s3 + 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/deprecated/esp_adc_cal_common_legacy.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj || esp-idf/tcp_transport/libtcp_transport.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_adc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_adc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_adc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_adc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_adc && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_isp && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_isp && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_isp && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_isp && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_isp && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c || cmake_object_order_depends_target___idf_esp_driver_cam + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c || cmake_object_order_depends_target___idf_esp_driver_cam + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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/src/esp_cam_ctlr_dvp_gdma.c.obj: C_COMPILER____idf_esp_driver_cam_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/src/esp_cam_ctlr_dvp_gdma.c || cmake_object_order_depends_target___idf_esp_driver_cam + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\dvp\src\esp_cam_ctlr_dvp_gdma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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\dvp\src + 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/src/esp_cam_ctlr_dvp_cam.c.obj: C_COMPILER____idf_esp_driver_cam_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/src/esp_cam_ctlr_dvp_cam.c || cmake_object_order_depends_target___idf_esp_driver_cam + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\dvp\src\esp_cam_ctlr_dvp_cam.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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\dvp\src + 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/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp/src/esp_cam_ctlr_dvp_gdma.c.obj esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp/src/esp_cam_ctlr_dvp_cam.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_cam && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_cam && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_cam && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_cam && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_cam && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_psram && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_psram && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_psram && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_psram && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_psram && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_jpeg && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_jpeg && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_jpeg && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_jpeg && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_jpeg && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ppa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ppa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ppa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ppa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_ppa && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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_ver2/touch_version_specific.c.obj: C_COMPILER____idf_esp_driver_touch_sens_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/touch_version_specific.c || cmake_object_order_depends_target___idf_esp_driver_touch_sens + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_touch_sens\CMakeFiles\__idf_esp_driver_touch_sens.dir\hw_ver2\touch_version_specific.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/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_ver2 + 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_ver2/touch_version_specific.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_touch_sens && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_touch_sens && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_touch_sens && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_touch_sens && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_driver_touch_sens && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_xtensa + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj: C_COMPILER____idf_esp_eth_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/src/esp_eth.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/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 + + +# ============================================================================= +# 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/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_eth && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_eth && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_eth && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_eth && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_eth && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/src/esp_hidd.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hidd.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/src/esp_hidh.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hidh.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/src/esp_hid_common.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hid_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hid && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hid && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hid && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hid && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_hid && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/transport.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/transport_ssl.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/transport_internal.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/transport_socks_proxy.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/transport_ws.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\tcp_transport && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\tcp_transport && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\tcp_transport && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\tcp_transport && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\tcp_transport && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/esp_http_client.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/http_auth.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/http_header.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/http_utils.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_http_client && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_http_client && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_http_client && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_http_client && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_http_client && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_main.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_parse.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_sess.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_txrx.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_uri.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_ws.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util/ctrl_sock.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_http_server && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_http_server && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_http_server && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_http_server && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_http_server && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 esp-idf/esp_system/sections.ld.in 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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/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 esp-idf/esp_system/sections.ld.in esp-idf/mbedtls/custom_bundle + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_https_ota && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_https_ota && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_https_ota && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_https_ota && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_https_ota && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/src/https_server.c || cmake_object_order_depends_target___idf_esp_https_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_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_server\CMakeFiles\__idf_esp_https_server.dir\src\https_server.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_https_server && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_https_server && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_https_server && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_https_server && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_https_server && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_xtensa + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_common.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/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_nt35510.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_nt35510.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_nt35510.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/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_v1.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v1.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\i2c\esp_lcd_panel_io_i2c_v1.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/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/i2c/esp_lcd_panel_io_i2c_v2.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v2.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\i2c\esp_lcd_panel_io_i2c_v2.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/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_i80.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/i80/esp_lcd_panel_io_i80.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\i80\esp_lcd_panel_io_i80.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/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 + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/rgb/esp_lcd_panel_rgb.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/esp_lcd_panel_rgb.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\rgb\esp_lcd_panel_rgb.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\rgb + 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_nt35510.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.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_i80.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/rgb/esp_lcd_panel_rgb.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_lcd && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_lcd && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_lcd && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_lcd && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_lcd && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\protobuf-c && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\protobuf-c && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\protobuf-c && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\protobuf-c && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\protobuf-c && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common/protocomm.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c/constants.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c/sec0.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c/sec1.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c/sec2.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c/session.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/transports/protocomm_console.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/transports/protocomm_httpd.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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/security0.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/security/security0.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\security0.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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/security/security1.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/security/security1.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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\security1.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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/security/security2.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/security/security2.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/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/security0.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj || esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\protocomm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\protocomm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\protocomm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\protocomm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\protocomm && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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 -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/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 -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_local_ctrl && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_local_ctrl && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_local_ctrl && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_local_ctrl && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\esp_local_ctrl && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_espcoredump + + +############################################# +# Order-only phony target for __idf_espcoredump + +build cmake_object_order_depends_target___idf_espcoredump: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_init.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_common.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_flash.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_flash.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_uart.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_uart.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_elf.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_elf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_binary.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_binary.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_sha.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_sha.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_crc.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_crc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj: C_COMPILER____idf_espcoredump_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/port/xtensa/core_dump_port.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\port\xtensa\core_dump_port.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\port\xtensa + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_espcoredump + + +############################################# +# Link the static library esp-idf\espcoredump\libespcoredump.a + +build esp-idf/espcoredump/libespcoredump.a: C_STATIC_LIBRARY_LINKER____idf_espcoredump_ esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\__idf_espcoredump.pdb + TARGET_FILE = esp-idf\espcoredump\libespcoredump.a + TARGET_PDB = esp-idf\espcoredump\libespcoredump.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/espcoredump/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\espcoredump && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\espcoredump && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\espcoredump && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\espcoredump && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\espcoredump && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/Partition.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\Partition.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/SPI_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\SPI_Flash.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Ext_Perf.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Ext_Safe.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Flash.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/crc32.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\crc32.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/wear_levelling.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\wear_levelling.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wear_levelling && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wear_levelling && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wear_levelling && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wear_levelling && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wear_levelling && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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_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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio_rawflash.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_rawflash.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio_wl.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_wl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src/ff.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src\ff.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src/ffunicode.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src\ffunicode.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/port/freertos/ffsystem.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\port\freertos\ffsystem.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_sdmmc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs/vfs_fat.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat_sdmmc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat_spiflash.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/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/wear_levelling/libwear_levelling.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\fatfs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\fatfs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\fatfs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\fatfs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\fatfs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\idf_test && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\idf_test && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\idf_test && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\idf_test && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\idf_test && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ieee802154 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ieee802154 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ieee802154 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ieee802154 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ieee802154 && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_json + + +############################################# +# Order-only phony target for __idf_json + +build cmake_object_order_depends_target___idf_json: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj: C_COMPILER____idf_json_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON/cJSON.c || cmake_object_order_depends_target___idf_json + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON\cJSON.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\json\CMakeFiles\__idf_json.dir + OBJECT_FILE_DIR = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON + TARGET_COMPILE_PDB = esp-idf\json\CMakeFiles\__idf_json.dir\__idf_json.pdb + TARGET_PDB = esp-idf\json\libjson.pdb + +build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj: C_COMPILER____idf_json_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON/cJSON_Utils.c || cmake_object_order_depends_target___idf_json + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON\cJSON_Utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\json\CMakeFiles\__idf_json.dir + OBJECT_FILE_DIR = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON + TARGET_COMPILE_PDB = esp-idf\json\CMakeFiles\__idf_json.dir\__idf_json.pdb + TARGET_PDB = esp-idf\json\libjson.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_json + + +############################################# +# Link the static library esp-idf\json\libjson.a + +build esp-idf/json/libjson.a: C_STATIC_LIBRARY_LINKER____idf_json_ esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\json\CMakeFiles\__idf_json.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\json\CMakeFiles\__idf_json.dir\__idf_json.pdb + TARGET_FILE = esp-idf\json\libjson.a + TARGET_PDB = esp-idf\json\libjson.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/json/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\json && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/json/edit_cache: phony esp-idf/json/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/json/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\json && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/json/rebuild_cache: phony esp-idf/json/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/json/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/json/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/json/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\json && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/json/install: phony esp-idf/json/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/json/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/json/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\json && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/json/install/local: phony esp-idf/json/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/json/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/json/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\json && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/json/install/strip: phony esp-idf/json/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_mqtt + + +############################################# +# Order-only phony target for __idf_mqtt + +build cmake_object_order_depends_target___idf_mqtt: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj: C_COMPILER____idf_mqtt_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\mqtt_client.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt + TARGET_COMPILE_PDB = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\__idf_mqtt.pdb + TARGET_PDB = esp-idf\mqtt\libmqtt.pdb + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj: C_COMPILER____idf_mqtt_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib\mqtt_msg.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib + TARGET_COMPILE_PDB = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\__idf_mqtt.pdb + TARGET_PDB = esp-idf\mqtt\libmqtt.pdb + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj: C_COMPILER____idf_mqtt_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib\mqtt_outbox.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib + TARGET_COMPILE_PDB = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\__idf_mqtt.pdb + TARGET_PDB = esp-idf\mqtt\libmqtt.pdb + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj: C_COMPILER____idf_mqtt_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib\platform_esp32_idf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib + TARGET_COMPILE_PDB = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\__idf_mqtt.pdb + TARGET_PDB = esp-idf\mqtt\libmqtt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_mqtt + + +############################################# +# Link the static library esp-idf\mqtt\libmqtt.a + +build esp-idf/mqtt/libmqtt.a: C_STATIC_LIBRARY_LINKER____idf_mqtt_ esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\__idf_mqtt.pdb + TARGET_FILE = esp-idf\mqtt\libmqtt.a + TARGET_PDB = esp-idf\mqtt\libmqtt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mqtt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mqtt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mqtt/edit_cache: phony esp-idf/mqtt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mqtt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mqtt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mqtt/rebuild_cache: phony esp-idf/mqtt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mqtt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mqtt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mqtt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mqtt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mqtt/install: phony esp-idf/mqtt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mqtt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mqtt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mqtt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/mqtt/install/local: phony esp-idf/mqtt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mqtt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mqtt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mqtt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mqtt/install/strip: phony esp-idf/mqtt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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_xtensa + +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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/nvs_sec_provider.c || cmake_object_order_depends_target___idf_nvs_sec_provider + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/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/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\nvs_sec_provider && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\nvs_sec_provider && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\nvs_sec_provider && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\nvs_sec_provider && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\nvs_sec_provider && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\openthread && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\openthread && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\openthread && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\openthread && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\openthread && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/xtensa_perfmon_access.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_access.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/xtensa_perfmon_apis.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_apis.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/xtensa_perfmon_masks.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_masks.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\perfmon && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\perfmon && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\perfmon && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\perfmon && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\perfmon && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/FreeRTOS_POSIX_mqueue.c || cmake_object_order_depends_target___idf_rt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\rt\CMakeFiles\__idf_rt.dir\FreeRTOS_POSIX_mqueue.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/FreeRTOS_POSIX_utils.c || cmake_object_order_depends_target___idf_rt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\rt\CMakeFiles\__idf_rt.dir\FreeRTOS_POSIX_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\rt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\rt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\rt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\rt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\rt && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs_api.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs_api.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_cache.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_check.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_check.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_gc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_hydrogen.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_nucleus.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/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$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/esp_spiffs.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\esp_spiffs.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/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 = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\spiffs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\spiffs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\spiffs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\spiffs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\spiffs && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_touch_element + + +############################################# +# Order-only phony target for __idf_touch_element + +build cmake_object_order_depends_target___idf_touch_element: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_element.c.obj: C_COMPILER____idf_touch_element_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/touch_element.c || cmake_object_order_depends_target___idf_touch_element + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\touch_element.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir + OBJECT_FILE_DIR = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir + TARGET_COMPILE_PDB = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\__idf_touch_element.pdb + TARGET_PDB = esp-idf\touch_element\libtouch_element.pdb + +build esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj: C_COMPILER____idf_touch_element_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/touch_button.c || cmake_object_order_depends_target___idf_touch_element + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\touch_button.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir + OBJECT_FILE_DIR = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir + TARGET_COMPILE_PDB = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\__idf_touch_element.pdb + TARGET_PDB = esp-idf\touch_element\libtouch_element.pdb + +build esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj: C_COMPILER____idf_touch_element_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/touch_slider.c || cmake_object_order_depends_target___idf_touch_element + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\touch_slider.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir + OBJECT_FILE_DIR = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir + TARGET_COMPILE_PDB = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\__idf_touch_element.pdb + TARGET_PDB = esp-idf\touch_element\libtouch_element.pdb + +build esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj: C_COMPILER____idf_touch_element_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/touch_matrix.c || cmake_object_order_depends_target___idf_touch_element + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\touch_matrix.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir + OBJECT_FILE_DIR = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir + TARGET_COMPILE_PDB = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\__idf_touch_element.pdb + TARGET_PDB = esp-idf\touch_element\libtouch_element.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_touch_element + + +############################################# +# Link the static library esp-idf\touch_element\libtouch_element.a + +build esp-idf/touch_element/libtouch_element.a: C_STATIC_LIBRARY_LINKER____idf_touch_element_ esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_element.c.obj esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\__idf_touch_element.pdb + TARGET_FILE = esp-idf\touch_element\libtouch_element.a + TARGET_PDB = esp-idf\touch_element\libtouch_element.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/touch_element/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\touch_element && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/touch_element/edit_cache: phony esp-idf/touch_element/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/touch_element/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\touch_element && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/touch_element/rebuild_cache: phony esp-idf/touch_element/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/touch_element/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/touch_element/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/touch_element/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\touch_element && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/touch_element/install: phony esp-idf/touch_element/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/touch_element/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/touch_element/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\touch_element && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/touch_element/install/local: phony esp-idf/touch_element/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/touch_element/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/touch_element/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\touch_element && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/touch_element/install/strip: phony esp-idf/touch_element/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ulp && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ulp && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ulp && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ulp && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ulp && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_usb + + +############################################# +# Order-only phony target for __idf_usb + +build cmake_object_order_depends_target___idf_usb: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj: C_COMPILER____idf_usb_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/hcd_dwc.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\hcd_dwc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + TARGET_COMPILE_PDB = esp-idf\usb\CMakeFiles\__idf_usb.dir\__idf_usb.pdb + TARGET_PDB = esp-idf\usb\libusb.pdb + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/enum.c.obj: C_COMPILER____idf_usb_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/enum.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\enum.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + TARGET_COMPILE_PDB = esp-idf\usb\CMakeFiles\__idf_usb.dir\__idf_usb.pdb + TARGET_PDB = esp-idf\usb\libusb.pdb + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj: C_COMPILER____idf_usb_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/hub.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\hub.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + TARGET_COMPILE_PDB = esp-idf\usb\CMakeFiles\__idf_usb.dir\__idf_usb.pdb + TARGET_PDB = esp-idf\usb\libusb.pdb + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj: C_COMPILER____idf_usb_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/usb_helpers.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\usb_helpers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + TARGET_COMPILE_PDB = esp-idf\usb\CMakeFiles\__idf_usb.dir\__idf_usb.pdb + TARGET_PDB = esp-idf\usb\libusb.pdb + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj: C_COMPILER____idf_usb_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/usb_host.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\usb_host.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + TARGET_COMPILE_PDB = esp-idf\usb\CMakeFiles\__idf_usb.dir\__idf_usb.pdb + TARGET_PDB = esp-idf\usb\libusb.pdb + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj: C_COMPILER____idf_usb_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/usb_private.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\usb_private.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + TARGET_COMPILE_PDB = esp-idf\usb\CMakeFiles\__idf_usb.dir\__idf_usb.pdb + TARGET_PDB = esp-idf\usb\libusb.pdb + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj: C_COMPILER____idf_usb_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/usbh.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\usbh.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + TARGET_COMPILE_PDB = esp-idf\usb\CMakeFiles\__idf_usb.dir\__idf_usb.pdb + TARGET_PDB = esp-idf\usb\libusb.pdb + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj: C_COMPILER____idf_usb_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/usb_phy.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\usb_phy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + TARGET_COMPILE_PDB = esp-idf\usb\CMakeFiles\__idf_usb.dir\__idf_usb.pdb + TARGET_PDB = esp-idf\usb\libusb.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_usb + + +############################################# +# Link the static library esp-idf\usb\libusb.a + +build esp-idf/usb/libusb.a: C_STATIC_LIBRARY_LINKER____idf_usb_ esp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/enum.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\usb\CMakeFiles\__idf_usb.dir\__idf_usb.pdb + TARGET_FILE = esp-idf\usb\libusb.a + TARGET_PDB = esp-idf\usb\libusb.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\usb && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/usb/edit_cache: phony esp-idf/usb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\usb && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/usb/rebuild_cache: phony esp-idf/usb/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/usb/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/usb/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/usb/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\usb && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/usb/install: phony esp-idf/usb/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/usb/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/usb/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\usb && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/usb/install/local: phony esp-idf/usb/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/usb/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/usb/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\usb && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/usb/install/strip: phony esp-idf/usb/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_wifi_provisioning + + +############################################# +# Order-only phony target for __idf_wifi_provisioning + +build cmake_object_order_depends_target___idf_wifi_provisioning: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_xtensa + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/wifi_config.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\wifi_config.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/wifi_scan.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\wifi_scan.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/wifi_ctrl.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\wifi_ctrl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/manager.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\manager.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/handlers.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\handlers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/scheme_console.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\scheme_console.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c\wifi_config.pb-c.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c\wifi_scan.pb-c.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c\wifi_ctrl.pb-c.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c\wifi_constants.pb-c.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj: C_COMPILER____idf_wifi_provisioning_unscanned_ C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/scheme_softap.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\scheme_softap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_wifi_provisioning + + +############################################# +# Link the static library esp-idf\wifi_provisioning\libwifi_provisioning.a + +build esp-idf/wifi_provisioning/libwifi_provisioning.a: C_STATIC_LIBRARY_LINKER____idf_wifi_provisioning_ esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj || esp-idf/console/libconsole.a esp-idf/json/libjson.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\__idf_wifi_provisioning.pdb + TARGET_FILE = esp-idf\wifi_provisioning\libwifi_provisioning.a + TARGET_PDB = esp-idf\wifi_provisioning\libwifi_provisioning.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wifi_provisioning && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/wifi_provisioning/edit_cache: phony esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wifi_provisioning && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/wifi_provisioning/rebuild_cache: phony esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/wifi_provisioning/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/wifi_provisioning/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wifi_provisioning && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/wifi_provisioning/install: phony esp-idf/wifi_provisioning/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/wifi_provisioning/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wifi_provisioning && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/wifi_provisioning/install/local: phony esp-idf/wifi_provisioning/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/wifi_provisioning/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\wifi_provisioning && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/wifi_provisioning/install/strip: phony esp-idf/wifi_provisioning/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/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_app_trace cmake_object_order_depends_target___idf_cmock cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_driver_cam cmake_object_order_depends_target___idf_esp_driver_touch_sens cmake_object_order_depends_target___idf_esp_eth 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_espcoredump cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_fota_manager cmake_object_order_depends_target___idf_ftp_manager cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_mqtt_manager cmake_object_order_depends_target___idf_nvs_sec_provider 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_rpc_job_parser cmake_object_order_depends_target___idf_rt cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_touch_element cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_usb cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa + +build esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj: C_COMPILER____idf_main_unscanned_ F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/main/main.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -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\main\CMakeFiles\__idf_main.dir\main.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/main -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager + 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/wifi_init.c.obj: C_COMPILER____idf_main_unscanned_ F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/main/wifi_init.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -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\main\CMakeFiles\__idf_main.dir\wifi_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/main -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager + 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/fs_init.c.obj: C_COMPILER____idf_main_unscanned_ F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/main/fs_init.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -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\main\CMakeFiles\__idf_main.dir\fs_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/main -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager + 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/wifi_init.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/fs_init.c.obj || esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_eth/libesp_eth.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/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/fota_manager/libfota_manager.a esp-idf/ftp_manager/libftp_manager.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/mqtt_manager/libmqtt_manager.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/rpc_job_parser/librpc_job_parser.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + 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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\main && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\main && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\main && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\main && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\main && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_fota_manager + + +############################################# +# Order-only phony target for __idf_fota_manager + +build cmake_object_order_depends_target___idf_fota_manager: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/fota_manager/CMakeFiles/__idf_fota_manager.dir/fota_manager.c.obj: C_COMPILER____idf_fota_manager_unscanned_ F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager/fota_manager.c || cmake_object_order_depends_target___idf_fota_manager + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fota_manager\CMakeFiles\__idf_fota_manager.dir\fota_manager.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include + OBJECT_DIR = esp-idf\fota_manager\CMakeFiles\__idf_fota_manager.dir + OBJECT_FILE_DIR = esp-idf\fota_manager\CMakeFiles\__idf_fota_manager.dir + TARGET_COMPILE_PDB = esp-idf\fota_manager\CMakeFiles\__idf_fota_manager.dir\__idf_fota_manager.pdb + TARGET_PDB = esp-idf\fota_manager\libfota_manager.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_fota_manager + + +############################################# +# Link the static library esp-idf\fota_manager\libfota_manager.a + +build esp-idf/fota_manager/libfota_manager.a: C_STATIC_LIBRARY_LINKER____idf_fota_manager_ esp-idf/fota_manager/CMakeFiles/__idf_fota_manager.dir/fota_manager.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\fota_manager\CMakeFiles\__idf_fota_manager.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\fota_manager\CMakeFiles\__idf_fota_manager.dir\__idf_fota_manager.pdb + TARGET_FILE = esp-idf\fota_manager\libfota_manager.a + TARGET_PDB = esp-idf\fota_manager\libfota_manager.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/fota_manager/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\fota_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/fota_manager/edit_cache: phony esp-idf/fota_manager/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/fota_manager/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\fota_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/fota_manager/rebuild_cache: phony esp-idf/fota_manager/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/fota_manager/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/fota_manager/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/fota_manager/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\fota_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/fota_manager/install: phony esp-idf/fota_manager/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/fota_manager/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/fota_manager/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\fota_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/fota_manager/install/local: phony esp-idf/fota_manager/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/fota_manager/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/fota_manager/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\fota_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/fota_manager/install/strip: phony esp-idf/fota_manager/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_ftp_manager + + +############################################# +# Order-only phony target for __idf_ftp_manager + +build cmake_object_order_depends_target___idf_ftp_manager: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/ftp_manager/CMakeFiles/__idf_ftp_manager.dir/ftp_manager.c.obj: C_COMPILER____idf_ftp_manager_unscanned_ F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager/ftp_manager.c || cmake_object_order_depends_target___idf_ftp_manager + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\ftp_manager\CMakeFiles\__idf_ftp_manager.dir\ftp_manager.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\ftp_manager\CMakeFiles\__idf_ftp_manager.dir + OBJECT_FILE_DIR = esp-idf\ftp_manager\CMakeFiles\__idf_ftp_manager.dir + TARGET_COMPILE_PDB = esp-idf\ftp_manager\CMakeFiles\__idf_ftp_manager.dir\__idf_ftp_manager.pdb + TARGET_PDB = esp-idf\ftp_manager\libftp_manager.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_ftp_manager + + +############################################# +# Link the static library esp-idf\ftp_manager\libftp_manager.a + +build esp-idf/ftp_manager/libftp_manager.a: C_STATIC_LIBRARY_LINKER____idf_ftp_manager_ esp-idf/ftp_manager/CMakeFiles/__idf_ftp_manager.dir/ftp_manager.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\ftp_manager\CMakeFiles\__idf_ftp_manager.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\ftp_manager\CMakeFiles\__idf_ftp_manager.dir\__idf_ftp_manager.pdb + TARGET_FILE = esp-idf\ftp_manager\libftp_manager.a + TARGET_PDB = esp-idf\ftp_manager\libftp_manager.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/ftp_manager/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ftp_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/ftp_manager/edit_cache: phony esp-idf/ftp_manager/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/ftp_manager/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ftp_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/ftp_manager/rebuild_cache: phony esp-idf/ftp_manager/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/ftp_manager/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/ftp_manager/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ftp_manager/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ftp_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/ftp_manager/install: phony esp-idf/ftp_manager/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/ftp_manager/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ftp_manager/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ftp_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/ftp_manager/install/local: phony esp-idf/ftp_manager/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/ftp_manager/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ftp_manager/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\ftp_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/ftp_manager/install/strip: phony esp-idf/ftp_manager/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_rpc_job_parser + + +############################################# +# Order-only phony target for __idf_rpc_job_parser + +build cmake_object_order_depends_target___idf_rpc_job_parser: phony || cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_xtensa + +build esp-idf/rpc_job_parser/CMakeFiles/__idf_rpc_job_parser.dir/rpc_job_parser.c.obj: C_COMPILER____idf_rpc_job_parser_unscanned_ F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser/rpc_job_parser.c || cmake_object_order_depends_target___idf_rpc_job_parser + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\rpc_job_parser\CMakeFiles\__idf_rpc_job_parser.dir\rpc_job_parser.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\rpc_job_parser\CMakeFiles\__idf_rpc_job_parser.dir + OBJECT_FILE_DIR = esp-idf\rpc_job_parser\CMakeFiles\__idf_rpc_job_parser.dir + TARGET_COMPILE_PDB = esp-idf\rpc_job_parser\CMakeFiles\__idf_rpc_job_parser.dir\__idf_rpc_job_parser.pdb + TARGET_PDB = esp-idf\rpc_job_parser\librpc_job_parser.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_rpc_job_parser + + +############################################# +# Link the static library esp-idf\rpc_job_parser\librpc_job_parser.a + +build esp-idf/rpc_job_parser/librpc_job_parser.a: C_STATIC_LIBRARY_LINKER____idf_rpc_job_parser_ esp-idf/rpc_job_parser/CMakeFiles/__idf_rpc_job_parser.dir/rpc_job_parser.c.obj || esp-idf/json/libjson.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\rpc_job_parser\CMakeFiles\__idf_rpc_job_parser.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\rpc_job_parser\CMakeFiles\__idf_rpc_job_parser.dir\__idf_rpc_job_parser.pdb + TARGET_FILE = esp-idf\rpc_job_parser\librpc_job_parser.a + TARGET_PDB = esp-idf\rpc_job_parser\librpc_job_parser.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/rpc_job_parser/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\rpc_job_parser && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/rpc_job_parser/edit_cache: phony esp-idf/rpc_job_parser/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/rpc_job_parser/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\rpc_job_parser && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/rpc_job_parser/rebuild_cache: phony esp-idf/rpc_job_parser/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/rpc_job_parser/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/rpc_job_parser/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/rpc_job_parser/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\rpc_job_parser && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/rpc_job_parser/install: phony esp-idf/rpc_job_parser/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/rpc_job_parser/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/rpc_job_parser/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\rpc_job_parser && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/rpc_job_parser/install/local: phony esp-idf/rpc_job_parser/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/rpc_job_parser/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/rpc_job_parser/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\rpc_job_parser && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/rpc_job_parser/install/strip: phony esp-idf/rpc_job_parser/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_mqtt_manager + + +############################################# +# Order-only phony target for __idf_mqtt_manager + +build cmake_object_order_depends_target___idf_mqtt_manager: phony || cmake_object_order_depends_target___idf_fota_manager cmake_object_order_depends_target___idf_ftp_manager cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_rpc_job_parser cmake_object_order_depends_target___idf_xtensa + +build esp-idf/mqtt_manager/CMakeFiles/__idf_mqtt_manager.dir/mqtt_manager.c.obj: C_COMPILER____idf_mqtt_manager_unscanned_ F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager/mqtt_manager.c || cmake_object_order_depends_target___idf_mqtt_manager + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mqtt_manager\CMakeFiles\__idf_mqtt_manager.dir\mqtt_manager.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/main -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include + OBJECT_DIR = esp-idf\mqtt_manager\CMakeFiles\__idf_mqtt_manager.dir + OBJECT_FILE_DIR = esp-idf\mqtt_manager\CMakeFiles\__idf_mqtt_manager.dir + TARGET_COMPILE_PDB = esp-idf\mqtt_manager\CMakeFiles\__idf_mqtt_manager.dir\__idf_mqtt_manager.pdb + TARGET_PDB = esp-idf\mqtt_manager\libmqtt_manager.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_mqtt_manager + + +############################################# +# Link the static library esp-idf\mqtt_manager\libmqtt_manager.a + +build esp-idf/mqtt_manager/libmqtt_manager.a: C_STATIC_LIBRARY_LINKER____idf_mqtt_manager_ esp-idf/mqtt_manager/CMakeFiles/__idf_mqtt_manager.dir/mqtt_manager.c.obj || esp-idf/fota_manager/libfota_manager.a esp-idf/ftp_manager/libftp_manager.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/rpc_job_parser/librpc_job_parser.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mqtt_manager\CMakeFiles\__idf_mqtt_manager.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mqtt_manager\CMakeFiles\__idf_mqtt_manager.dir\__idf_mqtt_manager.pdb + TARGET_FILE = esp-idf\mqtt_manager\libmqtt_manager.a + TARGET_PDB = esp-idf\mqtt_manager\libmqtt_manager.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mqtt_manager/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mqtt_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mqtt_manager/edit_cache: phony esp-idf/mqtt_manager/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mqtt_manager/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mqtt_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SF:\ESP_32_Projects\esp32-s3_fota_test_wifi -BF:\ESP_32_Projects\esp32-s3_fota_test_wifi\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mqtt_manager/rebuild_cache: phony esp-idf/mqtt_manager/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mqtt_manager/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mqtt_manager/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mqtt_manager/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mqtt_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mqtt_manager/install: phony esp-idf/mqtt_manager/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mqtt_manager/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mqtt_manager/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mqtt_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\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/mqtt_manager/install/local: phony esp-idf/mqtt_manager/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mqtt_manager/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mqtt_manager/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D F:\ESP_32_Projects\esp32-s3_fota_test_wifi\build\esp-idf\mqtt_manager && C:\Users\Vecmocon\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mqtt_manager/install/strip: phony esp-idf/mqtt_manager/CMakeFiles/install/strip.util + +# ============================================================================= +# Target aliases. + +build __idf_app_trace: phony esp-idf/app_trace/libapp_trace.a + +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_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_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_tsens: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.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_driver_usb_serial_jtag: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_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_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_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_system: phony esp-idf/esp_system/libesp_system.a + +build __idf_esp_timer: phony esp-idf/esp_timer/libesp_timer.a + +build __idf_esp_vfs_console: phony esp-idf/esp_vfs_console/libesp_vfs_console.a + +build __idf_esp_wifi: phony esp-idf/esp_wifi/libesp_wifi.a + +build __idf_espcoredump: phony esp-idf/espcoredump/libespcoredump.a + +build __idf_fatfs: phony esp-idf/fatfs/libfatfs.a + +build __idf_fota_manager: phony esp-idf/fota_manager/libfota_manager.a + +build __idf_freertos: phony esp-idf/freertos/libfreertos.a + +build __idf_ftp_manager: phony esp-idf/ftp_manager/libftp_manager.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_json: phony esp-idf/json/libjson.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_mqtt: phony esp-idf/mqtt/libmqtt.a + +build __idf_mqtt_manager: phony esp-idf/mqtt_manager/libmqtt_manager.a + +build __idf_newlib: phony esp-idf/newlib/libnewlib.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_rpc_job_parser: phony esp-idf/rpc_job_parser/librpc_job_parser.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_touch_element: phony esp-idf/touch_element/libtouch_element.a + +build __idf_unity: phony esp-idf/unity/libunity.a + +build __idf_usb: phony esp-idf/usb/libusb.a + +build __idf_vfs: phony esp-idf/vfs/libvfs.a + +build __idf_wear_levelling: phony esp-idf/wear_levelling/libwear_levelling.a + +build __idf_wifi_provisioning: phony esp-idf/wifi_provisioning/libwifi_provisioning.a + +build __idf_wpa_supplicant: phony esp-idf/wpa_supplicant/libwpa_supplicant.a + +build __idf_xtensa: phony esp-idf/xtensa/libxtensa.a + +build apidoc: phony esp-idf/mbedtls/mbedtls/apidoc + +build app-flash: phony esp-idf/esptool_py/app-flash + +build app_check_size: phony esp-idf/esptool_py/app_check_size + +build blank_ota_data: phony esp-idf/app_update/blank_ota_data + +build bootloader-flash: phony esp-idf/bootloader/bootloader-flash + +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-app-flash: phony esp-idf/esptool_py/encrypted-app-flash + +build encrypted-bootloader-flash: phony esp-idf/bootloader/encrypted-bootloader-flash + +build encrypted-otadata-flash: phony esp-idf/app_update/encrypted-otadata-flash + +build encrypted-partition-table-flash: phony esp-idf/partition_table/encrypted-partition-table-flash + +build erase-otadata: phony esp-idf/app_update/erase-otadata + +build erase_otadata: phony esp-idf/app_update/erase_otadata + +build everest: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a + +build lib: phony esp-idf/mbedtls/mbedtls/library/lib + +build libapp_trace.a: phony esp-idf/app_trace/libapp_trace.a + +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_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_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_tsens.a: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.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_driver_usb_serial_jtag.a: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.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_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_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_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_system.a: phony esp-idf/esp_system/libesp_system.a + +build libesp_timer.a: phony esp-idf/esp_timer/libesp_timer.a + +build libesp_vfs_console.a: phony esp-idf/esp_vfs_console/libesp_vfs_console.a + +build libesp_wifi.a: phony esp-idf/esp_wifi/libesp_wifi.a + +build libespcoredump.a: phony esp-idf/espcoredump/libespcoredump.a + +build libeverest.a: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a + +build libfatfs.a: phony esp-idf/fatfs/libfatfs.a + +build libfota_manager.a: phony esp-idf/fota_manager/libfota_manager.a + +build libfreertos.a: phony esp-idf/freertos/libfreertos.a + +build libftp_manager.a: phony esp-idf/ftp_manager/libftp_manager.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 libjson.a: phony esp-idf/json/libjson.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 libmbedcrypto.a: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a + +build libmbedtls.a: phony esp-idf/mbedtls/libmbedtls.a + +build libmbedx509.a: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a + +build libmqtt.a: phony esp-idf/mqtt/libmqtt.a + +build libmqtt_manager.a: phony esp-idf/mqtt_manager/libmqtt_manager.a + +build libnewlib.a: phony esp-idf/newlib/libnewlib.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/3rdparty/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 librpc_job_parser.a: phony esp-idf/rpc_job_parser/librpc_job_parser.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 libtouch_element.a: phony esp-idf/touch_element/libtouch_element.a + +build libunity.a: phony esp-idf/unity/libunity.a + +build libusb.a: phony esp-idf/usb/libusb.a + +build libvfs.a: phony esp-idf/vfs/libvfs.a + +build libwear_levelling.a: phony esp-idf/wear_levelling/libwear_levelling.a + +build libwifi_provisioning.a: phony esp-idf/wifi_provisioning/libwifi_provisioning.a + +build libwpa_supplicant.a: phony esp-idf/wpa_supplicant/libwpa_supplicant.a + +build libxtensa.a: phony esp-idf/xtensa/libxtensa.a + +build mbedcrypto: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a + +build mbedtls: phony esp-idf/mbedtls/mbedtls/library/libmbedtls.a + +build mbedx509: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a + +build memory.ld: phony esp-idf/esp_system/memory.ld + +build otadata-flash: phony esp-idf/app_update/otadata-flash + +build p256m: phony esp-idf/mbedtls/mbedtls/3rdparty/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 read-otadata: phony esp-idf/app_update/read-otadata + +build read_otadata: phony esp-idf/app_update/read_otadata + +build sections.ld.in: phony esp-idf/esp_system/sections.ld.in + +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: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build + +build all: phony bootloader app esp32-s3_fota_test_wifi.elf esp-idf/all + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf + +build esp-idf/all: phony esp-idf/xtensa/all esp-idf/esp_driver_gpio/all esp-idf/esp_pm/all esp-idf/mbedtls/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/bootloader_support/all esp-idf/esp_mm/all esp-idf/spi_flash/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_security/all esp-idf/esp_hw_support/all esp-idf/freertos/all esp-idf/newlib/all esp-idf/pthread/all esp-idf/cxx/all esp-idf/esp_timer/all esp-idf/esp_driver_gptimer/all esp-idf/esp_ringbuf/all esp-idf/esp_driver_uart/all esp-idf/app_trace/all esp-idf/esp_event/all esp-idf/nvs_flash/all esp-idf/esp_phy/all esp-idf/esp_driver_usb_serial_jtag/all esp-idf/esp_vfs_console/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_driver_pcnt/all esp-idf/esp_driver_mcpwm/all esp-idf/esp_driver_ana_cmpr/all esp-idf/esp_driver_i2s/all esp-idf/sdmmc/all esp-idf/esp_driver_sdmmc/all esp-idf/esp_driver_sdspi/all esp-idf/esp_driver_sdio/all esp-idf/esp_driver_dac/all esp-idf/esp_driver_bitscrambler/all esp-idf/esp_driver_rmt/all esp-idf/esp_driver_tsens/all esp-idf/esp_driver_sdm/all esp-idf/esp_driver_i2c/all esp-idf/esp_driver_ledc/all esp-idf/esp_driver_parlio/all esp-idf/esp_driver_twai/all esp-idf/driver/all esp-idf/http_parser/all esp-idf/esp-tls/all esp-idf/esp_adc/all esp-idf/esp_driver_isp/all esp-idf/esp_driver_cam/all esp-idf/esp_psram/all esp-idf/esp_driver_jpeg/all esp-idf/esp_driver_ppa/all esp-idf/esp_driver_touch_sens/all esp-idf/esp_eth/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/espcoredump/all esp-idf/wear_levelling/all esp-idf/fatfs/all esp-idf/idf_test/all esp-idf/ieee802154/all esp-idf/json/all esp-idf/mqtt/all esp-idf/nvs_sec_provider/all esp-idf/openthread/all esp-idf/perfmon/all esp-idf/rt/all esp-idf/spiffs/all esp-idf/touch_element/all esp-idf/ulp/all esp-idf/usb/all esp-idf/wifi_provisioning/all esp-idf/main/all esp-idf/fota_manager/all esp-idf/ftp_manager/all esp-idf/rpc_job_parser/all esp-idf/mqtt_manager/all + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_trace + +build esp-idf/app_trace/all: phony esp-idf/app_trace/libapp_trace.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update + +build esp-idf/app_update/all: phony esp-idf/app_update/libapp_update.a esp-idf/app_update/blank_ota_data + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bt + +build esp-idf/bt/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmock + +build esp-idf/cmock/all: phony esp-idf/cmock/libcmock.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console + +build esp-idf/console/all: phony esp-idf/console/libconsole.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx + +build esp-idf/cxx/all: phony esp-idf/cxx/libcxx.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver + +build esp-idf/driver/all: phony esp-idf/driver/libdriver.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls + +build esp-idf/esp-tls/all: phony esp-idf/esp-tls/libesp-tls.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc + +build esp-idf/esp_adc/all: phony esp-idf/esp_adc/libesp_adc.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format + +build esp-idf/esp_app_format/all: phony esp-idf/esp_app_format/libesp_app_format.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format + +build esp-idf/esp_bootloader_format/all: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex + +build esp-idf/esp_coex/all: phony esp-idf/esp_coex/libesp_coex.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ana_cmpr + +build esp-idf/esp_driver_ana_cmpr/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_bitscrambler + +build esp-idf/esp_driver_bitscrambler/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_cam + +build esp-idf/esp_driver_cam/all: phony esp-idf/esp_driver_cam/libesp_driver_cam.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_dac + +build esp-idf/esp_driver_dac/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio + +build esp-idf/esp_driver_gpio/all: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer + +build esp-idf/esp_driver_gptimer/all: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c + +build esp-idf/esp_driver_i2c/all: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s + +build esp-idf/esp_driver_i2s/all: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_isp + +build esp-idf/esp_driver_isp/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_jpeg + +build esp-idf/esp_driver_jpeg/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc + +build esp-idf/esp_driver_ledc/all: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm + +build esp-idf/esp_driver_mcpwm/all: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_parlio + +build esp-idf/esp_driver_parlio/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt + +build esp-idf/esp_driver_pcnt/all: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ppa + +build esp-idf/esp_driver_ppa/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt + +build esp-idf/esp_driver_rmt/all: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdio + +build esp-idf/esp_driver_sdio/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm + +build esp-idf/esp_driver_sdm/all: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc + +build esp-idf/esp_driver_sdmmc/all: phony esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi + +build esp-idf/esp_driver_sdspi/all: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi + +build esp-idf/esp_driver_spi/all: phony esp-idf/esp_driver_spi/libesp_driver_spi.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens + +build esp-idf/esp_driver_tsens/all: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai + +build esp-idf/esp_driver_twai/all: phony esp-idf/esp_driver_twai/libesp_driver_twai.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart + +build esp-idf/esp_driver_uart/all: phony esp-idf/esp_driver_uart/libesp_driver_uart.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_usb_serial_jtag + +build esp-idf/esp_driver_usb_serial_jtag/all: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_eth + +build esp-idf/esp_eth/all: phony esp-idf/esp_eth/libesp_eth.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event + +build esp-idf/esp_event/all: phony esp-idf/esp_event/libesp_event.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub + +build esp-idf/esp_gdbstub/all: phony esp-idf/esp_gdbstub/libesp_gdbstub.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hid + +build esp-idf/esp_hid/all: phony esp-idf/esp_hid/libesp_hid.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client + +build esp-idf/esp_http_client/all: phony esp-idf/esp_http_client/libesp_http_client.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server + +build esp-idf/esp_http_server/all: phony esp-idf/esp_http_server/libesp_http_server.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota + +build esp-idf/esp_https_ota/all: phony esp-idf/esp_https_ota/libesp_https_ota.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server + +build esp-idf/esp_https_server/all: phony esp-idf/esp_https_server/libesp_https_server.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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/esp32s3/all esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all esp-idf/esp_hw_support/lowpower/all + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/lowpower + +build esp-idf/esp_hw_support/lowpower/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/port/esp32s3 + +build esp-idf/esp_hw_support/port/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_lcd + +build esp-idf/esp_lcd/all: phony esp-idf/esp_lcd/libesp_lcd.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_local_ctrl + +build esp-idf/esp_local_ctrl/all: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm + +build esp-idf/esp_mm/all: phony esp-idf/esp_mm/libesp_mm.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif + +build esp-idf/esp_netif/all: phony esp-idf/esp_netif/libesp_netif.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif_stack + +build esp-idf/esp_netif_stack/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition + +build esp-idf/esp_partition/all: phony esp-idf/esp_partition/libesp_partition.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy + +build esp-idf/esp_phy/all: phony esp-idf/esp_phy/libesp_phy.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm + +build esp-idf/esp_pm/all: phony esp-idf/esp_pm/libesp_pm.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_psram + +build esp-idf/esp_psram/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf + +build esp-idf/esp_ringbuf/all: phony esp-idf/esp_ringbuf/libesp_ringbuf.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security + +build esp-idf/esp_security/all: phony esp-idf/esp_security/libesp_security.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port + +build esp-idf/esp_system/port/all: phony esp-idf/esp_system/port/soc/esp32s3/all + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/soc/esp32s3 + +build esp-idf/esp_system/port/soc/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer + +build esp-idf/esp_timer/all: phony esp-idf/esp_timer/libesp_timer.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console + +build esp-idf/esp_vfs_console/all: phony esp-idf/esp_vfs_console/libesp_vfs_console.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi + +build esp-idf/esp_wifi/all: phony esp-idf/esp_wifi/libesp_wifi.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/espcoredump + +build esp-idf/espcoredump/all: phony esp-idf/espcoredump/libespcoredump.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fatfs + +build esp-idf/fatfs/all: phony esp-idf/fatfs/libfatfs.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager + +build esp-idf/fota_manager/all: phony esp-idf/fota_manager/libfota_manager.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos + +build esp-idf/freertos/all: phony esp-idf/freertos/libfreertos.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager + +build esp-idf/ftp_manager/all: phony esp-idf/ftp_manager/libftp_manager.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap + +build esp-idf/heap/all: phony esp-idf/heap/libheap.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser + +build esp-idf/http_parser/all: phony esp-idf/http_parser/libhttp_parser.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/idf_test + +build esp-idf/idf_test/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ieee802154 + +build esp-idf/ieee802154/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json + +build esp-idf/json/all: phony esp-idf/json/libjson.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip + +build esp-idf/lwip/all: phony esp-idf/lwip/liblwip.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls + +build esp-idf/mbedtls/all: phony esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/all + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls + +build esp-idf/mbedtls/mbedtls/all: phony esp-idf/mbedtls/mbedtls/include/all esp-idf/mbedtls/mbedtls/3rdparty/all esp-idf/mbedtls/mbedtls/library/all esp-idf/mbedtls/mbedtls/pkgconfig/all + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty + +build esp-idf/mbedtls/mbedtls/3rdparty/all: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/all esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/all: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/include + +build esp-idf/mbedtls/mbedtls/include/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library + +build esp-idf/mbedtls/mbedtls/library/all: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/pkgconfig + +build esp-idf/mbedtls/mbedtls/pkgconfig/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt + +build esp-idf/mqtt/all: phony esp-idf/mqtt/libmqtt.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt_manager + +build esp-idf/mqtt_manager/all: phony esp-idf/mqtt_manager/libmqtt_manager.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib + +build esp-idf/newlib/all: phony esp-idf/newlib/libnewlib.a esp-idf/newlib/src/port/all + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/src/port + +build esp-idf/newlib/src/port/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash + +build esp-idf/nvs_flash/all: phony esp-idf/nvs_flash/libnvs_flash.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_sec_provider + +build esp-idf/nvs_sec_provider/all: phony esp-idf/nvs_sec_provider/libnvs_sec_provider.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/openthread + +build esp-idf/openthread/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/perfmon + +build esp-idf/perfmon/all: phony esp-idf/perfmon/libperfmon.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c + +build esp-idf/protobuf-c/all: phony esp-idf/protobuf-c/libprotobuf-c.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm + +build esp-idf/protocomm/all: phony esp-idf/protocomm/libprotocomm.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread + +build esp-idf/pthread/all: phony esp-idf/pthread/libpthread.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser + +build esp-idf/rpc_job_parser/all: phony esp-idf/rpc_job_parser/librpc_job_parser.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rt + +build esp-idf/rt/all: phony esp-idf/rt/librt.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc + +build esp-idf/sdmmc/all: phony esp-idf/sdmmc/libsdmmc.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spiffs + +build esp-idf/spiffs/all: phony esp-idf/spiffs/libspiffs.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport + +build esp-idf/tcp_transport/all: phony esp-idf/tcp_transport/libtcp_transport.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/touch_element + +build esp-idf/touch_element/all: phony esp-idf/touch_element/libtouch_element.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ulp + +build esp-idf/ulp/all: phony + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity + +build esp-idf/unity/all: phony esp-idf/unity/libunity.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/usb + +build esp-idf/usb/all: phony esp-idf/usb/libusb.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs + +build esp-idf/vfs/all: phony esp-idf/vfs/libvfs.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling + +build esp-idf/wear_levelling/all: phony esp-idf/wear_levelling/libwear_levelling.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wifi_provisioning + +build esp-idf/wifi_provisioning/all: phony esp-idf/wifi_provisioning/libwifi_provisioning.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant + +build esp-idf/wpa_supplicant/all: phony esp-idf/wpa_supplicant/libwpa_supplicant.a + +# ============================================================================= + +############################################# +# Folder: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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: RERUN_CMAKE | C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/sources.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif_stack/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/ld/ld.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/error.c C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/port/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/openthread/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/build.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/component.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/dfu.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/idf.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/openocd.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project_description.json.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/targets.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/utilities.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/version.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/main/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/partitions.csv F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/app_update/otadata-flash_args.in esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/Vecmocon/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/sources.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif_stack/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/ld/ld.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/error.c C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/port/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/lib/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/openthread/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/.git C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/CMakeLists.txt C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/project_include.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/build.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/component.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/dfu.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/idf.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/openocd.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/project_description.json.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/targets.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/utilities.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/cmake/version.cmake C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Vecmocon/esp/v5.5.1/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/main/CMakeLists.txt F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/partitions.csv F$:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/app_update/otadata-flash_args.in esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in: 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..724b34e --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,62 @@ +# Install script for directory: F:/ESP_32_Projects/esp32-s3_fota_test_wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmake_install.cmake") +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) + string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") + file(WRITE "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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..f79b167 --- /dev/null +++ b/build/compile_commands.json @@ -0,0 +1,5786 @@ +[ +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/main -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -o CMakeFiles\\esp32-s3_fota_test_wifi.elf.dir\\project_elf_src_esp32s3.c.obj -c F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\build\\project_elf_src_esp32s3.c", + "file": "F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\build\\project_elf_src_esp32s3.c", + "output": "CMakeFiles\\esp32-s3_fota_test_wifi.elf.dir\\project_elf_src_esp32s3.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\eri.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\eri.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xt_trax.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xt_trax.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_context.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_context.S", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_context.S.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_intr_asm.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_intr_asm.S", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr_asm.S.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_intr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_intr.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_vectors.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_vectors.S", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_vectors.S.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_glitch_filter_ops.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_glitch_filter_ops.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\rtc_io.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\rtc_io.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\dedic_gpio.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\dedic_gpio.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\dedic_gpio.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\dedic_gpio.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_pin_glitch_filter.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_pin_glitch_filter.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_pin_glitch_filter.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_pin_glitch_filter.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_locks.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_locks.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_locks.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_locks.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_trace.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_trace.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_trace.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_trace.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_impl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_impl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_impl.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_impl.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\esp_crt_bundle\\esp_crt_bundle.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\\x509_crt_bundle.S.obj -c F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\build\\x509_crt_bundle.S", + "file": "F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\build\\x509_crt_bundle.S", + "output": "esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\\x509_crt_bundle.S.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\everest.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\everest.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\everest.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\everest.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\x25519.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\x25519.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\x25519.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\x25519.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\Hacl_Curve25519_joined.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\Hacl_Curve25519_joined.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\Hacl_Curve25519_joined.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\Hacl_Curve25519_joined.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m_driver_entrypoints.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m_driver_entrypoints.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m_driver_entrypoints.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m_driver_entrypoints.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m\\p256-m.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m\\p256-m.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m\\p256-m.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m\\p256-m.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aes.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aes.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aes.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aes.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesni.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesni.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesni.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesni.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesce.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesce.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesce.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesce.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aria.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aria.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aria.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aria.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1parse.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1parse.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1parse.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1parse.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1write.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1write.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1write.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1write.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\base64.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\base64.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\base64.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\base64.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_core.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_core.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_core.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_core.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod_raw.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod_raw.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\block_cipher.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\block_cipher.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\block_cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\block_cipher.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\camellia.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\camellia.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\camellia.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\camellia.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ccm.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ccm.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ccm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ccm.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chacha20.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chacha20.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chacha20.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chacha20.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chachapoly.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chachapoly.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chachapoly.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chachapoly.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher_wrap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher_wrap.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\constant_time.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\constant_time.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\constant_time.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\constant_time.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cmac.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cmac.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cmac.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cmac.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ctr_drbg.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ctr_drbg.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\des.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\des.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\des.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\des.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\dhm.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\dhm.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\dhm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\dhm.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdh.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdh.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdh.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdh.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdsa.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdsa.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdsa.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecjpake.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecjpake.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecjpake.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecjpake.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves_new.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves_new.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves_new.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves_new.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy_poll.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy_poll.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\error.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\error.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\gcm.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\gcm.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\gcm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\gcm.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hkdf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hkdf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hkdf.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hkdf.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hmac_drbg.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hmac_drbg.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lmots.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lmots.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lmots.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lmots.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lms.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lms.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lms.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lms.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md5.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md5.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md5.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md5.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\memory_buffer_alloc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\memory_buffer_alloc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\nist_kw.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\nist_kw.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\nist_kw.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\nist_kw.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\oid.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\oid.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\oid.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\oid.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\padlock.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\padlock.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\padlock.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\padlock.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pem.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pem.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pem.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pem.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_ecc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_ecc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_ecc.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_ecc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_wrap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_wrap.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs12.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs12.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs12.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs12.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs5.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs5.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs5.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs5.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkparse.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkparse.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkparse.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkparse.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkwrite.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkwrite.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkwrite.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkwrite.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform_util.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform_util.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform_util.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform_util.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\poly1305.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\poly1305.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\poly1305.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\poly1305.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_aead.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_aead.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_cipher.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_cipher.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_client.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_client.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_driver_wrappers_no_static.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers_no_static.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers_no_static.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_driver_wrappers_no_static.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ecp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ecp.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ffdh.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ffdh.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ffdh.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ffdh.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_hash.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_hash.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_mac.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_mac.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_pake.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_pake.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_rsa.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_rsa.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_se.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_se.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_slot_management.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_slot_management.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_storage.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_storage.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_its_file.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_its_file.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_util.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_util.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_util.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_util.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ripemd160.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ripemd160.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ripemd160.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ripemd160.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa_alt_helpers.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa_alt_helpers.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha1.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha1.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha1.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha1.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha256.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha256.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha256.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha256.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha512.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha512.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha512.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha512.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha3.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha3.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha3.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha3.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\threading.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\threading.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\threading.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\threading.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\timing.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\timing.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version_features.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version_features.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\pkcs7.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\pkcs7.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_create.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_create.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crl.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crt.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_csr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_csr.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_crt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_crt.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_csr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_csr.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\debug.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\debug.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_reader.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_reader.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_trace.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_trace.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cache.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cache.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ciphersuites.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ciphersuites.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_client.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_client.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cookie.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cookie.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_debug_helpers_generated.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_msg.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_msg.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ticket.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ticket.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_client.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_server.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_keys.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_server.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_client.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_generic.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\net_sockets.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\net_sockets.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\net_sockets.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\net_sockets.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\\\"esp32-s3_fota_test_wifi\\\" -DPROJECT_VER=\\\"1\\\" -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_app_format\\esp_app_desc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_ops.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\app_update\\esp_ota_ops.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_app_desc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\app_update\\esp_ota_app_desc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\app_update\\esp_ota_app_desc.c", + "output": "esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_app_desc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_partition\\partition.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_partition\\partition.c", + "output": "esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition_target.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_partition\\partition_target.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_partition\\partition_target.c", + "output": "esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition_target.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_table.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_table.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_fields.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_utility.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_startup.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_startup.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_startup.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_startup.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\secure_boot_secure_features.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\secure_boot_secure_features.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\secure_boot_secure_features.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\secure_boot_secure_features.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_mmu_map.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_mmu_map.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\port\\esp32s3\\ext_mem_layout.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\port\\esp32s3\\ext_mem_layout.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\port\\esp32s3\\ext_mem_layout.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\port\\esp32s3\\ext_mem_layout.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_msync.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_cache_msync.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_cache_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\heap_align_hw.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\heap_align_hw.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_brownout_hook.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_brownout_hook.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp32s3\\spi_flash_oct_flash_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\esp32s3\\spi_flash_oct_flash_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\esp32s3\\spi_flash_oct_flash_init.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp32s3\\spi_flash_oct_flash_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_hpm_enable.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_hpm_enable.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_hpm_enable.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_hpm_enable.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_drivers.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_drivers.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_generic.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_generic.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_issi.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_issi.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_gd.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_gd.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_winbond.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_winbond.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_boya.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_boya.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic_opi.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic_opi.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_th.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_th.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\memspi_host_driver.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\memspi_host_driver.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\cache_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\cache_utils.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\cache_utils.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_mmap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_mmap.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_mmap.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_ops.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_ops.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_ops.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\esp_flash_api.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\esp_flash_spi_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_os_func_app.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_os_func_noos.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\crosscore_int.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\crosscore_int.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\crosscore_int.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\crosscore_int.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_ipc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_ipc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_ipc.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_ipc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system_console.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system_console.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system_console.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system_console.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\freertos_hooks.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\freertos_hooks.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\freertos_hooks.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\freertos_hooks.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\int_wdt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\int_wdt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\int_wdt.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\int_wdt.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\panic.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\panic.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\panic.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\panic.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\startup.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\startup.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup_funcs.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\startup_funcs.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\startup_funcs.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup_funcs.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\system_time.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\system_time.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\system_time.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\system_time.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\stack_check.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\stack_check.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\stack_check.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\stack_check.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\ubsan.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\ubsan.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\ubsan.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\ubsan.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\xt_wdt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\xt_wdt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\xt_wdt.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\xt_wdt.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt_impl_timergroup.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\cpu_start.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\cpu_start.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\panic_handler.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\panic_handler.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_system_chip.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\esp_system_chip.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\image_process.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\image_process.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_ipc_isr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\esp_ipc_isr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_port.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_port.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_handler.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_routines.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_arch.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_arch.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_handler_asm.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack_asm.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers_asm.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_stubs.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_stubs.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\trax.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\trax.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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\\esp32s3\\highint_hdl.S.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\highint_hdl.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\highint_hdl.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\highint_hdl.S.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\clk.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\clk.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\clk.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\clk.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\reset_reason.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\reset_reason.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\reset_reason.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\reset_reason.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\system_internal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\system_internal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\system_internal.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\system_internal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\cache_err_int.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\cache_err_int.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\cache_err_int.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\cache_err_int.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\apb_backup_dma.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\apb_backup_dma.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\apb_backup_dma.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\apb_backup_dma.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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_cache_writeback_esp32s3.S.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mpu_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mpu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\color_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\color_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\color_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\color_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_iram.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_iram.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_iram.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_encrypt_hal_iram.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_encrypt_hal_iram.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_encrypt_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_encrypt_hal_iram.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\clk_tree_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\clk_tree_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\clk_tree_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\clk_tree_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\systimer_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\systimer_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\systimer_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\systimer_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\uart_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\uart_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal_iram.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\uart_hal_iram.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\uart_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal_iram.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gpio_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\gpio_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\gpio_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gpio_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rtc_io_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\rtc_io_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\rtc_io_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rtc_io_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\timer_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\timer_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\timer_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\timer_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal_iram.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal_iram.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal_iram.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal_iram.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal_iram.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal_iram.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rmt_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\rmt_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\rmt_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rmt_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\pcnt_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\pcnt_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\pcnt_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\pcnt_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mcpwm_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mcpwm_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mcpwm_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mcpwm_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uhci_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\uhci_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\uhci_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uhci_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal_sja1000.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\twai_hal_sja1000.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\twai_hal_sja1000.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal_sja1000.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_top.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_top.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_top.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_top.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_ahb_v1.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_ahb_v1.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_ahb_v1.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_ahb_v1.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2s_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2s_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2s_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2s_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdm_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\sdm_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\sdm_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdm_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdmmc_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\sdmmc_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\sdmmc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdmmc_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_hal_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_hal_common.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_oneshot_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_oneshot_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_oneshot_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_oneshot_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\lcd_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\lcd_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\lcd_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\lcd_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpi_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mpi_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\mpi_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpi_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sha_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\sha_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\sha_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sha_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\aes_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\aes_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\aes_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\aes_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\brownout_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\brownout_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\brownout_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\brownout_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal_iram.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_hal_iram.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal_iram.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal_iram.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal_iram.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal_iram.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hd_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hd_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hd_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hd_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_gpspi.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_gpspi.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_gpspi.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_gpspi.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hmac_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\hmac_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\hmac_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hmac_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ds_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\ds_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\ds_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ds_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cam_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\cam_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\cam_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cam_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_serial_jtag_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\usb_serial_jtag_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\usb_serial_jtag_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_serial_jtag_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_dwc_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\usb_dwc_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\usb_dwc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_dwc_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_wrap_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\usb_wrap_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\usb_wrap_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_wrap_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\touch_sensor_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\touch_sensor_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\touch_sensor_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\touch_sensor_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\touch_sensor_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\touch_sensor_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\touch_sensor_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\touch_sensor_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\touch_sens_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\touch_sens_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\touch_sens_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\touch_sens_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\xt_wdt_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\xt_wdt_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\xt_wdt_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\xt_wdt_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\rtc_cntl_hal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\rtc_cntl_hal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\rtc_cntl_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\rtc_cntl_hal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_timestamp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_timestamp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_timestamp.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_timestamp.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_lock.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_lock.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_lock.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_lock.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\util.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\util.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\util.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_write.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_write.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_write.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_write.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\log_level.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\log_level.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\tag_log_level.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\tag_log_level.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_base.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_base.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_base.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_base.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_init.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\multi_heap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\multi_heap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\multi_heap.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\multi_heap.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\tlsf\\tlsf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\tlsf\\tlsf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\tlsf\\tlsf.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\tlsf\\tlsf.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\memory_layout_utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\port\\memory_layout_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\port\\memory_layout_utils.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\memory_layout_utils.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32s3\\memory_layout.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\port\\esp32s3\\memory_layout.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\heap\\port\\esp32s3\\memory_layout.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32s3\\memory_layout.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\dedic_gpio_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\dedic_gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\temperature_sensor_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\temperature_sensor_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\touch_sensor_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\touch_sensor_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_dwc_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\usb_dwc_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\usb_dwc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_dwc_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rtc_io_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rtc_io_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\cam_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\cam_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\cam_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\cam_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\power_supply_periph.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\power_supply_periph.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\power_supply_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\power_supply_periph.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\init.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_hmac.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_hmac.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_hmac.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_hmac.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_ds.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_ds.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_ds.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_ds.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_lock.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_crypto_lock.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_periph_clk.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_crypto_periph_clk.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_cpu_intr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_cpu_intr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_cpu_intr.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_cpu_intr.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\cpu_region_protect.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\cpu_region_protect.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clk.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_clk.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_ctrl_os.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\clk_ctrl_os.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\hw_random.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\hw_random.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\intr_alloc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\intr_alloc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mac_addr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mac_addr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\periph_ctrl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\periph_ctrl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\revision.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\revision.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\revision.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\revision.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_module.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\rtc_module.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\regi2c_ctrl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\regi2c_ctrl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_gpio_reserve.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_gpio_reserve.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sar_periph_ctrl_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sar_periph_ctrl_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sar_periph_ctrl_common.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sar_periph_ctrl_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\io_mux.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\io_mux.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\io_mux.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\io_mux.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_clk_tree.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_clk_tree.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_clk_tree.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_clk_tree.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_dma_utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_dma_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_dma_utils.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_dma_utils.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_link.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma_link.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma_link.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_link.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_bus_lock.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\spi_bus_lock.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\clk_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_clk_tree_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp_clk_tree_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_share_hw_ctrl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\spi_share_hw_ctrl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\adc_share_hw_ctrl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\adc_share_hw_ctrl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modem.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_modem.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modes.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_modes.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_console.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_console.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_usb.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_usb.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_gpio.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_gpio.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_event.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_event.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\deprecated\\gdma_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\deprecated\\gdma_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\deprecated\\gdma_legacy.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\deprecated\\gdma_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_async_memcpy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_async_memcpy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_async_memcpy.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_async_memcpy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\async_memcpy_gdma.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\async_memcpy_gdma.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\async_memcpy_gdma.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\async_memcpy_gdma.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\systimer.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\systimer.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\systimer.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\systimer.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\mspi_timing_tuning.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\mspi_timing_tuning.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_wake_stub.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_wake_stub.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clock_output.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_clock_output.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\power_supply\\brownout.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\power_supply\\brownout.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\sar_periph_ctrl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\sar_periph_ctrl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\sar_periph_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\sar_periph_ctrl.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_memprot.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_memprot.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_memprot.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_memprot.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_memprot_conv.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp_memprot_conv.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp_memprot_conv.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_memprot_conv.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_config.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_config.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_config.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_config.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_by_mspi_delay.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_by_mspi_delay.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_by_mspi_delay.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_by_mspi_delay.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32s3\\sleep_cpu.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32s3\\sleep_cpu.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32s3\\sleep_cpu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32s3\\sleep_cpu.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\heap_idf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\heap_idf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\heap_idf.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\heap_idf.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\app_startup.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\app_startup.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\app_startup.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\app_startup.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\port_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\port_common.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_systick.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\port_systick.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\port_systick.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_systick.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\list.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\list.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\queue.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\queue.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\tasks.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\tasks.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\timers.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\timers.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\event_groups.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\event_groups.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\stream_buffer.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\stream_buffer.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\port.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\port.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\freertos_compatibility.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\freertos_compatibility.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\freertos_compatibility.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\freertos_compatibility.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions_event_groups.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\idf_additions_event_groups.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\init.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\abort.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\abort.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\abort.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\abort.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\assert.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\assert.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\assert.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\assert.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\heap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\heap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\heap.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\heap.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\locks.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\locks.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\locks.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\locks.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\poll.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\poll.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\poll.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\poll.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\pthread.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\pthread.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\pthread.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\pthread.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\random.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\random.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\random.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\random.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\getentropy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\getentropy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\getentropy.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\getentropy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\termios.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\termios.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\termios.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\termios.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\stdatomic.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\stdatomic.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\stdatomic.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\stdatomic.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\time.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\time.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\time.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\time.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\sysconf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\sysconf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\sysconf.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\sysconf.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\realpath.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\realpath.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\realpath.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\realpath.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\scandir.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\scandir.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\scandir.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\scandir.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\syscalls.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\syscalls.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\syscalls.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\syscalls.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_syscalls.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_syscalls.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_syscalls.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_syscalls.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\port\\esp_time_impl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\port\\esp_time_impl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\port\\esp_time_impl.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\port\\esp_time_impl.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\flockfile.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\flockfile.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\flockfile.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\flockfile.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_init.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\newlib_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\newlib_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\newlib_init.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\newlib_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_cond_var.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_cond_var.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_cond_var.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_cond_var.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_local_storage.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_local_storage.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_local_storage.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_local_storage.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_rwlock.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_rwlock.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_rwlock.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_rwlock.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_semaphore.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_semaphore.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_semaphore.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_semaphore.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_guards.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_guards.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_init.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_init.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_init.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_init.cpp.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\ets_timer_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\ets_timer_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\system_time.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\system_time.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_systimer.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_systimer.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_systimer.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_systimer.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\ringbuf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_ringbuf\\ringbuf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_ringbuf\\ringbuf.c", + "output": "esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\ringbuf.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_wakeup.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart_wakeup.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uhci.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uhci.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uhci.c", + "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uhci.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_vfs.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart_vfs.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\app_trace\\app_trace.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\app_trace\\app_trace.c", + "output": "esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace_util.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\app_trace\\app_trace_util.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\app_trace\\app_trace_util.c", + "output": "esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace_util.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\host_file_io.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\app_trace\\host_file_io.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\app_trace\\host_file_io.c", + "output": "esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\host_file_io.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\port\\port_uart.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\app_trace\\port\\port_uart.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\app_trace\\port\\port_uart.c", + "output": "esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\port\\port_uart.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\default_event_loop.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_event\\default_event_loop.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_event\\esp_event.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_event\\esp_event.c", + "output": "esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event_private.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_event\\esp_event_private.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_api.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_api.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_cxx_api.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_cxx_api.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_item_hash_list.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_item_hash_list.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_page.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_page.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_pagemanager.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_pagemanager.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_storage.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_storage.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_simple.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_simple.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_locked.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_locked.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_partition.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_lookup.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_lookup.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_manager.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_manager.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_types.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_types.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_platform.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_platform.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_encrypted_partition.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_encrypted_partition.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader_aes.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader_aes.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader_xts_aes.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader_xts_aes.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_override.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\phy_override.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\lib_printf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\lib_printf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\phy_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\phy_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\esp32s3\\phy_init_data.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\esp32s3\\phy_init_data.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\esp32s3\\phy_init_data.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\esp32s3\\phy_init_data.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\btbb_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\btbb_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag.c", + "output": "esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_connection_monitor.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_connection_monitor.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_connection_monitor.c", + "output": "esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_connection_monitor.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_vfs.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_vfs.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_vfs.c", + "output": "esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_vfs.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_vfs_console\\CMakeFiles\\__idf_esp_vfs_console.dir\\vfs_console.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_vfs_console\\vfs_console.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_vfs_console\\vfs_console.c", + "output": "esp-idf\\esp_vfs_console\\CMakeFiles\\__idf_esp_vfs_console.dir\\vfs_console.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_eventfd.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs_eventfd.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs_eventfd.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_eventfd.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_semihost.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs_semihost.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs_semihost.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_semihost.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\nullfs.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\vfs\\nullfs.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\vfs\\nullfs.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\nullfs.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\sntp\\sntp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\sntp\\sntp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\sntp\\sntp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\sntp\\sntp.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_lib.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_lib.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_msg.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_msg.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\err.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\err.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\err.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\err.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\if_api.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\if_api.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netbuf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netbuf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netbuf.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netbuf.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netdb.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netdb.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netdb.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netdb.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netifapi.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netifapi.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netifapi.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netifapi.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\sockets.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\sockets.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\sockets.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\sockets.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\tcpip.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\tcpip.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\tcpip.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\tcpip.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\sntp\\sntp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\apps\\sntp\\sntp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\netbiosns\\netbiosns.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\apps\\netbiosns\\netbiosns.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\def.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\def.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\def.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\def.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\dns.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\dns.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\dns.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\dns.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\inet_chksum.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\inet_chksum.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\init.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ip.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ip.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ip.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ip.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\mem.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\mem.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\mem.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\mem.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\memp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\memp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\memp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\memp.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\netif.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\netif.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\netif.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\netif.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\pbuf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\pbuf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\pbuf.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\pbuf.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\raw.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\raw.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\raw.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\raw.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\stats.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\stats.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\stats.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\stats.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\sys.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\sys.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\sys.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\sys.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_in.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_in.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_out.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_out.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\timeouts.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\timeouts.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\timeouts.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\timeouts.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\udp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\udp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\udp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\udp.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\autoip.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\autoip.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\dhcp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\dhcp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\etharp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\etharp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\icmp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\icmp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\igmp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\igmp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_napt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_napt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_addr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_addr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_frag.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_frag.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\dhcp6.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\dhcp6.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ethip6.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ethip6.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\icmp6.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\icmp6.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\inet6.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\inet6.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_addr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_addr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_frag.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_frag.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\mld6.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\mld6.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\nd6.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\nd6.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ethernet.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ethernet.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ethernet.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ethernet.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif_fdb.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif_fdb.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\slipif.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\slipif.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\slipif.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\slipif.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\auth.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\auth.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ccp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ccp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-md5.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-md5.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-new.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-new.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-array-parameter -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap_ms.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap_ms.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\demand.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\demand.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ecp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ecp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eui64.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eui64.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\fsm.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\fsm.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipcp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipcp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipv6cp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipv6cp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\lcp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\lcp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\magic.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\magic.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\mppe.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\mppe.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\multilink.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\multilink.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ppp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ppp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppapi.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppapi.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppcrypt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppcrypt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppoe.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppoe.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppol2tp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppol2tp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppos.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppos.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\upap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\upap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\vj.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\vj.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\tcp_isn_default.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\hooks\\tcp_isn_default.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\lwip_default_hooks.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\hooks\\lwip_default_hooks.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\debug\\lwip_debug.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\debug\\lwip_debug.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\debug\\lwip_debug.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\debug\\lwip_debug.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\sockets_ext.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\sockets_ext.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\sockets_ext.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\sockets_ext.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\freertos\\sys_arch.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\freertos\\sys_arch.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\freertos\\sys_arch.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\freertos\\sys_arch.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\if_index.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\if_index.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\if_index.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\if_index.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\acd_dhcp_check.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\acd_dhcp_check.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\acd_dhcp_check.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\acd_dhcp_check.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32xx\\vfs_lwip.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\esp32xx\\vfs_lwip.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\esp32xx\\vfs_lwip.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32xx\\vfs_lwip.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\esp_ping.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\esp_ping.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\esp_ping.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\esp_ping.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\ping.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\ping.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping_sock.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\ping_sock.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\ping_sock.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping_sock.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\des.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\des.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md4.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md4.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md5.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md5.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\dhcpserver\\dhcpserver.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\dhcpserver\\dhcpserver.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_handlers.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\esp_netif_handlers.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_objects.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\esp_netif_objects.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_defaults.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\esp_netif_defaults.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_sntp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_sntp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip_defaults.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip_defaults.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\wlanif.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\netif\\wlanif.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\ethernetif.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\netif\\ethernetif.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\esp_pbuf_ref.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\netif\\esp_pbuf_ref.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\os_xtensa.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\port\\os_xtensa.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\eloop.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\port\\eloop.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\port\\eloop.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\eloop.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ap_config.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ap_config.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_1x.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_1x.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth_ie.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth_ie.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\pmksa_cache_auth.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\ap\\pmksa_cache_auth.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\sta_info.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\ap\\sta_info.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_11.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_11.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\comeback_token.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\ap\\comeback_token.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\dragonfly.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\common\\dragonfly.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\wpa_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\common\\wpa_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\bitfield.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\utils\\bitfield.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-siv.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-siv.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-kdf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-kdf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ccmp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ccmp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-gcm.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-gcm.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\crypto_ops.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\crypto_ops.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_group5.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_group5.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_groups.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_groups.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ms_funcs.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ms_funcs.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tlsprf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tlsprf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-tlsprf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-tlsprf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-tlsprf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-tlsprf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-prf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-prf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-prf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-prf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-prf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-prf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\md4-internal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\md4-internal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tprf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tprf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_common\\eap_wsc_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_common\\eap_wsc_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\ieee802_11_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\common\\ieee802_11_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\chap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\chap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_mschapv2.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_mschapv2.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_ttls.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_ttls.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\mschapv2.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\mschapv2.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_pac.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_pac.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\pmksa_cache.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\pmksa_cache.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa_ie.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa_ie.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\base64.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\utils\\base64.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\utils\\common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\ext_password.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\utils\\ext_password.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\uuid.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\utils\\uuid.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpabuf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpabuf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpa_debug.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpa_debug.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\json.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\utils\\json.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_build.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_build.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_parse.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_parse.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_process.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_process.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_dev_attr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_dev_attr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_enrollee.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_enrollee.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae_pk.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae_pk.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_eap_client.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_eap_client.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa2_api_port.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa2_api_port.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa_main.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa_main.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpas_glue.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpas_glue.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wps.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wps.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa3.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa3.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_owe.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_owe.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_hostap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_hostap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\tls_mbedtls.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\tls_mbedtls.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\fastpsk.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\fastpsk.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\fastpsk.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\fastpsk.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\rc4.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\rc4.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\des-internal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\des-internal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\fastpbkdf2.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\fastpbkdf2.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-wrap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-wrap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-unwrap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-unwrap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-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_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.5.1\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-ccm.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-ccm.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\esp32s3\\esp_coex_adapter.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_coex\\esp32s3\\esp_coex_adapter.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_coex\\esp32s3\\esp_coex_adapter.c", + "output": "esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\esp32s3\\esp_coex_adapter.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist_debug_diagram.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_coex\\src\\coexist_debug_diagram.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist_debug.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_coex\\src\\coexist_debug.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\lib_printf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\lib_printf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\mesh_event.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\mesh_event.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\smartconfig.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\smartconfig.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\wifi_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\wifi_default.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_netif.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\wifi_netif.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default_ap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\wifi_default_ap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\esp32s3\\esp_adapter.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\esp32s3\\esp_adapter.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\esp32s3\\esp_adapter.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\esp32s3\\esp_adapter.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\regulatory\\esp_wifi_regulatory.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\regulatory\\esp_wifi_regulatory.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig_ack.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\smartconfig_ack.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_master.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_master.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave_hd.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave_hd.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave_hd.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave_hd.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub.c", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub_transport.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub_transport.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\packet.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_gdbstub\\src\\packet.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_gdbstub\\src\\packet.c", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\packet.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\gdbstub_xtensa.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\gdbstub_xtensa.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\gdbstub-entry.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/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:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\xt_debugexception.S", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity\\src\\unity.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity\\src\\unity.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity\\src\\unity.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity\\src\\unity.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_compat.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_compat.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_compat.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_compat.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_runner.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_runner.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_runner.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_runner.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_freertos.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_utils_freertos.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_utils_freertos.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_freertos.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_cache.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_utils_cache.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_utils_cache.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_cache.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_memory.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_utils_memory.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_utils_memory.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_memory.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_port_esp32.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_port_esp32.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\unity_port_esp32.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_port_esp32.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\port\\esp\\unity_utils_memory_esp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\unity\\port\\esp\\unity_utils_memory_esp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\\CMock\\src\\cmock.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\cmock\\CMock\\src\\cmock.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\cmock\\CMock\\src\\cmock.c", + "output": "esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\\CMock\\src\\cmock.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\commands.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\commands.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\commands.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\commands.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_common.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_internal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_repl_internal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_repl_internal.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_internal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\split_argv.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\split_argv.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\split_argv.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\split_argv.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\linenoise\\linenoise.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\linenoise\\linenoise.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\linenoise\\linenoise.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\linenoise\\linenoise.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_chip.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_repl_chip.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_repl_chip.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_chip.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_cmd.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_cmd.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_cmd.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_cmd.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_date.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_date.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_date.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_date.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dbl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_dbl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_dbl.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dbl.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dstr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_dstr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_dstr.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dstr.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_end.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_end.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_end.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_end.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_file.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_file.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_file.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_file.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_hashtable.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_hashtable.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_hashtable.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_hashtable.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_int.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_int.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_int.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_int.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_lit.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_lit.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_lit.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_lit.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rem.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_rem.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_rem.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rem.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rex.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_rex.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_rex.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rex.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_str.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_str.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_str.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_str.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_utils.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_utils.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\argtable3.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\argtable3.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\argtable3.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\argtable3.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_pcnt\\CMakeFiles\\__idf_esp_driver_pcnt.dir\\src\\pulse_cnt.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_pcnt\\src\\pulse_cnt.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cmpr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cmpr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_com.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_com.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_fault.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_fault.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_gen.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_gen.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_oper.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_oper.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_sync.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_sync.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_timer.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_timer.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_std.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_std.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_pdm.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_pdm.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_tdm.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_tdm.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_tdm.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_tdm.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_platform.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_platform.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_cmd.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_cmd.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_common.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_init.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_io.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_io.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_io.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_io.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_mmc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_mmc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_sd.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_sd.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_sd.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_sd.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sd_pwr_ctrl\\sd_pwr_ctrl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sd_pwr_ctrl\\sd_pwr_ctrl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sdmmc_transaction.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdmmc\\src\\sdmmc_transaction.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdmmc\\src\\sdmmc_transaction.c", + "output": "esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sdmmc_transaction.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sdmmc_host.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdmmc\\src\\sdmmc_host.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdmmc\\src\\sdmmc_host.c", + "output": "esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sdmmc_host.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_crc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_crc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_host.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_host.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_transaction.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_transaction.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_bytes.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_bytes.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_copy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_copy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_simple.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_simple.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_rx.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_rx.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_tx.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_tx.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor.c", + "output": "esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdm\\CMakeFiles\\__idf_esp_driver_sdm.dir\\src\\sdm.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdm\\src\\sdm.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_master.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_master.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_slave.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_slave.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_ledc\\CMakeFiles\\__idf_esp_driver_ledc.dir\\src\\ledc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_ledc\\src\\ledc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_twai\\esp_twai.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai_onchip.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_twai\\esp_twai_onchip.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_dma_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_dma_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_dma_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_dma_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\timer_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\timer_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\timer_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\timer_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c\\i2c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\i2c\\i2c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\i2c\\i2c.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c\\i2c.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\i2s_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\i2s_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\i2s_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\i2s_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\mcpwm_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\mcpwm_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\mcpwm_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\mcpwm_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\pcnt_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\pcnt_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\pcnt_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\pcnt_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rmt_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rmt_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rmt_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rmt_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\sigma_delta_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\sigma_delta_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\sigma_delta_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\sigma_delta_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rtc_temperature_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rtc_temperature_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rtc_temperature_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rtc_temperature_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\touch_sensor_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\touch_sensor\\touch_sensor_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\esp32s3\\touch_sensor.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\touch_sensor\\esp32s3\\touch_sensor.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\touch_sensor\\esp32s3\\touch_sensor.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\esp32s3\\touch_sensor.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai\\twai.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\twai\\twai.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\driver\\twai\\twai.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai\\twai.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\\http_parser.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\http_parser\\http_parser.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\http_parser\\http_parser.c", + "output": "esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\\http_parser.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp-tls\\esp_tls.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp-tls\\esp_tls.c", + "output": "esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp-tls-crypto\\esp_tls_crypto.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp-tls\\esp-tls-crypto\\esp_tls_crypto.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_error_capture.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp-tls\\esp_tls_error_capture.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_platform_port.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp-tls\\esp_tls_platform_port.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_mbedtls.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp-tls\\esp_tls_mbedtls.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_oneshot.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_oneshot.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_oneshot.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_oneshot.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_common.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_cali.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_cali.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali_curve_fitting.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_cali_curve_fitting.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp_adc_cal_common_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\deprecated\\esp_adc_cal_common_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\deprecated\\esp_adc_cal_common_legacy.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp_adc_cal_common_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_continuous.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_continuous.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_continuous.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_continuous.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_monitor.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_monitor.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_monitor.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_monitor.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\gdma\\adc_dma.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\gdma\\adc_dma.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\gdma\\adc_dma.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\gdma\\adc_dma.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_filter.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_filter.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_filter.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_filter.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32s3\\curve_fitting_coefficients.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\esp32s3\\curve_fitting_coefficients.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\esp32s3\\curve_fitting_coefficients.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32s3\\curve_fitting_coefficients.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp32s3\\esp_adc_cal_legacy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\deprecated\\esp32s3\\esp_adc_cal_legacy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_adc\\deprecated\\esp32s3\\esp_adc_cal_legacy.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp32s3\\esp_adc_cal_legacy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\esp_cam_ctlr.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_cam\\esp_cam_ctlr.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\dvp_share_ctrl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_cam\\dvp_share_ctrl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\dvp\\src\\esp_cam_ctlr_dvp_gdma.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_cam\\dvp\\src\\esp_cam_ctlr_dvp_gdma.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_cam\\dvp\\src\\esp_cam_ctlr_dvp_gdma.c", + "output": "esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\dvp\\src\\esp_cam_ctlr_dvp_gdma.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\dvp\\src\\esp_cam_ctlr_dvp_cam.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_cam\\dvp\\src\\esp_cam_ctlr_dvp_cam.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_cam\\dvp\\src\\esp_cam_ctlr_dvp_cam.c", + "output": "esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\dvp\\src\\esp_cam_ctlr_dvp_cam.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_touch_sens\\CMakeFiles\\__idf_esp_driver_touch_sens.dir\\common\\touch_sens_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_touch_sens\\common\\touch_sens_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_touch_sens\\CMakeFiles\\__idf_esp_driver_touch_sens.dir\\hw_ver2\\touch_version_specific.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_touch_sens\\hw_ver2\\touch_version_specific.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_touch_sens\\hw_ver2\\touch_version_specific.c", + "output": "esp-idf\\esp_driver_touch_sens\\CMakeFiles\\__idf_esp_driver_touch_sens.dir\\hw_ver2\\touch_version_specific.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_eth\\src\\esp_eth.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\phy\\esp_eth_phy_802_3.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_eth\\src\\phy\\esp_eth_phy_802_3.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_netif_glue.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_eth\\src\\esp_eth_netif_glue.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidd.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hid\\src\\esp_hidd.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidh.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hid\\src\\esp_hidh.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hid_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_hid\\src\\esp_hid_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\tcp_transport\\transport.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\tcp_transport\\transport.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ssl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\tcp_transport\\transport_ssl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\tcp_transport\\transport_ssl.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ssl.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_internal.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\tcp_transport\\transport_internal.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\tcp_transport\\transport_internal.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_internal.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_socks_proxy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\tcp_transport\\transport_socks_proxy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ws.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\tcp_transport\\transport_ws.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\tcp_transport\\transport_ws.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ws.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\esp_http_client.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_http_client\\esp_http_client.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_auth.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_http_client\\lib\\http_auth.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_header.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_http_client\\lib\\http_header.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_http_client\\lib\\http_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_main.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_http_server\\src\\httpd_main.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_parse.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_http_server\\src\\httpd_parse.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_sess.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_http_server\\src\\httpd_sess.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_txrx.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_http_server\\src\\httpd_txrx.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_uri.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_http_server\\src\\httpd_uri.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_ws.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_http_server\\src\\httpd_ws.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\util\\ctrl_sock.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_http_server\\src\\util\\ctrl_sock.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\\src\\esp_https_ota.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_https_ota\\src\\esp_https_ota.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_https_server\\CMakeFiles\\__idf_esp_https_server.dir\\src\\https_server.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_https_server\\src\\https_server.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_nt35510.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_nt35510.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_nt35510.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_nt35510.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ssd1306.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ssd1306.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_st7789.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_st7789.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ops.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ops.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i2c\\esp_lcd_panel_io_i2c_v1.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\i2c\\esp_lcd_panel_io_i2c_v1.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\i2c\\esp_lcd_panel_io_i2c_v1.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i2c\\esp_lcd_panel_io_i2c_v1.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i2c\\esp_lcd_panel_io_i2c_v2.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\i2c\\esp_lcd_panel_io_i2c_v2.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\i2c\\esp_lcd_panel_io_i2c_v2.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i2c\\esp_lcd_panel_io_i2c_v2.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\spi\\esp_lcd_panel_io_spi.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\spi\\esp_lcd_panel_io_spi.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i80\\esp_lcd_panel_io_i80.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\i80\\esp_lcd_panel_io_i80.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\i80\\esp_lcd_panel_io_i80.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i80\\esp_lcd_panel_io_i80.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/priv_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\rgb\\esp_lcd_panel_rgb.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\rgb\\esp_lcd_panel_rgb.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_lcd\\rgb\\esp_lcd_panel_rgb.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\rgb\\esp_lcd_panel_rgb.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\\protobuf-c\\protobuf-c\\protobuf-c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protobuf-c\\protobuf-c\\protobuf-c\\protobuf-c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\common\\protocomm.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\common\\protocomm.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\common\\protocomm.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\common\\protocomm.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\constants.pb-c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\proto-c\\constants.pb-c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec0.pb-c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\proto-c\\sec0.pb-c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec1.pb-c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\proto-c\\sec1.pb-c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec2.pb-c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\proto-c\\sec2.pb-c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\session.pb-c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\proto-c\\session.pb-c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_console.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_console.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_console.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_console.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_httpd.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_httpd.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_httpd.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_httpd.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security0.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\security\\security0.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\security\\security0.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security0.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security1.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\security\\security1.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\security\\security1.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security1.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security2.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\security\\security2.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\security\\security2.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security2.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp_mpi.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp_mpi.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_handler.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_handler.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\proto-c\\esp_local_ctrl.pb-c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_local_ctrl\\proto-c\\esp_local_ctrl.pb-c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_transport_httpd.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_transport_httpd.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_init.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_init.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_init.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_common.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_common.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_common.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_common.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_flash.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_flash.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_flash.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_flash.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_uart.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_uart.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_uart.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_uart.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_elf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_elf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_elf.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_elf.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_binary.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_binary.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_binary.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_binary.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_sha.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_sha.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_sha.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_sha.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_crc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_crc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\core_dump_crc.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_crc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\port\\xtensa\\core_dump_port.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\port\\xtensa\\core_dump_port.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\espcoredump\\src\\port\\xtensa\\core_dump_port.c", + "output": "esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\port\\xtensa\\core_dump_port.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\Partition.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\Partition.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\Partition.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\Partition.cpp.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\SPI_Flash.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\SPI_Flash.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\SPI_Flash.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\SPI_Flash.cpp.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Perf.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\WL_Ext_Perf.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Safe.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\WL_Ext_Safe.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Flash.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\WL_Flash.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\WL_Flash.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Flash.cpp.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\crc32.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\crc32.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\crc32.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\crc32.cpp.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\wear_levelling.cpp.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\wear_levelling.cpp", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wear_levelling\\wear_levelling.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\wear_levelling.cpp.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\diskio\\diskio.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\diskio\\diskio.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_rawflash.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\diskio\\diskio_rawflash.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\diskio\\diskio_rawflash.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_rawflash.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_wl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\diskio\\diskio_wl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\diskio\\diskio_wl.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_wl.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ff.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\src\\ff.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\src\\ff.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ff.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ffunicode.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\src\\ffunicode.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\src\\ffunicode.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ffunicode.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\port\\freertos\\ffsystem.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\port\\freertos\\ffsystem.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\port\\freertos\\ffsystem.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\port\\freertos\\ffsystem.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_sdmmc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\diskio\\diskio_sdmmc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\diskio\\diskio_sdmmc.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_sdmmc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\vfs\\vfs_fat.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\vfs\\vfs_fat.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_sdmmc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_sdmmc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_sdmmc.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_sdmmc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_spiflash.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_spiflash.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_spiflash.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_spiflash.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\json\\cJSON\\cJSON.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\json\\cJSON\\cJSON.c", + "output": "esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON_Utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\json\\cJSON\\cJSON_Utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\json\\cJSON\\cJSON_Utils.c", + "output": "esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON_Utils.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\mqtt_client.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mqtt\\esp-mqtt\\mqtt_client.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mqtt\\esp-mqtt\\mqtt_client.c", + "output": "esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\mqtt_client.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_msg.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_msg.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_msg.c", + "output": "esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_msg.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_outbox.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_outbox.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_outbox.c", + "output": "esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_outbox.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\platform_esp32_idf.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\platform_esp32_idf.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\platform_esp32_idf.c", + "output": "esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\platform_esp32_idf.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\nvs_sec_provider\\CMakeFiles\\__idf_nvs_sec_provider.dir\\nvs_sec_provider.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\nvs_sec_provider\\nvs_sec_provider.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_access.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\perfmon\\xtensa_perfmon_access.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\perfmon\\xtensa_perfmon_access.c", + "output": "esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_access.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_apis.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\perfmon\\xtensa_perfmon_apis.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\perfmon\\xtensa_perfmon_apis.c", + "output": "esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_apis.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_masks.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\perfmon\\xtensa_perfmon_masks.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\perfmon\\xtensa_perfmon_masks.c", + "output": "esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_masks.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_mqueue.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\rt\\FreeRTOS_POSIX_mqueue.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\rt\\FreeRTOS_POSIX_mqueue.c", + "output": "esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_mqueue.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_utils.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\rt\\FreeRTOS_POSIX_utils.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\rt\\FreeRTOS_POSIX_utils.c", + "output": "esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_utils.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs_api.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs_api.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs_api.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs_api.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_cache.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_cache.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_cache.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_cache.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_check.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_check.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_check.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_check.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_gc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_gc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_gc.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_gc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_hydrogen.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_hydrogen.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_hydrogen.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_hydrogen.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_nucleus.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_nucleus.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_nucleus.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_nucleus.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\esp_spiffs.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\esp_spiffs.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\spiffs\\esp_spiffs.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\esp_spiffs.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_element.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\touch_element\\touch_element.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\touch_element\\touch_element.c", + "output": "esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_element.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_button.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\touch_element\\touch_button.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\touch_element\\touch_button.c", + "output": "esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_button.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_slider.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\touch_element\\touch_slider.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\touch_element\\touch_slider.c", + "output": "esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_slider.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_matrix.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\touch_element\\touch_matrix.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\touch_element\\touch_matrix.c", + "output": "esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_matrix.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\hcd_dwc.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\hcd_dwc.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\hcd_dwc.c", + "output": "esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\hcd_dwc.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\enum.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\enum.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\enum.c", + "output": "esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\enum.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\hub.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\hub.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\hub.c", + "output": "esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\hub.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_helpers.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\usb_helpers.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\usb_helpers.c", + "output": "esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_helpers.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_host.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\usb_host.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\usb_host.c", + "output": "esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_host.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_private.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\usb_private.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\usb_private.c", + "output": "esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_private.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usbh.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\usbh.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\usbh.c", + "output": "esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usbh.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/private_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_phy.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\usb_phy.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\usb\\usb_phy.c", + "output": "esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_phy.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_config.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\wifi_config.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\wifi_config.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_config.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_scan.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\wifi_scan.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\wifi_scan.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_scan.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_ctrl.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\wifi_ctrl.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\wifi_ctrl.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_ctrl.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\manager.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\manager.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\manager.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\manager.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\handlers.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\handlers.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\handlers.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\handlers.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_console.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\scheme_console.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\scheme_console.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_console.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_config.pb-c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_config.pb-c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_config.pb-c.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_config.pb-c.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_scan.pb-c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_scan.pb-c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_scan.pb-c.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_scan.pb-c.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_ctrl.pb-c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_ctrl.pb-c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_ctrl.pb-c.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_ctrl.pb-c.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_constants.pb-c.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_constants.pb-c.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_constants.pb-c.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_constants.pb-c.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_softap.c.obj -c C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\scheme_softap.c", + "file": "C:\\Users\\Vecmocon\\esp\\v5.5.1\\esp-idf\\components\\wifi_provisioning\\src\\scheme_softap.c", + "output": "esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_softap.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/main -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj -c F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\main\\main.c", + "file": "F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\main\\main.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/main -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\wifi_init.c.obj -c F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\main\\wifi_init.c", + "file": "F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\main\\wifi_init.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\wifi_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -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 -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/main -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/include/local -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/xip_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/interface -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/common -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/security -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/transports -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\fs_init.c.obj -c F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\main\\fs_init.c", + "file": "F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\main\\fs_init.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\fs_init.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fota_manager\\CMakeFiles\\__idf_fota_manager.dir\\fota_manager.c.obj -c F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\components\\fota_manager\\fota_manager.c", + "file": "F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\components\\fota_manager\\fota_manager.c", + "output": "esp-idf\\fota_manager\\CMakeFiles\\__idf_fota_manager.dir\\fota_manager.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ftp_manager\\CMakeFiles\\__idf_ftp_manager.dir\\ftp_manager.c.obj -c F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\components\\ftp_manager\\ftp_manager.c", + "file": "F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\components\\ftp_manager\\ftp_manager.c", + "output": "esp-idf\\ftp_manager\\CMakeFiles\\__idf_ftp_manager.dir\\ftp_manager.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.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 -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\rpc_job_parser\\CMakeFiles\\__idf_rpc_job_parser.dir\\rpc_job_parser.c.obj -c F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\components\\rpc_job_parser\\rpc_job_parser.c", + "file": "F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\components\\rpc_job_parser\\rpc_job_parser.c", + "output": "esp-idf\\rpc_job_parser\\CMakeFiles\\__idf_rpc_job_parser.dir\\rpc_job_parser.c.obj" +}, +{ + "directory": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "command": "C:\\Users\\Vecmocon\\.espressif\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/config -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/main -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/register -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/esp32s3 -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/deprecated_include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/include -IF:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=F:/ESP_32_Projects/esp32-s3_fota_test_wifi=. -fmacro-prefix-map=C:/Users/Vecmocon/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mqtt_manager\\CMakeFiles\\__idf_mqtt_manager.dir\\mqtt_manager.c.obj -c F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\components\\mqtt_manager\\mqtt_manager.c", + "file": "F:\\ESP_32_Projects\\esp32-s3_fota_test_wifi\\components\\mqtt_manager\\mqtt_manager.c", + "output": "esp-idf\\mqtt_manager\\CMakeFiles\\__idf_mqtt_manager.dir\\mqtt_manager.c.obj" +} +] \ No newline at end of file diff --git a/build/component_manager_run_counter.36812 b/build/component_manager_run_counter.36812 new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/build/component_manager_run_counter.36812 @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/build/config.env b/build/config.env new file mode 100644 index 0000000..8e8b992 --- /dev/null +++ b/build/config.env @@ -0,0 +1,12 @@ +{ + "COMPONENT_KCONFIGS": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/sdkconfig.rename.esp32s3;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32s3;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/sdkconfig.rename.esp32s3;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename.esp32s3;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/sdkconfig.rename.esp32s3;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/sdkconfig.rename;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/sdkconfig.rename", + "IDF_TARGET": "esp32s3", + "IDF_TOOLCHAIN": "gcc", + "IDF_VERSION": "5.5.1", + "IDF_ENV_FPGA": "", + "IDF_PATH": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/kconfigs_projbuild.in" +} diff --git a/build/config/kconfig_menus.json b/build/config/kconfig_menus.json new file mode 100644 index 0000000..811093b --- /dev/null +++ b/build/config/kconfig_menus.json @@ -0,0 +1,34279 @@ +[ + { + "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_UART_SUPPORTED", + "name": "SOC_UART_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_TWAI_SUPPORTED", + "name": "SOC_TWAI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_SUPPORTED", + "name": "SOC_GDMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UHCI_SUPPORTED", + "name": "SOC_UHCI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_SUPPORTED", + "name": "SOC_AHB_GDMA_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_LCDCAM_SUPPORTED", + "name": "SOC_LCDCAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_SUPPORTED", + "name": "SOC_LCDCAM_CAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_LCD_SUPPORTED", + "name": "SOC_LCDCAM_I80_LCD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_LCD_SUPPORTED", + "name": "SOC_LCDCAM_RGB_LCD_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_DEDICATED_GPIO_SUPPORTED", + "name": "SOC_DEDICATED_GPIO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_SUPPORT_WRAP", + "name": "SOC_CACHE_SUPPORT_WRAP", + "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_ULP_FSM_SUPPORTED", + "name": "SOC_ULP_FSM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RISCV_COPROC_SUPPORTED", + "name": "SOC_RISCV_COPROC_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_USB_OTG_SUPPORTED", + "name": "SOC_USB_OTG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "name": "SOC_USB_SERIAL_JTAG_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_ASYNC_MEMCPY_SUPPORTED", + "name": "SOC_ASYNC_MEMCPY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORTS_SECURE_DL_MODE", + "name": "SOC_SUPPORTS_SECURE_DL_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "name": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "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_SDMMC_HOST_SUPPORTED", + "name": "SOC_SDMMC_HOST_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_PSRAM_DMA_CAPABLE", + "name": "SOC_PSRAM_DMA_CAPABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XT_WDT_SUPPORTED", + "name": "SOC_XT_WDT_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_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_SYSTIMER_SUPPORTED", + "name": "SOC_SYSTIMER_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_TEMP_SENSOR_SUPPORTED", + "name": "SOC_TEMP_SENSOR_SUPPORTED", + "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_HMAC_SUPPORTED", + "name": "SOC_HMAC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DIG_SIGN_SUPPORTED", + "name": "SOC_DIG_SIGN_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_MEMPROT_SUPPORTED", + "name": "SOC_MEMPROT_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_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_SIMD_INSTRUCTION_SUPPORTED", + "name": "SOC_SIMD_INSTRUCTION_SUPPORTED", + "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_APPCPU_HAS_CLOCK_GATING_BUG", + "name": "SOC_APPCPU_HAS_CLOCK_GATING_BUG", + "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_ARBITER_SUPPORTED", + "name": "SOC_ADC_ARBITER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", + "name": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MONITOR_SUPPORTED", + "name": "SOC_ADC_MONITOR_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_IIR_FILTER_NUM", + "name": "SOC_ADC_DIGI_IIR_FILTER_NUM", + "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_CALIBRATION_V1_SUPPORTED", + "name": "SOC_ADC_CALIBRATION_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "name": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_APB_BACKUP_DMA", + "name": "SOC_APB_BACKUP_DMA", + "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_CACHE_WRITEBACK_SUPPORTED", + "name": "SOC_CACHE_WRITEBACK_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_FREEZE_SUPPORTED", + "name": "SOC_CACHE_FREEZE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC", + "name": "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC", + "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_SIMD_PREFERRED_DATA_ALIGNMENT", + "name": "SOC_SIMD_PREFERRED_DATA_ALIGNMENT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "name": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "name": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "name": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_VERSION", + "name": "SOC_AHB_GDMA_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_NUM_GROUPS_MAX", + "name": "SOC_GDMA_NUM_GROUPS_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PAIRS_PER_GROUP", + "name": "SOC_GDMA_PAIRS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "name": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_SUPPORT_PSRAM", + "name": "SOC_AHB_GDMA_SUPPORT_PSRAM", + "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_SUPPORT_PIN_GLITCH_FILTER", + "name": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", + "name": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "name": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_FORCE_HOLD", + "name": "SOC_GPIO_SUPPORT_FORCE_HOLD", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "name": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE", + "name": "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_FIFO_LEN", + "name": "SOC_I2C_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_CMD_REG_NUM", + "name": "SOC_I2C_CMD_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "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_SUPPORT_HW_CLR_BUS", + "name": "SOC_I2C_SUPPORT_HW_CLR_BUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_XTAL", + "name": "SOC_I2C_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_RTC", + "name": "SOC_I2C_SUPPORT_RTC", + "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_SLAVE_SUPPORT_BROADCAST", + "name": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "name": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "name": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_NUM", + "name": "SOC_I2S_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_HW_VERSION_2", + "name": "SOC_I2S_HW_VERSION_2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_XTAL", + "name": "SOC_I2S_SUPPORTS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PLL_F160M", + "name": "SOC_I2S_SUPPORTS_PLL_F160M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PCM", + "name": "SOC_I2S_SUPPORTS_PCM", + "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_I2S_SUPPORTS_TDM", + "name": "SOC_I2S_SUPPORTS_TDM", + "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_XTAL_CLOCK", + "name": "SOC_LEDC_SUPPORT_XTAL_CLOCK", + "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_LEDC_SUPPORT_FADE_STOP", + "name": "SOC_LEDC_SUPPORT_FADE_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GROUPS", + "name": "SOC_MCPWM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_OPERATORS_PER_GROUP", + "name": "SOC_MCPWM_OPERATORS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "name": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "name": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "name": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "name": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "name": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_MMU_PERIPH_NUM", + "name": "SOC_MMU_PERIPH_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_PCNT_GROUPS", + "name": "SOC_PCNT_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_UNITS_PER_GROUP", + "name": "SOC_PCNT_UNITS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_CHANNELS_PER_UNIT", + "name": "SOC_PCNT_CHANNELS_PER_UNIT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_THRES_POINT_PER_UNIT", + "name": "SOC_PCNT_THRES_POINT_PER_UNIT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_GROUPS", + "name": "SOC_RMT_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_CHANNELS_PER_GROUP", + "name": "SOC_RMT_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "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_RMT_SUPPORT_RX_PINGPONG", + "name": "SOC_RMT_SUPPORT_RX_PINGPONG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "name": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "name": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "name": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "name": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "name": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "name": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_XTAL", + "name": "SOC_RMT_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RC_FAST", + "name": "SOC_RMT_SUPPORT_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_APB", + "name": "SOC_RMT_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_DMA", + "name": "SOC_RMT_SUPPORT_DMA", + "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_LCD_RGB_SUPPORTED", + "name": "SOC_LCD_RGB_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_BUSES", + "name": "SOC_LCD_I80_BUSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_RGB_PANELS", + "name": "SOC_LCD_RGB_PANELS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_BUS_WIDTH", + "name": "SOC_LCD_I80_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_RGB_DATA_WIDTH", + "name": "SOC_LCD_RGB_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_SUPPORT_RGB_YUV_CONV", + "name": "SOC_LCD_SUPPORT_RGB_YUV_CONV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_NUM_BUSES", + "name": "SOC_LCDCAM_I80_NUM_BUSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_BUS_WIDTH", + "name": "SOC_LCDCAM_I80_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_NUM_PANELS", + "name": "SOC_LCDCAM_RGB_NUM_PANELS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_DATA_WIDTH", + "name": "SOC_LCDCAM_RGB_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", + "name": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", + "name": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH", + "name": "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH", + "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_LP_IO_CLOCK_IS_INDEPENDENT", + "name": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_GROUPS", + "name": "SOC_SDM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_CHANNELS_PER_GROUP", + "name": "SOC_SDM_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_CLK_SUPPORT_APB", + "name": "SOC_SDM_CLK_SUPPORT_APB", + "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_MAX_CS_NUM", + "name": "SOC_SPI_MAX_CS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "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_SUPPORT_DDRCLK", + "name": "SOC_SPI_SUPPORT_DDRCLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "name": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CD_SIG", + "name": "SOC_SPI_SUPPORT_CD_SIG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "name": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "name": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_SUPPORT_CLK_XTAL", + "name": "SOC_SPI_SUPPORT_CLK_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", + "name": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_IS_INDEPENDENT", + "name": "SOC_MEMSPI_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_SPI_SUPPORT_OCT", + "name": "SOC_SPI_SUPPORT_OCT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_SUPPORTED", + "name": "SOC_SPI_SCT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_REG_NUM", + "name": "SOC_SPI_SCT_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "name": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "name": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_20M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "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_SPIRAM_XIP_SUPPORTED", + "name": "SOC_SPIRAM_XIP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_COUNTER_NUM", + "name": "SOC_SYSTIMER_COUNTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_NUM", + "name": "SOC_SYSTIMER_ALARM_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_LO", + "name": "SOC_SYSTIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_HI", + "name": "SOC_SYSTIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_FIXED_DIVIDER", + "name": "SOC_SYSTIMER_FIXED_DIVIDER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_INT_LEVEL", + "name": "SOC_SYSTIMER_INT_LEVEL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "name": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUPS", + "name": "SOC_TIMER_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "name": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "name": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "name": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_APB", + "name": "SOC_TIMER_GROUP_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "range": null, + "title": null, + "type": "int" + }, + { + "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_SENSOR_NUM", + "name": "SOC_TOUCH_SENSOR_NUM", + "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_BENCHMARK", + "name": "SOC_TOUCH_SUPPORT_BENCHMARK", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_SUPPORT_WATERPROOF", + "name": "SOC_TOUCH_SUPPORT_WATERPROOF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_PROX_SENSING", + "name": "SOC_TOUCH_SUPPORT_PROX_SENSING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_DENOISE_CHAN", + "name": "SOC_TOUCH_SUPPORT_DENOISE_CHAN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PROXIMITY_CHANNEL_NUM", + "name": "SOC_TOUCH_PROXIMITY_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED", + "name": "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED", + "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_TWAI_CLK_SUPPORT_APB", + "name": "SOC_TWAI_CLK_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MIN", + "name": "SOC_TWAI_BRP_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MAX", + "name": "SOC_TWAI_BRP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORTS_RX_STATUS", + "name": "SOC_TWAI_SUPPORTS_RX_STATUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_SUPPORT_FSM_TX_WAIT_SEND", + "name": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_WAKEUP_INT", + "name": "SOC_UART_SUPPORT_WAKEUP_INT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_RTC_CLK", + "name": "SOC_UART_SUPPORT_RTC_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_XTAL_CLK", + "name": "SOC_UART_SUPPORT_XTAL_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_UHCI_NUM", + "name": "SOC_UHCI_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_OTG_PERIPH_NUM", + "name": "SOC_USB_OTG_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "name": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_DMA", + "name": "SOC_SHA_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_RESUME", + "name": "SOC_SHA_SUPPORT_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_GDMA", + "name": "SOC_SHA_GDMA", + "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_SHA224", + "name": "SOC_SHA_SUPPORT_SHA224", + "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_SHA_SUPPORT_SHA512_224", + "name": "SOC_SHA_SUPPORT_SHA512_224", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512_256", + "name": "SOC_SHA_SUPPORT_SHA512_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512_T", + "name": "SOC_SHA_SUPPORT_SHA512_T", + "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_DMA", + "name": "SOC_AES_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_GDMA", + "name": "SOC_AES_GDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_256", + "name": "SOC_AES_SUPPORT_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_WIFI_WAKEUP", + "name": "SOC_PM_SUPPORT_WIFI_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_BT_WAKEUP", + "name": "SOC_PM_SUPPORT_BT_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_CPU_PD", + "name": "SOC_PM_SUPPORT_CPU_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_TAGMEM_PD", + "name": "SOC_PM_SUPPORT_TAGMEM_PD", + "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_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_MAC_BB_PD", + "name": "SOC_PM_SUPPORT_MAC_BB_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_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "name": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", + "name": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", + "name": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", + "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_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_D2", + "name": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "name": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DOWNLOAD_DCACHE", + "name": "SOC_EFUSE_DIS_DOWNLOAD_DCACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_HARD_DIS_JTAG", + "name": "SOC_EFUSE_HARD_DIS_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_USB_JTAG", + "name": "SOC_EFUSE_DIS_USB_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SOFT_DIS_JTAG", + "name": "SOC_EFUSE_SOFT_DIS_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DIRECT_BOOT", + "name": "SOC_EFUSE_DIS_DIRECT_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_ICACHE", + "name": "SOC_EFUSE_DIS_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "name": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_V2_RSA", + "name": "SOC_SECURE_BOOT_V2_RSA", + "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_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "name": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_FLASH_ENCRYPTION_XTS_AES", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_256", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", + "name": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMPROT_MEM_ALIGN_SIZE", + "name": "SOC_MEMPROT_MEM_ALIGN_SIZE", + "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_MAC_BB_PD_MEM_SIZE", + "name": "SOC_MAC_BB_PD_MEM_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "name": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE", + "name": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_TIMING_TUNING", + "name": "SOC_SPI_MEM_SUPPORT_TIMING_TUNING", + "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_SPI_MEM_SUPPORT_WRAP", + "name": "SOC_SPI_MEM_SUPPORT_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY", + "name": "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM", + "name": "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP", + "name": "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_COEX_HW_PTI", + "name": "SOC_COEX_HW_PTI", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_ADVANCE", + "name": "SOC_EXTERNAL_COEX_ADVANCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "name": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_USE_GPIO_MATRIX", + "name": "SOC_SDMMC_USE_GPIO_MATRIX", + "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_SUPPORT_XTAL_CLOCK", + "name": "SOC_SDMMC_SUPPORT_XTAL_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_DELAY_PHASE_NUM", + "name": "SOC_SDMMC_DELAY_PHASE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_HW_TSF", + "name": "SOC_WIFI_HW_TSF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_FTM_SUPPORT", + "name": "SOC_WIFI_FTM_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_GCMP_SUPPORT", + "name": "SOC_WIFI_GCMP_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_PHY_NEEDS_USB_WORKAROUND", + "name": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", + "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_BLE_50_SUPPORTED", + "name": "SOC_BLE_50_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_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_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV", + "name": "SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_PERIPH_NUM", + "name": "SOC_LCDCAM_CAM_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_DATA_WIDTH_MAX", + "name": "SOC_LCDCAM_CAM_DATA_WIDTH_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "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.py to load the generated .bin file into ram and execute.\n\nExample:\n esptool.py --chip {chip} -p {port} -b {baud} --no-stub load_ram {app.bin}\n\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_RAM=y\n CONFIG_VFS_SUPPORT_TERMIOS=\n CONFIG_NEWLIB_NANO_FORMAT=y\n CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y\n CONFIG_ESP_DEBUG_STUBS_ENABLE=\n CONFIG_ESP_ERR_TO_NAME_LOOKUP=", + "id": "build-type-application-build-type", + "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", + "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", + "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", + "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.py 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", + "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" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ARCH_XTENSA || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2) && ", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0) (Deprecated, will be removed in IDF v6.0)", + "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", + "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", + "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", + "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", + "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", + "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", + "name": "BOOTLOADER_LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "bootloader-config-log-settings", + "title": "Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "bootloader-config-log", + "title": "Log", + "type": "menu" + }, + { + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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.py generate_signing_key secure_boot_signing_key.pem\n\nSee the Secure Boot section of the ESP-IDF Programmer's Guide for this version for details.", + "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.py.\nVersion 1 to enable ECDSA Based Secure Boot and Version 2 to enable RSA based Secure Boot.\n(for example, on a remote signing server.)", + "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.py\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.py 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.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", + "id": "security-features-hardware-key-encoding", + "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": "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 && !(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 && ", + "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", + "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", + "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": "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.py.", + "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", + "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 only the app image that is present in the partition of type app", + "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.\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", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "title": "Strength of the pseudo rounds function", + "type": "choice" + } + ], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE && 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.py, espefuse.py and similar tools.\n\nOnce disabled, if the SoC is booted with strapping pins set for ROM Download Mode\nthen an error is printed instead.\n\nIt is recommended to enable this option in any production application where Flash\nEncryption and/or Secure Boot is enabled and access to Download Mode is not required.\n\nIt is also possible to permanently disable Download Mode by calling\nesp_efuse_disable_rom_download_mode() at runtime.", + "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.py flasher stub feature,\nespefuse.py, read/writing memory or registers, encrypted download, or any other\nfeatures that interact with unsupported Download Mode commands.\n\nSecure Download mode should be enabled in any application where Flash Encryption\nand/or Secure Boot is enabled. Disabling this option does not immediately cancel\nthe benefits of the security features, but it increases the potential \"attack\nsurface\" for an attacker to try and bypass them with a successful physical attack.\n\nIt is also possible to enable secure download mode at runtime by calling\nesp_efuse_enable_rom_secure_download_mode()\n\nNote: Secure Download mode is not available for ESP32.", + "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", + "name": "SECURE_UART_ROM_DL_MODE", + "title": "UART ROM download mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "security-features", + "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", + "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_UART_CLK_IS_XTAL", + "name": "ESP_ROM_UART_CLK_IS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "name": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "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_HAS_ERASE_0_REGION_BUG", + "name": "ESP_ROM_HAS_ERASE_0_REGION_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", + "name": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_GET_CLK_FREQ", + "name": "ESP_ROM_GET_CLK_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_HAL_WDT", + "name": "ESP_ROM_HAS_HAL_WDT", + "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_LAYOUT_TABLE", + "name": "ESP_ROM_HAS_LAYOUT_TABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SPI_FLASH", + "name": "ESP_ROM_HAS_SPI_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SPI_FLASH_MMAP", + "name": "ESP_ROM_HAS_SPI_FLASH_MMAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_ETS_PRINTF_BUG", + "name": "ESP_ROM_HAS_ETS_PRINTF_BUG", + "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_NEEDS_SET_CACHE_MMU_SIZE", + "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "name": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG", + "name": "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG", + "name": "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CACHE_WRITEBACK_BUG", + "name": "ESP_ROM_HAS_CACHE_WRITEBACK_BUG", + "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_HAS_VERSION", + "name": "ESP_ROM_HAS_VERSION", + "range": null, + "title": null, + "type": "bool" + }, + { + "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": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_CONSOLE_OUTPUT_SECONDARY", + "name": "ESP_ROM_CONSOLE_OUTPUT_SECONDARY", + "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", + "name": "BOOT_ROM_LOG_SCHEME", + "title": "Permanently change Boot ROM output", + "type": "choice" + } + ], + "depends_on": null, + "id": "boot-rom-behavior", + "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", + "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", + "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": "(SPI_FLASH_HPM_ON || ESPTOOLPY_OCT_FLASH) && (ESPTOOLPY_FLASH_SAMPLE_MODE_STR || IDF_EXPERIMENTAL_FEATURES) && ", + "help": "- Optional feature for QSPI Flash. Read docs and enable `CONFIG_SPI_FLASH_HPM_ENA` first!\n- Flash 120 MHz SDR mode is stable.\n- Flash 120 MHz DDR mode is an experimental feature, it works when\n the temperature is stable.\n\n Risks:\n If your chip powers on at a certain temperature, then after the temperature\n increases or decreases by approximately 20 Celsius degrees (depending on the\n chip), the program will crash randomly.", + "id": "ESPTOOLPY_FLASHFREQ_120M", + "name": "ESPTOOLPY_FLASHFREQ_120M", + "range": null, + "title": "120 MHz (READ DOCS FIRST)", + "type": "bool" + }, + { + "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_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", + "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", + "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.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-before-flashing", + "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.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-after-flashing", + "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", + "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", + "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 address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", + "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", + "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", + "name": "COMPILER_OPTIMIZATION", + "title": "Optimization Level", + "type": "choice" + }, + { + "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", + "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.\n\nIn ESP-IDF v6.0 the default behavior will change to \"no\" to be in line with the\nstandard.", + "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", + "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", + "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": "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", + "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": "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", + "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" + } + ], + "depends_on": null, + "id": "compiler-options", + "title": "Compiler options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "APPTRACE_DEST_JTAG", + "name": "APPTRACE_DEST_JTAG", + "range": null, + "title": "JTAG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APPTRACE_DEST_NONE", + "name": "APPTRACE_DEST_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select destination for application trace: JTAG or none (to disable).", + "id": "component-config-application-level-tracing-data-destination-1", + "name": "APPTRACE_DESTINATION1", + "title": "Data Destination 1", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APPTRACE_DEST_UART", + "name": "APPTRACE_DEST_UART", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APPTRACE_DEST_UART_NOUSB", + "name": "APPTRACE_DEST_UART_NOUSB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_NUM != 0 && ", + "help": null, + "id": "APPTRACE_DEST_UART0", + "name": "APPTRACE_DEST_UART0", + "range": null, + "title": "UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_NUM != 1 && ", + "help": null, + "id": "APPTRACE_DEST_UART1", + "name": "APPTRACE_DEST_UART1", + "range": null, + "title": "UART1", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_NUM != 2 && SOC_UART_NUM > 2 && ", + "help": null, + "id": "APPTRACE_DEST_UART2", + "name": "APPTRACE_DEST_UART2", + "range": null, + "title": "UART2", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_CONSOLE_USB_CDC && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3) && !USB_ENABLED && ", + "help": null, + "id": "APPTRACE_DEST_USB_CDC", + "name": "APPTRACE_DEST_USB_CDC", + "range": null, + "title": "USB_CDC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APPTRACE_DEST_UART_NONE", + "name": "APPTRACE_DEST_UART_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select destination for application trace: UART(XX) or none (to disable).", + "id": "component-config-application-level-tracing-data-destination-2", + "name": "APPTRACE_DESTINATION2", + "title": "Data Destination 2", + "type": "choice" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART_NOUSB", + "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_NOUSB", + "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", + "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", + "help": "Size of the UART input ring buffer.\nThis size related to the baudrate, system tick frequency and amount of data to transfer.\nThe data placed to this buffer before sent out to the interface.", + "id": "APPTRACE_UART_RX_BUFF_SIZE", + "name": "APPTRACE_UART_RX_BUFF_SIZE", + "range": null, + "title": "UART RX ring buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART", + "help": "Size of the UART output ring buffer.\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", + "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": null, + "help": "UART task priority. In case of high events rate,\nthis parameter could be changed up to (configMAX_PRIORITIES-1).", + "id": "APPTRACE_UART_TASK_PRIO", + "name": "APPTRACE_UART_TASK_PRIO", + "range": [ + 1, + 32 + ], + "title": "UART Task Priority", + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_XTENSA && !ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", + "help": "Enables/disable TRAX tracing HW.", + "id": "APPTRACE_DEST_TRAX", + "name": "APPTRACE_DEST_TRAX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disable swapping memory buffers tracing protocol.", + "id": "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE", + "name": "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disable application tracing module.", + "id": "APPTRACE_ENABLE", + "name": "APPTRACE_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disable application tracing module internal sync lock.", + "id": "APPTRACE_LOCK_ENABLE", + "name": "APPTRACE_LOCK_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_ENABLE", + "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": "APPTRACE_ENABLE", + "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" + }, + { + "children": [], + "depends_on": "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE && !APPTRACE_DEST_TRAX", + "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_MEMBUFS_APPTRACE_PROTO_ENABLE", + "help": "Size of the buffer for events in bytes. It is useful for buffering events from\nthe time critical code (scheduler, ISRs etc). If this parameter is 0 then\nevents will be discarded when main HW buffer is full.", + "id": "APPTRACE_PENDING_DATA_SIZE_MAX", + "name": "APPTRACE_PENDING_DATA_SIZE_MAX", + "range": null, + "title": "Size of the pending data buffer", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!PM_ENABLE && !APPTRACE_DEST_NONE && ", + "help": "Send SEGGER SystemView events through JTAG interface.", + "id": "APPTRACE_SV_DEST_JTAG", + "name": "APPTRACE_SV_DEST_JTAG", + "range": null, + "title": "Data destination JTAG", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART && ", + "help": "Send SEGGER SystemView events through UART interface.", + "id": "APPTRACE_SV_DEST_UART", + "name": "APPTRACE_SV_DEST_UART", + "range": null, + "title": "Data destination UART", + "type": "bool" + } + ], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "SystemView will transfer data through the defined interface.", + "id": "component-config-application-level-tracing-freertos-systemview-tracing-systemview-tracing-enable-systemview-destination", + "name": "APPTRACE_SV_DEST", + "title": "SystemView destination", + "type": "choice" + } + ], + "depends_on": "APPTRACE_ENABLE && APPTRACE_ENABLE", + "help": "Enables support for SEGGER SystemView tracing functionality.", + "id": "APPTRACE_SV_ENABLE", + "name": "APPTRACE_SV_ENABLE", + "range": null, + "title": "SystemView Tracing Enable", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Send SEGGER SystemView events for Pro CPU.", + "id": "APPTRACE_SV_DEST_CPU_0", + "name": "APPTRACE_SV_DEST_CPU_0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Send SEGGER SystemView events for App CPU.", + "id": "APPTRACE_SV_DEST_CPU_1", + "name": "APPTRACE_SV_DEST_CPU_1", + "range": null, + "title": "CPU1", + "type": "bool" + } + ], + "depends_on": "APPTRACE_SV_DEST_UART && !ESP_SYSTEM_SINGLE_CORE_MODE && APPTRACE_ENABLE", + "help": "Define the CPU to trace by SystemView.", + "id": "component-config-application-level-tracing-freertos-systemview-tracing-cpu-to-trace", + "name": "APPTRACE_SV_CPU", + "title": "CPU to trace", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_SYSTEM_SINGLE_CORE_MODE && !PM_ENABLE && !IDF_TARGET_ESP32C3 && ", + "help": null, + "id": "APPTRACE_SV_TS_SOURCE_CCOUNT", + "name": "APPTRACE_SV_TS_SOURCE_CCOUNT", + "range": null, + "title": "CPU cycle counter (CCOUNT)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!PM_ENABLE && !IDF_TARGET_ESP32C3 && ", + "help": null, + "id": "APPTRACE_SV_TS_SOURCE_GPTIMER", + "name": "APPTRACE_SV_TS_SOURCE_GPTIMER", + "range": null, + "title": "General Purpose Timer (Timer Group)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APPTRACE_SV_TS_SOURCE_ESP_TIMER", + "name": "APPTRACE_SV_TS_SOURCE_ESP_TIMER", + "range": null, + "title": "esp_timer high resolution timer", + "type": "bool" + } + ], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "SystemView needs to use a hardware timer as the source of timestamps\nwhen tracing. This option selects the timer for it.", + "id": "component-config-application-level-tracing-freertos-systemview-tracing-timer-to-use-as-timestamp-source", + "name": "APPTRACE_SV_TS_SOURCE", + "title": "Timer to use as timestamp source", + "type": "choice" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Configures maximum supported tasks in sysview debug", + "id": "APPTRACE_SV_MAX_TASKS", + "name": "APPTRACE_SV_MAX_TASKS", + "range": null, + "title": "Maximum supported tasks", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Configures timeout (in us) to wait for free space in trace buffer.\nSet to -1 to wait forever and avoid lost events.", + "id": "APPTRACE_SV_BUF_WAIT_TMO", + "name": "APPTRACE_SV_BUF_WAIT_TMO", + "range": null, + "title": "Trace buffer wait timeout", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Trace Buffer Overflow\" event.", + "id": "APPTRACE_SV_EVT_OVERFLOW_ENABLE", + "name": "APPTRACE_SV_EVT_OVERFLOW_ENABLE", + "range": null, + "title": "Trace Buffer Overflow Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"ISR Enter\" event.", + "id": "APPTRACE_SV_EVT_ISR_ENTER_ENABLE", + "name": "APPTRACE_SV_EVT_ISR_ENTER_ENABLE", + "range": null, + "title": "ISR Enter Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"ISR Exit\" event.", + "id": "APPTRACE_SV_EVT_ISR_EXIT_ENABLE", + "name": "APPTRACE_SV_EVT_ISR_EXIT_ENABLE", + "range": null, + "title": "ISR Exit Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"ISR to Scheduler\" event.", + "id": "APPTRACE_SV_EVT_ISR_TO_SCHED_ENABLE", + "name": "APPTRACE_SV_EVT_ISR_TO_SCHED_ENABLE", + "range": null, + "title": "ISR Exit to Scheduler Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Start Execution\" event.", + "id": "APPTRACE_SV_EVT_TASK_START_EXEC_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_START_EXEC_ENABLE", + "range": null, + "title": "Task Start Execution Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Stop Execution\" event.", + "id": "APPTRACE_SV_EVT_TASK_STOP_EXEC_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_STOP_EXEC_ENABLE", + "range": null, + "title": "Task Stop Execution Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Start Ready State\" event.", + "id": "APPTRACE_SV_EVT_TASK_START_READY_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_START_READY_ENABLE", + "range": null, + "title": "Task Start Ready State Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Stop Ready State\" event.", + "id": "APPTRACE_SV_EVT_TASK_STOP_READY_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_STOP_READY_ENABLE", + "range": null, + "title": "Task Stop Ready State Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Create\" event.", + "id": "APPTRACE_SV_EVT_TASK_CREATE_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_CREATE_ENABLE", + "range": null, + "title": "Task Create Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Terminate\" event.", + "id": "APPTRACE_SV_EVT_TASK_TERMINATE_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_TERMINATE_ENABLE", + "range": null, + "title": "Task Terminate Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"System Idle\" event.", + "id": "APPTRACE_SV_EVT_IDLE_ENABLE", + "name": "APPTRACE_SV_EVT_IDLE_ENABLE", + "range": null, + "title": "System Idle Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Timer Enter\" event.", + "id": "APPTRACE_SV_EVT_TIMER_ENTER_ENABLE", + "name": "APPTRACE_SV_EVT_TIMER_ENTER_ENABLE", + "range": null, + "title": "Timer Enter Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Timer Exit\" event.", + "id": "APPTRACE_SV_EVT_TIMER_EXIT_ENABLE", + "name": "APPTRACE_SV_EVT_TIMER_EXIT_ENABLE", + "range": null, + "title": "Timer Exit Event", + "type": "bool" + } + ], + "depends_on": "APPTRACE_ENABLE", + "id": "component-config-application-level-tracing-freertos-systemview-tracing", + "title": "FreeRTOS SystemView Tracing", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "APPTRACE_GCOV_ENABLE", + "help": "Configures stack size of Gcov dump task", + "id": "APPTRACE_GCOV_DUMP_TASK_STACK_SIZE", + "name": "APPTRACE_GCOV_DUMP_TASK_STACK_SIZE", + "range": null, + "title": "Gcov dump task stack size", + "type": "int" + } + ], + "depends_on": "APPTRACE_ENABLE && !APPTRACE_SV_ENABLE", + "help": "Enables support for GCOV data transfer to host.", + "id": "APPTRACE_GCOV_ENABLE", + "name": "APPTRACE_GCOV_ENABLE", + "range": null, + "title": "GCOV to Host Enable", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-application-level-tracing", + "title": "Application Level Tracing", + "type": "menu" + }, + { + "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", + "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", + "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", + "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": "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_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", + "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 of AVRCP CT role", + "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", + "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", + "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": [], + "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", + "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" + } + ], + "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": [], + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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(1~9)", + "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 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": [ + { + "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": [ + { + "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", + "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_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", + "title": "Bluedroid Options", + "type": "menu" + }, + { + "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 to use IRAM memory region as 8bit accessible region.\n\nEvery unaligned (8bit or 16bit) access will result in an exception\nand incur penalty of certain clock cycles per unaligned read/write.", + "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, 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", + "id": "component-config-bluetooth-nimble-options-memory-allocation-strategy", + "name": "BT_NIMBLE_MEM_ALLOC_MODE", + "title": "Memory allocation strategy", + "type": "choice" + }, + { + "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. Please make a note that the selected NimBLE log\nverbosity can not exceed the level set in \"Component config --> Log output\n--> Default log verbosity\".", + "id": "component-config-bluetooth-nimble-options-nimble-host-log-verbosity", + "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": "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 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_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": "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" + }, + { + "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 Core 0 or Core 1.\nCannot specify no-affinity", + "id": "component-config-bluetooth-nimble-options-the-cpu-core-on-which-nimble-host-will-run", + "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": null, + "id": "BT_NIMBLE_PINNED_TO_CORE", + "name": "BT_NIMBLE_PINNED_TO_CORE", + "range": null, + "title": null, + "type": "int" + }, + { + "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 && BT_NIMBLE_ENABLED", + "help": "Enables 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 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 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 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" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && 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_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": [ + { + "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_SECURITY_ENABLE && BT_NIMBLE_SM_SC && 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 && 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" + } + ], + "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" + }, + { + "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 && 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": "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_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_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_ENABLED && 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_ENABLED && 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": [ + { + "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", + "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" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-memory-settings", + "title": "Memory Settings", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && 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": [ + { + "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" + }, + { + "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": [ + { + "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" + }, + { + "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 && IDF_TARGET_ESP32 && BT_NIMBLE_ENABLED", + "help": "Use this option to do host based Random Private Address resolution.\nIf this option is disabled then controller based privacy is used.", + "id": "BT_NIMBLE_HOST_BASED_PRIVACY", + "name": "BT_NIMBLE_HOST_BASED_PRIVACY", + "range": null, + "title": "Enable host based privacy for random address.", + "type": "bool" + }, + { + "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 on connection\nestablishment failure.", + "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": [], + "depends_on": "BT_NIMBLE_ENABLED && 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" + }, + { + "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 && 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 && 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_ROLE_OBSERVER && 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 && 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_DISABLED || 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" + } + ], + "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" + }, + { + "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_ENABLED && BT_NIMBLE_ENABLED", + "help": "BLE list size", + "id": "BT_NIMBLE_WHITELIST_SIZE", + "name": "BT_NIMBLE_WHITELIST_SIZE", + "range": null, + "title": "BLE white list size", + "type": "int" + }, + { + "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" + }, + { + "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": "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": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This option is used to distinguish whether a previous version of VHCI is being used", + "id": "BT_NIMBLE_LEGACY_VHCI_ENABLE", + "name": "BT_NIMBLE_LEGACY_VHCI_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "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_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 DIS 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": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE && 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_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_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_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_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_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_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_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_GATT_SERVER && BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-ble-services-gap-service-gap-appearance-write-permissions", + "title": "GAP Appearance write permissions", + "type": "menu" + }, + { + "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_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-ble-services-gap-service-gap-characteristic-central-address-resolution", + "name": "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION", + "title": "GAP Characteristic - Central Address Resolution", + "type": "choice" + } + ], + "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" + }, + { + "children": [], + "depends_on": "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_NAME_WRITE && 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_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_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_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_GATT_SERVER && BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-ble-services-gap-device-name-write-permissions", + "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_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_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_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_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_GATT_SERVER && BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-ble-services-peripheral-preferred-connection-parameters-ppcp-settings", + "title": "Peripheral Preferred Connection Parameters (PPCP) settings", + "type": "menu" + }, + { + "children": [], + "depends_on": "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_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_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_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_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_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" + } + ], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-ble-services", + "title": "BLE Services", + "type": "menu" + }, + { + "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": [ + { + "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" + } + ], + "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": "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": "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_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": [ + { + "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", + "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", + "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", + "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", + "title": "Host-controller Transport", + "type": "menu" + }, + { + "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" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options", + "title": "NimBLE Options", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_MODE_EFF", + "name": "BT_CTRL_MODE_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "BLE maximum activities of bluetooth controller\uff0cboth of connections,\nscan , sync and adv(periodic adv, multi-adv). Each instance needs to\nconsume 828 bytes, you can save RAM by modifying the instance value\naccording to actual needs.", + "id": "BT_CTRL_BLE_MAX_ACT", + "name": "BT_CTRL_BLE_MAX_ACT", + "range": null, + "title": "BLE Max Instances", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_BLE_MAX_ACT_EFF", + "name": "BT_CTRL_BLE_MAX_ACT_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "BLE ACL buffer have two methods to be allocated. One is persistent allocating\n(allocate when controller initialise, never free until controller de-initialise)\nanother is dynamically allocating (allocate before TX and free after TX).", + "id": "BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB", + "name": "BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB", + "range": null, + "title": "BLE static ACL TX buffer numbers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_PINNED_TO_CORE_0", + "name": "BT_CTRL_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0 (PRO CPU)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "BT_CTRL_PINNED_TO_CORE_1", + "name": "BT_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", + "name": "BT_CTRL_PINNED_TO_CORE_CHOICE", + "title": "The cpu core which bluetooth controller run", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_PINNED_TO_CORE", + "name": "BT_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 ESP32S3 or ESP32C3.", + "id": "BT_CTRL_HCI_MODE_VHCI", + "name": "BT_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": "BT_CTRL_HCI_MODE_UART_H4", + "name": "BT_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", + "name": "BT_CTRL_HCI_MODE_CHOICE", + "title": "HCI mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "HCI mode as VHCI or UART(H4)", + "id": "BT_CTRL_HCI_TL", + "name": "BT_CTRL_HCI_TL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "The maximum number of 5.0 extend duplicate", + "id": "BT_CTRL_ADV_DUP_FILT_MAX", + "name": "BT_CTRL_ADV_DUP_FILT_MAX", + "range": null, + "title": "The maximum number of 5.0 extend duplicate scan filter", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_BLE_CCA_MODE_NONE", + "name": "BT_BLE_CCA_MODE_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_BLE_CCA_MODE_HW", + "name": "BT_BLE_CCA_MODE_HW", + "range": null, + "title": "Hardware", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_BLE_CCA_MODE_SW", + "name": "BT_BLE_CCA_MODE_SW", + "range": null, + "title": "Software (experimental)", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Define BT BLE CCA mode\nNote that if CCA feature is enabled, the hardware may not transmit packets due to channel busy.\nTherefore, it may potentially lead to an increase in the time taken for scanning advertising packet\nand establishing connections, or a decrease in the throughput rate of the connection.", + "id": "component-config-bluetooth-controller-options-ble-cca-mode", + "name": "BT_BLE_CCA_MODE", + "title": "BLE CCA mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_BLE_CCA_MODE", + "name": "BT_BLE_CCA_MODE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "It is the threshold value of HW CCA, if the value is 30, it means CCA threshold is -30 dBm.\nIf the channel assessment result exceeds the CCA threshold (e.g. -75 dBm), indicating the channel is busy,\nthe hardware will not transmit packets on that channel.", + "id": "BT_CTRL_HW_CCA_VAL", + "name": "BT_CTRL_HW_CCA_VAL", + "range": null, + "title": "CCA threshold value", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "If other devices are sending packets in the air and the signal is strong,\nthe packet hw to be sent this time is cancelled.", + "id": "BT_CTRL_HW_CCA_EFF", + "name": "BT_CTRL_HW_CCA_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_CE_LENGTH_TYPE_ORIG", + "name": "BT_CTRL_CE_LENGTH_TYPE_ORIG", + "range": null, + "title": "ORIGINAL", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_CE_LENGTH_TYPE_CE", + "name": "BT_CTRL_CE_LENGTH_TYPE_CE", + "range": null, + "title": "Use CE parameter for HCI command", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_CE_LENGTH_TYPE_SD", + "name": "BT_CTRL_CE_LENGTH_TYPE_SD", + "range": null, + "title": "Use Espressif self-defined method", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Specify connection event length determination", + "id": "component-config-bluetooth-controller-options-connection-event-length-determination-method", + "name": "BT_CTRL_CE_LENGTH_TYPE", + "title": "Connection event length determination method", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_CE_LENGTH_TYPE_EFF", + "name": "BT_CTRL_CE_LENGTH_TYPE_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_TX_ANTENNA_INDEX_0", + "name": "BT_CTRL_TX_ANTENNA_INDEX_0", + "range": null, + "title": "Antenna 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_TX_ANTENNA_INDEX_1", + "name": "BT_CTRL_TX_ANTENNA_INDEX_1", + "range": null, + "title": "Antenna 1", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Specify default Tx antenna used for bluetooth", + "id": "component-config-bluetooth-controller-options-default-tx-anntena-used", + "name": "BT_CTRL_TX_ANTENNA_INDEX", + "title": "default Tx anntena used", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_TX_ANTENNA_INDEX_EFF", + "name": "BT_CTRL_TX_ANTENNA_INDEX_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_RX_ANTENNA_INDEX_0", + "name": "BT_CTRL_RX_ANTENNA_INDEX_0", + "range": null, + "title": "Antenna 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_RX_ANTENNA_INDEX_1", + "name": "BT_CTRL_RX_ANTENNA_INDEX_1", + "range": null, + "title": "Antenna 1", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Specify default Rx antenna used for bluetooth", + "id": "component-config-bluetooth-controller-options-default-rx-anntena-used", + "name": "BT_CTRL_RX_ANTENNA_INDEX", + "title": "default Rx anntena used", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_RX_ANTENNA_INDEX_EFF", + "name": "BT_CTRL_RX_ANTENNA_INDEX_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N24", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N24", + "range": null, + "title": "-24dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N21", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N21", + "range": null, + "title": "-21dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N18", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N18", + "range": null, + "title": "-18dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N15", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N15", + "range": null, + "title": "-15dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N12", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N12", + "range": null, + "title": "-12dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N9", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N9", + "range": null, + "title": "-9dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N6", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N6", + "range": null, + "title": "-6dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N3", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N3", + "range": null, + "title": "-3dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_N0", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_N0", + "range": null, + "title": "0dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P3", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P3", + "range": null, + "title": "+3dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P6", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P6", + "range": null, + "title": "+6dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P9", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P9", + "range": null, + "title": "+9dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P12", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P12", + "range": null, + "title": "+12dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P15", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P15", + "range": null, + "title": "+15dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P18", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P18", + "range": null, + "title": "+18dBm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_P20", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P20", + "range": null, + "title": "+20dBm", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Specify default Tx power level", + "id": "component-config-bluetooth-controller-options-ble-default-tx-power-level", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL", + "title": "BLE default Tx power level", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_DFT_TX_POWER_LEVEL_EFF", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP && BT_CONTROLLER_ENABLED", + "help": "The number of unprocessed advertising report that bluetooth host can save.If you set\n`BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a small value, this may cause adv packets lost.\nIf you set `BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a large value, bluetooth host may cache a\nlot of adv packets and this may cause system memory run out. For example, if you set\nit to 50, the maximum memory consumed by host is 35 * 50 bytes. Please set\n`BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM` according to your system free memory and handle adv\npackets as fast as possible, otherwise it will cause adv packets lost.", + "id": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM", + "name": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM", + "range": null, + "title": "BLE adv report flow control number", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CTRL_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 `BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD` to a small value or printf every adv lost event, it\nmay cause adv packets lost more.", + "id": "BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD", + "name": "BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD", + "range": null, + "title": "BLE adv lost event threshold value", + "type": "int" + } + ], + "depends_on": "BT_CTRL_BLE_SCAN && 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": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "name": "BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "range": null, + "title": "BLE adv report flow control supported", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Advertising packets with the same address, address type, and advertising type are reported once.", + "id": "BT_CTRL_SCAN_DUPL_TYPE_DEVICE", + "name": "BT_CTRL_SCAN_DUPL_TYPE_DEVICE", + "range": null, + "title": "Scan Duplicate By Device Address", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Advertising packets with identical advertising data, address type, and advertising type\nare reported only once, even if they originate from different devices.", + "id": "BT_CTRL_SCAN_DUPL_TYPE_DATA", + "name": "BT_CTRL_SCAN_DUPL_TYPE_DATA", + "range": null, + "title": "Scan Duplicate By Advertising Data", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Advertising packets with the same address, advertising data, address type,\nand advertising type are reported only once.", + "id": "BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE", + "name": "BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE", + "range": null, + "title": "Scan Duplicate By Device Address And Advertising Data", + "type": "bool" + } + ], + "depends_on": "BT_CTRL_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", + "name": "BT_CTRL_SCAN_DUPL_TYPE", + "title": "Scan Duplicate Type", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_SCAN_DUPL_TYPE", + "name": "BT_CTRL_SCAN_DUPL_TYPE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CTRL_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 cache will be refreshed.", + "id": "BT_CTRL_SCAN_DUPL_CACHE_SIZE", + "name": "BT_CTRL_SCAN_DUPL_CACHE_SIZE", + "range": null, + "title": "Maximum number of devices in scan duplicate filter", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CTRL_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": "BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD", + "name": "BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD", + "range": null, + "title": "Duplicate scan list refresh period (seconds)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_CTRL_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": "BT_CTRL_MESH_DUPL_SCAN_CACHE_SIZE", + "name": "BT_CTRL_MESH_DUPL_SCAN_CACHE_SIZE", + "range": null, + "title": "Maximum number of Mesh adv packets in scan duplicate filter", + "type": "int" + } + ], + "depends_on": "BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "help": "This enables the BLE scan duplicate for special BLE Mesh scan.", + "id": "BT_CTRL_BLE_MESH_SCAN_DUPL_EN", + "name": "BT_CTRL_BLE_MESH_SCAN_DUPL_EN", + "range": null, + "title": "Special duplicate scan mechanism for BLE Mesh scan", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "This select enables parameters setting of BLE scan duplicate.", + "id": "BT_CTRL_BLE_SCAN_DUPL", + "name": "BT_CTRL_BLE_SCAN_DUPL", + "range": null, + "title": "BLE Scan Duplicate Options", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Always enable the limitation on max tx/rx time for Coded-PHY connection", + "id": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EN", + "name": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EN", + "range": null, + "title": "Force Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Disable the limitation on max tx/rx time for Coded-PHY connection", + "id": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS", + "name": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS", + "range": null, + "title": "Force Disable", + "type": "bool" + } + ], + "depends_on": "ESP_COEX_SW_COEXIST_ENABLE && BT_CONTROLLER_ENABLED", + "help": "When using PHY-Coded in BLE connection, limitation on max tx/rx time can be applied to\nbetter avoid dramatic performance deterioration of Wi-Fi.", + "id": "component-config-bluetooth-controller-options-coexistence-limit-on-max-tx-rx-time-for-coded-phy-connection", + "name": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM", + "title": "Coexistence: limit on MAX Tx/Rx time for coded-PHY connection", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF", + "name": "BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "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, and\nbluetooth can work under light sleep enabled. Main crystal has a relatively better performance\nthan other bluetooth low power clock sources.", + "id": "BT_CTRL_LPCLK_SEL_MAIN_XTAL", + "name": "BT_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": "BT_CTRL_LPCLK_SEL_EXT_32K_XTAL", + "name": "BT_CTRL_LPCLK_SEL_EXT_32K_XTAL", + "range": null, + "title": "External 32kHz crystal/oscillator", + "type": "bool" + }, + { + "children": [], + "depends_on": "RTC_CLK_SRC_INT_RC && ", + "help": "Internal 136kHz RC oscillator. The accuracy of this clock is a lot larger than 500ppm which is required\nin Bluetooth communication, so don't select this option in scenarios such as BLE connection state.", + "id": "BT_CTRL_LPCLK_SEL_RTC_SLOW", + "name": "BT_CTRL_LPCLK_SEL_RTC_SLOW", + "range": null, + "title": "Internal 136kHz RC oscillator", + "type": "bool" + } + ], + "depends_on": "BT_CTRL_MODEM_SLEEP_MODE_1 && BT_CONTROLLER_ENABLED", + "help": "Select the low power clock source for bluetooth controller", + "id": "component-config-bluetooth-controller-options-modem-sleep-options-bluetooth-modem-sleep-bluetooth-modem-sleep-mode-1-bluetooth-low-power-clock", + "name": "BT_CTRL_LOW_POWER_CLOCK", + "title": "Bluetooth low power clock", + "type": "choice" + } + ], + "depends_on": "BT_CTRL_MODEM_SLEEP && BT_CONTROLLER_ENABLED", + "help": "Mode 1 is the currently supported sleep mode. In this mode,\nbluetooth controller sleeps between and BLE events. A low\npower clock is used to maintain bluetooth reference clock.", + "id": "BT_CTRL_MODEM_SLEEP_MODE_1", + "name": "BT_CTRL_MODEM_SLEEP_MODE_1", + "range": null, + "title": "Bluetooth Modem sleep Mode 1", + "type": "bool" + } + ], + "depends_on": "!BT_CTRL_HCI_MODE_UART_H4 && BT_CONTROLLER_ENABLED", + "help": "Enable/disable bluetooth controller low power mode.\nModem sleep is not supported to be used with UART HCI.", + "id": "BT_CTRL_MODEM_SLEEP", + "name": "BT_CTRL_MODEM_SLEEP", + "range": null, + "title": "Bluetooth modem sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "(BT_CTRL_LPCLK_SEL_MAIN_XTAL || BT_CTRL_LPCLK_SEL_EXT_32K_XTAL) && FREERTOS_USE_TICKLESS_IDLE && BT_CONTROLLER_ENABLED", + "help": "If this option is selected, the main crystal will power up during light sleep when the low power clock\nselects an external 32kHz crystal but the external 32kHz crystal does not exist or the low power clock\nselects the main crystal.", + "id": "BT_CTRL_MAIN_XTAL_PU_DURING_LIGHT_SLEEP", + "name": "BT_CTRL_MAIN_XTAL_PU_DURING_LIGHT_SLEEP", + "range": null, + "title": "power up main XTAL during light sleep", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options-modem-sleep-options", + "title": "MODEM SLEEP Options", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_SLEEP_MODE_EFF", + "name": "BT_CTRL_SLEEP_MODE_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_SLEEP_CLOCK_EFF", + "name": "BT_CTRL_SLEEP_CLOCK_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_HCI_TL_EFF", + "name": "BT_CTRL_HCI_TL_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_CTRL_AGC_RECORRECT_EN && BT_CONTROLLER_ENABLED", + "help": "Enable coded phy AGC recorrect", + "id": "BT_CTRL_CODED_AGC_RECORRECT_EN", + "name": "BT_CTRL_CODED_AGC_RECORRECT_EN", + "range": null, + "title": "Enable coded phy AGC recorrect", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Enable uncoded phy AGC recorrect", + "id": "BT_CTRL_AGC_RECORRECT_EN", + "name": "BT_CTRL_AGC_RECORRECT_EN", + "range": null, + "title": "Enable HW AGC recorrect", + "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": "BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX", + "name": "BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX", + "range": null, + "title": "Disable active scan backoff", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "When this option is enabled, auxiliary packets will be present in the events of\n'Non-Connectable and Non-Scannable' regardless of whether the advertising length is 0.\nIf this option is not enabled, auxiliary packets will only be present when the advertising length is not 0.", + "id": "BT_BLE_ADV_DATA_LENGTH_ZERO_AUX", + "name": "BT_BLE_ADV_DATA_LENGTH_ZERO_AUX", + "range": null, + "title": "Enable aux packet when ext adv data length is zero", + "type": "bool" + }, + { + "children": [], + "depends_on": "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": "BT_CTRL_CHAN_ASS_EN", + "name": "BT_CTRL_CHAN_ASS_EN", + "range": null, + "title": "Enable channel assessment", + "type": "bool" + }, + { + "children": [], + "depends_on": "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": "BT_CTRL_LE_PING_EN", + "name": "BT_CTRL_LE_PING_EN", + "range": null, + "title": "Enable LE Ping procedure", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "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": "BT_CTRL_BLE_LLCP_CONN_UPDATE", + "name": "BT_CTRL_BLE_LLCP_CONN_UPDATE", + "range": null, + "title": "BLE ACL connection update procedure", + "type": "bool" + }, + { + "children": [], + "depends_on": "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": "BT_CTRL_BLE_LLCP_CHAN_MAP_UPDATE", + "name": "BT_CTRL_BLE_LLCP_CHAN_MAP_UPDATE", + "range": null, + "title": "BLE ACL channel map update procedure", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "If this option is enabled, Controller will terminate the connection\nwhen Instant Passed (0x28) error occurs in PHY update procedure.", + "id": "BT_CTRL_BLE_LLCP_PHY_UPDATE", + "name": "BT_CTRL_BLE_LLCP_PHY_UPDATE", + "range": null, + "title": "BLE ACL PHY update procedure", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options-ble-disconnects-when-instant-passed-0x28-occurs", + "title": "BLE disconnects when Instant Passed (0x28) occurs", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "If this option is enabled, all code for the Bluetooth controller will be moved from ROM and IRAM\nto flash, saving over 20K bytes of memory. However, it will require more flash resources and the\nperformance of Bluetooth will decrease If this option is enabled, Bluetooth may not work properly\nduring erasing flash. It is recommended to turn on the auto suspend function of flash. After auto\nsuspend is turned on, Bluetooth interrupts can be executed normally during erasing flash, with less\nimpact on Bluetooth performance.", + "id": "BT_CTRL_RUN_IN_FLASH_ONLY", + "name": "BT_CTRL_RUN_IN_FLASH_ONLY", + "range": null, + "title": "Put all BLE Controller code in flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_DTM_ENABLE", + "name": "BT_CTRL_DTM_ENABLE", + "range": null, + "title": "Enable direct test mode feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "If this option is disabled, it is not recommended to use connectable ADV.", + "id": "BT_CTRL_BLE_MASTER", + "name": "BT_CTRL_BLE_MASTER", + "range": null, + "title": "Enable BLE connection feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_BLE_TEST", + "name": "BT_CTRL_BLE_TEST", + "range": null, + "title": "Enable BLE QA test feature (Not Used)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_BLE_SCAN", + "name": "BT_CTRL_BLE_SCAN", + "range": null, + "title": "Enable BLE scan feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_BLE_SECURITY_ENABLE", + "name": "BT_CTRL_BLE_SECURITY_ENABLE", + "range": null, + "title": "Enable BLE security feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_BLE_ADV", + "name": "BT_CTRL_BLE_ADV", + "range": null, + "title": "Enable BLE ADV feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "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": "BT_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS", + "name": "BT_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS", + "range": null, + "title": "Enable enhanced Access Address check in CONNECT_IND", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_CTRL_LE_LOG_EN && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_LE_HCI_LOG_EN", + "name": "BT_CTRL_LE_HCI_LOG_EN", + "range": null, + "title": "Enable BLE HCI log", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CTRL_LE_LOG_EN && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_LE_LOG_DUMP_ONLY", + "name": "BT_CTRL_LE_LOG_DUMP_ONLY", + "range": null, + "title": "Enable BLE log dump only", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_CTRL_LE_LOG_STORAGE_EN && BT_CONTROLLER_ENABLED", + "help": "The size of ble controller log partition shall be a multiples of 4K.\nThe name of log partition shall be \"bt_ctrl_log\".\nThe partition type shall be ESP_PARTITION_TYPE_DATA.\nThe partition sub_type shall be ESP_PARTITION_SUBTYPE_ANY.", + "id": "BT_CTRL_LE_LOG_PARTITION_SIZE", + "name": "BT_CTRL_LE_LOG_PARTITION_SIZE", + "range": null, + "title": "The size of ble controller log partition(Multiples of 4K)", + "type": "int" + } + ], + "depends_on": "BT_CTRL_LE_LOG_EN && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_LE_LOG_STORAGE_EN", + "name": "BT_CTRL_LE_LOG_STORAGE_EN", + "range": null, + "title": "Enable BLE log storage to flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CTRL_LE_LOG_EN && !BT_CTRL_LE_LOG_DUMP_ONLY && BT_CONTROLLER_ENABLED", + "help": "Output ble controller logs to SPI bus", + "id": "BT_CTRL_LE_LOG_SPI_OUT_EN", + "name": "BT_CTRL_LE_LOG_SPI_OUT_EN", + "range": null, + "title": "Output ble controller logs to SPI bus", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CTRL_LE_LOG_EN && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_LE_LOG_MODE_EN", + "name": "BT_CTRL_LE_LOG_MODE_EN", + "range": null, + "title": "Enable log for specified BLE mode", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CTRL_LE_LOG_EN && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_LE_LOG_LEVEL", + "name": "BT_CTRL_LE_LOG_LEVEL", + "range": null, + "title": "The level of BLE log", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CTRL_LE_LOG_EN && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_LE_LOG_BUF1_SIZE", + "name": "BT_CTRL_LE_LOG_BUF1_SIZE", + "range": null, + "title": "The size of BLE log buffer1", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CTRL_LE_LOG_EN && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_LE_LOG_HCI_BUF_SIZE", + "name": "BT_CTRL_LE_LOG_HCI_BUF_SIZE", + "range": null, + "title": "The size of BLE log HCI buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CTRL_LE_LOG_EN && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_LE_LOG_BUF2_SIZE", + "name": "BT_CTRL_LE_LOG_BUF2_SIZE", + "range": null, + "title": "The size of BLE log buffer2", + "type": "int" + } + ], + "depends_on": "BT_CTRL_RUN_IN_FLASH_ONLY && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BT_CTRL_LE_LOG_EN", + "name": "BT_CTRL_LE_LOG_EN", + "range": null, + "title": "Enable BLE debug log", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options-controller-debug-log-options-experimental-", + "title": "Controller debug log Options (Experimental)", + "type": "menu" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options", + "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 PMP (ESP_SYSTEM_PMP_IDRAM_SPLIT)", + "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_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" + } + ], + "depends_on": null, + "id": "component-config-bluetooth-common-options", + "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", + "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": [ + { + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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.", + "id": "BLE_MESH_MBT_CLI", + "name": "BLE_MESH_MBT_CLI", + "range": null, + "title": "BLOB Transfer Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for BLOB Transfer Server model.", + "id": "BLE_MESH_MBT_SRV", + "name": "BLE_MESH_MBT_SRV", + "range": null, + "title": "BLOB Transfer Server model", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-client-server-models", + "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", + "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", + "title": "Console Library", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "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" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", + "help": "When the bus-off condition is reached, the REC should be reset to 0 and frozen (via LOM) by the\ndriver's ISR. However on the ESP32, there is an edge case where the REC will increase before the\ndriver's ISR can respond in time (e.g., due to the rapid occurrence of bus errors), thus causing the\nREC to be non-zero after bus-off. A non-zero REC can prevent bus-off recovery as the bus-off recovery\ncondition is that both TEC and REC become 0. Enabling this option will add a workaround in the driver\nto forcibly reset REC to zero on reaching bus-off.", + "id": "TWAI_ERRATA_FIX_BUS_OFF_REC", + "name": "TWAI_ERRATA_FIX_BUS_OFF_REC", + "range": null, + "title": "Add SW workaround for REC change during bus-off", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", + "help": "On the ESP32, when a transmit interrupt occurs, and interrupt register is read on the same APB clock\ncycle, the transmit interrupt could be lost. Enabling this option will add a workaround that checks the\ntransmit buffer status bit to recover any lost transmit interrupt.", + "id": "TWAI_ERRATA_FIX_TX_INTR_LOST", + "name": "TWAI_ERRATA_FIX_TX_INTR_LOST", + "range": null, + "title": "Add SW workaround for TX interrupt lost errata", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", + "help": "On the ESP32, when receiving a data or remote frame, if a bus error occurs in the data or CRC field,\nthe data of the next received frame could be invalid. Enabling this option will add a workaround that\nwill reset the peripheral on detection of this errata condition. Note that if a frame is transmitted on\nthe bus whilst the reset is ongoing, the message will not be receive by the peripheral sent on the bus\nduring the reset, the message will be lost.", + "id": "TWAI_ERRATA_FIX_RX_FRAME_INVALID", + "name": "TWAI_ERRATA_FIX_RX_FRAME_INVALID", + "range": null, + "title": "Add SW workaround for invalid RX frame errata", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", + "help": "On the ESP32, when the RX FIFO overruns and the RX message counter maxes out at 64 messages, the entire\nRX FIFO is no longer recoverable. Enabling this option will add a workaround that resets the peripheral\non detection of this errata condition. Note that if a frame is being sent on the bus during the reset\nbus during the reset, the message will be lost.", + "id": "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT", + "name": "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT", + "range": null, + "title": "Add SW workaround for RX FIFO corruption errata", + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C3) && SOC_TWAI_SUPPORTED", + "help": "When in the listen only mode, the TWAI controller must not influence the TWAI bus (i.e., must not send\nany dominant bits). However, while in listen only mode on the ESP32/ESP32-S2/ESP32-S3/ESP32-C3, the\nTWAI controller will still transmit dominant bits when it detects an error (i.e., as part of an active\nerror frame). Enabling this option will add a workaround that forces the TWAI controller into an error\npassive state on initialization, thus preventing any dominant bits from being sent.", + "id": "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM", + "name": "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM", + "range": null, + "title": "Add SW workaround for listen only transmits dominant bit errata", + "type": "bool" + } + ], + "depends_on": "SOC_TWAI_SUPPORTED", + "id": "component-config-driver-configurations-legacy-twai-driver-configurations", + "title": "Legacy TWAI Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "If this is set, the ADC2 driver will disable the output of the DAC corresponding to the specified\nchannel. This is the default value.\n\nFor testing, disable this option so that we can measure the output of DAC by internal ADC.", + "id": "ADC_DISABLE_DAC", + "name": "ADC_DISABLE_DAC", + "range": null, + "title": "Disable DAC when ADC2 is used on GPIO 25 and 26", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Whether to suppress the deprecation warnings when using legacy adc driver (driver/adc.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "ADC_SUPPRESS_DEPRECATE_WARN", + "name": "ADC_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "ADC_SKIP_LEGACY_CONFLICT_CHECK", + "name": "ADC_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "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_CAL_EFUSE_TP_ENABLE", + "name": "ADC_CAL_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_CAL_EFUSE_VREF_ENABLE", + "name": "ADC_CAL_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_CAL_LUT_ENABLE", + "name": "ADC_CAL_LUT_ENABLE", + "range": null, + "title": "Use Lookup Tables", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Whether to suppress the deprecation warnings when using legacy adc calibration\ndriver (esp_adc_cal.h).\nIf you want to continue using the legacy driver, and don't want to see related\ndeprecation warnings, you can enable this option.", + "id": "ADC_CALI_SUPPRESS_DEPRECATE_WARN", + "name": "ADC_CALI_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-legacy-adc-driver-configuration-legacy-adc-calibration-configuration", + "title": "Legacy ADC Calibration Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-legacy-adc-driver-configuration", + "title": "Legacy ADC Driver Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy dac driver (driver/dac.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "DAC_SUPPRESS_DEPRECATE_WARN", + "name": "DAC_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "DAC_SKIP_LEGACY_CONFLICT_CHECK", + "name": "DAC_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_DAC_SUPPORTED", + "id": "component-config-driver-configurations-legacy-dac-driver-configurations", + "title": "Legacy DAC Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy MCPWM driver (driver/mcpwm.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "MCPWM_SUPPRESS_DEPRECATE_WARN", + "name": "MCPWM_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "MCPWM_SKIP_LEGACY_CONFLICT_CHECK", + "name": "MCPWM_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_MCPWM_SUPPORTED", + "id": "component-config-driver-configurations-legacy-mcpwm-driver-configurations", + "title": "Legacy MCPWM Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy timer group driver (driver/timer.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "GPTIMER_SUPPRESS_DEPRECATE_WARN", + "name": "GPTIMER_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK", + "name": "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "id": "component-config-driver-configurations-legacy-timer-group-driver-configurations", + "title": "Legacy Timer Group Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy rmt driver (driver/rmt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "RMT_SUPPRESS_DEPRECATE_WARN", + "name": "RMT_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "RMT_SKIP_LEGACY_CONFLICT_CHECK", + "name": "RMT_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_RMT_SUPPORTED", + "id": "component-config-driver-configurations-legacy-rmt-driver-configurations", + "title": "Legacy RMT Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy i2s driver (driver/i2s.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "I2S_SUPPRESS_DEPRECATE_WARN", + "name": "I2S_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "I2S_SKIP_LEGACY_CONFLICT_CHECK", + "name": "I2S_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_I2S_SUPPORTED", + "id": "component-config-driver-configurations-legacy-i2s-driver-configurations", + "title": "Legacy I2S Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "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-driver-configurations-legacy-i2c-driver-configurations", + "title": "Legacy I2C Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy PCNT driver (driver/pcnt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "PCNT_SUPPRESS_DEPRECATE_WARN", + "name": "PCNT_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "PCNT_SKIP_LEGACY_CONFLICT_CHECK", + "name": "PCNT_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_PCNT_SUPPORTED", + "id": "component-config-driver-configurations-legacy-pcnt-driver-configurations", + "title": "Legacy PCNT Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy SDM driver (driver/sigmadelta.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "SDM_SUPPRESS_DEPRECATE_WARN", + "name": "SDM_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "SDM_SKIP_LEGACY_CONFLICT_CHECK", + "name": "SDM_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_SDM_SUPPORTED", + "id": "component-config-driver-configurations-legacy-sdm-driver-configurations", + "title": "Legacy SDM Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy temperature sensor driver\n(driver/temp_sensor.h). If you want to continue using the legacy driver,\nand don't want to see related deprecation warnings, you can enable this option.", + "id": "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN", + "name": "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK", + "name": "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "id": "component-config-driver-configurations-legacy-temperature-sensor-driver-configurations", + "title": "Legacy Temperature Sensor 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-driver-configurations-legacy-touch-sensor-driver-configurations", + "title": "Legacy Touch Sensor Driver Configurations", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations", + "title": "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", + "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", + "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": "TLS_STACK_WOLFSSL && ", + "help": null, + "id": "ESP_TLS_USING_WOLFSSL", + "name": "ESP_TLS_USING_WOLFSSL", + "range": null, + "title": "wolfSSL (License info in wolfSSL directory README)", + "type": "bool" + } + ], + "depends_on": null, + "help": "The ESP-TLS APIs support multiple backend TLS libraries. Currently mbedTLS and WolfSSL are\nsupported. Different TLS libraries may support different features and have different resource\nusage. Consult the ESP-TLS documentation in ESP-IDF Programming guide for more details.", + "id": "component-config-esp-tls-choose-ssl-tls-library-for-esp-tls-see-help-for-more-info-", + "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 peer (here, the client) certificate is checked by the server,\nhowever the handshake continues even if verification failed. By default, the\npeer certificate is not checked and ignored by the server.\n\nmbedtls_ssl_get_verify_result() can be called after the handshake is complete to\nretrieve status of verification.", + "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\nwolfSSL TLS library.", + "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": "ESP_TLS_USING_WOLFSSL", + "help": "Enable detailed debug prints for wolfSSL SSL library.", + "id": "ESP_DEBUG_WOLFSSL", + "name": "ESP_DEBUG_WOLFSSL", + "range": null, + "title": "Enable debug logs for wolfSSL", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_WOLFSSL", + "help": "Enable a fuller set of OCSP checks: checking revocation status of intermediate certificates,\noptional fallbacks to CRLs, etc.", + "id": "ESP_TLS_OCSP_CHECKALL", + "name": "ESP_TLS_OCSP_CHECKALL", + "range": null, + "title": "Enabled full OCSP checks for ESP-TLS", + "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", + "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", + "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.\n\nnote: This cannot be used in the ADC legacy driver.", + "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", + "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", + "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", + "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", + "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", + "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-bitscrambler-configurations", + "title": "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", + "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", + "title": "ESP-Driver:DAC Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "This option is intended to fix the bug that ESP32 is not able to switch to configured\npullup/pulldown mode in sleep.\nIf this option is selected, chip will automatically emulate the behaviour of switching,\nand about 450B of source codes would be placed into IRAM.", + "id": "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL", + "name": "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL", + "range": null, + "title": "Support light sleep GPIO pullup/pulldown configuration for ESP32", + "type": "bool" + }, + { + "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", + "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", + "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.\n\nnote: This cannot be used in the I2C legacy driver.", + "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": "I2C slave version 2 solves some existing known issues. Such as write/read workflow, stretch handling, etc.", + "id": "I2C_ENABLE_SLAVE_DRIVER_VERSION_2", + "name": "I2C_ENABLE_SLAVE_DRIVER_VERSION_2", + "range": null, + "title": "Enable I2C slave driver version 2", + "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", + "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": "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", + "title": "ESP-Driver:I2S 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", + "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", + "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", + "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", + "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", + "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", + "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", + "title": "ESP-Driver:RMT Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "Place SDM control functions (like set_duty) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", + "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": "whether to enable the debug log message for SDM driver.\nNote that, this option only controls the SDM driver log, won't affect other drivers.", + "id": "SDM_ENABLE_DEBUG_LOG", + "name": "SDM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_SDM_SUPPORTED", + "id": "component-config-esp-driver-sigma-delta-modulator-configurations", + "title": "ESP-Driver:Sigma Delta Modulator Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!FREERTOS_PLACE_FUNCTIONS_INTO_FLASH && 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_PLACE_FUNCTIONS_INTO_FLASH` is enabled.\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'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.", + "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", + "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", + "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", + "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": "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", + "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", + "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", + "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.", + "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", + "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": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ETH_PHY_INTERFACE_RMII", + "name": "ETH_PHY_INTERFACE_RMII", + "range": null, + "title": "Reduced Media Independent Interface (RMII)", + "type": "bool" + } + ], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Select the communication interface between MAC and PHY chip.", + "id": "component-config-ethernet-support-esp32-internal-emac-controller-phy-interface", + "name": "ETH_PHY_INTERFACE", + "title": "PHY interface", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "MAC will get RMII clock from outside.\nNote that ESP32 only supports GPIO0 to input the RMII clock.", + "id": "ETH_RMII_CLK_INPUT", + "name": "ETH_RMII_CLK_INPUT", + "range": null, + "title": "Input RMII clock from external", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "ESP32 can generate RMII clock by internal APLL.\nThis clock can be routed to the external PHY device.\nESP32 supports to route the RMII clock to GPIO0/16/17.", + "id": "ETH_RMII_CLK_OUTPUT", + "name": "ETH_RMII_CLK_OUTPUT", + "range": null, + "title": "Output RMII clock from internal", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32 && ETH_PHY_INTERFACE_RMII && ETH_USE_ESP32_EMAC", + "help": "Select external or internal RMII clock.", + "id": "component-config-ethernet-support-esp32-internal-emac-controller-rmii-clock-mode", + "name": "ETH_RMII_CLK_MODE", + "title": "RMII clock mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && ETH_RMII_CLK_INPUT && ETH_USE_ESP32_EMAC", + "help": "ESP32 only supports GPIO0 to input the RMII clock.", + "id": "ETH_RMII_CLK_IN_GPIO", + "name": "ETH_RMII_CLK_IN_GPIO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", + "help": "GPIO0 can be set to output a pre-divided PLL clock. Enabling this option will configure\nGPIO0 to output a 50MHz clock. In fact this clock doesn't have directly relationship with\nEMAC peripheral. Sometimes this clock may not work well with your PHY chip.\nWARNING: If you want the Ethernet to work with WiFi, don\u2019t select ESP32 as RMII CLK output\nas it would result in clock instability!", + "id": "ETH_RMII_CLK_OUTPUT_GPIO0", + "name": "ETH_RMII_CLK_OUTPUT_GPIO0", + "range": null, + "title": "Output RMII clock from GPIO0 (Experimental!)", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && !ETH_RMII_CLK_OUTPUT_GPIO0 && ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", + "help": "Set the GPIO number to output RMII Clock.\nWARNING: If you want the Ethernet to work with WiFi, don\u2019t select ESP32 as RMII CLK output\nas it would result in clock instability!", + "id": "ETH_RMII_CLK_OUT_GPIO", + "name": "ETH_RMII_CLK_OUT_GPIO", + "range": null, + "title": "RMII clock GPIO number", + "type": "int" + }, + { + "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": null, + "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": null, + "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": null, + "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": [ + { + "children": [], + "depends_on": "ETH_USE_SPI_ETHERNET", + "help": "DM9051 is a fast Ethernet controller with an SPI interface.\nIt's also integrated with a 10/100M PHY and MAC.\nSelect this to enable DM9051 driver.", + "id": "ETH_SPI_ETHERNET_DM9051", + "name": "ETH_SPI_ETHERNET_DM9051", + "range": null, + "title": "Use DM9051", + "type": "bool" + }, + { + "children": [], + "depends_on": "ETH_USE_SPI_ETHERNET", + "help": "W5500 is a HW TCP/IP embedded Ethernet controller.\nTCP/IP stack, 10/100 Ethernet MAC and PHY are embedded in a single chip.\nHowever the driver in ESP-IDF only enables the RAW MAC mode,\nmaking it compatible with the software TCP/IP stack.\nSay yes to enable W5500 driver.", + "id": "ETH_SPI_ETHERNET_W5500", + "name": "ETH_SPI_ETHERNET_W5500", + "range": null, + "title": "Use W5500 (MAC RAW)", + "type": "bool" + }, + { + "children": [], + "depends_on": "ETH_USE_SPI_ETHERNET", + "help": "The KSZ8851SNL is a single-chip Fast Ethernet controller consisting of\na 10/100 physical layer transceiver (PHY), a MAC, and a Serial Peripheral Interface (SPI).\nSelect this to enable KSZ8851SNL driver.", + "id": "ETH_SPI_ETHERNET_KSZ8851SNL", + "name": "ETH_SPI_ETHERNET_KSZ8851SNL", + "range": null, + "title": "Use KSZ8851SNL", + "type": "bool" + } + ], + "depends_on": null, + "help": "ESP-IDF can also support some SPI-Ethernet modules.", + "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", + "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", + "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", + "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", + "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 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", + "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" + } + ], + "depends_on": null, + "id": "component-config-http-server", + "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" + } + ], + "depends_on": null, + "id": "component-config-esp-https-ota", + "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", + "title": "ESP HTTPS server", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_0", + "name": "ESP32S3_REV_MIN_0", + "range": null, + "title": "Rev v0.0 (ECO0)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_1", + "name": "ESP32S3_REV_MIN_1", + "range": null, + "title": "Rev v0.1 (ECO1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_2", + "name": "ESP32S3_REV_MIN_2", + "range": null, + "title": "Rev v0.2 (ECO2)", + "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-s3-revision", + "name": "ESP32S3_REV_MIN", + "title": "Minimum Supported ESP32-S3 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_REV_MIN_FULL", + "name": "ESP32S3_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": "ESP32S3_REV_MAX_FULL", + "name": "ESP32S3_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-S3 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", + "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": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32S3_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", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32S3_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", + "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": "esp32c2, esp32c3, esp32s3, esp32c5, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\na small electrostatic pulse during light sleep, with specific condition\n\n- GPIO needs to be configured as input-mode only\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\n voltage is higher than 6 V\n\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\nThe hardware design needs to controlled it with determined supply or ground voltage\nis necessary.\n\nThis option provides a software workaround for this issue. Configure to isolate all\nGPIO pins in sleep state.", + "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", + "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 136 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 32 kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32 kHz oscillator at 32K_XP pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_8MD256", + "name": "RTC_CLK_SRC_INT_8MD256", + "range": null, + "title": "Internal 17.5 MHz oscillator, divided by 256", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.", + "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", + "name": "RTC_CLK_SRC", + "title": "RTC clock source", + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-rtc-clock-config", + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-peripheral-control", + "title": "Peripheral Control", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ETM_SUPPORTED", + "help": "whether to enable the debug log message for ETM core driver.\nNote that, this option only controls the ETM related driver log, won't affect other drivers.", + "id": "ETM_ENABLE_DEBUG_LOG", + "name": "ETM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_ETM_SUPPORTED", + "id": "component-config-hardware-settings-etm-configuration", + "title": "ETM Configuration", + "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_SUPPORTED", + "help": "This will ensure the GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).\nIf this option is enabled, ALL GDMA channel's ISR handlers should be placed in IRAM, which is a overkill.\nIt's recommend to set the \"isr_cache_safe\" in the \"gdma_channel_alloc_config_t\".\nThen other GDMA channels won't be influenced.", + "id": "GDMA_ISR_IRAM_SAFE", + "name": "GDMA_ISR_IRAM_SAFE", + "range": null, + "title": "GDMA ISR IRAM-Safe (Deprecated. Read Help!)", + "type": "bool" + } + ], + "depends_on": "SOC_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-gdma-configurations", + "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-hardware-settings-dw_gdma-configurations", + "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-hardware-settings-2d-dma-configurations", + "title": "2D-DMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "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.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", + "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", + "title": "Main XTAL Config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_7", + "name": "ESP_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.44V", + "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.56V", + "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.67V", + "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.84V", + "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.98V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "3.19V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_1", + "name": "ESP_BROWNOUT_DET_LVL_SEL_1", + "range": null, + "title": "3.30V", + "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 ESP3-S3 chip.\n\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\n#of the brownout threshold levels.", + "id": "component-config-hardware-settings-power-supplier-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level", + "name": "ESP_BROWNOUT_DET_LVL_SEL", + "title": "Brownout voltage level", + "type": "choice" + } + ], + "depends_on": "!IDF_ENV_FPGA", + "help": "The ESP32-S3 has a built-in brownout detector which can detect if the voltage is lower than\na specific value. If this happens, it will reset the chip in order to prevent unintended\nbehaviour.", + "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.\nThis is because for some special workflow, the chip needs do more things when brownout happens\nbefore restart instead of restarting directly. This part needs to be done in callback function\nof 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", + "title": "Brownout Detector", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-power-supplier", + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings", + "title": "Hardware Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "whether to enable the debug log message for LCD driver.\nNote that, this option only controls the LCD driver log, won't affect other drivers.", + "id": "LCD_ENABLE_DEBUG_LOG", + "name": "LCD_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + }, + { + "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": "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_DSI_ISR_IRAM_SAFE", + "name": "LCD_DSI_ISR_IRAM_SAFE", + "range": null, + "title": "DSI LCD ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-lcd-controller-configurations", + "title": "ESP-Driver:LCD Controller Configurations", + "type": "menu" + }, + { + "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", + "title": "ESP-MM: Memory Management Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The value of 0 indicates the IP lost timer is disabled, otherwise the timer is enabled.\n\nThe IP address may be lost because of some reasons, e.g. when the station disconnects\nfrom soft-AP, or when DHCP IP renew fails etc. If the IP lost timer is enabled, it will\nbe started 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 get the IP again before\nthe timer expires.", + "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", + "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": "Enable if esp_netif_receive() should return error code. This is useful to inform upper layers\nthat packet input to TCP/IP stack failed, so the upper layers could implement flow control.\nThis option is disabled by default due to backward compatibility and will be enabled in v6.0 (IDF-7194)", + "id": "ESP_NETIF_RECEIVE_REPORT_ERRORS", + "name": "ESP_NETIF_RECEIVE_REPORT_ERRORS", + "range": null, + "title": "Use esp_err_t to report errors from esp_netif_receive", + "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", + "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", + "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", + "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", + "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.\nWarning: If you want to enable this option on ESP32, you should enable `GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL`\nat first, otherwise you will not be able to switch pullup/pulldown mode.", + "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 || (SOC_CPU_IN_TOP_DOMAIN && 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": [ + { + "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" + } + ], + "depends_on": "SOC_PM_SUPPORT_CPU_PD", + "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": [], + "depends_on": "SOC_PM_SUPPORT_TOP_PD && SOC_PAU_SUPPORTED", + "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_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" + } + ], + "depends_on": null, + "id": "component-config-power-management", + "title": "Power Management", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_MODE_QUAD", + "name": "SPIRAM_MODE_QUAD", + "range": null, + "title": "Quad Mode PSRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_MODE_OCT", + "name": "SPIRAM_MODE_OCT", + "range": null, + "title": "Octal Mode PSRAM", + "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-mode-quad-oct-of-spi-ram-chip-in-use", + "name": "SPIRAM_MODE", + "title": "Mode (QUAD/OCT) of SPI RAM chip in use", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_AUTO", + "name": "SPIRAM_TYPE_AUTO", + "range": null, + "title": "Auto-detect", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_MODE_QUAD && ", + "help": null, + "id": "SPIRAM_TYPE_ESPPSRAM16", + "name": "SPIRAM_TYPE_ESPPSRAM16", + "range": null, + "title": "ESP-PSRAM16 or APS1604", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_MODE_QUAD && ", + "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 , LY68L6400 or APS6408", + "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-spiram-chip-in-use", + "name": "SPIRAM_TYPE", + "title": "Type of SPIRAM chip in use", + "type": "choice" + }, + { + "children": [], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPIRAM_CLK_IO", + "name": "SPIRAM_CLK_IO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPIRAM_CS_IO", + "name": "SPIRAM_CS_IO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Helper for selecting both `SPIRAM_FETCH_INSTRUCTIONS` and `SPIRAM_RODATA`", + "id": "SPIRAM_XIP_FROM_PSRAM", + "name": "SPIRAM_XIP_FROM_PSRAM", + "range": null, + "title": "Enable Executable in place from (XiP) from PSRAM feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If enabled, instructions in flash will be moved into PSRAM on startup.\nIf SPIRAM_RODATA is also enabled, code that requires execution during an MSPI1 Flash operation\ncan forgo being placed in IRAM. Therefore codes that need to be executing during Flash\noperation can continue working normally.\n\nThis feature is useful for high throughput peripheral involved applications to improve\nthe performance during MSPI1 flash operations. PSRAM access speed is faster than Flash access.\nSo the performance is better. (see External RAM documentation for more details).", + "id": "SPIRAM_FETCH_INSTRUCTIONS", + "name": "SPIRAM_FETCH_INSTRUCTIONS", + "range": null, + "title": "Move Instructions in Flash to PSRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If enabled, rodata in flash will be moved into PSRAM on startup.\nIf SPIRAM_FETCH_INSTRUCTIONS is also enabled, code that requires execution during an MSPI1 Flash operation\nis not necessary to be placed in IRAM. Therefore codes that need to be executing during Flash\noperation can continue working normally.\n\nThis feature is useful for high throughput peripheral involved applications to improve\nthe performance during MSPI1 flash operations. PSRAM access speed is faster than Flash access.\nSo the performance is better. (see External RAM documentation for more details).", + "id": "SPIRAM_RODATA", + "name": "SPIRAM_RODATA", + "range": null, + "title": "Move Read-Only Data in Flash to PSRAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "(SPIRAM_MODE_QUAD || IDF_EXPERIMENTAL_FEATURES) && ", + "help": "- Quad PSRAM 120 MHz is stable.\n\n- Octal PSRAM 120 MHz is an experimental feature, it works when\n the temperature is stable.\n\n Risks:\n If your chip powers on at a certain temperature, then after the temperature\n increases or decreases by approximately 20 Celsius degrees (depending on the\n chip), the accesses to / from PSRAM will crash randomly.", + "id": "SPIRAM_SPEED_120M", + "name": "SPIRAM_SPEED_120M", + "range": null, + "title": "120MHz clock speed (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_SPEED_80M", + "name": "SPIRAM_SPEED_80M", + "range": null, + "title": "80MHz clock speed", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_SPEED_40M", + "name": "SPIRAM_SPEED_40M", + "range": null, + "title": "40Mhz clock speed", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Select the speed for the SPI RAM chip.", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-set-ram-clock-speed", + "name": "SPIRAM_SPEED", + "title": "Set RAM clock speed", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_TIMING_TUNING_POINT_VIA_TEMPERATURE_SENSOR && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Due to adjusting timing point automatically when temperature change, the task will measure current\ntemperature value in some specific interval. This configuration option would help you to set the\nproper interval. The interval unit is second.", + "id": "SPIRAM_TIMING_MEASURE_TEMPERATURE_INTERVAL_SECOND", + "name": "SPIRAM_TIMING_MEASURE_TEMPERATURE_INTERVAL_SECOND", + "range": null, + "title": "PSRAM timing tuning measure temperature interval (unit: second)", + "type": "int" + } + ], + "depends_on": "SPIRAM_SPEED_120M && SPIRAM_MODE_OCT && IDF_EXPERIMENTAL_FEATURES && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Temperature would influence the source clock frequency so that the timing tuning point set in start-up\nmight not be always proper when temperature varies in high range. This configuration would help checking\nthe temperature in real-time, and adjust timing point automatically when temperature change.\n(see External RAM documentation for more details)", + "id": "SPIRAM_TIMING_TUNING_POINT_VIA_TEMPERATURE_SENSOR", + "name": "SPIRAM_TIMING_TUNING_POINT_VIA_TEMPERATURE_SENSOR", + "range": null, + "title": "Adjust PSRAM timing tuning point via on-chip temperature sensor in real-time", + "type": "bool" + }, + { + "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": [], + "depends_on": "SPIRAM_MODE_OCT && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable MSPI Error-Correcting Code function when accessing SPIRAM.\n\nIf enabled, 1/16 of the SPI RAM total size will be reserved for error-correcting code.", + "id": "SPIRAM_ECC_ENABLE", + "name": "SPIRAM_ECC_ENABLE", + "range": null, + "title": "Enable SPI RAM ECC", + "type": "bool" + }, + { + "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": "IDF_TARGET_ESP32 && ", + "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", + "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" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config", + "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", + "title": "ESP PSRAM", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", + "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, + "help": "Place non-ISR ringbuf functions (like xRingbufferCreate/xRingbufferSend) into flash.\nThis frees up IRAM, but the functions can no longer be called when the cache is disabled.", + "id": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", + "name": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place non-ISR ringbuf functions into flash", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-ringbuf", + "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", + "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", + "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", + "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.", + "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", + "title": "ESP Security Specific", + "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", + "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": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_16KB", + "name": "ESP32S3_INSTRUCTION_CACHE_16KB", + "range": null, + "title": "16KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_32KB", + "name": "ESP32S3_INSTRUCTION_CACHE_32KB", + "range": null, + "title": "32KB", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache size to be set on application startup.\nIf you use 16KB instruction cache rather than 32KB instruction cache,\nthen the other 16KB will be managed by heap allocator.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-size", + "name": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "title": "Instruction cache size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "name": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_4WAYS", + "name": "ESP32S3_INSTRUCTION_CACHE_4WAYS", + "range": null, + "title": "4 ways", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_8WAYS", + "name": "ESP32S3_INSTRUCTION_CACHE_8WAYS", + "range": null, + "title": "8 ways", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache associated ways to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-associated-ways", + "name": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "title": "Instruction cache associated ways", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "name": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32S3_INSTRUCTION_CACHE_16KB && ", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_16B", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_16B", + "range": null, + "title": "16 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_32B", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_32B", + "range": null, + "title": "32 Bytes", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache line size to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-line-size", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "title": "Instruction cache line size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!SPIRAM_ECC_ENABLE", + "help": "If enabled, instruction cache will use wrap mode to read spi flash or spi ram.\nThe wrap length equals to ESP32S3_INSTRUCTION_CACHE_LINE_SIZE.\nHowever, it depends on complex conditions.", + "id": "ESP32S3_INSTRUCTION_CACHE_WRAP", + "name": "ESP32S3_INSTRUCTION_CACHE_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_16KB", + "name": "ESP32S3_DATA_CACHE_16KB", + "range": null, + "title": "16KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_32KB", + "name": "ESP32S3_DATA_CACHE_32KB", + "range": null, + "title": "32KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_64KB", + "name": "ESP32S3_DATA_CACHE_64KB", + "range": null, + "title": "64KB", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache size to be set on application startup.\nIf you use 32KB data cache rather than 64KB data cache,\nthe other 32KB will be added to the heap.", + "id": "component-config-esp-system-settings-cache-config-data-cache-size", + "name": "ESP32S3_DATA_CACHE_SIZE", + "title": "Data cache size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DATA_CACHE_SIZE", + "name": "ESP32S3_DATA_CACHE_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_4WAYS", + "name": "ESP32S3_DATA_CACHE_4WAYS", + "range": null, + "title": "4 ways", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_8WAYS", + "name": "ESP32S3_DATA_CACHE_8WAYS", + "range": null, + "title": "8 ways", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache associated ways to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-data-cache-associated-ways", + "name": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "title": "Data cache associated ways", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "name": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "(ESP32S3_DATA_CACHE_16KB || ESP32S3_DATA_CACHE_32KB) && ", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_16B", + "name": "ESP32S3_DATA_CACHE_LINE_16B", + "range": null, + "title": "16 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_32B", + "name": "ESP32S3_DATA_CACHE_LINE_32B", + "range": null, + "title": "32 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_64B", + "name": "ESP32S3_DATA_CACHE_LINE_64B", + "range": null, + "title": "64 Bytes", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache line size to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-data-cache-line-size", + "name": "ESP32S3_DATA_CACHE_LINE_SIZE", + "title": "Data cache line size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_SIZE", + "name": "ESP32S3_DATA_CACHE_LINE_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!SPIRAM_ECC_ENABLE", + "help": "If enabled, data cache will use wrap mode to read spi flash or spi ram.\nThe wrap length equals to ESP32S3_DATA_CACHE_LINE_SIZE.\nHowever, it depends on complex conditions.", + "id": "ESP32S3_DATA_CACHE_WRAP", + "name": "ESP32S3_DATA_CACHE_WRAP", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-cache-config", + "title": "Cache config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP32S3_RTCDATA_IN_FAST_MEM", + "name": "ESP32S3_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": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "help": "RAM size dedicated for static variables (.data & .bss sections).\nThis value is less than the chips total memory, as not all of it can be used for this purpose.\nE.g. parts are used by the software bootloader, and will only be available\nas heap memory after app startup.", + "id": "ESP32S3_FIXED_STATIC_RAM_SIZE", + "name": "ESP32S3_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 ESP32S3_FIXED_STATIC_RAM_SIZE", + "id": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "name": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Use fixed static RAM size", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory", + "title": "Memory", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_MEMMAP_TRACEMEM", + "name": "ESP32S3_MEMMAP_TRACEMEM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_MEMMAP_TRACEMEM_TWOBANKS", + "name": "ESP32S3_MEMMAP_TRACEMEM_TWOBANKS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32S3_TRAX && !ESP_SYSTEM_SINGLE_CORE_MODE", + "help": "The esp32-s3 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.", + "id": "ESP32S3_TRAX_TWOBANKS", + "name": "ESP32S3_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-s3 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.", + "id": "ESP32S3_TRAX", + "name": "ESP32S3_TRAX", + "range": null, + "title": "Use TRAX tracing feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_TRACEMEM_RESERVE_DRAM", + "name": "ESP32S3_TRACEMEM_RESERVE_DRAM", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-trace-memory", + "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- USB CDC functions for the esp_rom_printf (if ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF=y)\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", + "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", + "name": "ESP_BACKTRACING_METHOD", + "title": "Backtracing method", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_PMP_IDRAM_SPLIT", + "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_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "name": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "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", + "help": "If enabled, the CPU watches all the memory access and raises an exception in case\nof any memory violation. This feature automatically splits\nthe SRAM memory, using PMP, into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", + "id": "ESP_SYSTEM_PMP_IDRAM_SPLIT", + "name": "ESP_SYSTEM_PMP_IDRAM_SPLIT", + "range": null, + "title": "Enable IRAM/DRAM split protection", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE", + "help": "This option enables the default memory protection provided by TEE.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", + "name": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", + "range": null, + "title": "Enable memory protection (via TEE)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_SYSTEM_MEMPROT_FEATURE", + "help": "Once locked, memory protection settings cannot be changed anymore.\nThe lock is reset only on the chip startup.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", + "name": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", + "range": null, + "title": "Lock memory protection settings", + "type": "bool" + } + ], + "depends_on": "SOC_MEMPROT_SUPPORTED", + "help": "If enabled, the permission control module watches all the memory access and fires the panic handler\nif a permission violation is detected. This feature automatically splits\nthe SRAM memory into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE", + "name": "ESP_SYSTEM_MEMPROT_FEATURE", + "range": null, + "title": "Enable memory protection", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory-protection", + "title": "Memory protection", + "type": "menu" + }, + { + "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", + "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": "", + "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-system-settings-channel-for-console-output", + "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-system-settings-channel-for-console-secondary-output", + "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-system-settings-uart-peripheral-to-use-for-console-output-0-1-", + "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" + }, + { + "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", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL", + "title": "Interrupt level to use for Interrupt Watchdog and other system checks", + "type": "choice" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED && !SECURE_ENABLE_TEE", + "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", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP_SYSTEM_SINGLE_CORE_MODE || APPTRACE_GCOV_ENABLE", + "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-", + "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, + 1 + ], + "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", + "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", + "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-", + "title": "ESP Timer (High Resolution Timer)", + "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", + "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", + "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", + "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": [], + "depends_on": "ESP_WIFI_ENABLE_WPA3_SAE && 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" + }, + { + "children": [], + "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_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", + "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", + "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 WiFi Aware (NAN) feature.", + "id": "ESP_WIFI_NAN_ENABLE", + "name": "ESP_WIFI_NAN_ENABLE", + "range": null, + "title": "WiFi Aware", + "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": "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", + "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", + "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" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Max candidates that can be considered while scanning as a part of the\nnetwork at one time.", + "id": "ESP_WIFI_ROAMING_MAX_CANDIDATES", + "name": "ESP_WIFI_ROAMING_MAX_CANDIDATES", + "range": null, + "title": "Max Candidates in the network", + "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", + "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" + } + ], + "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", + "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" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "id": "component-config-wi-fi-wps-configuration-options", + "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": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this to enable unity test for DPP.", + "id": "ESP_WIFI_TESTING_OPTIONS", + "name": "ESP_WIFI_TESTING_OPTIONS", + "range": null, + "title": "Add DPP testing code", + "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" + } + ], + "depends_on": null, + "id": "component-config-wi-fi", + "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", + "name": "ESP_COREDUMP_TO_FLASH_OR_UART", + "title": "Data destination", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_DATA_FORMAT_BIN", + "name": "ESP_COREDUMP_DATA_FORMAT_BIN", + "range": null, + "title": "Binary format", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_DATA_FORMAT_ELF", + "name": "ESP_COREDUMP_DATA_FORMAT_ELF", + "range": null, + "title": "ELF format", + "type": "bool" + } + ], + "depends_on": "!ESP_COREDUMP_ENABLE_TO_NONE", + "help": "Select the data format for core dump.", + "id": "component-config-core-dump-core-dump-data-format", + "name": "ESP_COREDUMP_DATA_FORMAT", + "title": "Core dump data format", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_CHECKSUM_CRC32", + "name": "ESP_COREDUMP_CHECKSUM_CRC32", + "range": null, + "title": "Use CRC32 for integrity verification", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_DATA_FORMAT_ELF && ", + "help": null, + "id": "ESP_COREDUMP_CHECKSUM_SHA256", + "name": "ESP_COREDUMP_CHECKSUM_SHA256", + "range": null, + "title": "Use SHA256 for integrity verification", + "type": "bool" + } + ], + "depends_on": "!ESP_COREDUMP_ENABLE_TO_NONE", + "help": "Select the integrity check for the core dump.", + "id": "component-config-core-dump-core-dump-data-integrity-check", + "name": "ESP_COREDUMP_CHECKSUM", + "title": "Core dump data integrity check", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_DATA_FORMAT_ELF", + "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 snapshots in core dump.", + "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_DATA_FORMAT_ELF && 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", + "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", + "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", + "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", + "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", + "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": null, + "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", + "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-", + "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", + "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", + "title": "File system free space calculation behavior", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-fat-filesystem-support", + "title": "FAT Filesystem support", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32P4", + "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", + "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", + "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 && !FREERTOS_SMP", + "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", + "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", + "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": "!FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "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": null, + "help": "THIS OPTION IS DEPRECATED. Use FREERTOS_TASK_PRE_DELETION_HOOK instead.\n\nEnable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", + "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "range": null, + "title": "Enable static task clean up hook (DEPRECATED)", + "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-", + "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", + "name": "FREERTOS_RUN_TIME_STATS_CLK", + "title": "Choose the clock source for run time stats", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "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" + } + ], + "depends_on": null, + "help": "When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\nThis saves up to 8KB of IRAM depending on which functions are used.", + "id": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "name": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place FreeRTOS functions 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", + "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", + "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_ENABLE_TASK_SNAPSHOT", + "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_PANIC_HANDLER_IRAM", + "help": null, + "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "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" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_IN_IRAM", + "name": "FREERTOS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos", + "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", + "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", + "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": "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-", + "title": "Hardware Abstraction Layer (HAL) and Low Level (LL)", + "type": "menu" + }, + { + "children": [ + { + "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", + "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", + "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", + "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", + "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 dB", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "title": "Level Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-log-log-level", + "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", + "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", + "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", + "name": "LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-settings", + "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", + "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": [ + { + "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", + "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": "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" + }, + { + "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" + }, + { + "children": [], + "depends_on": "LWIP_DHCPS", + "help": "This allows the DNS option to be optional in the DHCP offers,\ndepending on the server's runtime configuration.\nWhen enabled, the DHCP server will always add the DNS option to DHCP responses.\nIf a DNS server is not explicitly configured, the server's IP address will be used\nas the fallback for the DNS option.\nWhen disabled, the DHCP server will only include the DNS option in responses\nif a DNS server has been explicitly configured.\nThis option will be removed in IDF v6.x", + "id": "LWIP_DHCPS_ADD_DNS", + "name": "LWIP_DHCPS_ADD_DNS", + "range": null, + "title": "Always add DNS option in DHCP responses", + "type": "bool" + } + ], + "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" + } + ], + "depends_on": null, + "id": "component-config-lwip-dhcp-server", + "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": [ + { + "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", + "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", + "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", + "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", + "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", + "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_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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "name": "LWIP_HOOK_IP6_INPUT", + "title": "IPv6 packet input", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-lwip-hooks", + "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", + "title": "LWIP", + "type": "menu" + }, + { + "children": [ + { + "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()\n behavior in ESP-IDF\n- Custom allocation mode, by overwriting calloc()/free() using\n mbedtls_platform_set_calloc_free() function\n- Internal IRAM memory wherever applicable else internal DRAM\n\nRecommended mode here is always internal (*), since that is most preferred\nfrom security perspective. But if application requirement does not\nallow sufficient free internal memory then alternate mode can be\nselected.\n\n(*) In case of ESP32-S2/ESP32-S3, hardware allows encryption of external\nSPIRAM contents provided hardware flash encryption feature is enabled.\nIn that case, using external SPIRAM allocation strategy is also safe choice\nfrom security perspective.", + "id": "component-config-mbedtls-memory-allocation-strategy", + "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": [ + { + "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-enable-mbedtls-debugging-set-mbedtls-debugging-level", + "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": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", + "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", + "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", + "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", + "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" + } + ], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", + "id": "component-config-mbedtls-mbedtls-v3-x-related-support-tls-1-3-protocol-tls-1-3-related-configurations", + "title": "TLS 1.3 related configurations", + "type": "menu" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", + "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": null, + "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_ECDH_C && MBEDTLS_ECP_RESTARTABLE", + "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": 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": "MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C", + "help": "Enable serialization of the TLS context structures\nThis is a local optimization in handling a single, potentially long-lived connection.\n\nSee mbedTLS documentation for required API and more details.\nDisabling this option will save some code size.", + "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": null, + "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_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" + }, + { + "children": [], + "depends_on": "MBEDTLS_X509_CRL_PARSE_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_SSL_PROTO_TLS1_3 || MBEDTLS_SSL_DTLS_CONNECTION_ID", + "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:\n A value of 1 means that no padding will be used for outgoing records.\n On systems lacking division instructions, a power of two should be preferred.", + "id": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", + "name": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", + "range": null, + "title": "Record plaintext padding", + "type": "int" + }, + { + "children": [ + { + "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-mbedtls-v3-x-related-dtls-based-configurations", + "title": "DTLS-based configurations", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-mbedtls-v3-x-related", + "title": "mbedTLS v3.x related", + "type": "menu" + }, + { + "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-certificate-bundle-enable-trusted-root-certificate-bundle-default-certificate-bundle-options", + "name": "MBEDTLS_DEFAULT_CERTIFICATE_BUNDLE", + "title": "Default certificate bundle options", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_CUSTOM_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", + "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", + "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\nconfig keeps expired, retracted certificates in the bundle and it may\npose a security risk.\n\n- Deprecated cert list may grow based based on sync with upstream bundle\n- Deprecated certs would be 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", + "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": 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" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-certificate-bundle", + "title": "Certificate Bundle", + "type": "menu" + }, + { + "children": [], + "depends_on": "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" + }, + { + "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" + }, + { + "children": [ + { + "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": [ + 0, + 3 + ], + "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" + } + ], + "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": [ + { + "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-enable-aes-hardware-s-pseudo-round-function-strength-of-the-pseudo-rounds-function", + "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", + "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 the pseudo round function section of the\nsecurity 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" + }, + { + "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": "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 && MBEDTLS_GCM_C", + "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, BLOWFISH.\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\nconfigurations 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_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": [ + 0, + 3 + ], + "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", + "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": [], + "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_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", + "id": "MBEDTLS_HARDWARE_ECC", + "name": "MBEDTLS_HARDWARE_ECC", + "range": null, + "title": "Enable hardware ECC acceleration", + "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": "SOC_ECDSA_SUPPORTED", + "help": "Enable hardware accelerated ECDSA peripheral to sign data\non curve SECP192R1 and SECP256R1 in mbedTLS.\n\nNote that for signing, the private key has to be burnt in an efuse key block\nwith key purpose set to ECDSA_KEY.\nIf no key is burnt, it will report an error\n\nThe key should be burnt in little endian format. espefuse.py utility handles it internally\nbut care needs to be taken while burning using esp_efuse APIs", + "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_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 in addition to this countermeasure\nso 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 time for the software.\nThis fix helps in protecting the device only in case of remote timing attack on 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-enable-software-countermeasure-for-ecdsa-signing-using-on-chip-ecdsa-peripheral", + "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 verify signature\non curve SECP192R1 and SECP256R1 in mbedTLS.", + "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": [], + "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": [ + { + "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": [], + "depends_on": null, + "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": 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_SHA512_C adds support for SHA-384 and 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": [ + { + "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": null, + "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-tls-protocol-role", + "name": "MBEDTLS_TLS_MODE", + "title": "TLS Protocol Role", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_SERVER", + "name": "MBEDTLS_TLS_SERVER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_CLIENT", + "name": "MBEDTLS_TLS_CLIENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_ENABLED", + "name": "MBEDTLS_TLS_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && 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_DHM_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", + "range": null, + "title": "Enable DHE-PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_ECDH_C && 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", + "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", + "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", + "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": [], + "depends_on": "MBEDTLS_DHM_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-DHE-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", + "range": null, + "title": "Enable DHE-RSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && 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", + "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" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDH-ECDSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", + "range": null, + "title": "Enable ECDH-ECDSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDH-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", + "range": null, + "title": "Enable ECDH-RSA based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to show Elliptic Curve based ciphersuite mode options.\n\nDisabling all Elliptic Curve ciphersuites saves code size and\ncan give slightly faster TLS handshakes, provided the server supports\nRSA-only ciphersuite modes.", + "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", + "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", + "id": "component-config-mbedtls-tls-key-exchange-methods", + "title": "TLS Key Exchange Methods", + "type": "menu" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_SSL_PROTO_TLS1_2", + "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", + "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": [], + "depends_on": "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_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": [], + "depends_on": "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": "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)", + "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": [ + { + "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": "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": null, + "help": "Enables the Blowfish block cipher (not used for TLS sessions.)\n\nThe Blowfish cipher is not used for mbedTLS TLS sessions but can be\nused for other purposes. Read up on the limitations of Blowfish (including\nSweet32) before enabling.", + "id": "MBEDTLS_BLOWFISH_C", + "name": "MBEDTLS_BLOWFISH_C", + "range": null, + "title": "Blowfish block cipher (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the XTEA block cipher.", + "id": "MBEDTLS_XTEA_C", + "name": "MBEDTLS_XTEA_C", + "range": null, + "title": "XTEA block cipher", + "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 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" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-symmetric-ciphers", + "title": "Symmetric Ciphers", + "type": "menu" + }, + { + "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": [ + { + "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": [], + "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": 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" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-certificates", + "title": "Certificates", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "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", + "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.", + "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" + } + ], + "depends_on": null, + "help": null, + "id": "MBEDTLS_ECP_C", + "is_menuconfig": true, + "name": "MBEDTLS_ECP_C", + "range": null, + "title": "Elliptic Curve Ciphers", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "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": [ + { + "children": [], + "depends_on": "MBEDTLS_ECDH_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" + } + ], + "depends_on": "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", + "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_ECP_C", + "help": "Enable support for SECP192R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", + "range": null, + "title": "Enable SECP192R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP224R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", + "range": null, + "title": "Enable SECP224R1 curve", + "type": "bool" + }, + { + "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 SECP192K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", + "range": null, + "title": "Enable SECP192K1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP224K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", + "range": null, + "title": "Enable SECP224K1 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" + }, + { + "children": [], + "depends_on": "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", + "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.\n\n# end of Elliptic Curve options", + "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": null, + "help": "Enable support for Poly1305 MAC algorithm.", + "id": "MBEDTLS_POLY1305_C", + "name": "MBEDTLS_POLY1305_C", + "range": null, + "title": "Poly1305 MAC algorithm", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_CHACHA20_C && MBEDTLS_POLY1305_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" + } + ], + "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" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support for the Hashed Message Authentication Code\n(HMAC)-based key derivation function (HKDF).", + "id": "MBEDTLS_HKDF_C", + "name": "MBEDTLS_HKDF_C", + "range": null, + "title": "HKDF algorithm (RFC 5869)", + "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": "ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB", + "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", + "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" + }, + { + "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": [], + "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" + } + ], + "depends_on": null, + "id": "component-config-mbedtls", + "title": "mbedTLS", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If not, this library will use MQTT protocol 3.1", + "id": "MQTT_PROTOCOL_311", + "name": "MQTT_PROTOCOL_311", + "range": null, + "title": "Enable MQTT protocol 3.1.1", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If not, this library will not support MQTT 5.0", + "id": "MQTT_PROTOCOL_5", + "name": "MQTT_PROTOCOL_5", + "range": null, + "title": "Enable MQTT protocol 5.0", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable MQTT transport over SSL with mbedtls", + "id": "MQTT_TRANSPORT_SSL", + "name": "MQTT_TRANSPORT_SSL", + "range": null, + "title": "Enable MQTT over SSL", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MQTT_TRANSPORT_WEBSOCKET && MQTT_TRANSPORT_SSL", + "help": "Enable MQTT transport over Websocket Secure.", + "id": "MQTT_TRANSPORT_WEBSOCKET_SECURE", + "name": "MQTT_TRANSPORT_WEBSOCKET_SECURE", + "range": null, + "title": "Enable MQTT over Websocket Secure", + "type": "bool" + } + ], + "depends_on": "WS_TRANSPORT", + "help": "Enable MQTT transport over Websocket.", + "id": "MQTT_TRANSPORT_WEBSOCKET", + "name": "MQTT_TRANSPORT_WEBSOCKET", + "range": null, + "title": "Enable MQTT over Websocket", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set this to true for the message id (2.3.1 Packet Identifier) to be generated\nas an incremental number rather then a random value (used by default)", + "id": "MQTT_MSG_ID_INCREMENTAL", + "name": "MQTT_MSG_ID_INCREMENTAL", + "range": null, + "title": "Use Incremental Message Id", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set this to true to avoid publishing (enqueueing messages) if the client is disconnected.\nThe MQTT client tries to publish all messages by default, even in the disconnected state\n(where the qos1 and qos2 packets are stored in the internal outbox to be published later)\nThe MQTT_SKIP_PUBLISH_IF_DISCONNECTED option allows applications to override this behaviour\nand not enqueue publish packets in the disconnected state.", + "id": "MQTT_SKIP_PUBLISH_IF_DISCONNECTED", + "name": "MQTT_SKIP_PUBLISH_IF_DISCONNECTED", + "range": null, + "title": "Skip publish if disconnected", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set this to true to post events for all messages which were deleted from the outbox\nbefore being correctly sent and confirmed.", + "id": "MQTT_REPORT_DELETED_MESSAGES", + "name": "MQTT_REPORT_DELETED_MESSAGES", + "range": null, + "title": "Report deleted messages", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Default MQTT over TCP port", + "id": "MQTT_TCP_DEFAULT_PORT", + "name": "MQTT_TCP_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over TCP port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_SSL", + "help": "Default MQTT over SSL port", + "id": "MQTT_SSL_DEFAULT_PORT", + "name": "MQTT_SSL_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over SSL port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_WEBSOCKET", + "help": "Default MQTT over Websocket port", + "id": "MQTT_WS_DEFAULT_PORT", + "name": "MQTT_WS_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over Websocket port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_WEBSOCKET && MQTT_TRANSPORT_WEBSOCKET_SECURE", + "help": "Default MQTT over Websocket Secure port", + "id": "MQTT_WSS_DEFAULT_PORT", + "name": "MQTT_WSS_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over Websocket Secure port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "This buffer size using for both transmit and receive", + "id": "MQTT_BUFFER_SIZE", + "name": "MQTT_BUFFER_SIZE", + "range": null, + "title": "Default MQTT Buffer Size", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "MQTT task stack size", + "id": "MQTT_TASK_STACK_SIZE", + "name": "MQTT_TASK_STACK_SIZE", + "range": null, + "title": "MQTT task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Default config employs API locks to protect internal structures. It is possible to disable\nthese locks if the user code doesn't access MQTT API from multiple concurrent tasks", + "id": "MQTT_DISABLE_API_LOCKS", + "name": "MQTT_DISABLE_API_LOCKS", + "range": null, + "title": "Disable API locks", + "type": "bool" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "MQTT task priority. Higher number denotes higher priority.", + "id": "MQTT_TASK_PRIORITY", + "name": "MQTT_TASK_PRIORITY", + "range": null, + "title": "MQTT task priority", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Timeout when polling underlying transport for read.", + "id": "MQTT_POLL_READ_TIMEOUT_MS", + "name": "MQTT_POLL_READ_TIMEOUT_MS", + "range": null, + "title": "MQTT transport poll read timeut", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "A value higher than 1 enables multiple queued events.", + "id": "MQTT_EVENT_QUEUE_SIZE", + "name": "MQTT_EVENT_QUEUE_SIZE", + "range": null, + "title": "Number of queued events.", + "type": "int" + } + ], + "depends_on": null, + "help": "Custom MQTT configurations.", + "id": "MQTT_USE_CUSTOM_CONFIG", + "name": "MQTT_USE_CUSTOM_CONFIG", + "range": null, + "title": "MQTT Using custom configurations", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MQTT_USE_CORE_0", + "name": "MQTT_USE_CORE_0", + "range": null, + "title": "Core 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MQTT_USE_CORE_1", + "name": "MQTT_USE_CORE_1", + "range": null, + "title": "Core 1", + "type": "bool" + } + ], + "depends_on": "MQTT_TASK_CORE_SELECTION_ENABLED", + "help": null, + "id": "component-config-esp-mqtt-configurations-enable-mqtt-task-core-selection-core-to-use-", + "name": "MQTT_TASK_CORE_SELECTION", + "title": "Core to use ?", + "type": "choice" + } + ], + "depends_on": null, + "help": "This will enable core selection", + "id": "MQTT_TASK_CORE_SELECTION_ENABLED", + "name": "MQTT_TASK_CORE_SELECTION_ENABLED", + "range": null, + "title": "Enable MQTT task core selection", + "type": "bool" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Set to true to use external memory for outbox data.", + "id": "MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY", + "name": "MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY", + "range": null, + "title": "Use external memory for outbox data", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set to true if a specific implementation of message outbox is needed (e.g. persistent outbox in NVM or\nsimilar).\nNote: Implementation of the custom outbox must be added to the mqtt component. These CMake commands\ncould be used to append the custom implementation to lib-mqtt sources:\nidf_component_get_property(mqtt mqtt COMPONENT_LIB)\nset_property(TARGET ${mqtt} PROPERTY SOURCES ${PROJECT_DIR}/custom_outbox.c APPEND)", + "id": "MQTT_CUSTOM_OUTBOX", + "name": "MQTT_CUSTOM_OUTBOX", + "range": null, + "title": "Enable custom outbox implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Messages which stays in the outbox longer than this value before being published will be discarded.", + "id": "MQTT_OUTBOX_EXPIRED_TIMEOUT_MS", + "name": "MQTT_OUTBOX_EXPIRED_TIMEOUT_MS", + "range": null, + "title": "Outbox message expired timeout[ms]", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Set to true to have publish topic in all data events. This changes the behaviour\nwhen the message is bigger than the receive buffer size. The first event of the sequence\nalways have the topic.\nNote: This will allocate memory to store the topic only in case of messge bigger than the buffer size.", + "id": "MQTT_TOPIC_PRESENT_ALL_DATA_EVENTS", + "name": "MQTT_TOPIC_PRESENT_ALL_DATA_EVENTS", + "range": null, + "title": "Enable publish topic in all data events", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-mqtt-configurations", + "title": "ESP-MQTT 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 && IDF_EXPERIMENTAL_FEATURES && ", + "help": null, + "id": "LIBC_PICOLIBC", + "name": "LIBC_PICOLIBC", + "range": null, + "title": "Picolibc (EXPERIMENTAL)", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-libc-libc-to-build-application-with", + "name": "LIBC", + "title": "LibC to build application with", + "type": "choice" + }, + { + "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": "LIBC_NEWLIB", + "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", + "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", + "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", + "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\nThis increases the image size by ~1000 bytes.\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" + } + ], + "depends_on": null, + "id": "component-config-libc", + "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": "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" + } + ], + "depends_on": null, + "id": "component-config-nvs", + "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" + } + ], + "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", + "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", + "title": "NVS Security Provider", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "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", + "title": "Thread Version Message", + "type": "menu" + }, + { + "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_ENABLED", + "help": "Select OpenThread console type", + "id": "component-config-openthread-openthread-thread-console-openthread-console-type", + "name": "OPENTHREAD_CONSOLE_TYPE", + "title": "OpenThread console type", + "type": "choice" + }, + { + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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" + } + ], + "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-thread-radio-co-processor-feature", + "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", + "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", + "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", + "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 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", + "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", + "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", + "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", + "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", + "title": "OpenThread Stack Parameters", + "type": "menu" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features", + "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", + "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", + "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", + "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", + "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", + "title": "OpenThread Spinel", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-openthread", + "title": "OpenThread", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable support of security version 0.\nDisabling this option saves some code size.\nConsult the Enabling protocomm security version section of the\nProtocomm documentation in ESP-IDF Programming guide for more details.", + "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.\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", + "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", + "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", + "title": "PThreads", + "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", + "title": "MMU Config", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-soc-settings", + "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", + "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) && !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-", + "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-", + "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 && !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-", + "title": "Optional and Experimental Features (READ DOCS FIRST)", + "type": "menu" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration", + "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": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this flag to use patched versions of SPI flash ROM driver functions.\nThis option should be enabled, if any one of the following is true: (1) need to write\nto flash on ESP32-D2WD; (2) main SPI flash is connected to non-default pins; (3) main\nSPI flash chip is manufactured by ISSI.", + "id": "SPI_FLASH_ROM_DRIVER_PATCH", + "name": "SPI_FLASH_ROM_DRIVER_PATCH", + "range": null, + "title": "Enable SPI flash ROM driver patched functions", + "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", + "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": null, + "id": "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_TH_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", + "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" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-spi-flash-driver", + "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", + "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", + "title": "Debug Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-spiffs-configuration", + "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", + "title": "Websocket", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-tcp-transport", + "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", + "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", + "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": [ + { + "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", + "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", + "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" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, the Unity test framework will automatically insert test cases\nin a sorted order at registration time (during constructor execution),\nbased on their source file path and line number.\n\nThis ensures consistent execution order across platforms (e.g., Linux vs. on-chip),\npreserving the logical order in which tests are written in the source files.\n\nNote, the file path used for sorting follows the full absolute path format.\n/IDF/examples/system/unit_test/components/testable/test/test_mean.c", + "id": "UNITY_TEST_ORDER_BY_FILE_PATH_AND_LINE", + "name": "UNITY_TEST_ORDER_BY_FILE_PATH_AND_LINE", + "range": null, + "title": "Order unit tests by file path and line number", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-unity-unit-testing-library", + "title": "Unity unit testing library", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "Each USB device attached is allocated a dedicated buffer for its OUT/IN transfers to/from the device's\ncontrol endpoint. The maximum size of that buffer is determined by this option. The limited size of the\ntransfer buffer have the following implications:\n- The maximum length of control transfers is limited\n- Device's with configuration descriptors larger than this limit cannot be supported", + "id": "USB_HOST_CONTROL_TRANSFER_MAX_SIZE", + "name": "USB_HOST_CONTROL_TRANSFER_MAX_SIZE", + "range": null, + "title": "Largest size (in bytes) of transfers to/from default endpoints", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "USB_HOST_HW_BUFFER_BIAS_BALANCED", + "name": "USB_HOST_HW_BUFFER_BIAS_BALANCED", + "range": null, + "title": "Balanced", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "USB_HOST_HW_BUFFER_BIAS_IN", + "name": "USB_HOST_HW_BUFFER_BIAS_IN", + "range": null, + "title": "Bias IN", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT", + "name": "USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT", + "range": null, + "title": "Periodic OUT", + "type": "bool" + } + ], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "The underlying hardware has size adjustable FIFOs to cache USB packets on reception (IN) or for\ntransmission (OUT). The size of these FIFOs will affect the largest MPS (maximum packet size) and the\nmaximum number of packets that can be cached at any one time. The hardware contains the following\nFIFOS: RX (for all IN packets), Non-periodic TX (for Bulk and Control OUT packets), and Periodic TX\n(for Interrupt and Isochronous OUT packets). This configuration option allows biasing the FIFO sizes\ntowards a particular use case, which may be necessary for devices that have endpoints with large MPS.\nThe MPS limits for each biasing are listed below:\n\nBalanced:\n- IN (all transfer types), 408 bytes\n- OUT non-periodic (Bulk/Control), 192 bytes (i.e., 3 x 64 byte packets)\n- OUT periodic (Interrupt/Isochronous), 192 bytes\n\nBias IN:\n- IN (all transfer types), 600 bytes\n- OUT non-periodic (Bulk/Control), 64 bytes (i.e., 1 x 64 byte packets)\n- OUT periodic (Interrupt/Isochronous), 128 bytes\n\nBias Periodic OUT:\n- IN (all transfer types), 128 bytes\n- OUT non-periodic (Bulk/Control), 64 bytes (i.e., 1 x 64 byte packets)\n- OUT periodic (Interrupt/Isochronous), 600 bytes", + "id": "component-config-usb-otg-hardware-fifo-size-biasing", + "name": "USB_HOST_HW_BUFFER_BIAS", + "title": "Hardware FIFO size biasing", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "On connection of a USB device, the USB 2.0 specification requires\na \"debounce interval with a minimum duration of 100ms\" to allow the connection to stabilize\n(see USB 2.0 chapter 7.1.7.3 for more details).\nDuring the debounce interval, no new connection/disconnection events are registered.\n\nThe default value is set to 250 ms to be safe.", + "id": "USB_HOST_DEBOUNCE_DELAY_MS", + "name": "USB_HOST_DEBOUNCE_DELAY_MS", + "range": null, + "title": "Debounce delay in ms", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "The reset signaling can be generated on any Hub or Host Controller port by request from\nthe USB System Software. The USB 2.0 specification requires that \"the reset signaling must\nbe driven for a minimum of 10ms\" (see USB 2.0 chapter 7.1.7.5 for more details).\nAfter the reset, the hub port will transition to the Enabled state (refer to Section 11.5).\n\nThe default value is set to 30 ms to be safe.", + "id": "USB_HOST_RESET_HOLD_MS", + "name": "USB_HOST_RESET_HOLD_MS", + "range": null, + "title": "Reset hold in ms", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "After a port stops driving the reset signal, the USB 2.0 specification requires that\nthe \"USB System Software guarantees a minimum of 10 ms for reset recovery\" before the\nattached device is expected to respond to data transfers (see USB 2.0 chapter 7.1.7.3 for\nmore details).\nThe device may ignore any data transfers during the recovery interval.\n\nThe default value is set to 30 ms to be safe.", + "id": "USB_HOST_RESET_RECOVERY_MS", + "name": "USB_HOST_RESET_RECOVERY_MS", + "range": null, + "title": "Reset recovery delay in ms", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "\"After successful completion of the Status stage, the device is allowed a SetAddress()\nrecovery interval of 2 ms. At the end of this interval, the device must be able to accept\nSetup packets addressed to the new address. Also, at the end of the recovery interval, the\ndevice must not respond to tokens sent to the old address (unless, of course, the old and new\naddress is the same).\" See USB 2.0 chapter 9.2.6.3 for more details.\n\nThe default value is set to 10 ms to be safe.", + "id": "USB_HOST_SET_ADDR_RECOVERY_MS", + "name": "USB_HOST_SET_ADDR_RECOVERY_MS", + "range": null, + "title": "SetAddress() recovery time in ms", + "type": "int" + } + ], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "id": "component-config-usb-otg-hub-driver-configuration-root-port-configuration", + "title": "Root Port configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "help": "Enables support for connecting multiple Hubs simultaneously.", + "id": "USB_HOST_HUB_MULTI_LEVEL", + "name": "USB_HOST_HUB_MULTI_LEVEL", + "range": null, + "title": "Support multiple Hubs", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_EXPERIMENTAL_FEATURES && USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "help": "Amount of attempts to reset the device.\n\nThe default value is 1.", + "id": "USB_HOST_EXT_PORT_RESET_ATTEMPTS", + "name": "USB_HOST_EXT_PORT_RESET_ATTEMPTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "help": "After a port stops driving the reset signal, the USB 2.0 specification requires that\nthe \"USB System Software guarantees a minimum of 10 ms for reset recovery\" before the\nattached device is expected to respond to data transfers (see USB 2.0 chapter 7.1.7.3 for\nmore details).\nThe device may ignore any data transfers during the recovery interval.\n\nThe default value is set to 30 ms to be safe.", + "id": "USB_HOST_EXT_PORT_RESET_RECOVERY_DELAY_MS", + "name": "USB_HOST_EXT_PORT_RESET_RECOVERY_DELAY_MS", + "range": null, + "title": "Reset recovery delay in ms", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_ENABLE && USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "help": "Custom value of delay from the time the power-on sequence begins on a port\nuntil power is good on that port.\nValue 0 is used for a hub with no power switches.\n\nThe default value is 100 ms.", + "id": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_MS", + "name": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_MS", + "range": null, + "title": "PwrOn2PwrGood delay in ms", + "type": "int" + } + ], + "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "help": "Enables the possibility to configure custom time for the power-on sequence on a port\nuntil power is good on that port.\n\nWhen enabled, applies the custom PwrOn2PwrGood delay.\nWhen disabled, applies the PwrOn2PwrGood value from the Hub Descriptor.", + "id": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_ENABLE", + "name": "USB_HOST_EXT_PORT_CUSTOM_POWER_ON_DELAY_ENABLE", + "range": null, + "title": "Custom bPwrOn2PwrGood value", + "type": "bool" + } + ], + "depends_on": "USB_HOST_HUBS_SUPPORTED && SOC_USB_OTG_SUPPORTED", + "id": "component-config-usb-otg-hub-driver-configuration-support-hubs-downstream-port-configuration", + "title": "Downstream Port configuration", + "type": "menu" + } + ], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "Enables support of external Hubs.", + "id": "USB_HOST_HUBS_SUPPORTED", + "name": "USB_HOST_HUBS_SUPPORTED", + "range": null, + "title": "Support Hubs", + "type": "bool" + } + ], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "id": "component-config-usb-otg-hub-driver-configuration", + "title": "Hub Driver Configuration", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "The enumeration filter callback is called before enumeration of each newly attached device.\nThis callback allows users to control whether a device should be enumerated, and what configuration\nnumber to use when enumerating a device.\n\nIf enabled, the enumeration filter callback can be set via 'usb_host_config_t' when calling\n'usb_host_install()'.", + "id": "USB_HOST_ENABLE_ENUM_FILTER_CALLBACK", + "name": "USB_HOST_ENABLE_ENUM_FILTER_CALLBACK", + "range": null, + "title": "Enable enumeration filter callback", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32P4 && SPIRAM && SOC_USB_OTG_SUPPORTED", + "help": "In the ESP32P4, the USB-DWC internal DMA can access external RAM. Enabling this configuration can save\ninternal RAM by allocating the memory buffers used by the USB-DWC peripheral's DMA to external RAM.\nHowever, it introduces minor performance degradation due to the overhead of accessing external RAM.", + "id": "USB_HOST_DWC_DMA_CAP_MEMORY_IN_PSRAM", + "name": "USB_HOST_DWC_DMA_CAP_MEMORY_IN_PSRAM", + "range": null, + "title": "Allocate USB_DWC DMA capable memory in PSRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": null, + "id": "USB_OTG_SUPPORTED", + "name": "USB_OTG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "id": "component-config-usb-otg", + "title": "USB-OTG", + "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-", + "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", + "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", + "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", + "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", + "title": "Wear Levelling", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This sets the maximum number of entries of Wi-Fi scan results that will be kept by the provisioning manager", + "id": "WIFI_PROV_SCAN_MAX_ENTRIES", + "name": "WIFI_PROV_SCAN_MAX_ENTRIES", + "range": [ + 1, + 255 + ], + "title": "Max Wi-Fi Scan Result Entries", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Time (in seconds) after which the Wi-Fi provisioning manager will auto-stop after connecting to\na Wi-Fi network successfully.", + "id": "WIFI_PROV_AUTOSTOP_TIMEOUT", + "name": "WIFI_PROV_AUTOSTOP_TIMEOUT", + "range": [ + 5, + 600 + ], + "title": "Provisioning auto-stop timeout", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_ENABLED", + "help": "This option is applicable only when provisioning transport is BLE.", + "id": "WIFI_PROV_BLE_BONDING", + "name": "WIFI_PROV_BLE_BONDING", + "range": null, + "title": "Enable BLE bonding", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Used to enable Secure connection support when provisioning transport is BLE.", + "id": "WIFI_PROV_BLE_SEC_CONN", + "name": "WIFI_PROV_BLE_SEC_CONN", + "range": null, + "title": "Enable BLE Secure connection flag", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_ENABLED", + "help": "Used to enforce link encryption when attempting to read / write characteristic", + "id": "WIFI_PROV_BLE_FORCE_ENCRYPTION", + "name": "WIFI_PROV_BLE_FORCE_ENCRYPTION", + "range": null, + "title": "Force Link Encryption during characteristic Read / Write", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_ENABLED", + "help": "Used to enable support Notification in BLE descriptors of prov* characteristics", + "id": "WIFI_PROV_BLE_NOTIFY", + "name": "WIFI_PROV_BLE_NOTIFY", + "range": null, + "title": "Add support for Notification for provisioning BLE descriptors", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV", + "help": null, + "id": "WIFI_PROV_DISCONNECT_AFTER_PROV", + "name": "WIFI_PROV_DISCONNECT_AFTER_PROV", + "range": null, + "title": "Terminate connection after provisioning is done", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED", + "help": null, + "id": "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV", + "name": "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV", + "range": null, + "title": "Keep BT on after provisioning is done", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Scan will end after scanning the entire channel. This option is useful in Mesh WiFi Systems.", + "id": "WIFI_PROV_STA_ALL_CHANNEL_SCAN", + "name": "WIFI_PROV_STA_ALL_CHANNEL_SCAN", + "range": null, + "title": "All Channel Scan", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Scan will end after an AP matching with the SSID has been detected.", + "id": "WIFI_PROV_STA_FAST_SCAN", + "name": "WIFI_PROV_STA_FAST_SCAN", + "range": null, + "title": "Fast Scan", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-wi-fi-provisioning-manager-wifi-provisioning-scan-method", + "name": "WIFI_PROV_STA_SCAN_METHOD", + "title": "Wifi Provisioning Scan Method", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-wi-fi-provisioning-manager", + "title": "Wi-Fi Provisioning Manager", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config", + "title": "Component config", + "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_LIBC_PICOLIBC", + "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..2467749 --- /dev/null +++ b/build/config/sdkconfig.cmake @@ -0,0 +1,1671 @@ +# + # Automatically generated file. DO NOT EDIT. + # Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file + # +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_UART_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_PHY_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_GDMA_SUPPORTED "y") +set(CONFIG_SOC_UHCI_SUPPORTED "y") +set(CONFIG_SOC_AHB_GDMA_SUPPORTED "y") +set(CONFIG_SOC_GPTIMER_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_CAM_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED "y") +set(CONFIG_SOC_MCPWM_SUPPORTED "y") +set(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED "y") +set(CONFIG_SOC_CACHE_SUPPORT_WRAP "y") +set(CONFIG_SOC_ULP_SUPPORTED "y") +set(CONFIG_SOC_ULP_FSM_SUPPORTED "y") +set(CONFIG_SOC_RISCV_COPROC_SUPPORTED "y") +set(CONFIG_SOC_BT_SUPPORTED "y") +set(CONFIG_SOC_USB_OTG_SUPPORTED "y") +set(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED "y") +set(CONFIG_SOC_CCOMP_TIMER_SUPPORTED "y") +set(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED "y") +set(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE "y") +set(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD "y") +set(CONFIG_SOC_EFUSE_SUPPORTED "y") +set(CONFIG_SOC_SDMMC_HOST_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_PSRAM_DMA_CAPABLE "y") +set(CONFIG_SOC_XT_WDT_SUPPORTED "y") +set(CONFIG_SOC_I2S_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_SYSTIMER_SUPPORTED "y") +set(CONFIG_SOC_SUPPORT_COEXISTENCE "y") +set(CONFIG_SOC_TEMP_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_AES_SUPPORTED "y") +set(CONFIG_SOC_MPI_SUPPORTED "y") +set(CONFIG_SOC_SHA_SUPPORTED "y") +set(CONFIG_SOC_HMAC_SUPPORTED "y") +set(CONFIG_SOC_DIG_SIGN_SUPPORTED "y") +set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") +set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") +set(CONFIG_SOC_MEMPROT_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_BOD_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_SIMD_INSTRUCTION_SUPPORTED "y") +set(CONFIG_SOC_XTAL_SUPPORT_40M "y") +set(CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG "y") +set(CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_ARBITER_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED "y") +set(CONFIG_SOC_ADC_MONITOR_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 "24") +set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "4") +set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") +set(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM "2") +set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "2") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "83333") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "611") +set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") +set(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED "y") +set(CONFIG_SOC_ADC_SHARED_POWER "y") +set(CONFIG_SOC_APB_BACKUP_DMA "y") +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") +set(CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED "y") +set(CONFIG_SOC_CACHE_FREEZE_SUPPORTED "y") +set(CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC "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_SIMD_PREFERRED_DATA_ALIGNMENT "16") +set(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN "4096") +set(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH "16") +set(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US "1100") +set(CONFIG_SOC_AHB_GDMA_VERSION "1") +set(CONFIG_SOC_GDMA_NUM_GROUPS_MAX "1") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP "5") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX "5") +set(CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM "y") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "49") +set(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER "y") +set(CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT "y") +set(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD "y") +set(CONFIG_SOC_GPIO_VALID_GPIO_MASK "0x1ffffffffffff") +set(CONFIG_SOC_GPIO_IN_RANGE_MAX "48") +set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "48") +set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0x1fffffc000000") +set(CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX "y") +set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") +set(CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP "y") +set(CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE "y") +set(CONFIG_SOC_I2C_NUM "2") +set(CONFIG_SOC_HP_I2C_NUM "2") +set(CONFIG_SOC_I2C_FIFO_LEN "32") +set(CONFIG_SOC_I2C_CMD_REG_NUM "8") +set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") +set(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS "y") +set(CONFIG_SOC_I2C_SUPPORT_XTAL "y") +set(CONFIG_SOC_I2C_SUPPORT_RTC "y") +set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS "y") +set(CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE "y") +set(CONFIG_SOC_I2S_NUM "2") +set(CONFIG_SOC_I2S_HW_VERSION_2 "y") +set(CONFIG_SOC_I2S_SUPPORTS_XTAL "y") +set(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M "y") +set(CONFIG_SOC_I2S_SUPPORTS_PCM "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 "2") +set(CONFIG_SOC_I2S_PDM_MAX_RX_LINES "4") +set(CONFIG_SOC_I2S_SUPPORTS_TDM "y") +set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_LEDC_TIMER_NUM "4") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "8") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "14") +set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") +set(CONFIG_SOC_MCPWM_GROUPS "2") +set(CONFIG_SOC_MCPWM_TIMERS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP "y") +set(CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER "3") +set(CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE "y") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") +set(CONFIG_SOC_MMU_PERIPH_NUM "1") +set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") +set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") +set(CONFIG_SOC_PCNT_GROUPS "1") +set(CONFIG_SOC_PCNT_UNITS_PER_GROUP "4") +set(CONFIG_SOC_PCNT_CHANNELS_PER_UNIT "2") +set(CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT "2") +set(CONFIG_SOC_RMT_GROUPS "1") +set(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP "4") +set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "4") +set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "48") +set(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG "y") +set(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY "y") +set(CONFIG_SOC_RMT_SUPPORT_XTAL "y") +set(CONFIG_SOC_RMT_SUPPORT_RC_FAST "y") +set(CONFIG_SOC_RMT_SUPPORT_APB "y") +set(CONFIG_SOC_RMT_SUPPORT_DMA "y") +set(CONFIG_SOC_LCD_I80_SUPPORTED "y") +set(CONFIG_SOC_LCD_RGB_SUPPORTED "y") +set(CONFIG_SOC_LCD_I80_BUSES "1") +set(CONFIG_SOC_LCD_RGB_PANELS "1") +set(CONFIG_SOC_LCD_I80_BUS_WIDTH "16") +set(CONFIG_SOC_LCD_RGB_DATA_WIDTH "16") +set(CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV "y") +set(CONFIG_SOC_LCDCAM_I80_NUM_BUSES "1") +set(CONFIG_SOC_LCDCAM_I80_BUS_WIDTH "16") +set(CONFIG_SOC_LCDCAM_RGB_NUM_PANELS "1") +set(CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH "16") +set(CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH "128") +set(CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM "549") +set(CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH "128") +set(CONFIG_SOC_RTCIO_PIN_COUNT "22") +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_LP_IO_CLOCK_IS_INDEPENDENT "y") +set(CONFIG_SOC_SDM_GROUPS "1") +set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_SDM_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_SPI_PERIPH_NUM "3") +set(CONFIG_SOC_SPI_MAX_CS_NUM "6") +set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") +set(CONFIG_SOC_SPI_SUPPORT_DDRCLK "y") +set(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_CD_SIG "y") +set(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_APB "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL "y") +set(CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT "y") +set(CONFIG_SOC_MEMSPI_IS_INDEPENDENT "y") +set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "16") +set(CONFIG_SOC_SPI_SUPPORT_OCT "y") +set(CONFIG_SOC_SPI_SCT_SUPPORTED "y") +set(CONFIG_SOC_SPI_SCT_REG_NUM "14") +set(CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX "y") +set(CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX "0x3fffa") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") +set(CONFIG_SOC_SPIRAM_SUPPORTED "y") +set(CONFIG_SOC_SPIRAM_XIP_SUPPORTED "y") +set(CONFIG_SOC_SYSTIMER_COUNTER_NUM "2") +set(CONFIG_SOC_SYSTIMER_ALARM_NUM "3") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI "20") +set(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER "y") +set(CONFIG_SOC_SYSTIMER_INT_LEVEL "y") +set(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE "y") +set(CONFIG_SOC_TIMER_GROUPS "2") +set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "2") +set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "54") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL "y") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_APB "y") +set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "4") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") +set(CONFIG_SOC_TOUCH_SENSOR_VERSION "2") +set(CONFIG_SOC_TOUCH_SENSOR_NUM "15") +set(CONFIG_SOC_TOUCH_MIN_CHAN_ID "1") +set(CONFIG_SOC_TOUCH_MAX_CHAN_ID "14") +set(CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK "y") +set(CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP "y") +set(CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF "y") +set(CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING "y") +set(CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN "y") +set(CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM "3") +set(CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED "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_TWAI_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_TWAI_BRP_MIN "2") +set(CONFIG_SOC_TWAI_BRP_MAX "16384") +set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") +set(CONFIG_SOC_UART_NUM "3") +set(CONFIG_SOC_UART_HP_NUM "3") +set(CONFIG_SOC_UART_FIFO_LEN "128") +set(CONFIG_SOC_UART_BITRATE_MAX "5000000") +set(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND "y") +set(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT "y") +set(CONFIG_SOC_UART_SUPPORT_APB_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_RTC_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_XTAL_CLK "y") +set(CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE "y") +set(CONFIG_SOC_UHCI_NUM "1") +set(CONFIG_SOC_USB_OTG_PERIPH_NUM "1") +set(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE "3968") +set(CONFIG_SOC_SHA_SUPPORT_DMA "y") +set(CONFIG_SOC_SHA_SUPPORT_RESUME "y") +set(CONFIG_SOC_SHA_GDMA "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA224 "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_SHA_SUPPORT_SHA512_224 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512_256 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512_T "y") +set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") +set(CONFIG_SOC_MPI_OPERATIONS_NUM "3") +set(CONFIG_SOC_RSA_MAX_BIT_LEN "4096") +set(CONFIG_SOC_AES_SUPPORT_DMA "y") +set(CONFIG_SOC_AES_GDMA "y") +set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") +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_WIFI_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_CPU_PD "y") +set(CONFIG_SOC_PM_SUPPORT_TAGMEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") +set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MAC_BB_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") +set(CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED "y") +set(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY "y") +set(CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL "y") +set(CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA "y") +set(CONFIG_SOC_PM_MODEM_PD_BY_SW "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_D2 "y") +set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE "y") +set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE "y") +set(CONFIG_SOC_EFUSE_HARD_DIS_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_USB_JTAG "y") +set(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT "y") +set(CONFIG_SOC_EFUSE_DIS_ICACHE "y") +set(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK "y") +set(CONFIG_SOC_SECURE_BOOT_V2_RSA "y") +set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "3") +set(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS "y") +set(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY "y") +set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "64") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 "y") +set(CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE "16") +set(CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE "256") +set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") +set(CONFIG_SOC_MAC_BB_PD_MEM_SIZE "192") +set(CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH "12") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP "y") +set(CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY "y") +set(CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP "y") +set(CONFIG_SOC_COEX_HW_PTI "y") +set(CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE "y") +set(CONFIG_SOC_SDMMC_USE_GPIO_MATRIX "y") +set(CONFIG_SOC_SDMMC_NUM_SLOTS "2") +set(CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_SDMMC_DELAY_PHASE_NUM "4") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC "y") +set(CONFIG_SOC_WIFI_HW_TSF "y") +set(CONFIG_SOC_WIFI_FTM_SUPPORT "y") +set(CONFIG_SOC_WIFI_GCMP_SUPPORT "y") +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_PHY_NEEDS_USB_WORKAROUND "y") +set(CONFIG_SOC_BLE_SUPPORTED "y") +set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") +set(CONFIG_SOC_BLE_50_SUPPORTED "y") +set(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED "y") +set(CONFIG_SOC_BLUFI_SUPPORTED "y") +set(CONFIG_SOC_ULP_HAS_ADC "y") +set(CONFIG_SOC_PHY_COMBO_MODULE "y") +set(CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV "y") +set(CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM "1") +set(CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX "16") +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 "esp32s3") +set(CONFIG_IDF_INIT_VERSION "5.5.1") +set(CONFIG_IDF_TARGET_ESP32S3 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x9") +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_BOOTLOADER_COMPILE_TIME_DATE "y") +set(CONFIG_BOOTLOADER_PROJECT_VER "1") +set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "") +set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x0") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE "") +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_FLASH_DC_AWARE "") +set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") +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_V2_RSA_SUPPORTED "y") +set(CONFIG_SECURE_BOOT_V2_PREFERRED "y") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +set(CONFIG_SECURE_ROM_DL_MODE_ENABLED "y") +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_UART_CLK_IS_XTAL "y") +set(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING "y") +set(CONFIG_ESP_ROM_USB_OTG_NUM "3") +set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "4") +set(CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG "y") +set(CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV "y") +set(CONFIG_ESP_ROM_GET_CLK_FREQ "y") +set(CONFIG_ESP_ROM_HAS_HAL_WDT "y") +set(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND "y") +set(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE "y") +set(CONFIG_ESP_ROM_HAS_SPI_FLASH "y") +set(CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP "y") +set(CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG "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_NEEDS_SET_CACHE_MMU_SIZE "y") +set(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT "y") +set(CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG "y") +set(CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG "y") +set(CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG "y") +set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") +set(CONFIG_ESP_ROM_HAS_VERSION "y") +set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") +set(CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC "y") +set(CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_ON "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW "") +set(CONFIG_ESPTOOLPY_NO_STUB "") +set(CONFIG_ESPTOOLPY_OCT_FLASH "") +set(CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") +set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") +set(CONFIG_ESPTOOLPY_FLASHMODE "dio") +set(CONFIG_ESPTOOLPY_FLASHFREQ_120M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_80M "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "80m") +set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "y") +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 "4MB") +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 "y") +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 "y") +set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC14_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_WARNING "y") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") +set(CONFIG_COMPILER_STATIC_ANALYZER "") +set(CONFIG_APPTRACE_DEST_JTAG "") +set(CONFIG_APPTRACE_DEST_NONE "y") +set(CONFIG_APPTRACE_DEST_UART1 "") +set(CONFIG_APPTRACE_DEST_UART2 "") +set(CONFIG_APPTRACE_DEST_USB_CDC "") +set(CONFIG_APPTRACE_DEST_UART_NONE "y") +set(CONFIG_APPTRACE_UART_TASK_PRIO "1") +set(CONFIG_APPTRACE_LOCK_ENABLE "y") +set(CONFIG_BT_ENABLED "") +set(CONFIG_BT_BLE_LOG_SPI_OUT_ENABLED "") +set(CONFIG_BT_BLE_LOG_UHCI_OUT_ENABLED "") +set(CONFIG_CONSOLE_SORTED_HELP "") +set(CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM "y") +set(CONFIG_ADC_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_MCPWM_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_RMT_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_I2S_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_PCNT_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_SDM_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_TEMP_SENSOR_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_MAX_BLK_LEN "256") +set(CONFIG_ESP_TLS_USING_MBEDTLS "y") +set(CONFIG_ESP_TLS_USE_SECURE_ELEMENT "") +set(CONFIG_ESP_TLS_USE_DS_PERIPHERAL "y") +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_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3 "") +set(CONFIG_ADC_ENABLE_DEBUG_LOG "") +set(CONFIG_ESP_COEX_ENABLED "y") +set(CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE "") +set(CONFIG_ESP_COEX_GPIO_DEBUG "") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_CAM_CTLR_DVP_CAM_ISR_CACHE_SAFE "") +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_ENABLE_SLAVE_DRIVER_VERSION_2 "") +set(CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_I2S_ISR_IRAM_SAFE "") +set(CONFIG_I2S_ENABLE_DEBUG_LOG "") +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_SPI_MASTER_IN_IRAM "") +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_TEMP_SENSOR_ENABLE_DEBUG_LOG "") +set(CONFIG_TWAI_ISR_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_USJ_ENABLE_USB_SERIAL_JTAG "y") +set(CONFIG_ETH_ENABLED "y") +set(CONFIG_ETH_USE_SPI_ETHERNET "y") +set(CONFIG_ETH_SPI_ETHERNET_DM9051 "") +set(CONFIG_ETH_SPI_ETHERNET_W5500 "") +set(CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL "") +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_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_SERVER_ENABLE "") +set(CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT "2000") +set(CONFIG_ESP_HTTPS_SERVER_CERT_SELECT_HOOK "") +set(CONFIG_ESP32S3_REV_MIN_0 "y") +set(CONFIG_ESP32S3_REV_MIN_1 "") +set(CONFIG_ESP32S3_REV_MIN_2 "") +set(CONFIG_ESP32S3_REV_MIN_FULL "0") +set(CONFIG_ESP_REV_MIN_FULL "0") +set(CONFIG_ESP32S3_REV_MAX_FULL "99") +set(CONFIG_ESP_REV_MAX_FULL "99") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "199") +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_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES "4") +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 "y") +set(CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "y") +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_ESP_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_GDMA_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_GDMA_OBJ_DRAM_SAFE "y") +set(CONFIG_GDMA_ENABLE_DEBUG_LOG "") +set(CONFIG_GDMA_ISR_IRAM_SAFE "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ "40") +set(CONFIG_ESP_BROWNOUT_DET "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL "7") +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_LCD_RGB_ISR_IRAM_SAFE "") +set(CONFIG_LCD_RGB_RESTART_IN_VSYNC "") +set(CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS "") +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 "") +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_USB "y") +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 "y") +set(CONFIG_PM_ENABLE "") +set(CONFIG_PM_SLP_IRAM_OPT "y") +set(CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP "y") +set(CONFIG_PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP "y") +set(CONFIG_SPIRAM "") +set(CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH "") +set(CONFIG_ESP_ROM_PRINT_IN_IRAM "y") +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_ESP32S3_INSTRUCTION_CACHE_16KB "y") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE "0x4000") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS "y") +set(CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS "8") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B "y") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE "32") +set(CONFIG_ESP32S3_DATA_CACHE_16KB "") +set(CONFIG_ESP32S3_DATA_CACHE_32KB "y") +set(CONFIG_ESP32S3_DATA_CACHE_64KB "") +set(CONFIG_ESP32S3_DATA_CACHE_SIZE "0x8000") +set(CONFIG_ESP32S3_DATA_CACHE_4WAYS "") +set(CONFIG_ESP32S3_DATA_CACHE_8WAYS "y") +set(CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS "8") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_16B "") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_32B "y") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_64B "") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE "32") +set(CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM "") +set(CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE "") +set(CONFIG_ESP32S3_TRAX "") +set(CONFIG_ESP32S3_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_RTC_FAST_MEM_AS_HEAP_DEPCHECK "y") +set(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP "y") +set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE "y") +set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK "y") +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_CONSOLE_UART_DEFAULT "y") +set(CONFIG_ESP_CONSOLE_USB_CDC "") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG "y") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED "y") +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_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_4 "y") +set(CONFIG_ESP_SYSTEM_BBPLL_RECALIB "y") +set(CONFIG_ESP_IPC_ENABLE "y") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1280") +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_SYSTIMER "y") +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_PK "y") +set(CONFIG_ESP_WIFI_ENABLE_SAE_H2E "y") +set(CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT "y") +set(CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA "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_FTM_ENABLE "") +set(CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE "y") +set(CONFIG_ESP_WIFI_GCMP_SUPPORT "") +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_MBEDTLS_CRYPTO "y") +set(CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_ESP_WIFI_WAPI_PSK "") +set(CONFIG_ESP_WIFI_SUITE_B_192 "") +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_DEBUG_PRINT "") +set(CONFIG_ESP_WIFI_TESTING_OPTIONS "") +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 "y") +set(CONFIG_FATFS_LFN_HEAP "") +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_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 "") +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_ENABLE_STATIC_TASK_CLEAN_UP "") +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_SYSTIMER "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 "") +set(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER "y") +set(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH "") +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_ENABLE_TASK_SNAPSHOT "y") +set(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH "y") +set(CONFIG_FREERTOS_NUMBER_OF_CORES "2") +set(CONFIG_FREERTOS_IN_IRAM "y") +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_WDT_USE_ROM_IMPL "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_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_LEASE_UNIT "60") +set(CONFIG_LWIP_DHCPS_MAX_STATION_NUM "8") +set(CONFIG_LWIP_DHCPS_STATIC_ENTRIES "y") +set(CONFIG_LWIP_DHCPS_ADD_DNS "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_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_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_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_DEBUG "") +set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 "") +set(CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH "") +set(CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK "") +set(CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION "") +set(CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE "y") +set(CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT "") +set(CONFIG_MBEDTLS_PKCS7_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_ECP_RESTARTABLE "") +set(CONFIG_MBEDTLS_CMAC_C "y") +set(CONFIG_MBEDTLS_HARDWARE_AES "y") +set(CONFIG_MBEDTLS_AES_USE_INTERRUPT "y") +set(CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL "0") +set(CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER "y") +set(CONFIG_MBEDTLS_HARDWARE_MPI "y") +set(CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI "") +set(CONFIG_MBEDTLS_MPI_USE_INTERRUPT "y") +set(CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL "0") +set(CONFIG_MBEDTLS_HARDWARE_SHA "y") +set(CONFIG_MBEDTLS_ROM_MD5 "y") +set(CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN "") +set(CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY "") +set(CONFIG_MBEDTLS_HAVE_TIME "y") +set(CONFIG_MBEDTLS_PLATFORM_TIME_ALT "") +set(CONFIG_MBEDTLS_HAVE_TIME_DATE "") +set(CONFIG_MBEDTLS_ECDSA_DETERMINISTIC "y") +set(CONFIG_MBEDTLS_SHA1_C "y") +set(CONFIG_MBEDTLS_SHA512_C "y") +set(CONFIG_MBEDTLS_SHA3_C "") +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_TLS_SERVER "y") +set(CONFIG_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_MBEDTLS_TLS_ENABLED "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_KEY_EXCHANGE_ECDH_ECDSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA "y") +set(CONFIG_MBEDTLS_SSL_RENEGOTIATION "y") +set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 "y") +set(CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 "") +set(CONFIG_MBEDTLS_SSL_PROTO_DTLS "") +set(CONFIG_MBEDTLS_SSL_ALPN "y") +set(CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS "y") +set(CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS "y") +set(CONFIG_MBEDTLS_AES_C "y") +set(CONFIG_MBEDTLS_CAMELLIA_C "") +set(CONFIG_MBEDTLS_DES_C "") +set(CONFIG_MBEDTLS_BLOWFISH_C "") +set(CONFIG_MBEDTLS_XTEA_C "") +set(CONFIG_MBEDTLS_CCM_C "y") +set(CONFIG_MBEDTLS_GCM_C "y") +set(CONFIG_MBEDTLS_NIST_KW_C "") +set(CONFIG_MBEDTLS_RIPEMD160_C "") +set(CONFIG_MBEDTLS_PEM_PARSE_C "y") +set(CONFIG_MBEDTLS_PEM_WRITE_C "y") +set(CONFIG_MBEDTLS_X509_CRL_PARSE_C "y") +set(CONFIG_MBEDTLS_X509_CSR_PARSE_C "y") +set(CONFIG_MBEDTLS_ECP_C "y") +set(CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED "y") +set(CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED "y") +set(CONFIG_MBEDTLS_DHM_C "") +set(CONFIG_MBEDTLS_ECDH_C "y") +set(CONFIG_MBEDTLS_ECDSA_C "y") +set(CONFIG_MBEDTLS_ECJPAKE_C "") +set(CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED "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_SECP192K1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP224K1_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_POLY1305_C "") +set(CONFIG_MBEDTLS_CHACHA20_C "") +set(CONFIG_MBEDTLS_HKDF_C "") +set(CONFIG_MBEDTLS_THREADING_C "") +set(CONFIG_MBEDTLS_ERROR_STRINGS "y") +set(CONFIG_MBEDTLS_FS_IO "y") +set(CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION "") +set(CONFIG_MQTT_PROTOCOL_311 "y") +set(CONFIG_MQTT_PROTOCOL_5 "") +set(CONFIG_MQTT_TRANSPORT_SSL "") +set(CONFIG_MQTT_TRANSPORT_WEBSOCKET "y") +set(CONFIG_MQTT_MSG_ID_INCREMENTAL "") +set(CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED "") +set(CONFIG_MQTT_REPORT_DELETED_MESSAGES "") +set(CONFIG_MQTT_USE_CUSTOM_CONFIG "y") +set(CONFIG_MQTT_TCP_DEFAULT_PORT "1883") +set(CONFIG_MQTT_WS_DEFAULT_PORT "80") +set(CONFIG_MQTT_BUFFER_SIZE "1024") +set(CONFIG_MQTT_TASK_STACK_SIZE "8192") +set(CONFIG_MQTT_DISABLE_API_LOCKS "") +set(CONFIG_MQTT_TASK_PRIORITY "5") +set(CONFIG_MQTT_POLL_READ_TIMEOUT_MS "1000") +set(CONFIG_MQTT_EVENT_QUEUE_SIZE "1") +set(CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED "") +set(CONFIG_MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY "") +set(CONFIG_MQTT_CUSTOM_OUTBOX "") +set(CONFIG_MQTT_OUTBOX_EXPIRED_TIMEOUT_MS "30000") +set(CONFIG_MQTT_TOPIC_PRESENT_ALL_DATA_EVENTS "") +set(CONFIG_LIBC_NEWLIB "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_NEWLIB_NANO_FORMAT "") +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_NVS_ENCRYPTION "") +set(CONFIG_NVS_ASSERT_ERROR_CHECK "") +set(CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY "") +set(CONFIG_OPENTHREAD_ENABLED "") +set(CONFIG_OPENTHREAD_SPINEL_ONLY "") +set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0 "y") +set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1 "y") +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_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_HPM_ENA "") +set(CONFIG_SPI_FLASH_HPM_AUTO "y") +set(CONFIG_SPI_FLASH_HPM_DIS "") +set(CONFIG_SPI_FLASH_HPM_ON "y") +set(CONFIG_SPI_FLASH_HPM_DC_AUTO "y") +set(CONFIG_SPI_FLASH_HPM_DC_DISABLE "") +set(CONFIG_SPI_FLASH_AUTO_SUSPEND "") +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_ROM_DRIVER_PATCH "y") +set(CONFIG_SPI_FLASH_ROM_IMPL "") +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_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_VENDOR_BOYA_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_TH_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 "y") +set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP "y") +set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") +set(CONFIG_SPIFFS_MAX_PARTITIONS "1") +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_UNITY_TEST_ORDER_BY_FILE_PATH_AND_LINE "") +set(CONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE "256") +set(CONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED "y") +set(CONFIG_USB_HOST_HW_BUFFER_BIAS_IN "") +set(CONFIG_USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT "") +set(CONFIG_USB_HOST_DEBOUNCE_DELAY_MS "250") +set(CONFIG_USB_HOST_RESET_HOLD_MS "30") +set(CONFIG_USB_HOST_RESET_RECOVERY_MS "30") +set(CONFIG_USB_HOST_SET_ADDR_RECOVERY_MS "10") +set(CONFIG_USB_HOST_HUBS_SUPPORTED "") +set(CONFIG_USB_HOST_ENABLE_ENUM_FILTER_CALLBACK "") +set(CONFIG_USB_OTG_SUPPORTED "y") +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 "y") +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_WIFI_PROV_SCAN_MAX_ENTRIES "16") +set(CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT "30") +set(CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN "y") +set(CONFIG_WIFI_PROV_STA_FAST_SCAN "") +set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") +set(CONFIGS_LIST CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_UHCI_SUPPORTED;CONFIG_SOC_AHB_GDMA_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_LCDCAM_SUPPORTED;CONFIG_SOC_LCDCAM_CAM_SUPPORTED;CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED;CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_CACHE_SUPPORT_WRAP;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_ULP_FSM_SUPPORTED;CONFIG_SOC_RISCV_COPROC_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_USB_OTG_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_PSRAM_DMA_CAPABLE;CONFIG_SOC_XT_WDT_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_MEMPROT_SUPPORTED;CONFIG_SOC_TOUCH_SENSOR_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_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_SIMD_INSTRUCTION_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG;CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_ARBITER_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_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_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_ADC_SHARED_POWER;CONFIG_SOC_APB_BACKUP_DMA;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED;CONFIG_SOC_CACHE_FREEZE_SUPPORTED;CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC;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_SIMD_PREFERRED_DATA_ALIGNMENT;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_AHB_GDMA_VERSION;CONFIG_SOC_GDMA_NUM_GROUPS_MAX;CONFIG_SOC_GDMA_PAIRS_PER_GROUP;CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX;CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_VALID_GPIO_MASK;CONFIG_SOC_GPIO_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_GPIO_SUPPORT_HOLD_IO_IN_DSLP;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST;CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS;CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_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_I2S_SUPPORTS_TDM;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_MCPWM_GROUPS;CONFIG_SOC_MCPWM_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP;CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR;CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER;CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP;CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_PCNT_GROUPS;CONFIG_SOC_PCNT_UNITS_PER_GROUP;CONFIG_SOC_PCNT_CHANNELS_PER_UNIT;CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_SUPPORT_DMA;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_LCD_RGB_SUPPORTED;CONFIG_SOC_LCD_I80_BUSES;CONFIG_SOC_LCD_RGB_PANELS;CONFIG_SOC_LCD_I80_BUS_WIDTH;CONFIG_SOC_LCD_RGB_DATA_WIDTH;CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_LCDCAM_I80_NUM_BUSES;CONFIG_SOC_LCDCAM_I80_BUS_WIDTH;CONFIG_SOC_LCDCAM_RGB_NUM_PANELS;CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM;CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_APB;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_SUPPORT_OCT;CONFIG_SOC_SPI_SCT_SUPPORTED;CONFIG_SOC_SPI_SCT_REG_NUM;CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX;CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX;CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SPIRAM_XIP_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_TOUCH_SENSOR_VERSION;CONFIG_SOC_TOUCH_SENSOR_NUM;CONFIG_SOC_TOUCH_MIN_CHAN_ID;CONFIG_SOC_TOUCH_MAX_CHAN_ID;CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK;CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP;CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF;CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING;CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN;CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM;CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED;CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_MASK_FILTER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_APB;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE;CONFIG_SOC_UHCI_NUM;CONFIG_SOC_USB_OTG_PERIPH_NUM;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_SHA_SUPPORT_SHA512_224;CONFIG_SOC_SHA_SUPPORT_SHA512_256;CONFIG_SOC_SHA_SUPPORT_SHA512_T;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP;CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_TAGMEM_PD;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MAC_BB_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL;CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA;CONFIG_SOC_PM_MODEM_PD_BY_SW;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_D2;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE;CONFIG_SOC_EFUSE_HARD_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256;CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE;CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_MAC_BB_PD_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE;CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY;CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM;CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE;CONFIG_SOC_SDMMC_USE_GPIO_MATRIX;CONFIG_SOC_SDMMC_NUM_SLOTS;CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_SDMMC_DELAY_PHASE_NUM;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW;CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_ULP_HAS_ADC;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM;CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX;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_ESP32S3;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_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_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;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_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;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_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_MZ_CRC32;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG;CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP;CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG;CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG;CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_HAS_VERSION;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC;CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_OCT_FLASH;CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_120M;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ;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_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_APPTRACE_DEST_JTAG;CONFIG_ESP32_APPTRACE_DEST_TRAX;CONFIG_APPTRACE_DEST_NONE;CONFIG_ESP32_APPTRACE_DEST_NONE;CONFIG_APPTRACE_DEST_UART1;CONFIG_APPTRACE_DEST_UART2;CONFIG_APPTRACE_DEST_USB_CDC;CONFIG_APPTRACE_DEST_UART_NONE;CONFIG_APPTRACE_UART_TASK_PRIO;CONFIG_APPTRACE_LOCK_ENABLE;CONFIG_ESP32_APPTRACE_LOCK_ENABLE;CONFIG_BT_ENABLED;CONFIG_BT_BLE_LOG_SPI_OUT_ENABLED;CONFIG_BT_BLE_LOG_UHCI_OUT_ENABLED;CONFIG_CONSOLE_SORTED_HELP;CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM;CONFIG_ADC_SUPPRESS_DEPRECATE_WARN;CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN;CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN;CONFIG_MCPWM_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN;CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_RMT_SUPPRESS_DEPRECATE_WARN;CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_I2S_SUPPRESS_DEPRECATE_WARN;CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN;CONFIG_PCNT_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_SDM_SUPPRESS_DEPRECATE_WARN;CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN;CONFIG_TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN;CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_TLS_USING_MBEDTLS;CONFIG_ESP_TLS_USE_SECURE_ELEMENT;CONFIG_ESP_TLS_USE_DS_PERIPHERAL;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_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3;CONFIG_ADC_ENABLE_DEBUG_LOG;CONFIG_ESP_COEX_ENABLED;CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE;CONFIG_EXTERNAL_COEX_ENABLE;CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE;CONFIG_ESP_COEX_GPIO_DEBUG;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_CAM_CTLR_DVP_CAM_ISR_CACHE_SAFE;CONFIG_CAM_CTLR_DVP_CAM_ISR_IRAM_SAFE;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_ENABLE_SLAVE_DRIVER_VERSION_2;CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM;CONFIG_I2S_ISR_IRAM_SAFE;CONFIG_I2S_ENABLE_DEBUG_LOG;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_SPI_MASTER_IN_IRAM;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_TEMP_SENSOR_ENABLE_DEBUG_LOG;CONFIG_TWAI_ISR_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_USJ_ENABLE_USB_SERIAL_JTAG;CONFIG_ETH_ENABLED;CONFIG_ETH_USE_SPI_ETHERNET;CONFIG_ETH_SPI_ETHERNET_DM9051;CONFIG_ETH_SPI_ETHERNET_W5500;CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL;CONFIG_ETH_USE_OPENETH;CONFIG_ETH_TRANSMIT_MUTEX;CONFIG_ESP_EVENT_LOOP_PROFILING;CONFIG_EVENT_LOOP_PROFILING;CONFIG_ESP_EVENT_POST_FROM_ISR;CONFIG_POST_EVENTS_FROM_ISR;CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR;CONFIG_POST_EVENTS_FROM_IRAM_ISR;CONFIG_ESP_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_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_SERVER_ENABLE;CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT;CONFIG_ESP_HTTPS_SERVER_CERT_SELECT_HOOK;CONFIG_ESP32S3_REV_MIN_0;CONFIG_ESP32S3_REV_MIN_1;CONFIG_ESP32S3_REV_MIN_2;CONFIG_ESP32S3_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32S3_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_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_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES;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_ESP32S3_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_ESP32S3_RTC_CLK_SRC_INT_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES;CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_HANDLER_IN_IRAM;CONFIG_GDMA_OBJ_DRAM_SAFE;CONFIG_GDMA_ENABLE_DEBUG_LOG;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32S3_BROWNOUT_DET_LVL;CONFIG_ESP_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_LCD_RGB_ISR_IRAM_SAFE;CONFIG_LCD_RGB_RESTART_IN_VSYNC;CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS;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_USB;CONFIG_ESP_PHY_ENABLE_CERT_TEST;CONFIG_ESP_PHY_RF_CAL_PARTIAL;CONFIG_ESP_PHY_RF_CAL_NONE;CONFIG_ESP_PHY_RF_CAL_FULL;CONFIG_ESP_PHY_CALIBRATION_MODE;CONFIG_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_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP;CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU;CONFIG_PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP;CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP;CONFIG_SPIRAM;CONFIG_ESP32S3_SPIRAM_SUPPORT;CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_ESP_ROM_PRINT_IN_IRAM;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE;CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS;CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE;CONFIG_ESP32S3_DATA_CACHE_16KB;CONFIG_ESP32S3_DATA_CACHE_32KB;CONFIG_ESP32S3_DATA_CACHE_64KB;CONFIG_ESP32S3_DATA_CACHE_SIZE;CONFIG_ESP32S3_DATA_CACHE_4WAYS;CONFIG_ESP32S3_DATA_CACHE_8WAYS;CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_DATA_CACHE_LINE_16B;CONFIG_ESP32S3_DATA_CACHE_LINE_32B;CONFIG_ESP32S3_DATA_CACHE_LINE_64B;CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE;CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM;CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32S3_TRAX;CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_IN_IRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_GDBSTUB;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1;CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_CDC;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_INT_WDT_CHECK_CPU1;CONFIG_INT_WDT_CHECK_CPU1;CONFIG_ESP_TASK_WDT_EN;CONFIG_ESP_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_ESP32S3_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_SYSTEM_BBPLL_RECALIB;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_SYSTIMER;CONFIG_ESP_WIFI_ENABLED;CONFIG_ESP32_WIFI_ENABLED;CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP_WIFI_STATIC_TX_BUFFER;CONFIG_ESP32_WIFI_STATIC_TX_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP_WIFI_TX_BUFFER_TYPE;CONFIG_ESP32_WIFI_TX_BUFFER_TYPE;CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF;CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF;CONFIG_ESP_WIFI_CSI_ENABLED;CONFIG_ESP32_WIFI_CSI_ENABLED;CONFIG_ESP_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP_WIFI_TX_BA_WIN;CONFIG_ESP32_WIFI_TX_BA_WIN;CONFIG_ESP_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED;CONFIG_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_PK;CONFIG_ESP_WIFI_ENABLE_SAE_H2E;CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT;CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA;CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA;CONFIG_ESP_WIFI_SLP_IRAM_OPT;CONFIG_ESP_WIFI_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_FTM_ENABLE;CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE;CONFIG_ESP_WIFI_GCMP_SUPPORT;CONFIG_ESP_WIFI_GMAC_SUPPORT;CONFIG_ESP_WIFI_SOFTAP_SUPPORT;CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT;CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM;CONFIG_ESP_WIFI_MBEDTLS_CRYPTO;CONFIG_WPA_MBEDTLS_CRYPTO;CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT;CONFIG_WPA_MBEDTLS_TLS_CLIENT;CONFIG_ESP_WIFI_WAPI_PSK;CONFIG_WPA_WAPI_PSK;CONFIG_ESP_WIFI_SUITE_B_192;CONFIG_WPA_SUITE_B_192;CONFIG_ESP_WIFI_11KV_SUPPORT;CONFIG_WPA_11KV_SUPPORT;CONFIG_ESP_WIFI_MBO_SUPPORT;CONFIG_WPA_MBO_SUPPORT;CONFIG_ESP_WIFI_DPP_SUPPORT;CONFIG_WPA_DPP_SUPPORT;CONFIG_ESP_WIFI_11R_SUPPORT;CONFIG_WPA_11R_SUPPORT;CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR;CONFIG_WPA_WPS_SOFTAP_REGISTRAR;CONFIG_ESP_WIFI_WPS_STRICT;CONFIG_WPA_WPS_STRICT;CONFIG_ESP_WIFI_WPS_PASSPHRASE;CONFIG_ESP_WIFI_DEBUG_PRINT;CONFIG_WPA_DEBUG_PRINT;CONFIG_ESP_WIFI_TESTING_OPTIONS;CONFIG_WPA_TESTING_OPTIONS;CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT;CONFIG_ESP_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_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_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_FPU_IN_ISR;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_NUMBER_OF_CORES;CONFIG_FREERTOS_IN_IRAM;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_ASSERTION_ENABLE;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_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_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_LEASE_UNIT;CONFIG_LWIP_DHCPS_MAX_STATION_NUM;CONFIG_LWIP_DHCPS_STATIC_ENTRIES;CONFIG_LWIP_DHCPS_ADD_DNS;CONFIG_LWIP_AUTOIP;CONFIG_LWIP_IPV4;CONFIG_LWIP_IPV6;CONFIG_LWIP_IPV6_AUTOCONFIG;CONFIG_LWIP_IPV6_NUM_ADDRESSES;CONFIG_LWIP_IPV6_FORWARD;CONFIG_LWIP_NETIF_STATUS_CALLBACK;CONFIG_LWIP_NETIF_LOOPBACK;CONFIG_LWIP_LOOPBACK_MAX_PBUFS;CONFIG_LWIP_MAX_ACTIVE_TCP;CONFIG_LWIP_MAX_LISTENING_TCP;CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION;CONFIG_LWIP_TCP_MAXRTX;CONFIG_TCP_MAXRTX;CONFIG_LWIP_TCP_SYNMAXRTX;CONFIG_TCP_SYNMAXRTX;CONFIG_LWIP_TCP_MSS;CONFIG_TCP_MSS;CONFIG_LWIP_TCP_TMR_INTERVAL;CONFIG_LWIP_TCP_MSL;CONFIG_TCP_MSL;CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT;CONFIG_LWIP_TCP_SND_BUF_DEFAULT;CONFIG_TCP_SND_BUF_DEFAULT;CONFIG_LWIP_TCP_WND_DEFAULT;CONFIG_TCP_WND_DEFAULT;CONFIG_LWIP_TCP_RECVMBOX_SIZE;CONFIG_TCP_RECVMBOX_SIZE;CONFIG_LWIP_TCP_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_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_INTERNAL_MEM_ALLOC;CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC;CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC;CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN;CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN;CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN;CONFIG_MBEDTLS_DYNAMIC_BUFFER;CONFIG_MBEDTLS_DEBUG;CONFIG_MBEDTLS_SSL_PROTO_TLS1_3;CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH;CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK;CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION;CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE;CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT;CONFIG_MBEDTLS_PKCS7_C;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE;CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_AES_USE_INTERRUPT;CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL;CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI;CONFIG_MBEDTLS_MPI_USE_INTERRUPT;CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL;CONFIG_MBEDTLS_HARDWARE_SHA;CONFIG_MBEDTLS_ROM_MD5;CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN;CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY;CONFIG_MBEDTLS_HAVE_TIME;CONFIG_MBEDTLS_PLATFORM_TIME_ALT;CONFIG_MBEDTLS_HAVE_TIME_DATE;CONFIG_MBEDTLS_ECDSA_DETERMINISTIC;CONFIG_MBEDTLS_SHA1_C;CONFIG_MBEDTLS_SHA512_C;CONFIG_MBEDTLS_SHA3_C;CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_ONLY;CONFIG_MBEDTLS_TLS_CLIENT_ONLY;CONFIG_MBEDTLS_TLS_DISABLED;CONFIG_MBEDTLS_TLS_SERVER;CONFIG_MBEDTLS_TLS_CLIENT;CONFIG_MBEDTLS_TLS_ENABLED;CONFIG_MBEDTLS_PSK_MODES;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA;CONFIG_MBEDTLS_SSL_RENEGOTIATION;CONFIG_MBEDTLS_SSL_PROTO_TLS1_2;CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1;CONFIG_MBEDTLS_SSL_PROTO_DTLS;CONFIG_MBEDTLS_SSL_ALPN;CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_AES_C;CONFIG_MBEDTLS_CAMELLIA_C;CONFIG_MBEDTLS_DES_C;CONFIG_MBEDTLS_BLOWFISH_C;CONFIG_MBEDTLS_XTEA_C;CONFIG_MBEDTLS_CCM_C;CONFIG_MBEDTLS_GCM_C;CONFIG_MBEDTLS_NIST_KW_C;CONFIG_MBEDTLS_RIPEMD160_C;CONFIG_MBEDTLS_PEM_PARSE_C;CONFIG_MBEDTLS_PEM_WRITE_C;CONFIG_MBEDTLS_X509_CRL_PARSE_C;CONFIG_MBEDTLS_X509_CSR_PARSE_C;CONFIG_MBEDTLS_ECP_C;CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED;CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED;CONFIG_MBEDTLS_DHM_C;CONFIG_MBEDTLS_ECDH_C;CONFIG_MBEDTLS_ECDSA_C;CONFIG_MBEDTLS_ECJPAKE_C;CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED;CONFIG_MBEDTLS_ECP_NIST_OPTIM;CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM;CONFIG_MBEDTLS_POLY1305_C;CONFIG_MBEDTLS_CHACHA20_C;CONFIG_MBEDTLS_HKDF_C;CONFIG_MBEDTLS_THREADING_C;CONFIG_MBEDTLS_ERROR_STRINGS;CONFIG_MBEDTLS_FS_IO;CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION;CONFIG_MQTT_PROTOCOL_311;CONFIG_MQTT_PROTOCOL_5;CONFIG_MQTT_TRANSPORT_SSL;CONFIG_MQTT_TRANSPORT_WEBSOCKET;CONFIG_MQTT_MSG_ID_INCREMENTAL;CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED;CONFIG_MQTT_REPORT_DELETED_MESSAGES;CONFIG_MQTT_USE_CUSTOM_CONFIG;CONFIG_MQTT_TCP_DEFAULT_PORT;CONFIG_MQTT_WS_DEFAULT_PORT;CONFIG_MQTT_BUFFER_SIZE;CONFIG_MQTT_TASK_STACK_SIZE;CONFIG_MQTT_DISABLE_API_LOCKS;CONFIG_MQTT_TASK_PRIORITY;CONFIG_MQTT_POLL_READ_TIMEOUT_MS;CONFIG_MQTT_EVENT_QUEUE_SIZE;CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED;CONFIG_MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY;CONFIG_MQTT_CUSTOM_OUTBOX;CONFIG_MQTT_OUTBOX_EXPIRED_TIMEOUT_MS;CONFIG_MQTT_TOPIC_PRESENT_ALL_DATA_EVENTS;CONFIG_LIBC_NEWLIB;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_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC;CONFIG_LIBC_TIME_SYSCALL_USE_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_NONE;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE;CONFIG_NVS_ENCRYPTION;CONFIG_NVS_ASSERT_ERROR_CHECK;CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY;CONFIG_OPENTHREAD_ENABLED;CONFIG_OPENTHREAD_SPINEL_ONLY;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_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_HPM_ENA;CONFIG_SPI_FLASH_HPM_AUTO;CONFIG_SPI_FLASH_HPM_DIS;CONFIG_SPI_FLASH_HPM_ON;CONFIG_SPI_FLASH_HPM_DC_AUTO;CONFIG_SPI_FLASH_HPM_DC_DISABLE;CONFIG_SPI_FLASH_AUTO_SUSPEND;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_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_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_VENDOR_BOYA_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_TH_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_SUPPORT_MXIC_OPI_CHIP;CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_SPIFFS_MAX_PARTITIONS;CONFIG_SPIFFS_CACHE;CONFIG_SPIFFS_CACHE_WR;CONFIG_SPIFFS_CACHE_STATS;CONFIG_SPIFFS_PAGE_CHECK;CONFIG_SPIFFS_GC_MAX_RUNS;CONFIG_SPIFFS_GC_STATS;CONFIG_SPIFFS_PAGE_SIZE;CONFIG_SPIFFS_OBJ_NAME_LEN;CONFIG_SPIFFS_FOLLOW_SYMLINKS;CONFIG_SPIFFS_USE_MAGIC;CONFIG_SPIFFS_USE_MAGIC_LENGTH;CONFIG_SPIFFS_META_LENGTH;CONFIG_SPIFFS_USE_MTIME;CONFIG_SPIFFS_DBG;CONFIG_SPIFFS_API_DBG;CONFIG_SPIFFS_GC_DBG;CONFIG_SPIFFS_CACHE_DBG;CONFIG_SPIFFS_CHECK_DBG;CONFIG_SPIFFS_TEST_VISUALISATION;CONFIG_WS_TRANSPORT;CONFIG_WS_BUFFER_SIZE;CONFIG_WS_DYNAMIC_BUFFER;CONFIG_ULP_COPROC_ENABLED;CONFIG_UNITY_ENABLE_FLOAT;CONFIG_UNITY_ENABLE_DOUBLE;CONFIG_UNITY_ENABLE_64BIT;CONFIG_UNITY_ENABLE_COLOR;CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER;CONFIG_UNITY_ENABLE_FIXTURE;CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL;CONFIG_UNITY_TEST_ORDER_BY_FILE_PATH_AND_LINE;CONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE;CONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED;CONFIG_USB_HOST_HW_BUFFER_BIAS_IN;CONFIG_USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT;CONFIG_USB_HOST_DEBOUNCE_DELAY_MS;CONFIG_USB_HOST_RESET_HOLD_MS;CONFIG_USB_HOST_RESET_RECOVERY_MS;CONFIG_USB_HOST_SET_ADDR_RECOVERY_MS;CONFIG_USB_HOST_HUBS_SUPPORTED;CONFIG_USB_HOST_ENABLE_ENUM_FILTER_CALLBACK;CONFIG_USB_OTG_SUPPORTED;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_WIFI_PROV_SCAN_MAX_ENTRIES;CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT;CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN;CONFIG_WIFI_PROV_STA_FAST_SCAN;CONFIG_IDF_EXPERIMENTAL_FEATURES) +# List of deprecated options for backward compatibility +set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") +set(CONFIG_NO_BLOBS "") +set(CONFIG_APP_ROLLBACK_ENABLE "") +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 "y") +set(CONFIG_FLASHMODE_QOUT "") +set(CONFIG_FLASHMODE_DIO "") +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_ESP32_APPTRACE_DEST_TRAX "") +set(CONFIG_ESP32_APPTRACE_DEST_NONE "y") +set(CONFIG_ESP32_APPTRACE_LOCK_ENABLE "y") +set(CONFIG_EXTERNAL_COEX_ENABLE "") +set(CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE "") +set(CONFIG_CAM_CTLR_DVP_CAM_ISR_IRAM_SAFE "") +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_ESP_SYSTEM_PD_FLASH "") +set(CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_ESP32S3_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") +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_ESP_SYSTEM_PM_POWER_DOWN_CPU "y") +set(CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP "y") +set(CONFIG_ESP32S3_SPIRAM_SUPPORT "") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80 "") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 "y") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240 "") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_MAIN_TASK_STACK_SIZE "3584") +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_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_ESP32S3_DEBUG_OCDAWARE "y") +set(CONFIG_IPC_TASK_STACK_SIZE "1280") +set(CONFIG_TIMER_TASK_STACK_SIZE "3584") +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_WPA_MBEDTLS_CRYPTO "y") +set(CONFIG_WPA_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_WPA_WAPI_PSK "") +set(CONFIG_WPA_SUITE_B_192 "") +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_WPA_TESTING_OPTIONS "") +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_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_NANO_FORMAT "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE "") +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_SUPPRESS_SELECT_DEBUG_OUTPUT "y") +set(CONFIG_SUPPORT_TERMIOS "y") +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..65b29b9 --- /dev/null +++ b/build/config/sdkconfig.h @@ -0,0 +1,1083 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header + */ +#pragma once +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_UART_SUPPORTED 1 +#define CONFIG_SOC_PCNT_SUPPORTED 1 +#define CONFIG_SOC_PHY_SUPPORTED 1 +#define CONFIG_SOC_WIFI_SUPPORTED 1 +#define CONFIG_SOC_TWAI_SUPPORTED 1 +#define CONFIG_SOC_GDMA_SUPPORTED 1 +#define CONFIG_SOC_UHCI_SUPPORTED 1 +#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1 +#define CONFIG_SOC_GPTIMER_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_CAM_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED 1 +#define CONFIG_SOC_MCPWM_SUPPORTED 1 +#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1 +#define CONFIG_SOC_CACHE_SUPPORT_WRAP 1 +#define CONFIG_SOC_ULP_SUPPORTED 1 +#define CONFIG_SOC_ULP_FSM_SUPPORTED 1 +#define CONFIG_SOC_RISCV_COPROC_SUPPORTED 1 +#define CONFIG_SOC_BT_SUPPORTED 1 +#define CONFIG_SOC_USB_OTG_SUPPORTED 1 +#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1 +#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1 +#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1 +#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1 +#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1 +#define CONFIG_SOC_EFUSE_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_HOST_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_PSRAM_DMA_CAPABLE 1 +#define CONFIG_SOC_XT_WDT_SUPPORTED 1 +#define CONFIG_SOC_I2S_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_SYSTIMER_SUPPORTED 1 +#define CONFIG_SOC_SUPPORT_COEXISTENCE 1 +#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_AES_SUPPORTED 1 +#define CONFIG_SOC_MPI_SUPPORTED 1 +#define CONFIG_SOC_SHA_SUPPORTED 1 +#define CONFIG_SOC_HMAC_SUPPORTED 1 +#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1 +#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 +#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 +#define CONFIG_SOC_MEMPROT_SUPPORTED 1 +#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_BOD_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_SIMD_INSTRUCTION_SUPPORTED 1 +#define CONFIG_SOC_XTAL_SUPPORT_40M 1 +#define CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG 1 +#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_ARBITER_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1 +#define CONFIG_SOC_ADC_MONITOR_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 24 +#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4 +#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 +#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2 +#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 2 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611 +#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12 +#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1 +#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1 +#define CONFIG_SOC_ADC_SHARED_POWER 1 +#define CONFIG_SOC_APB_BACKUP_DMA 1 +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 +#define CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED 1 +#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1 +#define CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC 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_SIMD_PREFERRED_DATA_ALIGNMENT 16 +#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 4096 +#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16 +#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100 +#define CONFIG_SOC_AHB_GDMA_VERSION 1 +#define CONFIG_SOC_GDMA_NUM_GROUPS_MAX 1 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP 5 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 5 +#define CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM 1 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 49 +#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 +#define CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT 1 +#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1 +#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0x1FFFFFFFFFFFF +#define CONFIG_SOC_GPIO_IN_RANGE_MAX 48 +#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 48 +#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x0001FFFFFC000000 +#define CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX 1 +#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3 +#define CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP 1 +#define CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE 1 +#define CONFIG_SOC_I2C_NUM 2 +#define CONFIG_SOC_HP_I2C_NUM 2 +#define CONFIG_SOC_I2C_FIFO_LEN 32 +#define CONFIG_SOC_I2C_CMD_REG_NUM 8 +#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 +#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1 +#define CONFIG_SOC_I2C_SUPPORT_XTAL 1 +#define CONFIG_SOC_I2C_SUPPORT_RTC 1 +#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS 1 +#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1 +#define CONFIG_SOC_I2S_NUM 2 +#define CONFIG_SOC_I2S_HW_VERSION_2 1 +#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1 +#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1 +#define CONFIG_SOC_I2S_SUPPORTS_PCM 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 2 +#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 4 +#define CONFIG_SOC_I2S_SUPPORTS_TDM 1 +#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1 +#define CONFIG_SOC_LEDC_TIMER_NUM 4 +#define CONFIG_SOC_LEDC_CHANNEL_NUM 8 +#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 14 +#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1 +#define CONFIG_SOC_MCPWM_GROUPS 2 +#define CONFIG_SOC_MCPWM_TIMERS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP 1 +#define CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER 3 +#define CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE 1 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1 +#define CONFIG_SOC_MMU_PERIPH_NUM 1 +#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 +#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 +#define CONFIG_SOC_PCNT_GROUPS 1 +#define CONFIG_SOC_PCNT_UNITS_PER_GROUP 4 +#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2 +#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2 +#define CONFIG_SOC_RMT_GROUPS 1 +#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 4 +#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 4 +#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48 +#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1 +#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1 +#define CONFIG_SOC_RMT_SUPPORT_XTAL 1 +#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1 +#define CONFIG_SOC_RMT_SUPPORT_APB 1 +#define CONFIG_SOC_RMT_SUPPORT_DMA 1 +#define CONFIG_SOC_LCD_I80_SUPPORTED 1 +#define CONFIG_SOC_LCD_RGB_SUPPORTED 1 +#define CONFIG_SOC_LCD_I80_BUSES 1 +#define CONFIG_SOC_LCD_RGB_PANELS 1 +#define CONFIG_SOC_LCD_I80_BUS_WIDTH 16 +#define CONFIG_SOC_LCD_RGB_DATA_WIDTH 16 +#define CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV 1 +#define CONFIG_SOC_LCDCAM_I80_NUM_BUSES 1 +#define CONFIG_SOC_LCDCAM_I80_BUS_WIDTH 16 +#define CONFIG_SOC_LCDCAM_RGB_NUM_PANELS 1 +#define CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH 16 +#define CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH 128 +#define CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM 549 +#define CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH 128 +#define CONFIG_SOC_RTCIO_PIN_COUNT 22 +#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_LP_IO_CLOCK_IS_INDEPENDENT 1 +#define CONFIG_SOC_SDM_GROUPS 1 +#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_SPI_PERIPH_NUM 3 +#define CONFIG_SOC_SPI_MAX_CS_NUM 6 +#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 +#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1 +#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1 +#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1 +#define CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT 1 +#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1 +#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16 +#define CONFIG_SOC_SPI_SUPPORT_OCT 1 +#define CONFIG_SOC_SPI_SCT_SUPPORTED 1 +#define CONFIG_SOC_SPI_SCT_REG_NUM 14 +#define CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX 1 +#define CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX 0x3FFFA +#define CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 +#define CONFIG_SOC_SPIRAM_SUPPORTED 1 +#define CONFIG_SOC_SPIRAM_XIP_SUPPORTED 1 +#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2 +#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20 +#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1 +#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1 +#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 +#define CONFIG_SOC_TIMER_GROUPS 2 +#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 2 +#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1 +#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 4 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16 +#define CONFIG_SOC_TOUCH_SENSOR_VERSION 2 +#define CONFIG_SOC_TOUCH_SENSOR_NUM 15 +#define CONFIG_SOC_TOUCH_MIN_CHAN_ID 1 +#define CONFIG_SOC_TOUCH_MAX_CHAN_ID 14 +#define CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK 1 +#define CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP 1 +#define CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF 1 +#define CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING 1 +#define CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN 1 +#define CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM 3 +#define CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED 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_TWAI_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_TWAI_BRP_MIN 2 +#define CONFIG_SOC_TWAI_BRP_MAX 16384 +#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 +#define CONFIG_SOC_UART_NUM 3 +#define CONFIG_SOC_UART_HP_NUM 3 +#define CONFIG_SOC_UART_FIFO_LEN 128 +#define CONFIG_SOC_UART_BITRATE_MAX 5000000 +#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1 +#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1 +#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1 +#define CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE 1 +#define CONFIG_SOC_UHCI_NUM 1 +#define CONFIG_SOC_USB_OTG_PERIPH_NUM 1 +#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968 +#define CONFIG_SOC_SHA_SUPPORT_DMA 1 +#define CONFIG_SOC_SHA_SUPPORT_RESUME 1 +#define CONFIG_SOC_SHA_GDMA 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA224 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_SHA_SUPPORT_SHA512_224 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512_256 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512_T 1 +#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 +#define CONFIG_SOC_MPI_OPERATIONS_NUM 3 +#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096 +#define CONFIG_SOC_AES_SUPPORT_DMA 1 +#define CONFIG_SOC_AES_GDMA 1 +#define CONFIG_SOC_AES_SUPPORT_AES_128 1 +#define CONFIG_SOC_AES_SUPPORT_AES_256 1 +#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_WIFI_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1 +#define CONFIG_SOC_PM_SUPPORT_TAGMEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 +#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MAC_BB_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 +#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1 +#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 1 +#define CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL 1 +#define CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA 1 +#define CONFIG_SOC_PM_MODEM_PD_BY_SW 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_D2 1 +#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE 1 +#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE 1 +#define CONFIG_SOC_EFUSE_HARD_DIS_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1 +#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1 +#define CONFIG_SOC_EFUSE_DIS_ICACHE 1 +#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1 +#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1 +#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3 +#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1 +#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1 +#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 64 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 1 +#define CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE 16 +#define CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE 256 +#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 +#define CONFIG_SOC_MAC_BB_PD_MEM_SIZE 192 +#define CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH 12 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1 +#define CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY 1 +#define CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP 1 +#define CONFIG_SOC_COEX_HW_PTI 1 +#define CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE 1 +#define CONFIG_SOC_SDMMC_USE_GPIO_MATRIX 1 +#define CONFIG_SOC_SDMMC_NUM_SLOTS 2 +#define CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK 1 +#define CONFIG_SOC_SDMMC_DELAY_PHASE_NUM 4 +#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1 +#define CONFIG_SOC_WIFI_HW_TSF 1 +#define CONFIG_SOC_WIFI_FTM_SUPPORT 1 +#define CONFIG_SOC_WIFI_GCMP_SUPPORT 1 +#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_PHY_NEEDS_USB_WORKAROUND 1 +#define CONFIG_SOC_BLE_SUPPORTED 1 +#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 +#define CONFIG_SOC_BLE_50_SUPPORTED 1 +#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1 +#define CONFIG_SOC_BLUFI_SUPPORTED 1 +#define CONFIG_SOC_ULP_HAS_ADC 1 +#define CONFIG_SOC_PHY_COMBO_MODULE 1 +#define CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV 1 +#define CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM 1 +#define CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX 16 +#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 "esp32s3" +#define CONFIG_IDF_INIT_VERSION "5.5.1" +#define CONFIG_IDF_TARGET_ESP32S3 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0009 +#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 0x0 +#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_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_V2_RSA_SUPPORTED 1 +#define CONFIG_SECURE_BOOT_V2_PREFERRED 1 +#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 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_UART_CLK_IS_XTAL 1 +#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1 +#define CONFIG_ESP_ROM_USB_OTG_NUM 3 +#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 4 +#define CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG 1 +#define CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV 1 +#define CONFIG_ESP_ROM_GET_CLK_FREQ 1 +#define CONFIG_ESP_ROM_HAS_HAL_WDT 1 +#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1 +#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1 +#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1 +#define CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP 1 +#define CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG 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_NEEDS_SET_CACHE_MMU_SIZE 1 +#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1 +#define CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG 1 +#define CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG 1 +#define CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG 1 +#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 +#define CONFIG_ESP_ROM_HAS_VERSION 1 +#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 +#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1 +#define CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY 1 +#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 +#define CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT 1 +#define CONFIG_ESPTOOLPY_FLASHMODE_QIO 1 +#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 +#define CONFIG_ESPTOOLPY_FLASHMODE "dio" +#define CONFIG_ESPTOOLPY_FLASHFREQ_80M 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ "80m" +#define CONFIG_ESPTOOLPY_FLASHSIZE_4MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "4MB" +#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_ASSERT_NDEBUG_EVALUATE 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_DISABLE_DEFAULT_ERRORS 1 +#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 +#define CONFIG_COMPILER_RT_LIB_NAME "gcc" +#define CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING 1 +#define CONFIG_APPTRACE_DEST_NONE 1 +#define CONFIG_APPTRACE_DEST_UART_NONE 1 +#define CONFIG_APPTRACE_UART_TASK_PRIO 1 +#define CONFIG_APPTRACE_LOCK_ENABLE 1 +#define CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM 1 +#define CONFIG_EFUSE_MAX_BLK_LEN 256 +#define CONFIG_ESP_TLS_USING_MBEDTLS 1 +#define CONFIG_ESP_TLS_USE_DS_PERIPHERAL 1 +#define CONFIG_ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED 1 +#define CONFIG_ESP_COEX_ENABLED 1 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 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_USJ_ENABLE_USB_SERIAL_JTAG 1 +#define CONFIG_ETH_ENABLED 1 +#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_ESP32S3_REV_MIN_0 1 +#define CONFIG_ESP32S3_REV_MIN_FULL 0 +#define CONFIG_ESP_REV_MIN_FULL 0 +#define CONFIG_ESP32S3_REV_MAX_FULL 99 +#define CONFIG_ESP_REV_MAX_FULL 99 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 199 +#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_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU 1 +#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_GPIO_RESET_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_ESP_PERIPH_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_GDMA_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_GDMA_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_GDMA_OBJ_DRAM_SAFE 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_7 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 7 +#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_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_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_ENABLE_USB 1 +#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_PM_SLEEP_FUNC_IN_IRAM 1 +#define CONFIG_PM_SLP_IRAM_OPT 1 +#define CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP 1 +#define CONFIG_PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP 1 +#define CONFIG_ESP_ROM_PRINT_IN_IRAM 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB 1 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE 0x4000 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS 1 +#define CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS 8 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B 1 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE 32 +#define CONFIG_ESP32S3_DATA_CACHE_32KB 1 +#define CONFIG_ESP32S3_DATA_CACHE_SIZE 0x8000 +#define CONFIG_ESP32S3_DATA_CACHE_8WAYS 1 +#define CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS 8 +#define CONFIG_ESP32S3_DATA_CACHE_LINE_32B 1 +#define CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE 32 +#define CONFIG_ESP32S3_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_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1 +#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1 +#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE 1 +#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK 1 +#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_CONSOLE_UART_DEFAULT 1 +#define CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG 1 +#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 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_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_SYSTEM_BBPLL_RECALIB 1 +#define CONFIG_ESP_IPC_ENABLE 1 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1280 +#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_SYSTIMER 1 +#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_PK 1 +#define CONFIG_ESP_WIFI_ENABLE_SAE_H2E 1 +#define CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT 1 +#define CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA 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_NONE 1 +#define CONFIG_FATFS_SECTOR_4096 1 +#define CONFIG_FATFS_CODEPAGE_437 1 +#define CONFIG_FATFS_CODEPAGE 437 +#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_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_SYSTIMER 1 +#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1 +#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 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_ENABLE_TASK_SNAPSHOT 1 +#define CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH 1 +#define CONFIG_FREERTOS_NUMBER_OF_CORES 2 +#define CONFIG_FREERTOS_IN_IRAM 1 +#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 +#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 +#define CONFIG_HAL_WDT_USE_ROM_IMPL 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_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_LEASE_UNIT 60 +#define CONFIG_LWIP_DHCPS_MAX_STATION_NUM 8 +#define CONFIG_LWIP_DHCPS_STATIC_ENTRIES 1 +#define CONFIG_LWIP_DHCPS_ADD_DNS 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_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_SSL_KEEP_PEER_CERTIFICATE 1 +#define CONFIG_MBEDTLS_PKCS7_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_CMAC_C 1 +#define CONFIG_MBEDTLS_HARDWARE_AES 1 +#define CONFIG_MBEDTLS_AES_USE_INTERRUPT 1 +#define CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL 0 +#define CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER 1 +#define CONFIG_MBEDTLS_HARDWARE_MPI 1 +#define CONFIG_MBEDTLS_MPI_USE_INTERRUPT 1 +#define CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL 0 +#define CONFIG_MBEDTLS_HARDWARE_SHA 1 +#define CONFIG_MBEDTLS_ROM_MD5 1 +#define CONFIG_MBEDTLS_HAVE_TIME 1 +#define CONFIG_MBEDTLS_ECDSA_DETERMINISTIC 1 +#define CONFIG_MBEDTLS_SHA1_C 1 +#define CONFIG_MBEDTLS_SHA512_C 1 +#define CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT 1 +#define CONFIG_MBEDTLS_TLS_SERVER 1 +#define CONFIG_MBEDTLS_TLS_CLIENT 1 +#define CONFIG_MBEDTLS_TLS_ENABLED 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_KEY_EXCHANGE_ECDH_ECDSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA 1 +#define CONFIG_MBEDTLS_SSL_RENEGOTIATION 1 +#define CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 1 +#define CONFIG_MBEDTLS_SSL_ALPN 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_GCM_C 1 +#define CONFIG_MBEDTLS_PEM_PARSE_C 1 +#define CONFIG_MBEDTLS_PEM_WRITE_C 1 +#define CONFIG_MBEDTLS_X509_CRL_PARSE_C 1 +#define CONFIG_MBEDTLS_X509_CSR_PARSE_C 1 +#define CONFIG_MBEDTLS_ECP_C 1 +#define CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED 1 +#define CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED 1 +#define CONFIG_MBEDTLS_ECDH_C 1 +#define CONFIG_MBEDTLS_ECDSA_C 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED 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_SECP192K1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP224K1_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_ERROR_STRINGS 1 +#define CONFIG_MBEDTLS_FS_IO 1 +#define CONFIG_MQTT_PROTOCOL_311 1 +#define CONFIG_MQTT_TRANSPORT_WEBSOCKET 1 +#define CONFIG_MQTT_USE_CUSTOM_CONFIG 1 +#define CONFIG_MQTT_TCP_DEFAULT_PORT 1883 +#define CONFIG_MQTT_WS_DEFAULT_PORT 80 +#define CONFIG_MQTT_BUFFER_SIZE 1024 +#define CONFIG_MQTT_TASK_STACK_SIZE 8192 +#define CONFIG_MQTT_TASK_PRIORITY 5 +#define CONFIG_MQTT_POLL_READ_TIMEOUT_MS 1000 +#define CONFIG_MQTT_EVENT_QUEUE_SIZE 1 +#define CONFIG_MQTT_OUTBOX_EXPIRED_TIMEOUT_MS 30000 +#define CONFIG_LIBC_NEWLIB 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_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0 1 +#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1 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_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_HPM_AUTO 1 +#define CONFIG_SPI_FLASH_HPM_ON 1 +#define CONFIG_SPI_FLASH_HPM_DC_AUTO 1 +#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 +#define CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM 1 +#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 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_VENDOR_BOYA_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_TH_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_SUPPORT_BOYA_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_TH_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP 1 +#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1 +#define CONFIG_SPIFFS_MAX_PARTITIONS 1 +#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_USB_HOST_CONTROL_TRANSFER_MAX_SIZE 256 +#define CONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED 1 +#define CONFIG_USB_HOST_DEBOUNCE_DELAY_MS 250 +#define CONFIG_USB_HOST_RESET_HOLD_MS 30 +#define CONFIG_USB_HOST_RESET_RECOVERY_MS 30 +#define CONFIG_USB_HOST_SET_ADDR_RECOVERY_MS 10 +#define CONFIG_USB_OTG_SUPPORTED 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_SUPPORT_TERMIOS 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 +#define CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES 16 +#define CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT 30 +#define CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN 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_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 +#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_ESP32S3_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_ESP32S3_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 +#define CONFIG_ESP32S3_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE +#define CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 +#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ +#define CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES +#define CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32_APPTRACE_DEST_NONE CONFIG_APPTRACE_DEST_NONE +#define CONFIG_ESP32_APPTRACE_LOCK_ENABLE CONFIG_APPTRACE_LOCK_ENABLE +#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_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_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_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_SYSTEM_PM_POWER_DOWN_CPU CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP +#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_FLASHMODE_QIO CONFIG_ESPTOOLPY_FLASHMODE_QIO +#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_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_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP CONFIG_PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP +#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_SUPPORT_TERMIOS CONFIG_VFS_SUPPORT_TERMIOS +#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_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..1b2108f --- /dev/null +++ b/build/config/sdkconfig.json @@ -0,0 +1,1464 @@ +{ + "ADC_CALI_SUPPRESS_DEPRECATE_WARN": false, + "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3": false, + "ADC_CONTINUOUS_ISR_IRAM_SAFE": false, + "ADC_ENABLE_DEBUG_LOG": false, + "ADC_ONESHOT_CTRL_FUNC_IN_IRAM": false, + "ADC_SKIP_LEGACY_CONFLICT_CHECK": false, + "ADC_SUPPRESS_DEPRECATE_WARN": false, + "APPTRACE_DEST_JTAG": false, + "APPTRACE_DEST_NONE": true, + "APPTRACE_DEST_UART1": false, + "APPTRACE_DEST_UART2": false, + "APPTRACE_DEST_UART_NONE": true, + "APPTRACE_DEST_USB_CDC": false, + "APPTRACE_LOCK_ENABLE": true, + "APPTRACE_UART_TASK_PRIO": 1, + "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_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_NONE": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, + "BOOTLOADER_COMPILE_TIME_DATE": true, + "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": 0, + "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_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "BOOT_ROM_LOG_ALWAYS_OFF": false, + "BOOT_ROM_LOG_ALWAYS_ON": true, + "BOOT_ROM_LOG_ON_GPIO_HIGH": false, + "BOOT_ROM_LOG_ON_GPIO_LOW": false, + "BT_BLE_LOG_SPI_OUT_ENABLED": false, + "BT_BLE_LOG_UHCI_OUT_ENABLED": false, + "BT_ENABLED": false, + "CAM_CTLR_DVP_CAM_ISR_CACHE_SAFE": false, + "COMPILER_ASSERT_NDEBUG_EVALUATE": true, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_DEFAULT_ERRORS": true, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DISABLE_GCC14_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_PLACE": false, + "COMPILER_ORPHAN_SECTIONS_WARNING": true, + "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, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 256, + "EFUSE_VIRTUAL": false, + "ESP32S3_DATA_CACHE_16KB": false, + "ESP32S3_DATA_CACHE_32KB": true, + "ESP32S3_DATA_CACHE_4WAYS": false, + "ESP32S3_DATA_CACHE_64KB": false, + "ESP32S3_DATA_CACHE_8WAYS": true, + "ESP32S3_DATA_CACHE_LINE_16B": false, + "ESP32S3_DATA_CACHE_LINE_32B": true, + "ESP32S3_DATA_CACHE_LINE_64B": false, + "ESP32S3_DATA_CACHE_LINE_SIZE": 32, + "ESP32S3_DATA_CACHE_SIZE": 32768, + "ESP32S3_DCACHE_ASSOCIATED_WAYS": 8, + "ESP32S3_ICACHE_ASSOCIATED_WAYS": 8, + "ESP32S3_INSTRUCTION_CACHE_16KB": true, + "ESP32S3_INSTRUCTION_CACHE_32KB": false, + "ESP32S3_INSTRUCTION_CACHE_4WAYS": false, + "ESP32S3_INSTRUCTION_CACHE_8WAYS": true, + "ESP32S3_INSTRUCTION_CACHE_LINE_16B": false, + "ESP32S3_INSTRUCTION_CACHE_LINE_32B": true, + "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE": 32, + "ESP32S3_INSTRUCTION_CACHE_SIZE": 16384, + "ESP32S3_REV_MAX_FULL": 99, + "ESP32S3_REV_MIN_0": true, + "ESP32S3_REV_MIN_1": false, + "ESP32S3_REV_MIN_2": false, + "ESP32S3_REV_MIN_FULL": 0, + "ESP32S3_RTCDATA_IN_FAST_MEM": false, + "ESP32S3_TRACEMEM_RESERVE_DRAM": 0, + "ESP32S3_TRAX": false, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32S3_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": "80m", + "ESPTOOLPY_FLASHFREQ_120M": false, + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_40M": false, + "ESPTOOLPY_FLASHFREQ_80M": true, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": false, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": true, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "4MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": false, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": true, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_MODE_AUTO_DETECT": true, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESPTOOLPY_OCT_FLASH": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 7, + "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": true, + "ESP_BROWNOUT_USE_INTR": true, + "ESP_COEX_ENABLED": true, + "ESP_COEX_EXTERNAL_COEXIST_ENABLE": false, + "ESP_COEX_GPIO_DEBUG": false, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, + "ESP_CONSOLE_SECONDARY_NONE": false, + "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, + "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_CONSOLE_USB_CDC": false, + "ESP_CONSOLE_USB_SERIAL_JTAG": false, + "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, + "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": 199, + "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_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_HTTPS": true, + "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT": 2000, + "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": 1280, + "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_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_MM_CACHE_MSYNC_C2M_CHUNKED_OPS": false, + "ESP_NETIF_BRIDGE_EN": false, + "ESP_NETIF_IP_LOST_TIMER_INTERVAL": 120, + "ESP_NETIF_L2_TAP": false, + "ESP_NETIF_LOOPBACK": false, + "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION": false, + "ESP_NETIF_RECEIVE_REPORT_ERRORS": false, + "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_ENABLE_USB": true, + "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": true, + "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1": true, + "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2": true, + "ESP_REGI2C_CTRL_FUNC_IN_IRAM": true, + "ESP_REV_MAX_FULL": 99, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_CONSOLE_OUTPUT_SECONDARY": true, + "ESP_ROM_GET_CLK_FREQ": true, + "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG": true, + "ESP_ROM_HAS_CACHE_WRITEBACK_BUG": true, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV": true, + "ESP_ROM_HAS_ERASE_0_REGION_BUG": true, + "ESP_ROM_HAS_ETS_PRINTF_BUG": true, + "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG": true, + "ESP_ROM_HAS_HAL_WDT": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_LAYOUT_TABLE": 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_RETARGETABLE_LOCKING": true, + "ESP_ROM_HAS_SPI_FLASH": true, + "ESP_ROM_HAS_SPI_FLASH_MMAP": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_VERSION": true, + "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_PRINT_IN_IRAM": true, + "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, + "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, + "ESP_ROM_UART_CLK_IS_XTAL": true, + "ESP_ROM_USB_OTG_NUM": 3, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": 4, + "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": true, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": true, + "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_ALLOW_RTC_FAST_MEM_AS_HEAP": true, + "ESP_SYSTEM_BBPLL_RECALIB": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "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_MEMPROT_FEATURE": true, + "ESP_SYSTEM_MEMPROT_FEATURE_LOCK": 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_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, + "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_SYSTIMER": 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_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_DS_PERIPHERAL": true, + "ESP_TLS_USE_SECURE_ELEMENT": false, + "ESP_TLS_USING_MBEDTLS": 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_FTM_ENABLE": false, + "ESP_WIFI_GCMP_SUPPORT": 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_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_SUITE_B_192": false, + "ESP_WIFI_TASK_PINNED_TO_CORE_0": true, + "ESP_WIFI_TASK_PINNED_TO_CORE_1": false, + "ESP_WIFI_TESTING_OPTIONS": false, + "ESP_WIFI_TX_BA_WIN": 6, + "ESP_WIFI_TX_BUFFER_TYPE": 1, + "ESP_WIFI_WAPI_PSK": false, + "ESP_WIFI_WPS_PASSPHRASE": false, + "ESP_WIFI_WPS_SOFTAP_REGISTRAR": false, + "ESP_WIFI_WPS_STRICT": false, + "ETH_ENABLED": true, + "ETH_SPI_ETHERNET_DM9051": false, + "ETH_SPI_ETHERNET_KSZ8851SNL": false, + "ETH_SPI_ETHERNET_W5500": false, + "ETH_TRANSMIT_MUTEX": false, + "ETH_USE_OPENETH": false, + "ETH_USE_SPI_ETHERNET": true, + "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": false, + "FATFS_LFN_NONE": true, + "FATFS_LFN_STACK": false, + "FATFS_LINK_LOCK": true, + "FATFS_PER_FILE_CACHE": true, + "FATFS_SECTOR_4096": true, + "FATFS_SECTOR_512": false, + "FATFS_TIMEOUT_MS": 10000, + "FATFS_USE_DYN_BUFFERS": false, + "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_SYSTIMER_LVL1": true, + "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, + "FREERTOS_DEBUG_OCDAWARE": true, + "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, + "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, + "FREERTOS_ENABLE_TASK_SNAPSHOT": true, + "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": true, + "FREERTOS_ISR_STACKSIZE": 1536, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_NUMBER_OF_CORES": 2, + "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, + "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_SYSTIMER": 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_SYSTIMER": 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, + "GDMA_CTRL_FUNC_IN_IRAM": true, + "GDMA_ENABLE_DEBUG_LOG": false, + "GDMA_ISR_HANDLER_IN_IRAM": true, + "GDMA_ISR_IRAM_SAFE": false, + "GDMA_OBJ_DRAM_SAFE": true, + "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, + "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK": false, + "GPTIMER_SUPPRESS_DEPRECATE_WARN": false, + "HAL_ASSERTION_DISABLE": false, + "HAL_ASSERTION_ENABLE": false, + "HAL_ASSERTION_EQUALS_SYSTEM": true, + "HAL_ASSERTION_SILENT": false, + "HAL_DEFAULT_ASSERTION_LEVEL": 2, + "HAL_WDT_USE_ROM_IMPL": true, + "HEAP_ABORT_WHEN_ALLOCATION_FAILS": false, + "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_ENABLE_SLAVE_DRIVER_VERSION_2": false, + "I2C_ISR_IRAM_SAFE": false, + "I2C_MASTER_ISR_HANDLER_IN_IRAM": true, + "I2C_SKIP_LEGACY_CONFLICT_CHECK": false, + "I2S_ENABLE_DEBUG_LOG": false, + "I2S_ISR_IRAM_SAFE": false, + "I2S_SKIP_LEGACY_CONFLICT_CHECK": false, + "I2S_SUPPRESS_DEPRECATE_WARN": false, + "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, + "IDF_FIRMWARE_CHIP_ID": 9, + "IDF_INIT_VERSION": "5.5.1", + "IDF_TARGET": "esp32s3", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32S3": true, + "IDF_TOOLCHAIN": "gcc", + "IDF_TOOLCHAIN_GCC": true, + "LCD_ENABLE_DEBUG_LOG": false, + "LCD_RGB_ISR_IRAM_SAFE": false, + "LCD_RGB_RESTART_IN_VSYNC": false, + "LEDC_CTRL_FUNC_IN_IRAM": false, + "LIBC_LOCKS_PLACE_IN_IRAM": true, + "LIBC_MISC_IN_IRAM": true, + "LIBC_NEWLIB": true, + "LIBC_NEWLIB_NANO_FORMAT": false, + "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_ADD_DNS": true, + "LWIP_DHCPS_LEASE_UNIT": 60, + "LWIP_DHCPS_MAX_STATION_NUM": 8, + "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_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_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_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_INTERRUPT_LEVEL": 0, + "MBEDTLS_AES_USE_INTERRUPT": true, + "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION": false, + "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, + "MBEDTLS_ATCA_HW_ECDSA_SIGN": false, + "MBEDTLS_ATCA_HW_ECDSA_VERIFY": false, + "MBEDTLS_BLOWFISH_C": false, + "MBEDTLS_CAMELLIA_C": false, + "MBEDTLS_CCM_C": true, + "MBEDTLS_CERTIFICATE_BUNDLE": true, + "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_CLIENT_SSL_SESSION_TICKETS": true, + "MBEDTLS_CMAC_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_SECP192K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224R1_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_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_HKDF_C": false, + "MBEDTLS_INTERNAL_MEM_ALLOC": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDH_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, + "MBEDTLS_KEY_EXCHANGE_RSA": true, + "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": false, + "MBEDTLS_MPI_INTERRUPT_LEVEL": 0, + "MBEDTLS_MPI_USE_INTERRUPT": true, + "MBEDTLS_NIST_KW_C": false, + "MBEDTLS_PEM_PARSE_C": true, + "MBEDTLS_PEM_WRITE_C": true, + "MBEDTLS_PKCS7_C": true, + "MBEDTLS_PK_PARSE_EC_COMPRESSED": true, + "MBEDTLS_PK_PARSE_EC_EXTENDED": true, + "MBEDTLS_PLATFORM_TIME_ALT": false, + "MBEDTLS_POLY1305_C": false, + "MBEDTLS_PSK_MODES": false, + "MBEDTLS_RIPEMD160_C": false, + "MBEDTLS_ROM_MD5": true, + "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, + "MBEDTLS_SHA1_C": true, + "MBEDTLS_SHA3_C": false, + "MBEDTLS_SHA512_C": true, + "MBEDTLS_SSL_ALPN": true, + "MBEDTLS_SSL_CONTEXT_SERIALIZATION": false, + "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, + "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": true, + "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT": false, + "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_VARIABLE_BUFFER_LENGTH": false, + "MBEDTLS_THREADING_C": false, + "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_X509_CRL_PARSE_C": true, + "MBEDTLS_X509_CSR_PARSE_C": true, + "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": false, + "MBEDTLS_XTEA_C": false, + "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, + "MCPWM_SKIP_LEGACY_CONFLICT_CHECK": false, + "MCPWM_SUPPRESS_DEPRECATE_WARN": false, + "MMU_PAGE_MODE": "64KB", + "MMU_PAGE_SIZE": 65536, + "MMU_PAGE_SIZE_64KB": true, + "MQTT_BUFFER_SIZE": 1024, + "MQTT_CUSTOM_OUTBOX": false, + "MQTT_DISABLE_API_LOCKS": false, + "MQTT_EVENT_QUEUE_SIZE": 1, + "MQTT_MSG_ID_INCREMENTAL": false, + "MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY": false, + "MQTT_OUTBOX_EXPIRED_TIMEOUT_MS": 30000, + "MQTT_POLL_READ_TIMEOUT_MS": 1000, + "MQTT_PROTOCOL_311": true, + "MQTT_PROTOCOL_5": false, + "MQTT_REPORT_DELETED_MESSAGES": false, + "MQTT_SKIP_PUBLISH_IF_DISCONNECTED": false, + "MQTT_TASK_CORE_SELECTION_ENABLED": false, + "MQTT_TASK_PRIORITY": 5, + "MQTT_TASK_STACK_SIZE": 8192, + "MQTT_TCP_DEFAULT_PORT": 1883, + "MQTT_TOPIC_PRESENT_ALL_DATA_EVENTS": false, + "MQTT_TRANSPORT_SSL": false, + "MQTT_TRANSPORT_WEBSOCKET": true, + "MQTT_USE_CUSTOM_CONFIG": true, + "MQTT_WS_DEFAULT_PORT": 80, + "NVS_ASSERT_ERROR_CHECK": false, + "NVS_ENCRYPTION": false, + "NVS_LEGACY_DUP_KEYS_COMPATIBILITY": 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, + "PCNT_SKIP_LEGACY_CONFLICT_CHECK": false, + "PCNT_SUPPRESS_DEPRECATE_WARN": false, + "PM_ENABLE": false, + "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP": true, + "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP": true, + "PM_SLEEP_FUNC_IN_IRAM": true, + "PM_SLP_IRAM_OPT": true, + "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_PLACE_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_SKIP_LEGACY_CONFLICT_CHECK": false, + "RMT_SUPPRESS_DEPRECATE_WARN": false, + "RMT_TX_ISR_CACHE_SAFE": false, + "RMT_TX_ISR_HANDLER_IN_IRAM": true, + "RTC_CLK_CAL_CYCLES": 1024, + "RTC_CLK_SRC_EXT_CRYS": false, + "RTC_CLK_SRC_EXT_OSC": false, + "RTC_CLK_SRC_INT_8MD256": false, + "RTC_CLK_SRC_INT_RC": true, + "SDM_CTRL_FUNC_IN_IRAM": false, + "SDM_ENABLE_DEBUG_LOG": false, + "SDM_SKIP_LEGACY_CONFLICT_CHECK": false, + "SDM_SUPPRESS_DEPRECATE_WARN": false, + "SECURE_BOOT": false, + "SECURE_BOOT_V2_PREFERRED": true, + "SECURE_BOOT_V2_RSA_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_ROM_DL_MODE_ENABLED": true, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ARBITER_SUPPORTED": true, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, + "SOC_ADC_DIGI_CONTROLLER_NUM": 2, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 12, + "SOC_ADC_DIGI_MONITOR_NUM": 2, + "SOC_ADC_DIGI_RESULT_BYTES": 4, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 10, + "SOC_ADC_MONITOR_SUPPORTED": true, + "SOC_ADC_PATT_LEN_MAX": 24, + "SOC_ADC_PERIPH_NUM": 2, + "SOC_ADC_RTC_CTRL_SUPPORTED": true, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 12, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, + "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_AES_GDMA": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_AES_SUPPORT_DMA": true, + "SOC_AHB_GDMA_SUPPORTED": true, + "SOC_AHB_GDMA_SUPPORT_PSRAM": true, + "SOC_AHB_GDMA_VERSION": 1, + "SOC_APB_BACKUP_DMA": true, + "SOC_APPCPU_HAS_CLOCK_GATING_BUG": true, + "SOC_ASYNC_MEMCPY_SUPPORTED": true, + "SOC_BLE_50_SUPPORTED": true, + "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC": true, + "SOC_CACHE_FREEZE_SUPPORTED": true, + "SOC_CACHE_SUPPORT_WRAP": true, + "SOC_CACHE_WRITEBACK_SUPPORTED": true, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2": 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_COEX_HW_PTI": 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_DEDICATED_GPIO_SUPPORTED": true, + "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, + "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE": true, + "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, + "SOC_DEEP_SLEEP_SUPPORTED": true, + "SOC_DIG_SIGN_SUPPORTED": true, + "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, + "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, + "SOC_DS_SIGNATURE_MAX_BIT_LEN": 4096, + "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, + "SOC_EFUSE_DIS_DIRECT_BOOT": true, + "SOC_EFUSE_DIS_DOWNLOAD_DCACHE": true, + "SOC_EFUSE_DIS_DOWNLOAD_ICACHE": true, + "SOC_EFUSE_DIS_ICACHE": true, + "SOC_EFUSE_DIS_USB_JTAG": true, + "SOC_EFUSE_HARD_DIS_JTAG": true, + "SOC_EFUSE_KEY_PURPOSE_FIELD": true, + "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, + "SOC_EFUSE_SOFT_DIS_JTAG": true, + "SOC_EFUSE_SUPPORTED": true, + "SOC_EXTERNAL_COEX_LEADER_TX_LINE": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 64, + "SOC_FLASH_ENCRYPTION_XTS_AES": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_256": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS": true, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GDMA_NUM_GROUPS_MAX": 1, + "SOC_GDMA_PAIRS_PER_GROUP": 5, + "SOC_GDMA_PAIRS_PER_GROUP_MAX": 5, + "SOC_GDMA_SUPPORTED": true, + "SOC_GPIO_CLOCKOUT_BY_IO_MUX": true, + "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, + "SOC_GPIO_FILTER_CLK_SUPPORT_APB": true, + "SOC_GPIO_IN_RANGE_MAX": 48, + "SOC_GPIO_OUT_RANGE_MAX": 48, + "SOC_GPIO_PIN_COUNT": 49, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_SUPPORT_FORCE_HOLD": true, + "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true, + "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, + "SOC_GPIO_SUPPORT_RTC_INDEPENDENT": true, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 562949886312448, + "SOC_GPIO_VALID_GPIO_MASK": 562949953421311, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HMAC_SUPPORTED": true, + "SOC_HP_CPU_HAS_MULTIPLE_CORES": true, + "SOC_HP_I2C_NUM": 2, + "SOC_I2C_CMD_REG_NUM": 8, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, + "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, + "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_10BIT_ADDR": true, + "SOC_I2C_SUPPORT_HW_CLR_BUS": true, + "SOC_I2C_SUPPORT_RTC": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2C_SUPPORT_XTAL": true, + "SOC_I2S_HW_VERSION_2": true, + "SOC_I2S_NUM": 2, + "SOC_I2S_PDM_MAX_RX_LINES": 4, + "SOC_I2S_PDM_MAX_TX_LINES": 2, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_PCM": 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_I2S_SUPPORTS_PLL_F160M": true, + "SOC_I2S_SUPPORTS_TDM": true, + "SOC_I2S_SUPPORTS_XTAL": true, + "SOC_LCDCAM_CAM_DATA_WIDTH_MAX": 16, + "SOC_LCDCAM_CAM_PERIPH_NUM": 1, + "SOC_LCDCAM_CAM_SUPPORTED": true, + "SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV": true, + "SOC_LCDCAM_I80_BUS_WIDTH": 16, + "SOC_LCDCAM_I80_LCD_SUPPORTED": true, + "SOC_LCDCAM_I80_NUM_BUSES": 1, + "SOC_LCDCAM_RGB_DATA_WIDTH": 16, + "SOC_LCDCAM_RGB_LCD_SUPPORTED": true, + "SOC_LCDCAM_RGB_NUM_PANELS": 1, + "SOC_LCDCAM_SUPPORTED": true, + "SOC_LCD_I80_BUSES": 1, + "SOC_LCD_I80_BUS_WIDTH": 16, + "SOC_LCD_I80_SUPPORTED": true, + "SOC_LCD_RGB_DATA_WIDTH": 16, + "SOC_LCD_RGB_PANELS": 1, + "SOC_LCD_RGB_SUPPORTED": true, + "SOC_LCD_SUPPORT_RGB_YUV_CONV": true, + "SOC_LEDC_CHANNEL_NUM": 8, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_FADE_STOP": true, + "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 14, + "SOC_LEDC_TIMER_NUM": 4, + "SOC_LIGHT_SLEEP_SUPPORTED": true, + "SOC_LP_IO_CLOCK_IS_INDEPENDENT": true, + "SOC_LP_PERIPH_SHARE_INTERRUPT": true, + "SOC_LP_TIMER_BIT_WIDTH_HI": 16, + "SOC_LP_TIMER_BIT_WIDTH_LO": 32, + "SOC_MAC_BB_PD_MEM_SIZE": 192, + "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": 3, + "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP": true, + "SOC_MCPWM_COMPARATORS_PER_OPERATOR": 2, + "SOC_MCPWM_GENERATORS_PER_OPERATOR": 2, + "SOC_MCPWM_GPIO_FAULTS_PER_GROUP": 3, + "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP": 3, + "SOC_MCPWM_GROUPS": 2, + "SOC_MCPWM_OPERATORS_PER_GROUP": 3, + "SOC_MCPWM_SUPPORTED": true, + "SOC_MCPWM_SWSYNC_CAN_PROPAGATE": true, + "SOC_MCPWM_TIMERS_PER_GROUP": 3, + "SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2, + "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE": 16, + "SOC_MEMPROT_MEM_ALIGN_SIZE": 256, + "SOC_MEMPROT_SUPPORTED": true, + "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM": true, + "SOC_MEMSPI_IS_INDEPENDENT": true, + "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, + "SOC_MMU_PERIPH_NUM": 1, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": 3, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_MPU_SUPPORTED": true, + "SOC_PCNT_CHANNELS_PER_UNIT": 2, + "SOC_PCNT_GROUPS": 1, + "SOC_PCNT_SUPPORTED": true, + "SOC_PCNT_THRES_POINT_PER_UNIT": 2, + "SOC_PCNT_UNITS_PER_GROUP": 4, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PHY_SUPPORTED": true, + "SOC_PM_CPU_RETENTION_BY_RTCCNTL": true, + "SOC_PM_MODEM_PD_BY_SW": true, + "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA": true, + "SOC_PM_SUPPORTED": true, + "SOC_PM_SUPPORT_BT_WAKEUP": true, + "SOC_PM_SUPPORT_CPU_PD": true, + "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY": true, + "SOC_PM_SUPPORT_EXT0_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MAC_BB_PD": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_TAGMEM_PD": true, + "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_PM_SUPPORT_WIFI_WAKEUP": true, + "SOC_PSRAM_DMA_CAPABLE": true, + "SOC_RISCV_COPROC_SUPPORTED": true, + "SOC_RMT_CHANNELS_PER_GROUP": 8, + "SOC_RMT_GROUPS": 1, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, + "SOC_RMT_RX_CANDIDATES_PER_GROUP": 4, + "SOC_RMT_SUPPORTED": true, + "SOC_RMT_SUPPORT_APB": true, + "SOC_RMT_SUPPORT_DMA": true, + "SOC_RMT_SUPPORT_RC_FAST": true, + "SOC_RMT_SUPPORT_RX_DEMODULATION": true, + "SOC_RMT_SUPPORT_RX_PINGPONG": true, + "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, + "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, + "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP": true, + "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, + "SOC_RMT_SUPPORT_TX_SYNCHRO": true, + "SOC_RMT_SUPPORT_XTAL": true, + "SOC_RMT_TX_CANDIDATES_PER_GROUP": 4, + "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": 22, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH": 128, + "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM": 549, + "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH": 128, + "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_SDMMC_DELAY_PHASE_NUM": 4, + "SOC_SDMMC_HOST_SUPPORTED": true, + "SOC_SDMMC_NUM_SLOTS": 2, + "SOC_SDMMC_SUPPORT_XTAL_CLOCK": true, + "SOC_SDMMC_USE_GPIO_MATRIX": true, + "SOC_SDM_CHANNELS_PER_GROUP": 8, + "SOC_SDM_CLK_SUPPORT_APB": true, + "SOC_SDM_GROUPS": 1, + "SOC_SDM_SUPPORTED": true, + "SOC_SECURE_BOOT_SUPPORTED": true, + "SOC_SECURE_BOOT_V2_RSA": true, + "SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968, + "SOC_SHA_GDMA": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_DMA": true, + "SOC_SHA_SUPPORT_RESUME": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA224": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SHA_SUPPORT_SHA384": true, + "SOC_SHA_SUPPORT_SHA512": true, + "SOC_SHA_SUPPORT_SHA512_224": true, + "SOC_SHA_SUPPORT_SHA512_256": true, + "SOC_SHA_SUPPORT_SHA512_T": true, + "SOC_SIMD_INSTRUCTION_SUPPORTED": true, + "SOC_SIMD_PREFERRED_DATA_ALIGNMENT": 16, + "SOC_SPIRAM_SUPPORTED": true, + "SOC_SPIRAM_XIP_SUPPORTED": true, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MAX_CS_NUM": 6, + "SOC_SPI_MAX_PRE_DIVIDER": 16, + "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, + "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, + "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP": true, + "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE": true, + "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_TIMING_TUNING": true, + "SOC_SPI_MEM_SUPPORT_WRAP": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": true, + "SOC_SPI_SCT_BUFFER_NUM_MAX": true, + "SOC_SPI_SCT_CONF_BITLEN_MAX": 262138, + "SOC_SPI_SCT_REG_NUM": 14, + "SOC_SPI_SCT_SUPPORTED": true, + "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, + "SOC_SPI_SUPPORT_CD_SIG": true, + "SOC_SPI_SUPPORT_CLK_APB": true, + "SOC_SPI_SUPPORT_CLK_XTAL": true, + "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, + "SOC_SPI_SUPPORT_DDRCLK": true, + "SOC_SPI_SUPPORT_OCT": true, + "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, + "SOC_SUPPORTS_SECURE_DL_MODE": true, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true, + "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true, + "SOC_SYSTIMER_ALARM_NUM": 3, + "SOC_SYSTIMER_BIT_WIDTH_HI": 20, + "SOC_SYSTIMER_BIT_WIDTH_LO": 32, + "SOC_SYSTIMER_COUNTER_NUM": 2, + "SOC_SYSTIMER_FIXED_DIVIDER": true, + "SOC_SYSTIMER_INT_LEVEL": true, + "SOC_SYSTIMER_SUPPORTED": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, + "SOC_TEMP_SENSOR_SUPPORTED": true, + "SOC_TIMER_GROUPS": 2, + "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, + "SOC_TIMER_GROUP_SUPPORT_APB": true, + "SOC_TIMER_GROUP_SUPPORT_XTAL": true, + "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 2, + "SOC_TIMER_GROUP_TOTAL_TIMERS": 4, + "SOC_TOUCH_MAX_CHAN_ID": 14, + "SOC_TOUCH_MIN_CHAN_ID": 1, + "SOC_TOUCH_PROXIMITY_CHANNEL_NUM": 3, + "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED": true, + "SOC_TOUCH_SAMPLE_CFG_NUM": 1, + "SOC_TOUCH_SENSOR_NUM": 15, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_SENSOR_VERSION": 2, + "SOC_TOUCH_SUPPORT_BENCHMARK": true, + "SOC_TOUCH_SUPPORT_DENOISE_CHAN": true, + "SOC_TOUCH_SUPPORT_PROX_SENSING": true, + "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP": true, + "SOC_TOUCH_SUPPORT_WATERPROOF": true, + "SOC_TWAI_BRP_MAX": 16384, + "SOC_TWAI_BRP_MIN": 2, + "SOC_TWAI_CLK_SUPPORT_APB": true, + "SOC_TWAI_CONTROLLER_NUM": 1, + "SOC_TWAI_MASK_FILTER_NUM": 1, + "SOC_TWAI_SUPPORTED": true, + "SOC_TWAI_SUPPORTS_RX_STATUS": 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_FSM_TX_WAIT_SEND": true, + "SOC_UART_SUPPORT_RTC_CLK": true, + "SOC_UART_SUPPORT_WAKEUP_INT": true, + "SOC_UART_SUPPORT_XTAL_CLK": true, + "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true, + "SOC_UHCI_NUM": 1, + "SOC_UHCI_SUPPORTED": true, + "SOC_ULP_FSM_SUPPORTED": true, + "SOC_ULP_HAS_ADC": true, + "SOC_ULP_SUPPORTED": true, + "SOC_USB_OTG_PERIPH_NUM": 1, + "SOC_USB_OTG_SUPPORTED": true, + "SOC_USB_SERIAL_JTAG_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_FTM_SUPPORT": true, + "SOC_WIFI_GCMP_SUPPORT": true, + "SOC_WIFI_HW_TSF": true, + "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": 12, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_40M": true, + "SOC_XT_WDT_SUPPORTED": 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": 1, + "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_AUTO_SUSPEND": 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_HPM_AUTO": true, + "SPI_FLASH_HPM_DC_AUTO": true, + "SPI_FLASH_HPM_DC_DISABLE": false, + "SPI_FLASH_HPM_DIS": false, + "SPI_FLASH_HPM_ENA": false, + "SPI_FLASH_HPM_ON": true, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_ROM_IMPL": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": true, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP": true, + "SPI_FLASH_SUPPORT_TH_CHIP": true, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, + "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, + "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_TH_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_IN_IRAM": false, + "SPI_MASTER_ISR_IN_IRAM": true, + "SPI_SLAVE_IN_IRAM": false, + "SPI_SLAVE_ISR_IN_IRAM": true, + "TEMP_SENSOR_ENABLE_DEBUG_LOG": false, + "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK": false, + "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN": false, + "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_ERRATA_FIX_LISTEN_ONLY_DOM": true, + "TWAI_ISR_CACHE_SAFE": false, + "TWAI_ISR_IN_IRAM": false, + "TWAI_SKIP_LEGACY_CONFLICT_CHECK": 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, + "UNITY_TEST_ORDER_BY_FILE_PATH_AND_LINE": false, + "USB_HOST_CONTROL_TRANSFER_MAX_SIZE": 256, + "USB_HOST_DEBOUNCE_DELAY_MS": 250, + "USB_HOST_ENABLE_ENUM_FILTER_CALLBACK": false, + "USB_HOST_HUBS_SUPPORTED": false, + "USB_HOST_HW_BUFFER_BIAS_BALANCED": true, + "USB_HOST_HW_BUFFER_BIAS_IN": false, + "USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT": false, + "USB_HOST_RESET_HOLD_MS": 30, + "USB_HOST_RESET_RECOVERY_MS": 30, + "USB_HOST_SET_ADDR_RECOVERY_MS": 10, + "USB_OTG_SUPPORTED": true, + "USJ_ENABLE_USB_SERIAL_JTAG": 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": true, + "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT": true, + "WIFI_PROV_AUTOSTOP_TIMEOUT": 30, + "WIFI_PROV_SCAN_MAX_ENTRIES": 16, + "WIFI_PROV_STA_ALL_CHANNEL_SCAN": true, + "WIFI_PROV_STA_FAST_SCAN": false, + "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_40": true +} \ No newline at end of file diff --git a/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj new file mode 100644 index 0000000..16a8751 Binary files /dev/null and b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj differ diff --git a/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj new file mode 100644 index 0000000..05078ce Binary files /dev/null and b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj differ diff --git a/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj new file mode 100644 index 0000000..db69548 Binary files /dev/null and b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj differ diff --git a/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj new file mode 100644 index 0000000..c031d61 Binary files /dev/null and b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj differ 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..3173733 --- /dev/null +++ b/build/esp-idf/app_trace/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/app_trace/libapp_trace.a b/build/esp-idf/app_trace/libapp_trace.a new file mode 100644 index 0000000..ff7d6ee Binary files /dev/null and b/build/esp-idf/app_trace/libapp_trace.a differ diff --git a/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj new file mode 100644 index 0000000..bd95732 Binary files /dev/null and b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj differ 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..0d9c0b0 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..42b5636 --- /dev/null +++ b/build/esp-idf/app_update/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..19d2a68 Binary files /dev/null and b/build/esp-idf/app_update/libapp_update.a differ diff --git a/build/esp-idf/app_update/otadata-flash_args.in b/build/esp-idf/app_update/otadata-flash_args.in new file mode 100644 index 0000000..4dce30b --- /dev/null +++ b/build/esp-idf/app_update/otadata-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +0xe000 ota_data_initial.bin \ No newline at end of file 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..a8204b4 --- /dev/null +++ b/build/esp-idf/bootloader/bootloader-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +0x0 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..1f7309d --- /dev/null +++ b/build/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..b2bbf4b 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_esp32s3.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj new file mode 100644 index 0000000..7fdec0d Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.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..a8532f8 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..2a1099b 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..ffbb834 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..5ce5431 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..602dcd9 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..8b26749 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..92f8924 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_esp32s3.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj new file mode 100644 index 0000000..75fdd2c Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.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..8b3f584 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..36001e6 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/esp32s3/secure_boot_secure_features.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj new file mode 100644 index 0000000..40a5faf Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/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..fdf07bc 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..d088986 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..537f5af 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..a488407 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..cd96902 --- /dev/null +++ b/build/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..73d8139 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..bbed5cc --- /dev/null +++ b/build/esp-idf/bt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/cmake_install.cmake b/build/esp-idf/cmake_install.cmake new file mode 100644 index 0000000..5ba852e --- /dev/null +++ b/build/esp-idf/cmake_install.cmake @@ -0,0 +1,589 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esptool_py/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/partition_table/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_trace/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif_stack/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmock/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_dac/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_parlio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_isp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_cam/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_psram/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_jpeg/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ppa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_eth/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hid/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_lcd/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_local_ctrl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/espcoredump/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fatfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/idf_test/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ieee802154/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_sec_provider/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/openthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/perfmon/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spiffs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/touch_element/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ulp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/usb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wifi_provisioning/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/main/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt_manager/cmake_install.cmake") +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..264b70e 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..ebc0ce8 --- /dev/null +++ b/build/esp-idf/cmock/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/cmock/libcmock.a b/build/esp-idf/cmock/libcmock.a new file mode 100644 index 0000000..75b9c4c 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..1762966 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..50f04e4 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..b7b59f2 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..d9003e4 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..e8cae40 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..5166627 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..286ed6d 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..84c8fa4 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..d6abbe1 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..345a695 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..a91e6b7 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..b5dd8f6 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..23d1ebe 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..fca2d9f 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..0b93372 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..60f376f 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..85016bd 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..8560d85 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..19a3fdf 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..8ad03eb 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..45d7b9d --- /dev/null +++ b/build/esp-idf/console/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/console/libconsole.a b/build/esp-idf/console/libconsole.a new file mode 100644 index 0000000..377debd 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..76f9fbf 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..1d9f64b 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..56ca25d 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..76f0b6a --- /dev/null +++ b/build/esp-idf/cxx/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/cxx/libcxx.a b/build/esp-idf/cxx/libcxx.a new file mode 100644 index 0000000..d83e373 Binary files /dev/null and b/build/esp-idf/cxx/libcxx.a differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj new file mode 100644 index 0000000..45db53a Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj new file mode 100644 index 0000000..05bd107 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj new file mode 100644 index 0000000..55adcd8 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj new file mode 100644 index 0000000..29b5c20 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj new file mode 100644 index 0000000..d23783d Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj new file mode 100644 index 0000000..313b165 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj new file mode 100644 index 0000000..90a09d7 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj new file mode 100644 index 0000000..84140b5 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj new file mode 100644 index 0000000..0ae6dfe Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj 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..4cd9d55 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/esp32s3/touch_sensor.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj new file mode 100644 index 0000000..62e8212 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/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..5a8a352 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..7321da5 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..787362c --- /dev/null +++ b/build/esp-idf/driver/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/driver/libdriver.a b/build/esp-idf/driver/libdriver.a new file mode 100644 index 0000000..8e5b46b Binary files /dev/null and b/build/esp-idf/driver/libdriver.a differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj new file mode 100644 index 0000000..6758ebf Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj new file mode 100644 index 0000000..7c850b4 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj new file mode 100644 index 0000000..f08a78a Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj new file mode 100644 index 0000000..3d2a701 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj new file mode 100644 index 0000000..ba5fcf7 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/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..e07b203 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..62266bb 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..41f7743 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..0df8ee3 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..e6b8222 --- /dev/null +++ b/build/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/efuse/libefuse.a b/build/esp-idf/efuse/libefuse.a new file mode 100644 index 0000000..845e80c 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..ca4e666 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..19f82f8 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..578f429 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..e8ff2f6 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..64f886d 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..2ecfa38 --- /dev/null +++ b/build/esp-idf/esp-tls/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..91fce93 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..b76ca85 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..b1607cd 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..cb17652 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..e65ed9a 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_filter.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj new file mode 100644 index 0000000..182913e Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj new file mode 100644 index 0000000..8749ee3 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.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..87e1cd0 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/deprecated/esp32s3/esp_adc_cal_legacy.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj new file mode 100644 index 0000000..82ba713 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj new file mode 100644 index 0000000..17cfd87 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj new file mode 100644 index 0000000..0aea28e Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj new file mode 100644 index 0000000..15c7d4d Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/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..e542cfc --- /dev/null +++ b/build/esp-idf/esp_adc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..53651ca 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..c3ad346 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..9d630b9 --- /dev/null +++ b/build/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..501cd33 Binary files /dev/null and b/build/esp-idf/esp_app_format/libesp_app_format.a differ 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..ba25ee8 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..f04bd7f --- /dev/null +++ b/build/esp-idf/esp_bootloader_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..a885fc8 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/esp32s3/esp_coex_adapter.c.obj b/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32s3/esp_coex_adapter.c.obj new file mode 100644 index 0000000..de07f74 Binary files /dev/null and b/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32s3/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..a853e8e 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..ad85978 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..30d6521 --- /dev/null +++ b/build/esp-idf/esp_coex/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..019470d 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..77e33d0 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..eddaa02 --- /dev/null +++ b/build/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..ca94f4a 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..c9679a1 --- /dev/null +++ b/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..47a106a --- /dev/null +++ b/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp/src/esp_cam_ctlr_dvp_cam.c.obj b/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp/src/esp_cam_ctlr_dvp_cam.c.obj new file mode 100644 index 0000000..4a09384 Binary files /dev/null and b/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp/src/esp_cam_ctlr_dvp_cam.c.obj differ diff --git a/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp/src/esp_cam_ctlr_dvp_gdma.c.obj b/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp/src/esp_cam_ctlr_dvp_gdma.c.obj new file mode 100644 index 0000000..32e7fc2 Binary files /dev/null and b/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp/src/esp_cam_ctlr_dvp_gdma.c.obj differ 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..cd58608 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..916743d 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..9dd8450 --- /dev/null +++ b/build/esp-idf/esp_driver_cam/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..b4ed5b0 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/cmake_install.cmake b/build/esp-idf/esp_driver_dac/cmake_install.cmake new file mode 100644 index 0000000..a5e5f01 --- /dev/null +++ b/build/esp-idf/esp_driver_dac/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj new file mode 100644 index 0000000..43f5607 Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj 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..b0fe5bc 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..2d54ddb 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/gpio_pin_glitch_filter.c.obj b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj new file mode 100644 index 0000000..65be893 Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.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..bff876d 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..66d80d3 --- /dev/null +++ b/build/esp-idf/esp_driver_gpio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..61989e5 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..c21e797 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..6ee117e 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..76d6322 --- /dev/null +++ b/build/esp-idf/esp_driver_gptimer/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..f867f32 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..c334bc3 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..292642a 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..c215df9 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..0f43d2f --- /dev/null +++ b/build/esp-idf/esp_driver_i2c/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..3232882 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..7642a39 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..b709e57 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..71977ef 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..5ff3b0d 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/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj new file mode 100644 index 0000000..19d9a65 Binary files /dev/null and b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.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..c91ad74 --- /dev/null +++ b/build/esp-idf/esp_driver_i2s/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..fd28f05 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_isp/cmake_install.cmake b/build/esp-idf/esp_driver_isp/cmake_install.cmake new file mode 100644 index 0000000..83b7861 --- /dev/null +++ b/build/esp-idf/esp_driver_isp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..c957590 --- /dev/null +++ b/build/esp-idf/esp_driver_jpeg/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..4963011 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..45c5e2a --- /dev/null +++ b/build/esp-idf/esp_driver_ledc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..1fe391f 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..6069172 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..8595e48 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..87dfb7b 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..3cb8125 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..d5efb31 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..280979d 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..36d5db4 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..4f51c73 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..f3a3019 --- /dev/null +++ b/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..ec8c135 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..63d3c46 --- /dev/null +++ b/build/esp-idf/esp_driver_parlio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..fbbd00c 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..f8f60dc --- /dev/null +++ b/build/esp-idf/esp_driver_pcnt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..0692069 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..c6d9d0c --- /dev/null +++ b/build/esp-idf/esp_driver_ppa/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..1fda08a 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..6f4bf93 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..75e5802 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..dde94b9 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..f609a8c 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..0d4ba73 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..8c22896 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..6741d5c --- /dev/null +++ b/build/esp-idf/esp_driver_rmt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..182b2be 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_sdio/cmake_install.cmake b/build/esp-idf/esp_driver_sdio/cmake_install.cmake new file mode 100644 index 0000000..8703d84 --- /dev/null +++ b/build/esp-idf/esp_driver_sdio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + 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..a7547b9 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..8dcae89 --- /dev/null +++ b/build/esp-idf/esp_driver_sdm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..f67c192 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/src/sdmmc_host.c.obj b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj new file mode 100644 index 0000000..93b1b27 Binary files /dev/null and b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj differ diff --git a/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj new file mode 100644 index 0000000..e1ee7b7 Binary files /dev/null and b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.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..bdd1de8 --- /dev/null +++ b/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..15e7191 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..903006b 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..1a087ad 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..1684b59 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..bb77dda --- /dev/null +++ b/build/esp-idf/esp_driver_sdspi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..6707657 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..6e9b5be 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_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..665c94b 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..dd16f1a 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/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj new file mode 100644 index 0000000..cc4f001 Binary files /dev/null and b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.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..ec1b862 --- /dev/null +++ b/build/esp-idf/esp_driver_spi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..4d3271b 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..b07b5c2 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_ver2/touch_version_specific.c.obj b/build/esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/hw_ver2/touch_version_specific.c.obj new file mode 100644 index 0000000..4309a42 Binary files /dev/null and b/build/esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/hw_ver2/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..e1501c5 --- /dev/null +++ b/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..e3d314e 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/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj b/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj new file mode 100644 index 0000000..2c27b89 Binary files /dev/null and b/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj 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..324fa18 --- /dev/null +++ b/build/esp-idf/esp_driver_tsens/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a b/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a new file mode 100644 index 0000000..099849f Binary files /dev/null and b/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a differ 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..73c7617 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..ff49758 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..8542813 --- /dev/null +++ b/build/esp-idf/esp_driver_twai/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..bce27e5 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..6b8c750 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..54bc8a0 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..910302c 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/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj new file mode 100644 index 0000000..17f841d Binary files /dev/null and b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.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..389a7d4 --- /dev/null +++ b/build/esp-idf/esp_driver_uart/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..f9f6646 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/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj b/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj new file mode 100644 index 0000000..9f4e837 Binary files /dev/null and b/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj differ diff --git a/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj b/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj new file mode 100644 index 0000000..c27166d Binary files /dev/null and b/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj differ diff --git a/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj b/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj new file mode 100644 index 0000000..7aee4ed Binary files /dev/null and b/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj 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..61f09f2 --- /dev/null +++ b/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a b/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a new file mode 100644 index 0000000..be013ba Binary files /dev/null and b/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a differ 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..e688270 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..1a06a83 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/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..c8e3bd7 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/cmake_install.cmake b/build/esp-idf/esp_eth/cmake_install.cmake new file mode 100644 index 0000000..e6d9407 --- /dev/null +++ b/build/esp-idf/esp_eth/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..a060faf 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..c79e280 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..ad87516 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..3f95487 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..2ebd1a0 --- /dev/null +++ b/build/esp-idf/esp_event/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..70ae5c9 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..a4ee480 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..16aeb64 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..d493dc8 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..eed5826 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..652af17 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..7d9b860 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..fdef1e4 --- /dev/null +++ b/build/esp-idf/esp_gdbstub/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..e53ab2c Binary files /dev/null and b/build/esp-idf/esp_gdbstub/libesp_gdbstub.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..48bea40 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..7176f5d 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..767d916 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..d66d2bd --- /dev/null +++ b/build/esp-idf/esp_hid/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..d8549d8 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..08b2db5 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..be05193 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..0cceebd 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..687f40e 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..7c89178 --- /dev/null +++ b/build/esp-idf/esp_http_client/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..d8f6ba8 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..1778de2 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..475aeb7 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..91bdd52 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..8bb4add 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..8d6d02c 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..e215ca0 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..c0074c7 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..339fcb5 --- /dev/null +++ b/build/esp-idf/esp_http_server/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..7e03d09 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..db67606 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..5dcaa39 --- /dev/null +++ b/build/esp-idf/esp_https_ota/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..d2b1d40 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..ca94b8b 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..a8e0815 --- /dev/null +++ b/build/esp-idf/esp_https_server/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..3eef967 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..911cc93 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..20dad81 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..42752b6 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..773ef62 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/deprecated/gdma_legacy.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj new file mode 100644 index 0000000..0087a22 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj new file mode 100644 index 0000000..3fb7a89 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj new file mode 100644 index 0000000..72a7c83 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj new file mode 100644 index 0000000..553d28c Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj new file mode 100644 index 0000000..c49d7bb Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj new file mode 100644 index 0000000..74f258d Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.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..5fd73a1 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..621fad9 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..ef248b6 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..3e0ed7e 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..ae14528 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..8d5df95 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/lowpower/port/esp32s3/sleep_cpu.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.c.obj new file mode 100644 index 0000000..aa5b2e1 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.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..0f368a1 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..7d631a3 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/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj new file mode 100644 index 0000000..35c3d9b Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj new file mode 100644 index 0000000..8a2b738 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.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..5dd072d 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/esp32s3/chip_info.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj new file mode 100644 index 0000000..a7a6920 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj new file mode 100644 index 0000000..b4a3659 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj new file mode 100644 index 0000000..e976dce Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj new file mode 100644 index 0000000..7bb9fcd Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj new file mode 100644 index 0000000..4f7d989 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj new file mode 100644 index 0000000..4a831c3 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj new file mode 100644 index 0000000..4823fbb Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj new file mode 100644 index 0000000..671e72c Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj new file mode 100644 index 0000000..20db8bd Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj new file mode 100644 index 0000000..f65b014 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj new file mode 100644 index 0000000..cbb981d Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj new file mode 100644 index 0000000..67fa5e8 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj new file mode 100644 index 0000000..1ddb61c Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.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..8887298 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/port/esp_memprot_conv.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj new file mode 100644 index 0000000..a3e90c8 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.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..0d4e55b 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..36775d2 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..bd6f3e8 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..d8baeaf 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/sar_periph_ctrl_common.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj new file mode 100644 index 0000000..7b20e89 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.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..91398d7 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..6e03521 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..a5e742d 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..f48424f 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..d0a4a0d 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_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..b0fe230 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..10994fb 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..1c8649d 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..78d18c3 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..60ad5f6 --- /dev/null +++ b/build/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") +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..c434730 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..eaffe68 --- /dev/null +++ b/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/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)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake b/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..be7c86d --- /dev/null +++ b/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake b/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..81218cc --- /dev/null +++ b/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj new file mode 100644 index 0000000..fddb40c Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v1.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj new file mode 100644 index 0000000..ebf0d84 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c_v2.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i80/esp_lcd_panel_io_i80.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i80/esp_lcd_panel_io_i80.c.obj new file mode 100644 index 0000000..07d4a31 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i80/esp_lcd_panel_io_i80.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/rgb/esp_lcd_panel_rgb.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/rgb/esp_lcd_panel_rgb.c.obj new file mode 100644 index 0000000..2daabcc Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/rgb/esp_lcd_panel_rgb.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..5cb0c00 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..aadca22 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..d3d8aa2 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_nt35510.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj new file mode 100644 index 0000000..2b4d4a5 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.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..46ac4fa 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..b1e815c 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..ca022f8 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..4125879 --- /dev/null +++ b/build/esp-idf/esp_lcd/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..0c06959 Binary files /dev/null and b/build/esp-idf/esp_lcd/libesp_lcd.a differ 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..428724b 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..de1a501 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..71758b3 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..c30a976 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..0e25afc --- /dev/null +++ b/build/esp-idf/esp_local_ctrl/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..428ff41 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/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..a8cbe5f 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..5dea8ce 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..54c8294 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..814d5a4 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/esp32s3/ext_mem_layout.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj new file mode 100644 index 0000000..187beb9 Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/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..7f9f920 --- /dev/null +++ b/build/esp-idf/esp_mm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..9fca101 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..11dfd70 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..ecd4fd7 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..8486c4d 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..27b5bc9 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..ea63abe 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..e3f310a 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..51d7fdc 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..59ebc08 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..69c3914 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..b167a46 --- /dev/null +++ b/build/esp-idf/esp_netif/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..61ed4f6 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..1ce825e --- /dev/null +++ b/build/esp-idf/esp_netif_stack/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif_stack + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..653f00b 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..c25d9f0 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..c4fafad --- /dev/null +++ b/build/esp-idf/esp_partition/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..13156e4 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/esp32s3/phy_init_data.c.obj b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32s3/phy_init_data.c.obj new file mode 100644 index 0000000..17f9577 Binary files /dev/null and b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32s3/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..eacc3b4 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..7a73da4 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..f04280d 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..31d9ac2 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..830ea9a 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..5024994 --- /dev/null +++ b/build/esp-idf/esp_phy/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..a283c89 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..6e5f4d9 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..a75e336 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..bd3b347 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..0741d4a --- /dev/null +++ b/build/esp-idf/esp_pm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..2a64d8b Binary files /dev/null and b/build/esp-idf/esp_pm/libesp_pm.a 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..2295837 --- /dev/null +++ b/build/esp-idf/esp_psram/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + 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..122b617 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..62cd0fd --- /dev/null +++ b/build/esp-idf/esp_ringbuf/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..39913ed 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_cache_esp32s2_esp32s3.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj new file mode 100644 index 0000000..489e55a Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj new file mode 100644 index 0000000..7b253f7 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj 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..9eeec9c 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..aecb372 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..b265e99 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..828d148 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..db20b65 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_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..3d64df1 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..b20deba 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/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj new file mode 100644 index 0000000..983fd80 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj new file mode 100644 index 0000000..a62dae5 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj new file mode 100644 index 0000000..0db3b68 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.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..0b224e0 --- /dev/null +++ b/build/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..7f139b0 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..a20f8ed 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..0551d19 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/esp_ds.c.obj b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj new file mode 100644 index 0000000..9ee1676 Binary files /dev/null and b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj differ diff --git a/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj new file mode 100644 index 0000000..faf86f4 Binary files /dev/null and b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.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..0a05ec7 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..ab606dd --- /dev/null +++ b/build/esp-idf/esp_security/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..d4849e7 Binary files /dev/null and b/build/esp-idf/esp_security/libesp_security.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..6219fc2 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..15aee4d 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..9f53c53 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..35cff1a 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/esp_system_console.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj new file mode 100644 index 0000000..bcfc225 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.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..9d9c2ff 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..44eda9d 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..2daf22e 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..e9884f7 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..251d17a 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..0a7cb5d 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..471977e 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..b68a203 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..84e4b93 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..8302154 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..4ee2b92 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..6b76779 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..e14abae 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..2df8652 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..4d45500 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..cdec2f4 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..6e9e977 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..265e6d6 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..f98989a 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/esp32s3/apb_backup_dma.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj new file mode 100644 index 0000000..4e9b646 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj new file mode 100644 index 0000000..623004d Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj new file mode 100644 index 0000000..344afe0 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj new file mode 100644 index 0000000..4dc8611 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj new file mode 100644 index 0000000..32ec6d4 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj new file mode 100644 index 0000000..3dc0991 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/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..b23cc3d 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..01efcb3 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..feef365 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..0b5a110 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..f19ffad 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..81bf1c9 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..3c957c3 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..e8a9514 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..c566e39 --- /dev/null +++ b/build/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/esp_system/ld/linker_script_generator.cmake b/build/esp-idf/esp_system/ld/linker_script_generator.cmake new file mode 100644 index 0000000..845c872 --- /dev/null +++ b/build/esp-idf/esp_system/ld/linker_script_generator.cmake @@ -0,0 +1,9 @@ +execute_process(COMMAND "${CC}" "-C" "-P" "-x" "c" "-E" "-I" "${CONFIG_DIR}" "-I" "${LD_DIR}" "${SOURCE}" + RESULT_VARIABLE RET_CODE + OUTPUT_VARIABLE PREPROCESSED_LINKER_SCRIPT + ERROR_VARIABLE ERROR_VAR) +if(RET_CODE AND NOT RET_CODE EQUAL 0) + message(FATAL_ERROR "Can't generate ${TARGET}\nRET_CODE: ${RET_CODE}\nERROR_MESSAGE: ${ERROR_VAR}") +endif() +string(REPLACE "\\n" "\n" TEXT "${PREPROCESSED_LINKER_SCRIPT}") +file(WRITE "${TARGET}" "${TEXT}") 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..801c141 --- /dev/null +++ b/build/esp-idf/esp_system/ld/memory.ld @@ -0,0 +1,171 @@ +/* + + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/** + + * ESP32-S3 Linker Script Memory Layout + + * This file describes the memory layout (memory blocks) by virtual memory addresses. + + * 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) 5.5.1 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 */ +/* + + * 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. */ +/* + + * 40370000 <- IRAM/Icache -> 40378000 <- D/IRAM (I) -> 403E0000 + + * 3FC88000 <- D/IRAM (D) -> 3FCF0000 <- DRAM/DCache -> 3FD00000 + + * + + * Startup code uses the IRAM from 0x403B9000 to 0x403E0000, which is not available for static + + * memory, but can only be used after app starts. + + * + + * D cache use the memory from high address, so when it's configured to 16K/32K, the region + + * 0x3FCF000 ~ (3FD00000 - DATA_CACHE_SIZE) should be available. This region is not used as + + * static memory, leaving to the heap. + + */ +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 byte-wise access. + + */ + /* IRAM for PRO CPU. */ + iram0_0_seg (RX) : org = (0x40370000 + 0x4000), len = (((0x403CB700 - (0x40378000 - 0x3FC88000)) - 0x3FC88000) + 0x8000 - 0x4000) + /* Flash mapped instruction data */ + iram0_2_seg (RX) : org = 0x42000020, len = 0x800000-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. + + */ + dram0_0_seg (RW) : org = (0x3FC88000), len = ((0x403CB700 - (0x40378000 - 0x3FC88000)) - 0x3FC88000) + /* Flash mapped constant data */ + drom0_0_seg (R) : org = 0x3C000020, len = 0x2000000-0x20 + /* (See iram0_2_seg for meaning of 0x20 offset in the above.) */ + /** + + * RTC fast memory (executable). Persists over deep sleep. + + */ + rtc_iram_seg(RWX) : org = 0x600fe000, len = 0x2000 - (0 + (24)) + /* We reduced the size of rtc_iram_seg by RESERVE_RTC_MEM value. + + It reserves the amount of RTC fast memory that we use for this memory segment. + + This segment is intended for keeping: + + - (lower addr) rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). + + - (higher addr) 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. + + */ + rtc_reserved_seg(RW) : org = 0x600fe000 + 0x2000 - (0 + (24)), len = (0 + (24)) + /** + + * 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 + /** + + * `extern_ram_seg` and `drom0_0_seg` share the same bus and the address region. + + * A dummy section is used to avoid overlap. See `.ext_ram.dummy` in `sections.ld.in` + + */ + extern_ram_seg(RWX) : org = 0x3c000020 , len = 0x2000000-0x20 +} +_diram_i_start = 0x40378000; +_heap_start = _heap_low_start; +/* Heap ends at top of dram0_0_seg */ +_heap_end = 0x40000000; +_data_seg_org = ORIGIN(rtc_data_seg); +/* RTC fast memory shares the same range for both data and instructions */ +REGION_ALIAS("rtc_data_seg", rtc_iram_seg ); +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(_flash_rodata_dummy_start == ORIGIN(default_rodata_seg), + ".flash_rodata_dummy 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..c0441d1 --- /dev/null +++ b/build/esp-idf/esp_system/ld/sections.ld @@ -0,0 +1,1035 @@ +/* Automatically generated file; DO NOT EDIT */ +/* Espressif IoT Development Framework Linker Script */ +/* Generated from: F:\ESP_32_Projects\esp32-s3_fota_test_wifi\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) 5.5.1 Configuration Header + + */ + +/* List of deprecated options */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +/* + + * 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_fast_start = ABSOLUTE(.); + + . = ALIGN(4); + _rtc_text_start = ABSOLUTE(.); + HIDDEN(_rtc_code_start = .); + *(.rtc.entry.literal .rtc.entry.text) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + *(.rtc_text_end_test) + HIDDEN(_rtc_code_end = .); + /* Padding for possible CPU prefetch + 4B alignment for PMS split lines. */ + . = ((_rtc_code_end - _rtc_code_start) == 0) ? + ALIGN(0) : 16 + ALIGN(4); + _rtc_text_end = ABSOLUTE(.); + } > rtc_iram_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(.); + _coredump_rtc_fast_start = ABSOLUTE(.); + *(.rtc.fast.coredump .rtc.fast.coredump.*) + _coredump_rtc_fast_end = 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_ESP32S3_RTCDATA_IN_FAST_MEM option. + + */ + .rtc.data : + { + _rtc_data_start = ABSOLUTE(.); + _coredump_rtc_start = ABSOLUTE(.); + *(.rtc.coredump .rtc.coredump.*) + _coredump_rtc_end = 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_ESP32S3_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 data that should have fixed addresses. + + * The data are not initialized at power-up and are retained during deep + + * sleep. + + */ + .rtc_reserved (NOLOAD): + { + + . = ALIGN(4); + _rtc_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.*) + KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) + _rtc_reserved_end = ABSOLUTE(.); + } > rtc_reserved_seg + _rtc_reserved_length = _rtc_reserved_end - _rtc_reserved_start; + ASSERT((_rtc_reserved_length <= LENGTH(rtc_reserved_seg)), + "RTC 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.*) + *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*) + *libapp_trace.a:port_uart.*(.literal .literal.* .text .text.*) + *libclang_rt.builtins.a:_divsf3.*(.literal .literal.* .text .text.*) + *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_dma_rx_one_block_cb .text.rmt_dma_rx_one_block_cb) + *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_isr_handle_rx_threshold .text.rmt_isr_handle_rx_threshold) + *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_rx_default_isr .text.rmt_rx_default_isr) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_dma_tx_eof_cb .text.rmt_dma_tx_eof_cb) + *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_loop_end .text.rmt_isr_handle_tx_loop_end) + *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_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_apb_periph_claim .text.adc_apb_periph_claim) + *libesp_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_apb_periph_free .text.adc_apb_periph_free) + *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.*(.literal.esp_clk_private_lock .text.esp_clk_private_lock) + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_private_unlock .text.esp_clk_private_unlock) + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_slowclk_cal_get .text.esp_clk_slowclk_cal_get) + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_slowclk_cal_set .text.esp_clk_slowclk_cal_set) + *libesp_hw_support.a:esp_clk.*(.literal.esp_rtc_get_time_us .text.esp_rtc_get_time_us) + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_enable_src .text.esp_clk_tree_enable_src) + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:gdma.*(.literal.gdma_append .text.gdma_append) + *libesp_hw_support.a:gdma.*(.literal.gdma_default_rx_isr .text.gdma_default_rx_isr) + *libesp_hw_support.a:gdma.*(.literal.gdma_default_tx_isr .text.gdma_default_tx_isr) + *libesp_hw_support.a:gdma.*(.literal.gdma_reset .text.gdma_reset) + *libesp_hw_support.a:gdma.*(.literal.gdma_start .text.gdma_start) + *libesp_hw_support.a:gdma.*(.literal.gdma_stop .text.gdma_stop) + *libesp_hw_support.a:mspi_timing_by_mspi_delay.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:mspi_timing_config.*(.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:regi2c_ctrl.*(.literal.regi2c_saradc_disable .text.regi2c_saradc_disable) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_saradc_enable .text.regi2c_saradc_enable) + *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_get_default_config .text.rtc_sleep_get_default_config) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_init .text.rtc_sleep_init) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_low_init .text.rtc_sleep_low_init) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_pu .text.rtc_sleep_pu) + *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:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_power_disable) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temp_sensor_get_raw_value .text.temp_sensor_get_raw_value) + *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temperature_sensor_power_acquire .text.temperature_sensor_power_acquire) + *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temperature_sensor_power_release .text.temperature_sensor_power_release) + *libesp_hw_support.a:sleep_console.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:sleep_cpu.*(.literal.cpu_domain_pd_allowed .text.cpu_domain_pd_allowed) + *libesp_hw_support.a:sleep_cpu.*(.literal.sleep_enable_cpu_retention .text.sleep_enable_cpu_retention) + *libesp_hw_support.a:sleep_modem.*(.literal.modem_domain_pd_allowed .text.modem_domain_pd_allowed) + *libesp_hw_support.a:sleep_modem.*(.literal.periph_inform_out_light_sleep_overhead .text.periph_inform_out_light_sleep_overhead) + *libesp_hw_support.a:sleep_modem.*(.literal.sleep_modem_reject_triggers .text.sleep_modem_reject_triggers) + *libesp_hw_support.a:sleep_modes.*(.literal.esp_light_sleep_start .text.esp_light_sleep_start) + *libesp_hw_support.a:sleep_modes.*(.literal.esp_sleep_enable_timer_wakeup .text.esp_sleep_enable_timer_wakeup) + *libesp_hw_support.a:systimer.*(.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_phy.a:phy_override.*(.literal.phy_get_tsens_value .text.phy_get_tsens_value) + *libesp_pm.a:pm_impl.*(.literal.esp_pm_impl_get_cpu_freq .text.esp_pm_impl_get_cpu_freq) + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_cache_writeback_esp32s3.*(.literal .literal.* .text .text.*) + *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_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_wdt.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + *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_timer.a:esp_timer_impl_common.*(.literal.esp_timer_impl_lock .text.esp_timer_impl_lock) + *libesp_timer.a:esp_timer_impl_common.*(.literal.esp_timer_impl_unlock .text.esp_timer_impl_unlock) + *libesp_timer.a:esp_timer_impl_systimer.*(.literal.esp_timer_impl_advance .text.esp_timer_impl_advance) + *libesp_timer.a:esp_timer_impl_systimer.*(.literal.esp_timer_impl_set .text.esp_timer_impl_set) + *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:(EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:tasks.*) .literal EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:tasks.*) .literal.* EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:tasks.*) .text EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:tasks.*) .text.*) + *libfreertos.a:tasks.*(.literal.__getreent .literal.eTaskGetState .literal.pcTaskGetName .literal.prvAddCurrentTaskToDelayedList .literal.prvAddNewTaskToReadyList .literal.prvCheckTaskCanBeScheduledSMP .literal.prvCheckTasksWaitingTermination .literal.prvCreateIdleTasks .literal.prvDeleteTCB .literal.prvIdleTask .literal.prvInitialiseNewTask .literal.prvInitialiseTaskLists .literal.prvIsYieldRequiredSMP .literal.prvReleaseKernelLock .literal.prvResetNextTaskUnblockTime .literal.prvSelectHighestPriorityTaskSMP .literal.prvTakeKernelLock .literal.prvTaskIsTaskSuspended .literal.prvTaskPriorityRaise .literal.prvTaskPriorityRestore .literal.pvTaskGetCurrentTCBForCore .literal.pvTaskGetThreadLocalStoragePointer .literal.pvTaskIncrementMutexHeldCount .literal.pxTaskGetStackStart .literal.ulTaskGenericNotifyTake .literal.ulTaskGenericNotifyValueClear .literal.uxTaskGetNumberOfTasks .literal.uxTaskGetStackHighWaterMark .literal.uxTaskGetStackHighWaterMark2 .literal.uxTaskPriorityGet .literal.uxTaskPriorityGetFromISR .literal.uxTaskResetEventItemValue .literal.vTaskDelay .literal.vTaskDelete .literal.vTaskEndScheduler .literal.vTaskGenericNotifyGiveFromISR .literal.vTaskGetSnapshot .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.vTaskSwitchContext .literal.xTaskAbortDelay .literal.xTaskCatchUpTicks .literal.xTaskCheckForTimeOut .literal.xTaskCreatePinnedToCore .literal.xTaskCreateStaticPinnedToCore .literal.xTaskDelayUntil .literal.xTaskGenericNotify .literal.xTaskGenericNotifyFromISR .literal.xTaskGenericNotifyStateClear .literal.xTaskGenericNotifyWait .literal.xTaskGetCoreID .literal.xTaskGetCurrentTaskHandle .literal.xTaskGetCurrentTaskHandleForCore .literal.xTaskGetHandle .literal.xTaskGetIdleTaskHandle .literal.xTaskGetIdleTaskHandleForCore .literal.xTaskGetSchedulerState .literal.xTaskGetStaticBuffers .literal.xTaskGetTickCount .literal.xTaskGetTickCountFromISR .literal.xTaskIncrementTick .literal.xTaskIncrementTickOtherCores .literal.xTaskPriorityDisinherit .literal.xTaskPriorityInherit .literal.xTaskRemoveFromEventList .literal.xTaskResumeAll .literal.xTaskResumeFromISR .text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTaskCanBeScheduledSMP .text.prvCheckTasksWaitingTermination .text.prvCreateIdleTasks .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask .text.prvInitialiseTaskLists .text.prvIsYieldRequiredSMP .text.prvReleaseKernelLock .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvSelectHighestPriorityTaskSMP .text.prvTakeKernelLock .text.prvTaskCheckFreeStackSpace .text.prvTaskIsTaskSuspended .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetSnapshot .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.vTaskSwitchContext .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetSchedulerState .text.xTaskGetStaticBuffers .text.xTaskGetTickCount .text.xTaskGetTickCountFromISR .text.xTaskIncrementTick .text.xTaskIncrementTickOtherCores .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) + *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal.*(.literal .literal.* .text .text.*) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_append .text.gdma_ahb_hal_append) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_clear_intr .text.gdma_ahb_hal_clear_intr) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_get_eof_desc_addr .text.gdma_ahb_hal_get_eof_desc_addr) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_read_intr_status .text.gdma_ahb_hal_read_intr_status) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_reset .text.gdma_ahb_hal_reset) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_start_with_desc .text.gdma_ahb_hal_start_with_desc) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_stop .text.gdma_ahb_hal_stop) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_append .text.gdma_hal_append) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_clear_intr .text.gdma_hal_clear_intr) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_get_eof_desc_addr .text.gdma_hal_get_eof_desc_addr) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_read_intr_status .text.gdma_hal_read_intr_status) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_reset .text.gdma_hal_reset) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_start_with_desc .text.gdma_hal_start_with_desc) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_stop .text.gdma_hal_stop) + *libhal.a:gpio_hal.*(.literal.gpio_hal_isolate_in_sleep .text.gpio_hal_isolate_in_sleep) + *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) + *libhal.a:rtc_cntl_hal.*(.literal.rtc_cntl_hal_enable_cpu_retention .text.rtc_cntl_hal_enable_cpu_retention) + *libhal.a:rtc_cntl_hal.*(.literal.rtc_cntl_hal_enable_tagmem_retention .text.rtc_cntl_hal_enable_tagmem_retention) + *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) + *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:systimer_hal.*(.literal .literal.* .text .text.*) + *libhal.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) + *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.*) + *libnewlib.a:abort.*(.literal .literal.* .text .text.*) + *libnewlib.a:assert.*(.literal .literal.* .text .text.*) + *libnewlib.a:esp_time_impl.*(.literal.esp_set_time_from_rtc .text.esp_set_time_from_rtc) + *libnewlib.a:esp_time_impl.*(.literal.esp_time_impl_get_boot_time .text.esp_time_impl_get_boot_time) + *libnewlib.a:esp_time_impl.*(.literal.esp_time_impl_set_boot_time .text.esp_time_impl_set_boot_time) + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) + *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_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_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_mxic_opi.*(.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_hpm_enable.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_oct_flash_init.*(.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 + /** + + * This section is required to skip .iram0.text area because iram0_0_seg and + + * dram0_0_seg reflect the same address space on different buses. + + */ + .dram0.dummy (NOLOAD): + { + . = ORIGIN(dram0_0_seg) + MAX(_iram_end - _diram_i_start, 0); + } > dram0_0_seg + .dram0.data : + { + _data_start = ABSOLUTE(.); + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(.data .data.*) + *(.dram1 .dram1.*) + _coredump_dram_start = ABSOLUTE(.); + *(.dram2.coredump .dram2.coredump.*) + _coredump_dram_end = ABSOLUTE(.); + *libapp_trace.a:app_trace.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libapp_trace.a:app_trace_util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libapp_trace.a:port_uart.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libclang_rt.builtins.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:clk_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_by_mspi_delay.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_config.*(.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_hw_support.a:sleep_console.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:systimer.*(.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_cache_esp32s2_esp32s3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_cache_writeback_esp32s3.*(.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_rom.a:esp_rom_systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_wdt.*(.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:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcc.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:cache_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_flash_hal_gpspi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:systimer_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *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.*) + *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libsoc.a:temperature_sensor_periph.*(.rodata.temperature_sensor_attributes .sdata2.temperature_sensor_attributes .srodata.temperature_sensor_attributes) + *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_mxic_opi.*(.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_hpm_enable.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_oct_flash_init.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + _data_end = ABSOLUTE(.); + } > dram0_0_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 + /* 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.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(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *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_hw_support.a:adc_share_hw_ctrl.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:mspi_timing_config.* *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:sar_periph_ctrl.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_phy.a:phy_override.* *libesp_pm.a:pm_impl.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a: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_timer.a:esp_timer_impl_common.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:rtc_cntl_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_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.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:esp_time_impl.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *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_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_wrap.*) .literal EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *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_hw_support.a:adc_share_hw_ctrl.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:mspi_timing_config.* *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:sar_periph_ctrl.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_phy.a:phy_override.* *libesp_pm.a:pm_impl.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a: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_timer.a:esp_timer_impl_common.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:rtc_cntl_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_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.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:esp_time_impl.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *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_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_wrap.*) .literal.* EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *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_hw_support.a:adc_share_hw_ctrl.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:mspi_timing_config.* *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:sar_periph_ctrl.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_phy.a:phy_override.* *libesp_pm.a:pm_impl.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a: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_timer.a:esp_timer_impl_common.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:rtc_cntl_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_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.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:esp_time_impl.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *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_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_wrap.*) .text EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *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_hw_support.a:adc_share_hw_ctrl.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:mspi_timing_config.* *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:sar_periph_ctrl.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_phy.a:phy_override.* *libesp_pm.a:pm_impl.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a: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_timer.a:esp_timer_impl_common.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:rtc_cntl_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_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.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:esp_time_impl.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *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_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_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_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_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_ll_rx_enable_dma .literal.rmt_ll_rx_set_carrier_high_low_ticks .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_init_dma_link .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_ll_rx_enable_dma .text.rmt_ll_rx_set_carrier_high_low_ticks .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_init_dma_link .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_enable_dma .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_init_dma_link .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_enable_dma .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_init_dma_link .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_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_calc_hw_calibration_code .literal.adc_lock_acquire .literal.adc_lock_release .literal.adc_lock_try_acquire .text .text.adc2_wifi_acquire .text.adc2_wifi_release .text.adc_calc_hw_calibration_code .text.adc_lock_acquire .text.adc_lock_release .text.adc_lock_try_acquire) + *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.*(.literal.esp_clk_rtc_time .text .text.esp_clk_rtc_time) + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_src_get_freq_hz .text .text.esp_clk_tree_src_get_freq_hz) + *libesp_hw_support.a:gdma.*(.literal.do_allocate_gdma_channel .literal.gdma_acquire_group_handle .literal.gdma_acquire_pair_handle .literal.gdma_apply_strategy .literal.gdma_config_transfer .literal.gdma_connect .literal.gdma_del_channel .literal.gdma_del_rx_channel .literal.gdma_del_tx_channel .literal.gdma_disconnect .literal.gdma_get_alignment_constraints .literal.gdma_get_free_m2m_trig_id_mask .literal.gdma_get_group_channel_id .literal.gdma_install_rx_interrupt .literal.gdma_install_tx_interrupt .literal.gdma_new_ahb_channel .literal.gdma_register_rx_event_callbacks .literal.gdma_register_tx_event_callbacks .literal.gdma_release_group_handle .literal.gdma_release_pair_handle .literal.gdma_set_priority .text .text.do_allocate_gdma_channel .text.gdma_acquire_group_handle .text.gdma_acquire_pair_handle .text.gdma_apply_strategy .text.gdma_config_transfer .text.gdma_connect .text.gdma_del_channel .text.gdma_del_rx_channel .text.gdma_del_tx_channel .text.gdma_disconnect .text.gdma_get_alignment_constraints .text.gdma_get_free_m2m_trig_id_mask .text.gdma_get_group_channel_id .text.gdma_install_rx_interrupt .text.gdma_install_tx_interrupt .text.gdma_new_ahb_channel .text.gdma_register_rx_event_callbacks .text.gdma_register_tx_event_callbacks .text.gdma_release_group_handle .text.gdma_release_pair_handle .text.gdma_set_priority) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_ll_disable_clk_set_rst .literal.periph_ll_enable_clk_clear_rst .literal.periph_ll_get_clk_en_mask .literal.periph_ll_get_clk_en_reg .literal.periph_ll_get_rst_en_mask .literal.periph_ll_get_rst_en_reg .literal.periph_ll_reset .literal.periph_module_disable .literal.periph_module_enable .text .text.periph_ll_disable_clk_set_rst .text.periph_ll_enable_clk_clear_rst .text.periph_ll_get_clk_en_mask .text.periph_ll_get_clk_en_reg .text.periph_ll_get_rst_en_mask .text.periph_ll_get_rst_en_reg .text.periph_ll_reset .text.periph_module_disable .text.periph_module_enable) + *libesp_hw_support.a:regi2c_ctrl.*(.text) + *libesp_hw_support.a:rtc_init.*(.literal.calibrate_ocode .literal.get_dig1v3_dbias_by_efuse .literal.get_dig_dbias_by_efuse .literal.get_rtc_dbias_by_efuse .literal.rtc_init .literal.rtc_set_stored_dbias .literal.set_ocode_by_efuse .text .text.calibrate_ocode .text.get_dig1v3_dbias_by_efuse .text.get_dig_dbias_by_efuse .text.get_rtc_dbias_by_efuse .text.rtc_init .text.rtc_set_stored_dbias .text.set_ocode_by_efuse) + *libesp_hw_support.a:rtc_sleep.*(.text) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.s_sar_power_acquire .literal.s_sar_power_release .literal.sar_periph_ctrl_adc_continuous_power_acquire .literal.sar_periph_ctrl_adc_continuous_power_release .literal.sar_periph_ctrl_adc_oneshot_power_acquire .literal.sar_periph_ctrl_adc_oneshot_power_release .literal.sar_periph_ctrl_init .literal.sar_periph_ctrl_pwdet_power_acquire .literal.sar_periph_ctrl_pwdet_power_release .text .text.s_sar_power_acquire .text.s_sar_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_init .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release) + *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temp_sensor_sync_tsens_idx .literal.temperature_sensor_ll_set_range .text .text.temp_sensor_sync_tsens_idx .text.temperature_sensor_ll_set_range) + *libesp_hw_support.a:sleep_cpu.*(.literal.cache_tagmem_retention_setup .literal.esp_sleep_cpu_pd_low_deinit .literal.esp_sleep_cpu_pd_low_init .literal.esp_sleep_cpu_retention_deinit .literal.esp_sleep_cpu_retention_init .literal.esp_sleep_tagmem_pd_low_deinit .literal.esp_sleep_tagmem_pd_low_init .literal.sleep_cpu_configure .text .text.cache_tagmem_retention_setup .text.esp_sleep_cpu_pd_low_deinit .text.esp_sleep_cpu_pd_low_init .text.esp_sleep_cpu_retention_deinit .text.esp_sleep_cpu_retention_init .text.esp_sleep_tagmem_pd_low_deinit .text.esp_sleep_tagmem_pd_low_init .text.sleep_cpu_configure) + *libesp_hw_support.a:sleep_modem.*(.literal.esp_pm_register_inform_out_light_sleep_overhead_callback .literal.esp_pm_register_light_sleep_default_params_config_callback .literal.esp_pm_unregister_inform_out_light_sleep_overhead_callback .literal.esp_pm_unregister_light_sleep_default_params_config_callback .text .text.esp_pm_register_inform_out_light_sleep_overhead_callback .text.esp_pm_register_light_sleep_default_params_config_callback .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback .text.esp_pm_unregister_light_sleep_default_params_config_callback .text.sleep_modem_configure) + *libesp_hw_support.a:sleep_modes.*(.literal.esp_deep_sleep .literal.esp_deep_sleep_deregister_hook .literal.esp_deep_sleep_deregister_phy_hook .literal.esp_deep_sleep_register_hook .literal.esp_deep_sleep_register_phy_hook .literal.esp_deep_sleep_try .literal.esp_get_deep_sleep_wake_stub .literal.esp_sleep_disable_bt_wakeup .literal.esp_sleep_disable_ext1_wakeup_io .literal.esp_sleep_disable_wakeup_source .literal.esp_sleep_disable_wifi_wakeup .literal.esp_sleep_enable_adc_tsens_monitor .literal.esp_sleep_enable_bt_wakeup .literal.esp_sleep_enable_ext0_wakeup .literal.esp_sleep_enable_ext1_wakeup .literal.esp_sleep_enable_ext1_wakeup_io .literal.esp_sleep_enable_gpio_wakeup .literal.esp_sleep_enable_touchpad_wakeup .literal.esp_sleep_enable_uart_wakeup .literal.esp_sleep_enable_wifi_wakeup .literal.esp_sleep_get_ext1_wakeup_status .literal.esp_sleep_get_touchpad_wakeup_status .literal.esp_sleep_get_wakeup_cause .literal.esp_sleep_is_valid_wakeup_gpio .literal.esp_sleep_overhead_out_time_refresh .literal.esp_sleep_pd_config .literal.esp_sleep_periph_use_8m .literal.esp_sleep_sub_mode_config .literal.esp_sleep_sub_mode_dump_config .literal.esp_sleep_sub_mode_force_disable .literal.ext0_wakeup_prepare .literal.ext1_wakeup_prepare .literal.rtc_sleep_enable_ultra_low .literal.rtcio_ll_ext0_set_wakeup_pin .literal.rtcio_ll_function_select .literal.rtcio_ll_iomux_func_sel .literal.s_do_deep_sleep_phy_callback .literal.s_sleep_hook_deregister .literal.s_sleep_hook_register .literal.touch_wakeup_prepare .text .text.esp_deep_sleep .text.esp_deep_sleep_deregister_hook .text.esp_deep_sleep_deregister_phy_hook .text.esp_deep_sleep_register_hook .text.esp_deep_sleep_register_phy_hook .text.esp_deep_sleep_try .text.esp_get_deep_sleep_wake_stub .text.esp_sleep_disable_bt_wakeup .text.esp_sleep_disable_ext1_wakeup_io .text.esp_sleep_disable_wakeup_source .text.esp_sleep_disable_wifi_beacon_wakeup .text.esp_sleep_disable_wifi_wakeup .text.esp_sleep_enable_adc_tsens_monitor .text.esp_sleep_enable_bt_wakeup .text.esp_sleep_enable_ext0_wakeup .text.esp_sleep_enable_ext1_wakeup .text.esp_sleep_enable_ext1_wakeup_io .text.esp_sleep_enable_gpio_wakeup .text.esp_sleep_enable_touchpad_wakeup .text.esp_sleep_enable_uart_wakeup .text.esp_sleep_enable_ulp_wakeup .text.esp_sleep_enable_wifi_beacon_wakeup .text.esp_sleep_enable_wifi_wakeup .text.esp_sleep_get_ext1_wakeup_status .text.esp_sleep_get_touchpad_wakeup_status .text.esp_sleep_get_wakeup_cause .text.esp_sleep_is_valid_wakeup_gpio .text.esp_sleep_overhead_out_time_refresh .text.esp_sleep_pd_config .text.esp_sleep_periph_use_8m .text.esp_sleep_sub_mode_config .text.esp_sleep_sub_mode_dump_config .text.esp_sleep_sub_mode_force_disable .text.ext0_wakeup_prepare .text.ext1_wakeup_prepare .text.rtc_sleep_enable_ultra_low .text.rtcio_ll_ext0_set_wakeup_pin .text.rtcio_ll_function_select .text.rtcio_ll_iomux_func_sel .text.s_do_deep_sleep_phy_callback .text.s_sleep_hook_deregister .text.s_sleep_hook_register .text.touch_wakeup_prepare) + *libesp_phy.a:phy_override.*(.literal.esp_phy_efuse_get_chip_ver_pkg .literal.esp_phy_efuse_get_mac .literal.phy_set_pwdet_power .literal.set_xpd_sar .text .text.esp_phy_efuse_get_chip_ver_pkg .text.esp_phy_efuse_get_mac .text.include_esp_phy_override .text.phy_set_pwdet_power .text.set_xpd_sar) + *libesp_pm.a:pm_impl.*(.literal.esp_pm_get_configuration .literal.esp_pm_impl_get_mode .literal.esp_pm_impl_idle_hook .literal.esp_pm_impl_init .literal.esp_pm_impl_waiti .text .text.esp_pm_configure .text.esp_pm_get_configuration .text.esp_pm_impl_get_mode .text.esp_pm_impl_idle_hook .text.esp_pm_impl_init .text.esp_pm_impl_waiti) + *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_char_usb_serial_jtag .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_char_usb_serial_jtag .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_timer.a:esp_timer_impl_common.*(.text) + *libesp_timer.a:esp_timer_impl_systimer.*(.literal.esp_timer_impl_deinit .literal.esp_timer_impl_early_init .literal.esp_timer_impl_get_alarm_reg .literal.esp_timer_impl_init .text .text.esp_timer_impl_deinit .text.esp_timer_impl_early_init .text.esp_timer_impl_get_alarm_reg .text.esp_timer_impl_init) + *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:app_startup.*(.literal .literal.* .text .text.*) + *libfreertos.a:freertos_compatibility.*(.literal .literal.* .text .text.*) + *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*) + *libfreertos.a:idf_additions_event_groups.*(.literal .literal.* .text .text.*) + *libfreertos.a:tasks.*(.literal.pxGetTaskListByIndex .text.pxGetTaskListByIndex) + *libfreertos.a:tasks.*(.literal.uxTaskGetSnapshotAll .text.uxTaskGetSnapshotAll) + *libfreertos.a:tasks.*(.literal.xTaskGetNext .text.xTaskGetNext) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_init .literal.gdma_ahb_hal_set_burst_size .literal.gdma_ahb_hal_set_strategy .literal.gdma_ll_rx_set_burst_size .literal.gdma_ll_tx_set_burst_size .text .text.gdma_ahb_hal_connect_peri .text.gdma_ahb_hal_disconnect_peri .text.gdma_ahb_hal_enable_burst .text.gdma_ahb_hal_enable_intr .text.gdma_ahb_hal_get_intr_status_reg .text.gdma_ahb_hal_init .text.gdma_ahb_hal_set_burst_size .text.gdma_ahb_hal_set_priority .text.gdma_ahb_hal_set_strategy .text.gdma_ll_rx_set_burst_size .text.gdma_ll_tx_set_burst_size) + *libhal.a:gdma_hal_top.*(.text .text.gdma_hal_connect_peri .text.gdma_hal_deinit .text.gdma_hal_disconnect_peri .text.gdma_hal_enable_access_encrypt_mem .text.gdma_hal_enable_burst .text.gdma_hal_enable_intr .text.gdma_hal_get_intr_status_reg .text.gdma_hal_set_burst_size .text.gdma_hal_set_priority .text.gdma_hal_set_strategy) + *libhal.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 .text .text.gpio_hal_intr_disable .text.gpio_hal_intr_enable_on_core .text.gpio_hal_iomux_in .text.gpio_hal_iomux_out) + *libhal.a:rtc_cntl_hal.*(.literal.rtc_cntl_hal_dma_link_init .text .text.rtc_cntl_hal_dma_link_init) + *libhal.a:timer_hal.*(.literal.timer_hal_deinit .literal.timer_hal_init .literal.timer_hal_set_counter_value .text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) + *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) + *libnewlib.a:esp_time_impl.*(.literal.esp_sync_timekeeping_timers .literal.esp_time_impl_get_time .literal.esp_time_impl_get_time_since_boot .text .text.esp_sync_timekeeping_timers .text.esp_time_impl_get_time .text.esp_time_impl_get_time_since_boot) + *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 + /** + + * Dummy section represents the .flash.text section but in default_rodata_seg. + + * Thus, it must have its alignment and (at least) its size. + + */ + .flash_rodata_dummy (NOLOAD): + { + _flash_rodata_dummy_start = ABSOLUTE(.); + . = ALIGN(ALIGNOF(.flash.text)) + SIZEOF(.flash.text); + /* Add alignment of MMU page size + 0x20 bytes for the mapping header. */ + . = ALIGN(0x10000) + 0x20; + } > default_rodata_seg + .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(.); + *(EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .rodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .rodata.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .sdata2 EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .sdata2.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .srodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libclang_rt.builtins.a:_divsf3.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .srodata.*) + *(.rodata_wlog_error .rodata_wlog_error.*) + *(.rodata_wlog_info .rodata_wlog_info.*) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + *(.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); + __init_array_start = ABSOLUTE(.); + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors SORT(.ctors.*))) + __init_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(.); + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + _thread_local_end = ABSOLUTE(.); + } > default_rodata_seg + _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 + /** + + * Dummy section to skip flash rodata sections. + + * Because to `extern_ram_seg` and `drom0_0_seg` are on the same bus + + */ + .ext_ram.dummy (NOLOAD): + { + . = ORIGIN(extern_ram_seg); + . = . + (_rodata_reserved_end - _flash_rodata_dummy_start); + . = ALIGN (0x10000); + } > extern_ram_seg + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + /* Padding for possible CPU prefetch + alignment for PMS split lines */ + . += 16; + . = ALIGN(256); + /* iram_end_test section exists for use by memprot unit tests only */ + *(.iram_end_test) + _iram_text_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.data : + { + + . = ALIGN(4); + _iram_data_start = ABSOLUTE(.); + *(.iram.data .iram.data.*) + _coredump_iram_start = ABSOLUTE(.); + *(.iram2.coredump .iram2.coredump.*) + _coredump_iram_end = ABSOLUTE(.); + + . = ALIGN(4); + _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) : + { + _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..aa689e4 --- /dev/null +++ b/build/esp-idf/esp_system/ld/sections.ld.in @@ -0,0 +1,628 @@ +/* + + * 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) 5.5.1 Configuration Header + + */ + +/* List of deprecated options */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +/* + + * 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_fast_start = ABSOLUTE(.); + + . = ALIGN(4); + _rtc_text_start = ABSOLUTE(.); + HIDDEN(_rtc_code_start = .); + *(.rtc.entry.literal .rtc.entry.text) + mapping[rtc_text] + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + *(.rtc_text_end_test) + HIDDEN(_rtc_code_end = .); + /* Padding for possible CPU prefetch + 4B alignment for PMS split lines. */ + . = ((_rtc_code_end - _rtc_code_start) == 0) ? + ALIGN(0) : 16 + ALIGN(4); + _rtc_text_end = ABSOLUTE(.); + } > rtc_iram_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_ESP32S3_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_ESP32S3_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 data that should have fixed addresses. + + * The data are not initialized at power-up and are retained during deep + + * sleep. + + */ + .rtc_reserved (NOLOAD): + { + + . = ALIGN(4); + _rtc_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.*) + KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) + _rtc_reserved_end = ABSOLUTE(.); + } > rtc_reserved_seg + _rtc_reserved_length = _rtc_reserved_end - _rtc_reserved_start; + ASSERT((_rtc_reserved_length <= LENGTH(rtc_reserved_seg)), + "RTC 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 + /** + + * This section is required to skip .iram0.text area because iram0_0_seg and + + * dram0_0_seg reflect the same address space on different buses. + + */ + .dram0.dummy (NOLOAD): + { + . = ORIGIN(dram0_0_seg) + MAX(_iram_end - _diram_i_start, 0); + } > dram0_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 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 + /* 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.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 + /** + + * Dummy section represents the .flash.text section but in default_rodata_seg. + + * Thus, it must have its alignment and (at least) its size. + + */ + .flash_rodata_dummy (NOLOAD): + { + _flash_rodata_dummy_start = ABSOLUTE(.); + . = ALIGN(ALIGNOF(.flash.text)) + SIZEOF(.flash.text); + /* Add alignment of MMU page size + 0x20 bytes for the mapping header. */ + . = ALIGN(0x10000) + 0x20; + } > default_rodata_seg + .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); + __init_array_start = ABSOLUTE(.); + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors SORT(.ctors.*))) + __init_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(.); + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + _thread_local_end = ABSOLUTE(.); + } > default_rodata_seg + _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 + /** + + * Dummy section to skip flash rodata sections. + + * Because to `extern_ram_seg` and `drom0_0_seg` are on the same bus + + */ + .ext_ram.dummy (NOLOAD): + { + . = ORIGIN(extern_ram_seg); + . = . + (_rodata_reserved_end - _flash_rodata_dummy_start); + . = ALIGN (0x10000); + } > extern_ram_seg + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + /* Padding for possible CPU prefetch + alignment for PMS split lines */ + . += 16; + . = ALIGN(256); + /* iram_end_test section exists for use by memprot unit tests only */ + *(.iram_end_test) + _iram_text_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.data : + { + + . = ALIGN(4); + _iram_data_start = ABSOLUTE(.); + mapping[iram0_data] + + . = ALIGN(4); + _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) : + { + _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..047fa94 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..65a73e1 --- /dev/null +++ b/build/esp-idf/esp_system/port/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/port/soc/esp32s3/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/esp_system/port/soc/esp32s3/cmake_install.cmake b/build/esp-idf/esp_system/port/soc/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..207903f --- /dev/null +++ b/build/esp-idf/esp_system/port/soc/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..a152271 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..a1e887c 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_systimer.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj new file mode 100644 index 0000000..fcfe40b Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.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..5044cad 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..bcd7303 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..6de4348 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..55fc717 --- /dev/null +++ b/build/esp-idf/esp_timer/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..2ed5524 Binary files /dev/null and b/build/esp-idf/esp_timer/libesp_timer.a differ diff --git a/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj b/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj new file mode 100644 index 0000000..6757387 Binary files /dev/null and b/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj differ diff --git a/build/esp-idf/esp_vfs_console/cmake_install.cmake b/build/esp-idf/esp_vfs_console/cmake_install.cmake new file mode 100644 index 0000000..1560598 --- /dev/null +++ b/build/esp-idf/esp_vfs_console/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_vfs_console/libesp_vfs_console.a b/build/esp-idf/esp_vfs_console/libesp_vfs_console.a new file mode 100644 index 0000000..6acf223 Binary files /dev/null and b/build/esp-idf/esp_vfs_console/libesp_vfs_console.a differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32s3/esp_adapter.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32s3/esp_adapter.c.obj new file mode 100644 index 0000000..0181779 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32s3/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..053a0c7 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..562b96e 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..cdfd70b 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..fd0dcc7 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..2cd612f 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..92712fa 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..afc45ff 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..b785c6e 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..a1adf49 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..d36e6f0 --- /dev/null +++ b/build/esp-idf/esp_wifi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..088beba Binary files /dev/null and b/build/esp-idf/esp_wifi/libesp_wifi.a differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj new file mode 100644 index 0000000..c2e0bd0 Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj new file mode 100644 index 0000000..3d582d4 Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj new file mode 100644 index 0000000..02774de Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj new file mode 100644 index 0000000..703311e Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj new file mode 100644 index 0000000..fb3e1bf Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj new file mode 100644 index 0000000..c5fd971 Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_init.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj new file mode 100644 index 0000000..3b29165 Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj new file mode 100644 index 0000000..3a502c2 Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj new file mode 100644 index 0000000..c090ac2 Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj 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..e9db494 --- /dev/null +++ b/build/esp-idf/espcoredump/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/espcoredump/libespcoredump.a b/build/esp-idf/espcoredump/libespcoredump.a new file mode 100644 index 0000000..1fc995a Binary files /dev/null and b/build/esp-idf/espcoredump/libespcoredump.a differ diff --git a/build/esp-idf/esptool_py/app-flash_args.in b/build/esp-idf/esptool_py/app-flash_args.in new file mode 100644 index 0000000..3a11b10 --- /dev/null +++ b/build/esp-idf/esptool_py/app-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +0x20000 $.bin \ No newline at end of file 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..346ed02 --- /dev/null +++ b/build/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esptool_py/flasher_args.json.in b/build/esp-idf/esptool_py/flasher_args.json.in new file mode 100644 index 0000000..533b577 --- /dev/null +++ b/build/esp-idf/esptool_py/flasher_args.json.in @@ -0,0 +1,26 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "4MB", + "--flash_freq", "80m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "4MB", + "flash_freq": "80m" + }, + "flash_files" : { + "0x0" : "bootloader/bootloader.bin", + "0x20000" : "$.bin", + "0x8000" : "partition_table/partition-table.bin", + "0xe000" : "ota_data_initial.bin" + }, + "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x20000", "file" : "$.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "otadata" : { "offset" : "0xe000", "file" : "ota_data_initial.bin", "encrypted" : "false" }, + "extra_esptool_args" : { + "after" : "hard_reset", + "before" : "default_reset", + "stub" : true, + "chip" : "esp32s3" + } +} 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..96bf953 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..53dda9d 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..32d7f6b 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..8a5ce69 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..d14819c 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..ee09b8c 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..1e59c48 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..ca83f74 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..1178fb9 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..cb4da0c 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..666e233 --- /dev/null +++ b/build/esp-idf/fatfs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/fatfs/libfatfs.a b/build/esp-idf/fatfs/libfatfs.a new file mode 100644 index 0000000..4cf1f4a Binary files /dev/null and b/build/esp-idf/fatfs/libfatfs.a differ diff --git a/build/esp-idf/fota_manager/CMakeFiles/__idf_fota_manager.dir/fota_manager.c.obj b/build/esp-idf/fota_manager/CMakeFiles/__idf_fota_manager.dir/fota_manager.c.obj new file mode 100644 index 0000000..a6165c7 Binary files /dev/null and b/build/esp-idf/fota_manager/CMakeFiles/__idf_fota_manager.dir/fota_manager.c.obj differ diff --git a/build/esp-idf/fota_manager/cmake_install.cmake b/build/esp-idf/fota_manager/cmake_install.cmake new file mode 100644 index 0000000..13b0e5a --- /dev/null +++ b/build/esp-idf/fota_manager/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/fota_manager/libfota_manager.a b/build/esp-idf/fota_manager/libfota_manager.a new file mode 100644 index 0000000..526e5fa Binary files /dev/null and b/build/esp-idf/fota_manager/libfota_manager.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..2409f73 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..6b13dba 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..1eefc88 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..5691106 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..75349cf 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..81b117b 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..a9ce453 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..3dcf3ed 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..a23431f 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..8f6cb71 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..47a09b2 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/freertos_compatibility.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj new file mode 100644 index 0000000..222a722 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.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..bcd6f00 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..09cc1e1 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..54cbace 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..a26f47f 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..5c9e61e 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..57fc433 --- /dev/null +++ b/build/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/freertos/libfreertos.a b/build/esp-idf/freertos/libfreertos.a new file mode 100644 index 0000000..a2257fb Binary files /dev/null and b/build/esp-idf/freertos/libfreertos.a differ diff --git a/build/esp-idf/ftp_manager/CMakeFiles/__idf_ftp_manager.dir/ftp_manager.c.obj b/build/esp-idf/ftp_manager/CMakeFiles/__idf_ftp_manager.dir/ftp_manager.c.obj new file mode 100644 index 0000000..076c7c7 Binary files /dev/null and b/build/esp-idf/ftp_manager/CMakeFiles/__idf_ftp_manager.dir/ftp_manager.c.obj differ diff --git a/build/esp-idf/ftp_manager/cmake_install.cmake b/build/esp-idf/ftp_manager/cmake_install.cmake new file mode 100644 index 0000000..35e5847 --- /dev/null +++ b/build/esp-idf/ftp_manager/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/ftp_manager/libftp_manager.a b/build/esp-idf/ftp_manager/libftp_manager.a new file mode 100644 index 0000000..338ce1b Binary files /dev/null and b/build/esp-idf/ftp_manager/libftp_manager.a differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj new file mode 100644 index 0000000..c5b9426 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj new file mode 100644 index 0000000..b227c02 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj new file mode 100644 index 0000000..130318a Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj new file mode 100644 index 0000000..00fc8c7 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj 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..5a4d38f 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/cache_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj new file mode 100644 index 0000000..f658cf9 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_hal.c.obj new file mode 100644 index 0000000..25f496f Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_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..1a860e0 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/ds_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj new file mode 100644 index 0000000..3b623e1 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_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..eacee9f 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/esp32s3/clk_tree_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj new file mode 100644 index 0000000..e511e20 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj new file mode 100644 index 0000000..1ad57e5 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj new file mode 100644 index 0000000..a4146c3 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj new file mode 100644 index 0000000..96085bb Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj new file mode 100644 index 0000000..3fc2635 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj new file mode 100644 index 0000000..3df28b9 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj new file mode 100644 index 0000000..5e34167 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_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..b9ac953 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/hmac_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj new file mode 100644 index 0000000..64b0733 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj new file mode 100644 index 0000000..cf06961 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj new file mode 100644 index 0000000..398ec47 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj new file mode 100644 index 0000000..a1b8887 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj new file mode 100644 index 0000000..7d1bebe Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj new file mode 100644 index 0000000..2636cce Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj new file mode 100644 index 0000000..a7faf08 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj new file mode 100644 index 0000000..abb22d9 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.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..e74242b 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/mpi_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj new file mode 100644 index 0000000..9681dfd Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj new file mode 100644 index 0000000..940020a Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj new file mode 100644 index 0000000..c8a43ac Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj new file mode 100644 index 0000000..9071c33 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj new file mode 100644 index 0000000..49c9fa0 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj new file mode 100644 index 0000000..4d257c4 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_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..6051473 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/CMakeFiles/__idf_hal.dir/sha_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj new file mode 100644 index 0000000..0867299 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj new file mode 100644 index 0000000..80f38cf Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj new file mode 100644 index 0000000..cb5f18b Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj new file mode 100644 index 0000000..0171a80 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj new file mode 100644 index 0000000..f95a23d Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj new file mode 100644 index 0000000..fe65897 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj new file mode 100644 index 0000000..a042444 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj new file mode 100644 index 0000000..b4b85e2 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj new file mode 100644 index 0000000..1c61e0a Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj new file mode 100644 index 0000000..283c087 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj new file mode 100644 index 0000000..e147261 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj new file mode 100644 index 0000000..a99114f Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj new file mode 100644 index 0000000..2b075a7 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj new file mode 100644 index 0000000..9598c23 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj new file mode 100644 index 0000000..010c0ab Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj new file mode 100644 index 0000000..5429724 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj new file mode 100644 index 0000000..92468c1 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj new file mode 100644 index 0000000..67a41e7 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj new file mode 100644 index 0000000..21a2b12 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj new file mode 100644 index 0000000..fb33817 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj new file mode 100644 index 0000000..23ee6e3 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj new file mode 100644 index 0000000..37fc490 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_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..78f2910 --- /dev/null +++ b/build/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/hal/libhal.a b/build/esp-idf/hal/libhal.a new file mode 100644 index 0000000..88ea216 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..f360496 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..86d2dd1 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..184b254 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..78e4c9e 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/esp32s3/memory_layout.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj new file mode 100644 index 0000000..48f7977 Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/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..24aad27 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..5b7a117 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..6c49a0c --- /dev/null +++ b/build/esp-idf/heap/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/heap/libheap.a b/build/esp-idf/heap/libheap.a new file mode 100644 index 0000000..a7f67cf 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..10b9fca 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..3a7fd3f --- /dev/null +++ b/build/esp-idf/http_parser/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..0e4cede 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..447d66f --- /dev/null +++ b/build/esp-idf/idf_test/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..668a004 --- /dev/null +++ b/build/esp-idf/ieee802154/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj b/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj new file mode 100644 index 0000000..40c6281 Binary files /dev/null and b/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj differ diff --git a/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj b/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj new file mode 100644 index 0000000..fbc6f17 Binary files /dev/null and b/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj differ diff --git a/build/esp-idf/json/cmake_install.cmake b/build/esp-idf/json/cmake_install.cmake new file mode 100644 index 0000000..474fad9 --- /dev/null +++ b/build/esp-idf/json/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/json/libjson.a b/build/esp-idf/json/libjson.a new file mode 100644 index 0000000..52997a4 Binary files /dev/null and b/build/esp-idf/json/libjson.a differ 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..ead4adb 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..915ef58 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..fbede01 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..6f31d41 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..ec38056 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..7433d4e 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..f4fad55 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..66e4104 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..d868953 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..fc400e0 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..15b3a4a 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..b14fd8a 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..f9ef71f 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..08e7902 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..8dcc598 --- /dev/null +++ b/build/esp-idf/log/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/log/liblog.a b/build/esp-idf/log/liblog.a new file mode 100644 index 0000000..cb1553d 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..a776194 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/esp_ping.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj new file mode 100644 index 0000000..1ae40e1 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj new file mode 100644 index 0000000..cd71dbb Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.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..900fa1f 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..35770ce 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..d0a0930 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..365a143 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..d95f7b5 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..4a9885e 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..c02a11d 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..692d779 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..fbbc1c4 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..1151bfb 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..479ff0f 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..9cf1978 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..0fed831 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..1b99e8b 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..5aa1baa 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..5690bd8 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..3e6558d 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..73f782b 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..eecc8de 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..f328c36 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..4cb561c 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..afa03d4 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..e2f4b9d 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..999431f 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..7568b0b 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..81c8192 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..d8661cb 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..f6604ab 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..244eabd 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..4bd7ffd 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..728f4f2 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..0a4e3cf 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..a9aa968 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..0885951 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..1a1dd48 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..9468c61 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..ddc7ef4 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..cc10fa7 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..e3c9214 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..ca9c462 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..e3a3fe2 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..463074f 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..dcac824 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..24c8194 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..11b1327 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..36b0822 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..2fa7fb3 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..db67e95 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..3395dc5 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..18e7cfc 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..c52ea14 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..d6e1b8c 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..4a488f3 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..438abe7 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..c6fe354 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..5bc4c23 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..57888d4 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..92a8496 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..f94bd0f 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..aeb6051 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..e10660c 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..063b7f2 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..12fc627 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..4068d23 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..00adb60 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..1aa722d 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..bf30d67 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..61e7db5 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..87bce92 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..0e8d3fb 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..5d0c568 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..307adec 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..ddcd8a3 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..a150c46 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..494e3a1 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..47a56bf 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..ab0b1e9 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..0997a3e 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..e248995 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..6cdb31f 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..3048825 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..30acf17 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..5913100 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..f43cf8d 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..8477b8c 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..d53f261 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..9646418 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..3d1a49f 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..415b31b 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..da459bf 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..f6cba41 --- /dev/null +++ b/build/esp-idf/lwip/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/lwip/liblwip.a b/build/esp-idf/lwip/liblwip.a new file mode 100644 index 0000000..504a7f3 Binary files /dev/null and b/build/esp-idf/lwip/liblwip.a differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/fs_init.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/fs_init.c.obj new file mode 100644 index 0000000..7db26f0 Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/fs_init.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..2e3a8e3 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/wifi_init.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/wifi_init.c.obj new file mode 100644 index 0000000..d3995dc Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/wifi_init.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..59a85be --- /dev/null +++ b/build/esp-idf/main/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/main/libmain.a b/build/esp-idf/main/libmain.a new file mode 100644 index 0000000..16d6783 Binary files /dev/null and b/build/esp-idf/main/libmain.a differ 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..91e4015 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..340e4bf 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..c585f6a --- /dev/null +++ b/build/esp-idf/mbedtls/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/mbedtls/libmbedtls.a b/build/esp-idf/mbedtls/libmbedtls.a new file mode 100644 index 0000000..b9a202c Binary files /dev/null and b/build/esp-idf/mbedtls/libmbedtls.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake new file mode 100644 index 0000000..60a869d --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake @@ -0,0 +1,46 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake") + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake") + +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj new file mode 100644 index 0000000..2e11c18 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj new file mode 100644 index 0000000..0e4968e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj new file mode 100644 index 0000000..82a962c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake new file mode 100644 index 0000000..0ed1885 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest" FILES_MATCHING REGEX "/[^/]*\\.h$") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a new file mode 100644 index 0000000..18a77d3 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj new file mode 100644 index 0000000..7319461 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj new file mode 100644 index 0000000..5fdb502 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake new file mode 100644 index 0000000..f13fe8f --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/:C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m" FILES_MATCHING REGEX "/[^/]*\\.h$") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a new file mode 100644 index 0000000..7629c9a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.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..f50984d --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake @@ -0,0 +1,48 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake") + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake") + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake") + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake") + +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..7da7d8a --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake @@ -0,0 +1,146 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aes.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aria.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1write.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/base64.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/bignum.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/block_cipher.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/build_info.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/camellia.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ccm.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chacha20.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chachapoly.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/check_config.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cipher.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cmac.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/compat-2.x.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_crypto.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_from_psa.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_from_legacy.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_superset_legacy.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_ssl.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_x509.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_psa.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/constant_time.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ctr_drbg.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/debug.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/des.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/dhm.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdh.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdsa.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecjpake.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecp.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/entropy.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/error.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/gcm.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hkdf.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hmac_drbg.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/lms.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/mbedtls_config.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md5.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/memory_buffer_alloc.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/net_sockets.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/nist_kw.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/oid.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pem.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pk.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs12.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs5.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs7.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_time.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_util.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/poly1305.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/private_access.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/psa_util.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ripemd160.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/rsa.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha1.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha256.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha3.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha512.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cache.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ciphersuites.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cookie.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ticket.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/threading.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/timing.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/version.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crl.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crt.h" + "C:/Users/Vecmocon/esp/v5.5.1/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/psa" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/build_info.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_auto_enabled.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_dependencies.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_key_pair_types.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_synonyms.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_composites.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_key_derivation.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_primitives.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_compat.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_config.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_common.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_composites.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_key_derivation.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_primitives.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_extra.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_legacy.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_platform.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_se_driver.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_sizes.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_struct.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_types.h" + "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_values.h" + ) +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj new file mode 100644 index 0000000..2f1f312 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj new file mode 100644 index 0000000..398e1c0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj new file mode 100644 index 0000000..3b1a054 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj new file mode 100644 index 0000000..b51cf86 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj new file mode 100644 index 0000000..a117680 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj new file mode 100644 index 0000000..132acb5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj new file mode 100644 index 0000000..8e464c7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj new file mode 100644 index 0000000..051480c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj new file mode 100644 index 0000000..e560d3c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj new file mode 100644 index 0000000..ecef82d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj new file mode 100644 index 0000000..6b4fa59 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj new file mode 100644 index 0000000..424f8e9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj new file mode 100644 index 0000000..d959a5d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj new file mode 100644 index 0000000..ab3a7fa Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj new file mode 100644 index 0000000..075934e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj new file mode 100644 index 0000000..0a4ee03 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj new file mode 100644 index 0000000..d6b6025 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj new file mode 100644 index 0000000..a4a9f38 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj new file mode 100644 index 0000000..616da85 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj new file mode 100644 index 0000000..bece23a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj new file mode 100644 index 0000000..c968c62 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj new file mode 100644 index 0000000..c89c7de Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj new file mode 100644 index 0000000..eece605 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj new file mode 100644 index 0000000..1dd9fb0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj new file mode 100644 index 0000000..001494e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj new file mode 100644 index 0000000..787d96f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj new file mode 100644 index 0000000..7305129 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj new file mode 100644 index 0000000..0971aff Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj new file mode 100644 index 0000000..da75843 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj new file mode 100644 index 0000000..d3f4507 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj new file mode 100644 index 0000000..ce53edc Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj new file mode 100644 index 0000000..1e70743 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj new file mode 100644 index 0000000..0b64049 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj new file mode 100644 index 0000000..1e751d8 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj new file mode 100644 index 0000000..cedec07 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj new file mode 100644 index 0000000..fd52825 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj new file mode 100644 index 0000000..263e803 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj new file mode 100644 index 0000000..eb47121 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj new file mode 100644 index 0000000..d6a731c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj new file mode 100644 index 0000000..11b7cf6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj new file mode 100644 index 0000000..c725493 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj new file mode 100644 index 0000000..fb13705 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj new file mode 100644 index 0000000..4a04b2c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj new file mode 100644 index 0000000..3b83002 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj new file mode 100644 index 0000000..2f112c6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj new file mode 100644 index 0000000..5aff01b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj new file mode 100644 index 0000000..2f2c680 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj new file mode 100644 index 0000000..612f2ba Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj new file mode 100644 index 0000000..99085c0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj new file mode 100644 index 0000000..712eff8 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj new file mode 100644 index 0000000..25ac862 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj new file mode 100644 index 0000000..5a1ab6a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj new file mode 100644 index 0000000..8e792b0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj new file mode 100644 index 0000000..01d3fba Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj new file mode 100644 index 0000000..b24fa78 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj new file mode 100644 index 0000000..ffa5528 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj new file mode 100644 index 0000000..9e57a3b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj new file mode 100644 index 0000000..60bd44b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj new file mode 100644 index 0000000..9f5d038 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj new file mode 100644 index 0000000..4b79d73 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj new file mode 100644 index 0000000..d506d14 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj new file mode 100644 index 0000000..409bc91 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj new file mode 100644 index 0000000..9afeeda Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj new file mode 100644 index 0000000..e7844d8 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj new file mode 100644 index 0000000..a1b910a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj new file mode 100644 index 0000000..b60bf59 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj new file mode 100644 index 0000000..d2181bf Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj new file mode 100644 index 0000000..97cf152 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj new file mode 100644 index 0000000..2b28f9c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj new file mode 100644 index 0000000..a110370 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj new file mode 100644 index 0000000..42cf810 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj new file mode 100644 index 0000000..8eeb53e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj new file mode 100644 index 0000000..348a523 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj new file mode 100644 index 0000000..d22625d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj new file mode 100644 index 0000000..db3c303 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj new file mode 100644 index 0000000..8107552 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj new file mode 100644 index 0000000..e0c9463 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj new file mode 100644 index 0000000..580f2d5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj new file mode 100644 index 0000000..a3dcb83 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj new file mode 100644 index 0000000..b1fc24b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj new file mode 100644 index 0000000..54537d0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj new file mode 100644 index 0000000..5524b2d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj new file mode 100644 index 0000000..a244c89 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj new file mode 100644 index 0000000..1d12988 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj new file mode 100644 index 0000000..1d8aab9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj new file mode 100644 index 0000000..1cdef52 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj new file mode 100644 index 0000000..b72b24e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj new file mode 100644 index 0000000..6bb115a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj new file mode 100644 index 0000000..41ac577 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj new file mode 100644 index 0000000..01819e1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj new file mode 100644 index 0000000..cf279b0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj new file mode 100644 index 0000000..37d7459 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj new file mode 100644 index 0000000..2876aba Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj new file mode 100644 index 0000000..68796c7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj new file mode 100644 index 0000000..157c0e1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj new file mode 100644 index 0000000..4cc12b5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj new file mode 100644 index 0000000..8c9e86f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj new file mode 100644 index 0000000..5f09a6d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj new file mode 100644 index 0000000..285c376 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj new file mode 100644 index 0000000..d21ed3a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj new file mode 100644 index 0000000..3cabfd9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj new file mode 100644 index 0000000..105dfdd Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj new file mode 100644 index 0000000..1cdfb57 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj new file mode 100644 index 0000000..4fe3b59 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj new file mode 100644 index 0000000..679bc13 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.obj new file mode 100644 index 0000000..3610653 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Vecmocon/esp/v5.5.1/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..c2fe084 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..ac5a1a7 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..145b2a3 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..d0ba832 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..542c11b 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..da356b5 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..96eb9da 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..4231625 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..1387641 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..a6be624 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..362df6c 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..63d9a51 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..1fe4419 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..84f2a0b 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..fec5481 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..78835d8 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..053b4d6 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/mbedx509.dir/pkcs7.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj new file mode 100644 index 0000000..b6772b7 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..be7ddc2 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..df7ffba 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..52047fd 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..2c52dff 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..e497a10 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/x509write.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj new file mode 100644 index 0000000..b7c770e 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..cd50815 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..27be2a5 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..630ea4c --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-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 "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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 "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a") +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/library/error.c b/build/esp-idf/mbedtls/mbedtls/library/error.c new file mode 100644 index 0000000..297eccd --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/error.c @@ -0,0 +1,878 @@ +/* + * Error message information + * + * Copyright The Mbed TLS Contributors + * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later + */ + +#include "common.h" + +#include "mbedtls/error.h" + +#if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY) + +#if defined(MBEDTLS_ERROR_C) + +#include "mbedtls/platform.h" + +#include +#include + +#if defined(MBEDTLS_AES_C) +#include "mbedtls/aes.h" +#endif + +#if defined(MBEDTLS_ARIA_C) +#include "mbedtls/aria.h" +#endif + +#if defined(MBEDTLS_ASN1_PARSE_C) +#include "mbedtls/asn1.h" +#endif + +#if defined(MBEDTLS_BASE64_C) +#include "mbedtls/base64.h" +#endif + +#if defined(MBEDTLS_BIGNUM_C) +#include "mbedtls/bignum.h" +#endif + +#if defined(MBEDTLS_CAMELLIA_C) +#include "mbedtls/camellia.h" +#endif + +#if defined(MBEDTLS_CCM_C) +#include "mbedtls/ccm.h" +#endif + +#if defined(MBEDTLS_CHACHA20_C) +#include "mbedtls/chacha20.h" +#endif + +#if defined(MBEDTLS_CHACHAPOLY_C) +#include "mbedtls/chachapoly.h" +#endif + +#if defined(MBEDTLS_CIPHER_C) +#include "mbedtls/cipher.h" +#endif + +#if defined(MBEDTLS_CTR_DRBG_C) +#include "mbedtls/ctr_drbg.h" +#endif + +#if defined(MBEDTLS_DES_C) +#include "mbedtls/des.h" +#endif + +#if defined(MBEDTLS_DHM_C) +#include "mbedtls/dhm.h" +#endif + +#if defined(MBEDTLS_ECP_C) +#include "mbedtls/ecp.h" +#endif + +#if defined(MBEDTLS_ENTROPY_C) +#include "mbedtls/entropy.h" +#endif + +#if defined(MBEDTLS_ERROR_C) +#include "mbedtls/error.h" +#endif + +#if defined(MBEDTLS_PLATFORM_C) +#include "mbedtls/platform.h" +#endif + +#if defined(MBEDTLS_GCM_C) +#include "mbedtls/gcm.h" +#endif + +#if defined(MBEDTLS_HKDF_C) +#include "mbedtls/hkdf.h" +#endif + +#if defined(MBEDTLS_HMAC_DRBG_C) +#include "mbedtls/hmac_drbg.h" +#endif + +#if defined(MBEDTLS_LMS_C) +#include "mbedtls/lms.h" +#endif + +#if defined(MBEDTLS_MD_C) +#include "mbedtls/md.h" +#endif + +#if defined(MBEDTLS_NET_C) +#include "mbedtls/net_sockets.h" +#endif + +#if defined(MBEDTLS_OID_C) +#include "mbedtls/oid.h" +#endif + +#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C) +#include "mbedtls/pem.h" +#endif + +#if defined(MBEDTLS_PK_C) +#include "mbedtls/pk.h" +#endif + +#if defined(MBEDTLS_PKCS12_C) +#include "mbedtls/pkcs12.h" +#endif + +#if defined(MBEDTLS_PKCS5_C) +#include "mbedtls/pkcs5.h" +#endif + +#if defined(MBEDTLS_PKCS7_C) +#include "mbedtls/pkcs7.h" +#endif + +#if defined(MBEDTLS_POLY1305_C) +#include "mbedtls/poly1305.h" +#endif + +#if defined(MBEDTLS_RSA_C) +#include "mbedtls/rsa.h" +#endif + +#if defined(MBEDTLS_SHA1_C) +#include "mbedtls/sha1.h" +#endif + +#if defined(MBEDTLS_SHA256_C) +#include "mbedtls/sha256.h" +#endif + +#if defined(MBEDTLS_SHA3_C) +#include "mbedtls/sha3.h" +#endif + +#if defined(MBEDTLS_SHA512_C) +#include "mbedtls/sha512.h" +#endif + +#if defined(MBEDTLS_SSL_TLS_C) +#include "mbedtls/ssl.h" +#endif + +#if defined(MBEDTLS_THREADING_C) +#include "mbedtls/threading.h" +#endif + +#if defined(MBEDTLS_X509_USE_C) || defined(MBEDTLS_X509_CREATE_C) +#include "mbedtls/x509.h" +#endif + + +const char *mbedtls_high_level_strerr(int error_code) +{ + int high_level_error_code; + + if (error_code < 0) { + error_code = -error_code; + } + + /* Extract the high-level part from the error code. */ + high_level_error_code = error_code & 0xFF80; + + switch (high_level_error_code) { + /* Begin Auto-Generated Code. */ + #if defined(MBEDTLS_CIPHER_C) + case -(MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE): + return( "CIPHER - The selected feature is not available" ); + case -(MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA): + return( "CIPHER - Bad input parameters" ); + case -(MBEDTLS_ERR_CIPHER_ALLOC_FAILED): + return( "CIPHER - Failed to allocate memory" ); + case -(MBEDTLS_ERR_CIPHER_INVALID_PADDING): + return( "CIPHER - Input data contains invalid padding and is rejected" ); + case -(MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED): + return( "CIPHER - Decryption of block requires a full block" ); + case -(MBEDTLS_ERR_CIPHER_AUTH_FAILED): + return( "CIPHER - Authentication failed (for AEAD modes)" ); + case -(MBEDTLS_ERR_CIPHER_INVALID_CONTEXT): + return( "CIPHER - The context is invalid. For example, because it was freed" ); +#endif /* MBEDTLS_CIPHER_C */ + +#if defined(MBEDTLS_DHM_C) + case -(MBEDTLS_ERR_DHM_BAD_INPUT_DATA): + return( "DHM - Bad input parameters" ); + case -(MBEDTLS_ERR_DHM_READ_PARAMS_FAILED): + return( "DHM - Reading of the DHM parameters failed" ); + case -(MBEDTLS_ERR_DHM_MAKE_PARAMS_FAILED): + return( "DHM - Making of the DHM parameters failed" ); + case -(MBEDTLS_ERR_DHM_READ_PUBLIC_FAILED): + return( "DHM - Reading of the public values failed" ); + case -(MBEDTLS_ERR_DHM_MAKE_PUBLIC_FAILED): + return( "DHM - Making of the public value failed" ); + case -(MBEDTLS_ERR_DHM_CALC_SECRET_FAILED): + return( "DHM - Calculation of the DHM secret failed" ); + case -(MBEDTLS_ERR_DHM_INVALID_FORMAT): + return( "DHM - The ASN.1 data is not formatted correctly" ); + case -(MBEDTLS_ERR_DHM_ALLOC_FAILED): + return( "DHM - Allocation of memory failed" ); + case -(MBEDTLS_ERR_DHM_FILE_IO_ERROR): + return( "DHM - Read or write of file failed" ); + case -(MBEDTLS_ERR_DHM_SET_GROUP_FAILED): + return( "DHM - Setting the modulus and generator failed" ); +#endif /* MBEDTLS_DHM_C */ + +#if defined(MBEDTLS_ECP_C) + case -(MBEDTLS_ERR_ECP_BAD_INPUT_DATA): + return( "ECP - Bad input parameters to function" ); + case -(MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL): + return( "ECP - The buffer is too small to write to" ); + case -(MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE): + return( "ECP - The requested feature is not available, for example, the requested curve is not supported" ); + case -(MBEDTLS_ERR_ECP_VERIFY_FAILED): + return( "ECP - The signature is not valid" ); + case -(MBEDTLS_ERR_ECP_ALLOC_FAILED): + return( "ECP - Memory allocation failed" ); + case -(MBEDTLS_ERR_ECP_RANDOM_FAILED): + return( "ECP - Generation of random value, such as ephemeral key, failed" ); + case -(MBEDTLS_ERR_ECP_INVALID_KEY): + return( "ECP - Invalid private or public key" ); + case -(MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH): + return( "ECP - The buffer contains a valid signature followed by more data" ); + case -(MBEDTLS_ERR_ECP_IN_PROGRESS): + return( "ECP - Operation in progress, call again with the same parameters to continue" ); +#endif /* MBEDTLS_ECP_C */ + +#if defined(MBEDTLS_MD_C) + case -(MBEDTLS_ERR_MD_FEATURE_UNAVAILABLE): + return( "MD - The selected feature is not available" ); + case -(MBEDTLS_ERR_MD_BAD_INPUT_DATA): + return( "MD - Bad input parameters to function" ); + case -(MBEDTLS_ERR_MD_ALLOC_FAILED): + return( "MD - Failed to allocate memory" ); + case -(MBEDTLS_ERR_MD_FILE_IO_ERROR): + return( "MD - Opening or reading of file failed" ); +#endif /* MBEDTLS_MD_C */ + +#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C) + case -(MBEDTLS_ERR_PEM_NO_HEADER_FOOTER_PRESENT): + return( "PEM - No PEM header or footer found" ); + case -(MBEDTLS_ERR_PEM_INVALID_DATA): + return( "PEM - PEM string is not as expected" ); + case -(MBEDTLS_ERR_PEM_ALLOC_FAILED): + return( "PEM - Failed to allocate memory" ); + case -(MBEDTLS_ERR_PEM_INVALID_ENC_IV): + return( "PEM - RSA IV is not in hex-format" ); + case -(MBEDTLS_ERR_PEM_UNKNOWN_ENC_ALG): + return( "PEM - Unsupported key encryption algorithm" ); + case -(MBEDTLS_ERR_PEM_PASSWORD_REQUIRED): + return( "PEM - Private key password can't be empty" ); + case -(MBEDTLS_ERR_PEM_PASSWORD_MISMATCH): + return( "PEM - Given private key password does not allow for correct decryption" ); + case -(MBEDTLS_ERR_PEM_FEATURE_UNAVAILABLE): + return( "PEM - Unavailable feature, e.g. hashing/encryption combination" ); + case -(MBEDTLS_ERR_PEM_BAD_INPUT_DATA): + return( "PEM - Bad input parameters to function" ); +#endif /* MBEDTLS_PEM_PARSE_C || MBEDTLS_PEM_WRITE_C */ + +#if defined(MBEDTLS_PK_C) + case -(MBEDTLS_ERR_PK_ALLOC_FAILED): + return( "PK - Memory allocation failed" ); + case -(MBEDTLS_ERR_PK_TYPE_MISMATCH): + return( "PK - Type mismatch, eg attempt to encrypt with an ECDSA key" ); + case -(MBEDTLS_ERR_PK_BAD_INPUT_DATA): + return( "PK - Bad input parameters to function" ); + case -(MBEDTLS_ERR_PK_FILE_IO_ERROR): + return( "PK - Read/write of file failed" ); + case -(MBEDTLS_ERR_PK_KEY_INVALID_VERSION): + return( "PK - Unsupported key version" ); + case -(MBEDTLS_ERR_PK_KEY_INVALID_FORMAT): + return( "PK - Invalid key tag or value" ); + case -(MBEDTLS_ERR_PK_UNKNOWN_PK_ALG): + return( "PK - Key algorithm is unsupported (only RSA and EC are supported)" ); + case -(MBEDTLS_ERR_PK_PASSWORD_REQUIRED): + return( "PK - Private key password can't be empty" ); + case -(MBEDTLS_ERR_PK_PASSWORD_MISMATCH): + return( "PK - Given private key password does not allow for correct decryption" ); + case -(MBEDTLS_ERR_PK_INVALID_PUBKEY): + return( "PK - The pubkey tag or value is invalid (only RSA and EC are supported)" ); + case -(MBEDTLS_ERR_PK_INVALID_ALG): + return( "PK - The algorithm tag or value is invalid" ); + case -(MBEDTLS_ERR_PK_UNKNOWN_NAMED_CURVE): + return( "PK - Elliptic curve is unsupported (only NIST curves are supported)" ); + case -(MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE): + return( "PK - Unavailable feature, e.g. RSA disabled for RSA key" ); + case -(MBEDTLS_ERR_PK_SIG_LEN_MISMATCH): + return( "PK - The buffer contains a valid signature followed by more data" ); + case -(MBEDTLS_ERR_PK_BUFFER_TOO_SMALL): + return( "PK - The output buffer is too small" ); +#endif /* MBEDTLS_PK_C */ + +#if defined(MBEDTLS_PKCS12_C) + case -(MBEDTLS_ERR_PKCS12_BAD_INPUT_DATA): + return( "PKCS12 - Bad input parameters to function" ); + case -(MBEDTLS_ERR_PKCS12_FEATURE_UNAVAILABLE): + return( "PKCS12 - Feature not available, e.g. unsupported encryption scheme" ); + case -(MBEDTLS_ERR_PKCS12_PBE_INVALID_FORMAT): + return( "PKCS12 - PBE ASN.1 data not as expected" ); + case -(MBEDTLS_ERR_PKCS12_PASSWORD_MISMATCH): + return( "PKCS12 - Given private key password does not allow for correct decryption" ); +#endif /* MBEDTLS_PKCS12_C */ + +#if defined(MBEDTLS_PKCS5_C) + case -(MBEDTLS_ERR_PKCS5_BAD_INPUT_DATA): + return( "PKCS5 - Bad input parameters to function" ); + case -(MBEDTLS_ERR_PKCS5_INVALID_FORMAT): + return( "PKCS5 - Unexpected ASN.1 data" ); + case -(MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE): + return( "PKCS5 - Requested encryption or digest alg not available" ); + case -(MBEDTLS_ERR_PKCS5_PASSWORD_MISMATCH): + return( "PKCS5 - Given private key password does not allow for correct decryption" ); +#endif /* MBEDTLS_PKCS5_C */ + +#if defined(MBEDTLS_PKCS7_C) + case -(MBEDTLS_ERR_PKCS7_INVALID_FORMAT): + return( "PKCS7 - The format is invalid, e.g. different type expected" ); + case -(MBEDTLS_ERR_PKCS7_FEATURE_UNAVAILABLE): + return( "PKCS7 - Unavailable feature, e.g. anything other than signed data" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_VERSION): + return( "PKCS7 - The PKCS #7 version element is invalid or cannot be parsed" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_CONTENT_INFO): + return( "PKCS7 - The PKCS #7 content info is invalid or cannot be parsed" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_ALG): + return( "PKCS7 - The algorithm tag or value is invalid or cannot be parsed" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_CERT): + return( "PKCS7 - The certificate tag or value is invalid or cannot be parsed" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_SIGNATURE): + return( "PKCS7 - Error parsing the signature" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_SIGNER_INFO): + return( "PKCS7 - Error parsing the signer's info" ); + case -(MBEDTLS_ERR_PKCS7_BAD_INPUT_DATA): + return( "PKCS7 - Input invalid" ); + case -(MBEDTLS_ERR_PKCS7_ALLOC_FAILED): + return( "PKCS7 - Allocation of memory failed" ); + case -(MBEDTLS_ERR_PKCS7_VERIFY_FAIL): + return( "PKCS7 - Verification Failed" ); + case -(MBEDTLS_ERR_PKCS7_CERT_DATE_INVALID): + return( "PKCS7 - The PKCS #7 date issued/expired dates are invalid" ); +#endif /* MBEDTLS_PKCS7_C */ + +#if defined(MBEDTLS_RSA_C) + case -(MBEDTLS_ERR_RSA_BAD_INPUT_DATA): + return( "RSA - Bad input parameters to function" ); + case -(MBEDTLS_ERR_RSA_INVALID_PADDING): + return( "RSA - Input data contains invalid padding and is rejected" ); + case -(MBEDTLS_ERR_RSA_KEY_GEN_FAILED): + return( "RSA - Something failed during generation of a key" ); + case -(MBEDTLS_ERR_RSA_KEY_CHECK_FAILED): + return( "RSA - Key failed to pass the validity check of the library" ); + case -(MBEDTLS_ERR_RSA_PUBLIC_FAILED): + return( "RSA - The public key operation failed" ); + case -(MBEDTLS_ERR_RSA_PRIVATE_FAILED): + return( "RSA - The private key operation failed" ); + case -(MBEDTLS_ERR_RSA_VERIFY_FAILED): + return( "RSA - The PKCS#1 verification failed" ); + case -(MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE): + return( "RSA - The output buffer for decryption is not large enough" ); + case -(MBEDTLS_ERR_RSA_RNG_FAILED): + return( "RSA - The random generator failed to generate non-zeros" ); +#endif /* MBEDTLS_RSA_C */ + +#if defined(MBEDTLS_SSL_TLS_C) + case -(MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS): + return( "SSL - A cryptographic operation is in progress. Try again later" ); + case -(MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE): + return( "SSL - The requested feature is not available" ); + case -(MBEDTLS_ERR_SSL_BAD_INPUT_DATA): + return( "SSL - Bad input parameters to function" ); + case -(MBEDTLS_ERR_SSL_INVALID_MAC): + return( "SSL - Verification of the message MAC failed" ); + case -(MBEDTLS_ERR_SSL_INVALID_RECORD): + return( "SSL - An invalid SSL record was received" ); + case -(MBEDTLS_ERR_SSL_CONN_EOF): + return( "SSL - The connection indicated an EOF" ); + case -(MBEDTLS_ERR_SSL_DECODE_ERROR): + return( "SSL - A message could not be parsed due to a syntactic error" ); + case -(MBEDTLS_ERR_SSL_NO_RNG): + return( "SSL - No RNG was provided to the SSL module" ); + case -(MBEDTLS_ERR_SSL_NO_CLIENT_CERTIFICATE): + return( "SSL - No client certification received from the client, but required by the authentication mode" ); + case -(MBEDTLS_ERR_SSL_UNSUPPORTED_EXTENSION): + return( "SSL - Client received an extended server hello containing an unsupported extension" ); + case -(MBEDTLS_ERR_SSL_NO_APPLICATION_PROTOCOL): + return( "SSL - No ALPN protocols supported that the client advertises" ); + case -(MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED): + return( "SSL - The own private key or pre-shared key is not set, but needed" ); + case -(MBEDTLS_ERR_SSL_CA_CHAIN_REQUIRED): + return( "SSL - No CA Chain is set, but required to operate" ); + case -(MBEDTLS_ERR_SSL_UNEXPECTED_MESSAGE): + return( "SSL - An unexpected message was received from our peer" ); + case -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE): + return( "SSL - A fatal alert message was received from our peer" ); + case -(MBEDTLS_ERR_SSL_UNRECOGNIZED_NAME): + return( "SSL - No server could be identified matching the client's SNI" ); + case -(MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY): + return( "SSL - The peer notified us that the connection is going to be closed" ); + case -(MBEDTLS_ERR_SSL_BAD_CERTIFICATE): + return( "SSL - Processing of the Certificate handshake message failed" ); + case -(MBEDTLS_ERR_SSL_RECEIVED_NEW_SESSION_TICKET): + return( "SSL - A TLS 1.3 NewSessionTicket message has been received" ); + case -(MBEDTLS_ERR_SSL_CANNOT_READ_EARLY_DATA): + return( "SSL - Not possible to read early data" ); + case -(MBEDTLS_ERR_SSL_RECEIVED_EARLY_DATA): + return( "SSL - * Early data has been received as part of an on-going handshake. This error code can be returned only on server side if and only if early data has been enabled by means of the mbedtls_ssl_conf_early_data() API. This error code can then be returned by mbedtls_ssl_handshake(), mbedtls_ssl_handshake_step(), mbedtls_ssl_read() or mbedtls_ssl_write() if early data has been received as part of the handshake sequence they triggered. To read the early data, call mbedtls_ssl_read_early_data()" ); + case -(MBEDTLS_ERR_SSL_CANNOT_WRITE_EARLY_DATA): + return( "SSL - Not possible to write early data" ); + case -(MBEDTLS_ERR_SSL_CACHE_ENTRY_NOT_FOUND): + return( "SSL - Cache entry not found" ); + case -(MBEDTLS_ERR_SSL_ALLOC_FAILED): + return( "SSL - Memory allocation failed" ); + case -(MBEDTLS_ERR_SSL_HW_ACCEL_FAILED): + return( "SSL - Hardware acceleration function returned with error" ); + case -(MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH): + return( "SSL - Hardware acceleration function skipped / left alone data" ); + case -(MBEDTLS_ERR_SSL_BAD_PROTOCOL_VERSION): + return( "SSL - Handshake protocol not within min/max boundaries" ); + case -(MBEDTLS_ERR_SSL_HANDSHAKE_FAILURE): + return( "SSL - The handshake negotiation failed" ); + case -(MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED): + return( "SSL - Session ticket has expired" ); + case -(MBEDTLS_ERR_SSL_PK_TYPE_MISMATCH): + return( "SSL - Public key type mismatch (eg, asked for RSA key exchange and presented EC key)" ); + case -(MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY): + return( "SSL - Unknown identity received (eg, PSK identity)" ); + case -(MBEDTLS_ERR_SSL_INTERNAL_ERROR): + return( "SSL - Internal error (eg, unexpected failure in lower-level module)" ); + case -(MBEDTLS_ERR_SSL_COUNTER_WRAPPING): + return( "SSL - A counter would wrap (eg, too many messages exchanged)" ); + case -(MBEDTLS_ERR_SSL_WAITING_SERVER_HELLO_RENEGO): + return( "SSL - Unexpected message at ServerHello in renegotiation" ); + case -(MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED): + return( "SSL - DTLS client must retry for hello verification" ); + case -(MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL): + return( "SSL - A buffer is too small to receive or write a message" ); + case -(MBEDTLS_ERR_SSL_WANT_READ): + return( "SSL - No data of requested type currently available on underlying transport" ); + case -(MBEDTLS_ERR_SSL_WANT_WRITE): + return( "SSL - Connection requires a write call" ); + case -(MBEDTLS_ERR_SSL_TIMEOUT): + return( "SSL - The operation timed out" ); + case -(MBEDTLS_ERR_SSL_CLIENT_RECONNECT): + return( "SSL - The client initiated a reconnect from the same port" ); + case -(MBEDTLS_ERR_SSL_UNEXPECTED_RECORD): + return( "SSL - Record header looks valid but is not expected" ); + case -(MBEDTLS_ERR_SSL_NON_FATAL): + return( "SSL - The alert message received indicates a non-fatal error" ); + case -(MBEDTLS_ERR_SSL_ILLEGAL_PARAMETER): + return( "SSL - A field in a message was incorrect or inconsistent with other fields" ); + case -(MBEDTLS_ERR_SSL_CONTINUE_PROCESSING): + return( "SSL - Internal-only message signaling that further message-processing should be done" ); + case -(MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS): + return( "SSL - The asynchronous operation is not completed yet" ); + case -(MBEDTLS_ERR_SSL_EARLY_MESSAGE): + return( "SSL - Internal-only message signaling that a message arrived early" ); + case -(MBEDTLS_ERR_SSL_UNEXPECTED_CID): + return( "SSL - An encrypted DTLS-frame with an unexpected CID was received" ); + case -(MBEDTLS_ERR_SSL_VERSION_MISMATCH): + return( "SSL - An operation failed due to an unexpected version or configuration" ); + case -(MBEDTLS_ERR_SSL_BAD_CONFIG): + return( "SSL - Invalid value in SSL config" ); + case -(MBEDTLS_ERR_SSL_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME): + return( "SSL - Attempt to verify a certificate without an expected hostname. This is usually insecure. In TLS clients, when a client authenticates a server through its certificate, the client normally checks three things: - the certificate chain must be valid; - the chain must start from a trusted CA; - the certificate must cover the server name that is expected by the client. Omitting any of these checks is generally insecure, and can allow a malicious server to impersonate a legitimate server. The third check may be safely skipped in some unusual scenarios, such as networks where eavesdropping is a risk but not active attacks, or a private PKI where the client equally trusts all servers that are accredited by the root CA. You should call mbedtls_ssl_set_hostname() with the expected server name before starting a TLS handshake on a client (unless the client is set up to only use PSK-based authentication, which does not rely on the host name). If you have determined that server name verification is not required for security in your scenario, call mbedtls_ssl_set_hostname() with \\p NULL as the server name. This error is raised if all of the following conditions are met: - A TLS client is configured with the authentication mode #MBEDTLS_SSL_VERIFY_REQUIRED (default). - Certificate authentication is enabled. - The client does not call mbedtls_ssl_set_hostname(). - The configuration option #MBEDTLS_SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME is not enabled" ); +#endif /* MBEDTLS_SSL_TLS_C */ + +#if defined(MBEDTLS_X509_USE_C) || defined(MBEDTLS_X509_CREATE_C) + case -(MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE): + return( "X509 - Unavailable feature, e.g. RSA hashing/encryption combination" ); + case -(MBEDTLS_ERR_X509_UNKNOWN_OID): + return( "X509 - Requested OID is unknown" ); + case -(MBEDTLS_ERR_X509_INVALID_FORMAT): + return( "X509 - The CRT/CRL/CSR format is invalid, e.g. different type expected" ); + case -(MBEDTLS_ERR_X509_INVALID_VERSION): + return( "X509 - The CRT/CRL/CSR version element is invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_SERIAL): + return( "X509 - The serial tag or value is invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_ALG): + return( "X509 - The algorithm tag or value is invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_NAME): + return( "X509 - The name tag or value is invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_DATE): + return( "X509 - The date tag or value is invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_SIGNATURE): + return( "X509 - The signature tag or value invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_EXTENSIONS): + return( "X509 - The extension tag or value is invalid" ); + case -(MBEDTLS_ERR_X509_UNKNOWN_VERSION): + return( "X509 - CRT/CRL/CSR has an unsupported version number" ); + case -(MBEDTLS_ERR_X509_UNKNOWN_SIG_ALG): + return( "X509 - Signature algorithm (oid) is unsupported" ); + case -(MBEDTLS_ERR_X509_SIG_MISMATCH): + return( "X509 - Signature algorithms do not match. (see \\c ::mbedtls_x509_crt sig_oid)" ); + case -(MBEDTLS_ERR_X509_CERT_VERIFY_FAILED): + return( "X509 - Certificate verification failed, e.g. CRL, CA or signature check failed" ); + case -(MBEDTLS_ERR_X509_CERT_UNKNOWN_FORMAT): + return( "X509 - Format not recognized as DER or PEM" ); + case -(MBEDTLS_ERR_X509_BAD_INPUT_DATA): + return( "X509 - Input invalid" ); + case -(MBEDTLS_ERR_X509_ALLOC_FAILED): + return( "X509 - Allocation of memory failed" ); + case -(MBEDTLS_ERR_X509_FILE_IO_ERROR): + return( "X509 - Read/write of file failed" ); + case -(MBEDTLS_ERR_X509_BUFFER_TOO_SMALL): + return( "X509 - Destination buffer is too small" ); + case -(MBEDTLS_ERR_X509_FATAL_ERROR): + return( "X509 - A fatal error occurred, eg the chain is too long or the vrfy callback failed" ); +#endif /* MBEDTLS_X509_USE_C || MBEDTLS_X509_CREATE_C */ + /* End Auto-Generated Code. */ + + default: + break; + } + + return NULL; +} + +const char *mbedtls_low_level_strerr(int error_code) +{ + int low_level_error_code; + + if (error_code < 0) { + error_code = -error_code; + } + + /* Extract the low-level part from the error code. */ + low_level_error_code = error_code & ~0xFF80; + + switch (low_level_error_code) { + /* Begin Auto-Generated Code. */ + #if defined(MBEDTLS_AES_C) + case -(MBEDTLS_ERR_AES_INVALID_KEY_LENGTH): + return( "AES - Invalid key length" ); + case -(MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH): + return( "AES - Invalid data input length" ); + case -(MBEDTLS_ERR_AES_BAD_INPUT_DATA): + return( "AES - Invalid input data" ); +#endif /* MBEDTLS_AES_C */ + +#if defined(MBEDTLS_ARIA_C) + case -(MBEDTLS_ERR_ARIA_BAD_INPUT_DATA): + return( "ARIA - Bad input data" ); + case -(MBEDTLS_ERR_ARIA_INVALID_INPUT_LENGTH): + return( "ARIA - Invalid data input length" ); +#endif /* MBEDTLS_ARIA_C */ + +#if defined(MBEDTLS_ASN1_PARSE_C) + case -(MBEDTLS_ERR_ASN1_OUT_OF_DATA): + return( "ASN1 - Out of data when parsing an ASN1 data structure" ); + case -(MBEDTLS_ERR_ASN1_UNEXPECTED_TAG): + return( "ASN1 - ASN1 tag was of an unexpected value" ); + case -(MBEDTLS_ERR_ASN1_INVALID_LENGTH): + return( "ASN1 - Error when trying to determine the length or invalid length" ); + case -(MBEDTLS_ERR_ASN1_LENGTH_MISMATCH): + return( "ASN1 - Actual length differs from expected length" ); + case -(MBEDTLS_ERR_ASN1_INVALID_DATA): + return( "ASN1 - Data is invalid" ); + case -(MBEDTLS_ERR_ASN1_ALLOC_FAILED): + return( "ASN1 - Memory allocation failed" ); + case -(MBEDTLS_ERR_ASN1_BUF_TOO_SMALL): + return( "ASN1 - Buffer too small when writing ASN.1 data structure" ); +#endif /* MBEDTLS_ASN1_PARSE_C */ + +#if defined(MBEDTLS_BASE64_C) + case -(MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL): + return( "BASE64 - Output buffer too small" ); + case -(MBEDTLS_ERR_BASE64_INVALID_CHARACTER): + return( "BASE64 - Invalid character in input" ); +#endif /* MBEDTLS_BASE64_C */ + +#if defined(MBEDTLS_BIGNUM_C) + case -(MBEDTLS_ERR_MPI_FILE_IO_ERROR): + return( "BIGNUM - An error occurred while reading from or writing to a file" ); + case -(MBEDTLS_ERR_MPI_BAD_INPUT_DATA): + return( "BIGNUM - Bad input parameters to function" ); + case -(MBEDTLS_ERR_MPI_INVALID_CHARACTER): + return( "BIGNUM - There is an invalid character in the digit string" ); + case -(MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL): + return( "BIGNUM - The buffer is too small to write to" ); + case -(MBEDTLS_ERR_MPI_NEGATIVE_VALUE): + return( "BIGNUM - The input arguments are negative or result in illegal output" ); + case -(MBEDTLS_ERR_MPI_DIVISION_BY_ZERO): + return( "BIGNUM - The input argument for division is zero, which is not allowed" ); + case -(MBEDTLS_ERR_MPI_NOT_ACCEPTABLE): + return( "BIGNUM - The input arguments are not acceptable" ); + case -(MBEDTLS_ERR_MPI_ALLOC_FAILED): + return( "BIGNUM - Memory allocation failed" ); +#endif /* MBEDTLS_BIGNUM_C */ + +#if defined(MBEDTLS_CAMELLIA_C) + case -(MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA): + return( "CAMELLIA - Bad input data" ); + case -(MBEDTLS_ERR_CAMELLIA_INVALID_INPUT_LENGTH): + return( "CAMELLIA - Invalid data input length" ); +#endif /* MBEDTLS_CAMELLIA_C */ + +#if defined(MBEDTLS_CCM_C) + case -(MBEDTLS_ERR_CCM_BAD_INPUT): + return( "CCM - Bad input parameters to the function" ); + case -(MBEDTLS_ERR_CCM_AUTH_FAILED): + return( "CCM - Authenticated decryption failed" ); +#endif /* MBEDTLS_CCM_C */ + +#if defined(MBEDTLS_CHACHA20_C) + case -(MBEDTLS_ERR_CHACHA20_BAD_INPUT_DATA): + return( "CHACHA20 - Invalid input parameter(s)" ); +#endif /* MBEDTLS_CHACHA20_C */ + +#if defined(MBEDTLS_CHACHAPOLY_C) + case -(MBEDTLS_ERR_CHACHAPOLY_BAD_STATE): + return( "CHACHAPOLY - The requested operation is not permitted in the current state" ); + case -(MBEDTLS_ERR_CHACHAPOLY_AUTH_FAILED): + return( "CHACHAPOLY - Authenticated decryption failed: data was not authentic" ); +#endif /* MBEDTLS_CHACHAPOLY_C */ + +#if defined(MBEDTLS_CTR_DRBG_C) + case -(MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED): + return( "CTR_DRBG - The entropy source failed" ); + case -(MBEDTLS_ERR_CTR_DRBG_REQUEST_TOO_BIG): + return( "CTR_DRBG - The requested random buffer length is too big" ); + case -(MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG): + return( "CTR_DRBG - The input (entropy + additional data) is too large" ); + case -(MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR): + return( "CTR_DRBG - Read or write error in file" ); +#endif /* MBEDTLS_CTR_DRBG_C */ + +#if defined(MBEDTLS_DES_C) + case -(MBEDTLS_ERR_DES_INVALID_INPUT_LENGTH): + return( "DES - The data input has an invalid length" ); +#endif /* MBEDTLS_DES_C */ + +#if defined(MBEDTLS_ENTROPY_C) + case -(MBEDTLS_ERR_ENTROPY_SOURCE_FAILED): + return( "ENTROPY - Critical entropy source failure" ); + case -(MBEDTLS_ERR_ENTROPY_MAX_SOURCES): + return( "ENTROPY - No more sources can be added" ); + case -(MBEDTLS_ERR_ENTROPY_NO_SOURCES_DEFINED): + return( "ENTROPY - No sources have been added to poll" ); + case -(MBEDTLS_ERR_ENTROPY_NO_STRONG_SOURCE): + return( "ENTROPY - No strong sources have been added to poll" ); + case -(MBEDTLS_ERR_ENTROPY_FILE_IO_ERROR): + return( "ENTROPY - Read/write error in file" ); +#endif /* MBEDTLS_ENTROPY_C */ + +#if defined(MBEDTLS_ERROR_C) + case -(MBEDTLS_ERR_ERROR_GENERIC_ERROR): + return( "ERROR - Generic error" ); + case -(MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED): + return( "ERROR - This is a bug in the library" ); +#endif /* MBEDTLS_ERROR_C */ + +#if defined(MBEDTLS_PLATFORM_C) + case -(MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED): + return( "PLATFORM - Hardware accelerator failed" ); + case -(MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED): + return( "PLATFORM - The requested feature is not supported by the platform" ); +#endif /* MBEDTLS_PLATFORM_C */ + +#if defined(MBEDTLS_GCM_C) + case -(MBEDTLS_ERR_GCM_AUTH_FAILED): + return( "GCM - Authenticated decryption failed" ); + case -(MBEDTLS_ERR_GCM_BAD_INPUT): + return( "GCM - Bad input parameters to function" ); + case -(MBEDTLS_ERR_GCM_BUFFER_TOO_SMALL): + return( "GCM - An output buffer is too small" ); +#endif /* MBEDTLS_GCM_C */ + +#if defined(MBEDTLS_HKDF_C) + case -(MBEDTLS_ERR_HKDF_BAD_INPUT_DATA): + return( "HKDF - Bad input parameters to function" ); +#endif /* MBEDTLS_HKDF_C */ + +#if defined(MBEDTLS_HMAC_DRBG_C) + case -(MBEDTLS_ERR_HMAC_DRBG_REQUEST_TOO_BIG): + return( "HMAC_DRBG - Too many random requested in single call" ); + case -(MBEDTLS_ERR_HMAC_DRBG_INPUT_TOO_BIG): + return( "HMAC_DRBG - Input too large (Entropy + additional)" ); + case -(MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR): + return( "HMAC_DRBG - Read/write error in file" ); + case -(MBEDTLS_ERR_HMAC_DRBG_ENTROPY_SOURCE_FAILED): + return( "HMAC_DRBG - The entropy source failed" ); +#endif /* MBEDTLS_HMAC_DRBG_C */ + +#if defined(MBEDTLS_LMS_C) + case -(MBEDTLS_ERR_LMS_BAD_INPUT_DATA): + return( "LMS - Bad data has been input to an LMS function" ); + case -(MBEDTLS_ERR_LMS_OUT_OF_PRIVATE_KEYS): + return( "LMS - Specified LMS key has utilised all of its private keys" ); + case -(MBEDTLS_ERR_LMS_VERIFY_FAILED): + return( "LMS - LMS signature verification failed" ); + case -(MBEDTLS_ERR_LMS_ALLOC_FAILED): + return( "LMS - LMS failed to allocate space for a private key" ); + case -(MBEDTLS_ERR_LMS_BUFFER_TOO_SMALL): + return( "LMS - Input/output buffer is too small to contain requited data" ); +#endif /* MBEDTLS_LMS_C */ + +#if defined(MBEDTLS_NET_C) + case -(MBEDTLS_ERR_NET_SOCKET_FAILED): + return( "NET - Failed to open a socket" ); + case -(MBEDTLS_ERR_NET_CONNECT_FAILED): + return( "NET - The connection to the given server / port failed" ); + case -(MBEDTLS_ERR_NET_BIND_FAILED): + return( "NET - Binding of the socket failed" ); + case -(MBEDTLS_ERR_NET_LISTEN_FAILED): + return( "NET - Could not listen on the socket" ); + case -(MBEDTLS_ERR_NET_ACCEPT_FAILED): + return( "NET - Could not accept the incoming connection" ); + case -(MBEDTLS_ERR_NET_RECV_FAILED): + return( "NET - Reading information from the socket failed" ); + case -(MBEDTLS_ERR_NET_SEND_FAILED): + return( "NET - Sending information through the socket failed" ); + case -(MBEDTLS_ERR_NET_CONN_RESET): + return( "NET - Connection was reset by peer" ); + case -(MBEDTLS_ERR_NET_UNKNOWN_HOST): + return( "NET - Failed to get an IP address for the given hostname" ); + case -(MBEDTLS_ERR_NET_BUFFER_TOO_SMALL): + return( "NET - Buffer is too small to hold the data" ); + case -(MBEDTLS_ERR_NET_INVALID_CONTEXT): + return( "NET - The context is invalid, eg because it was free()ed" ); + case -(MBEDTLS_ERR_NET_POLL_FAILED): + return( "NET - Polling the net context failed" ); + case -(MBEDTLS_ERR_NET_BAD_INPUT_DATA): + return( "NET - Input invalid" ); +#endif /* MBEDTLS_NET_C */ + +#if defined(MBEDTLS_OID_C) + case -(MBEDTLS_ERR_OID_NOT_FOUND): + return( "OID - OID is not found" ); + case -(MBEDTLS_ERR_OID_BUF_TOO_SMALL): + return( "OID - output buffer is too small" ); +#endif /* MBEDTLS_OID_C */ + +#if defined(MBEDTLS_POLY1305_C) + case -(MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA): + return( "POLY1305 - Invalid input parameter(s)" ); +#endif /* MBEDTLS_POLY1305_C */ + +#if defined(MBEDTLS_SHA1_C) + case -(MBEDTLS_ERR_SHA1_BAD_INPUT_DATA): + return( "SHA1 - SHA-1 input data was malformed" ); +#endif /* MBEDTLS_SHA1_C */ + +#if defined(MBEDTLS_SHA256_C) + case -(MBEDTLS_ERR_SHA256_BAD_INPUT_DATA): + return( "SHA256 - SHA-256 input data was malformed" ); +#endif /* MBEDTLS_SHA256_C */ + +#if defined(MBEDTLS_SHA3_C) + case -(MBEDTLS_ERR_SHA3_BAD_INPUT_DATA): + return( "SHA3 - SHA-3 input data was malformed" ); +#endif /* MBEDTLS_SHA3_C */ + +#if defined(MBEDTLS_SHA512_C) + case -(MBEDTLS_ERR_SHA512_BAD_INPUT_DATA): + return( "SHA512 - SHA-512 input data was malformed" ); +#endif /* MBEDTLS_SHA512_C */ + +#if defined(MBEDTLS_THREADING_C) + case -(MBEDTLS_ERR_THREADING_BAD_INPUT_DATA): + return( "THREADING - Bad input parameters to function" ); + case -(MBEDTLS_ERR_THREADING_MUTEX_ERROR): + return( "THREADING - Locking / unlocking / free failed with error code" ); +#endif /* MBEDTLS_THREADING_C */ + /* End Auto-Generated Code. */ + + default: + break; + } + + return NULL; +} + +void mbedtls_strerror(int ret, char *buf, size_t buflen) +{ + size_t len; + int use_ret; + const char *high_level_error_description = NULL; + const char *low_level_error_description = NULL; + + if (buflen == 0) { + return; + } + + memset(buf, 0x00, buflen); + + if (ret < 0) { + ret = -ret; + } + + if (ret & 0xFF80) { + use_ret = ret & 0xFF80; + + // Translate high level error code. + high_level_error_description = mbedtls_high_level_strerr(ret); + + if (high_level_error_description == NULL) { + mbedtls_snprintf(buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret); + } else { + mbedtls_snprintf(buf, buflen, "%s", high_level_error_description); + } + +#if defined(MBEDTLS_SSL_TLS_C) + // Early return in case of a fatal error - do not try to translate low + // level code. + if (use_ret == -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE)) { + return; + } +#endif /* MBEDTLS_SSL_TLS_C */ + } + + use_ret = ret & ~0xFF80; + + if (use_ret == 0) { + return; + } + + // If high level code is present, make a concatenation between both + // error strings. + // + len = strlen(buf); + + if (len > 0) { + if (buflen - len < 5) { + return; + } + + mbedtls_snprintf(buf + len, buflen - len, " : "); + + buf += len + 3; + buflen -= len + 3; + } + + // Translate low level error code. + low_level_error_description = mbedtls_low_level_strerr(ret); + + if (low_level_error_description == NULL) { + mbedtls_snprintf(buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret); + } else { + mbedtls_snprintf(buf, buflen, "%s", low_level_error_description); + } +} + +#else /* MBEDTLS_ERROR_C */ + +/* + * Provide a dummy implementation when MBEDTLS_ERROR_C is not defined + */ +void mbedtls_strerror(int ret, char *buf, size_t buflen) +{ + ((void) ret); + + if (buflen > 0) { + buf[0] = '\0'; + } +} + +#endif /* MBEDTLS_ERROR_C */ + +#endif /* MBEDTLS_ERROR_C || MBEDTLS_ERROR_STRERROR_DUMMY */ 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..8a9f01e 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..b621e60 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..5bd1325 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c b/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c new file mode 100644 index 0000000..de8a526 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c @@ -0,0 +1,256 @@ +/* + * Functions to delegate cryptographic operations to an available + * and appropriate accelerator. + * Warning: This file is now auto-generated. + */ +/* Copyright The Mbed TLS Contributors + * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later + */ + + +/* BEGIN-common headers */ +#include "common.h" +#include "psa_crypto_aead.h" +#include "psa_crypto_cipher.h" +#include "psa_crypto_core.h" +#include "psa_crypto_driver_wrappers_no_static.h" +#include "psa_crypto_hash.h" +#include "psa_crypto_mac.h" +#include "psa_crypto_pake.h" +#include "psa_crypto_rsa.h" + +#include "mbedtls/platform.h" +/* END-common headers */ + +#if defined(MBEDTLS_PSA_CRYPTO_C) + +/* BEGIN-driver headers */ +/* Headers for mbedtls_test opaque driver */ +#if defined(PSA_CRYPTO_DRIVER_TEST) +#include "test/drivers/test_driver.h" + +#endif +/* Headers for mbedtls_test transparent driver */ +#if defined(PSA_CRYPTO_DRIVER_TEST) +#include "test/drivers/test_driver.h" + +#endif +/* Headers for p256 transparent driver */ +#if defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) +#include "../3rdparty/p256-m/p256-m_driver_entrypoints.h" + +#endif + +/* END-driver headers */ + +/* Auto-generated values depending on which drivers are registered. + * ID 0 is reserved for unallocated operations. + * ID 1 is reserved for the Mbed TLS software driver. */ +/* BEGIN-driver id definition */ +#define PSA_CRYPTO_MBED_TLS_DRIVER_ID (1) +#define MBEDTLS_TEST_OPAQUE_DRIVER_ID (2) +#define MBEDTLS_TEST_TRANSPARENT_DRIVER_ID (3) +#define P256_TRANSPARENT_DRIVER_ID (4) + +/* END-driver id */ + +/* BEGIN-Common Macro definitions */ + +/* END-Common Macro definitions */ + +/* Support the 'old' SE interface when asked to */ +#if defined(MBEDTLS_PSA_CRYPTO_SE_C) +/* PSA_CRYPTO_DRIVER_PRESENT is defined when either a new-style or old-style + * SE driver is present, to avoid unused argument errors at compile time. */ +#ifndef PSA_CRYPTO_DRIVER_PRESENT +#define PSA_CRYPTO_DRIVER_PRESENT +#endif +#include "psa_crypto_se.h" +#endif + +/** Get the key buffer size required to store the key material of a key + * associated with an opaque driver. + * + * \param[in] attributes The key attributes. + * \param[out] key_buffer_size Minimum buffer size to contain the key material + * + * \retval #PSA_SUCCESS + * The minimum size for a buffer to contain the key material has been + * returned successfully. + * \retval #PSA_ERROR_NOT_SUPPORTED + * The type and/or the size in bits of the key or the combination of + * the two is not supported. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The key is declared with a lifetime not known to us. + */ +psa_status_t psa_driver_wrapper_get_key_buffer_size( + const psa_key_attributes_t *attributes, + size_t *key_buffer_size ) +{ + psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( psa_get_key_lifetime(attributes) ); + psa_key_type_t key_type = psa_get_key_type(attributes); + size_t key_bits = psa_get_key_bits(attributes); + + *key_buffer_size = 0; + switch( location ) + { +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: +#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS) + /* Emulate property 'builtin_key_size' */ + if( psa_key_id_is_builtin( + MBEDTLS_SVC_KEY_ID_GET_KEY_ID( + psa_get_key_id( attributes ) ) ) ) + { + *key_buffer_size = sizeof( psa_drv_slot_number_t ); + return( PSA_SUCCESS ); + } +#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */ + *key_buffer_size = mbedtls_test_opaque_size_function( key_type, + key_bits ); + return( ( *key_buffer_size != 0 ) ? + PSA_SUCCESS : PSA_ERROR_NOT_SUPPORTED ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ + + default: + (void)key_type; + (void)key_bits; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_export_public_key( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, size_t key_buffer_size, + uint8_t *data, size_t data_size, size_t *data_length ) + +{ + + psa_status_t status = PSA_ERROR_INVALID_ARGUMENT; + psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( + psa_get_key_lifetime( attributes ) ); + + /* Try dynamically-registered SE interface first */ +#if defined(MBEDTLS_PSA_CRYPTO_SE_C) + const psa_drv_se_t *drv; + psa_drv_se_context_t *drv_context; + + if( psa_get_se_driver( psa_get_key_lifetime(attributes), &drv, &drv_context ) ) + { + if( ( drv->key_management == NULL ) || + ( drv->key_management->p_export_public == NULL ) ) + { + return( PSA_ERROR_NOT_SUPPORTED ); + } + + return( drv->key_management->p_export_public( + drv_context, + *( (psa_key_slot_number_t *)key_buffer ), + data, data_size, data_length ) ); + } +#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ + + switch( location ) + { + case PSA_KEY_LOCATION_LOCAL_STORAGE: + /* Key is stored in the slot in export representation, so + * cycle through all known transparent accelerators */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) + +#if (defined(PSA_CRYPTO_DRIVER_TEST) ) + status = mbedtls_test_transparent_export_public_key + (attributes, + key_buffer, + key_buffer_size, + data, + data_size, + data_length + ); + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif + +#if (defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) ) + status = p256_transparent_export_public_key + (attributes, + key_buffer, + key_buffer_size, + data, + data_size, + data_length + ); + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif + + +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + /* Fell through, meaning no accelerator supports this operation */ + return( psa_export_public_key_internal( attributes, + key_buffer, + key_buffer_size, + data, + data_size, + data_length ) ); + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) + +#if (defined(PSA_CRYPTO_DRIVER_TEST) ) + case 0x7fffff: + return( mbedtls_test_opaque_export_public_key + (attributes, + key_buffer, + key_buffer_size, + data, + data_size, + data_length + )); +#endif + + +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + /* Key is declared with a lifetime not known to us */ + return( status ); + } + +} + +psa_status_t psa_driver_wrapper_get_builtin_key( + psa_drv_slot_number_t slot_number, + psa_key_attributes_t *attributes, + uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length ) +{ + + psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( psa_get_key_lifetime(attributes) ); + switch( location ) + { +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) + +#if (defined(PSA_CRYPTO_DRIVER_TEST) ) + case 0x7fffff: + return( mbedtls_test_opaque_get_builtin_key + (slot_number, + attributes, + key_buffer, + key_buffer_size, + key_buffer_length + )); +#endif + + +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + (void) slot_number; + (void) key_buffer; + (void) key_buffer_size; + (void) key_buffer_length; + return( PSA_ERROR_DOES_NOT_EXIST ); + } + +} + +#endif /* MBEDTLS_PSA_CRYPTO_C */ diff --git a/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c b/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c new file mode 100644 index 0000000..808fce7 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c @@ -0,0 +1,251 @@ +/* Automatically generated by generate_ssl_debug_helpers.py. DO NOT EDIT. */ + +/** + * \file ssl_debug_helpers_generated.c + * + * \brief Automatically generated helper functions for debugging + */ +/* + * Copyright The Mbed TLS Contributors + * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later + * + */ + +#include "ssl_misc.h" + +#if defined(MBEDTLS_DEBUG_C) + +#include "ssl_debug_helpers.h" + + +const char *mbedtls_ssl_named_group_to_str( uint16_t in ) +{ + switch( in ) + { + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP192K1: + return "secp192k1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP192R1: + return "secp192r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP224K1: + return "secp224k1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP224R1: + return "secp224r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP256K1: + return "secp256k1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP256R1: + return "secp256r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP384R1: + return "secp384r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP521R1: + return "secp521r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_BP256R1: + return "bp256r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_BP384R1: + return "bp384r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_BP512R1: + return "bp512r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_X25519: + return "x25519"; + case MBEDTLS_SSL_IANA_TLS_GROUP_X448: + return "x448"; + case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE2048: + return "ffdhe2048"; + case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE3072: + return "ffdhe3072"; + case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE4096: + return "ffdhe4096"; + case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE6144: + return "ffdhe6144"; + case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE8192: + return "ffdhe8192"; + }; + + return "UNKNOWN"; +} +const char *mbedtls_ssl_sig_alg_to_str( uint16_t in ) +{ + switch( in ) + { + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA256: + return "rsa_pkcs1_sha256"; + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA384: + return "rsa_pkcs1_sha384"; + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA512: + return "rsa_pkcs1_sha512"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SECP256R1_SHA256: + return "ecdsa_secp256r1_sha256"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SECP384R1_SHA384: + return "ecdsa_secp384r1_sha384"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SECP521R1_SHA512: + return "ecdsa_secp521r1_sha512"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA256: + return "rsa_pss_rsae_sha256"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA384: + return "rsa_pss_rsae_sha384"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA512: + return "rsa_pss_rsae_sha512"; + case MBEDTLS_TLS1_3_SIG_ED25519: + return "ed25519"; + case MBEDTLS_TLS1_3_SIG_ED448: + return "ed448"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA256: + return "rsa_pss_pss_sha256"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA384: + return "rsa_pss_pss_sha384"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA512: + return "rsa_pss_pss_sha512"; + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA1: + return "rsa_pkcs1_sha1"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SHA1: + return "ecdsa_sha1"; + case MBEDTLS_TLS1_3_SIG_NONE: + return "none"; + }; + + return "UNKNOWN"; +} +const char *mbedtls_ssl_states_str( mbedtls_ssl_states in ) +{ + switch (in) { + case MBEDTLS_SSL_HELLO_REQUEST: + return "MBEDTLS_SSL_HELLO_REQUEST"; + case MBEDTLS_SSL_CLIENT_HELLO: + return "MBEDTLS_SSL_CLIENT_HELLO"; + case MBEDTLS_SSL_SERVER_HELLO: + return "MBEDTLS_SSL_SERVER_HELLO"; + case MBEDTLS_SSL_SERVER_CERTIFICATE: + return "MBEDTLS_SSL_SERVER_CERTIFICATE"; + case MBEDTLS_SSL_SERVER_KEY_EXCHANGE: + return "MBEDTLS_SSL_SERVER_KEY_EXCHANGE"; + case MBEDTLS_SSL_CERTIFICATE_REQUEST: + return "MBEDTLS_SSL_CERTIFICATE_REQUEST"; + case MBEDTLS_SSL_SERVER_HELLO_DONE: + return "MBEDTLS_SSL_SERVER_HELLO_DONE"; + case MBEDTLS_SSL_CLIENT_CERTIFICATE: + return "MBEDTLS_SSL_CLIENT_CERTIFICATE"; + case MBEDTLS_SSL_CLIENT_KEY_EXCHANGE: + return "MBEDTLS_SSL_CLIENT_KEY_EXCHANGE"; + case MBEDTLS_SSL_CERTIFICATE_VERIFY: + return "MBEDTLS_SSL_CERTIFICATE_VERIFY"; + case MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC: + return "MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC"; + case MBEDTLS_SSL_CLIENT_FINISHED: + return "MBEDTLS_SSL_CLIENT_FINISHED"; + case MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC: + return "MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC"; + case MBEDTLS_SSL_SERVER_FINISHED: + return "MBEDTLS_SSL_SERVER_FINISHED"; + case MBEDTLS_SSL_FLUSH_BUFFERS: + return "MBEDTLS_SSL_FLUSH_BUFFERS"; + case MBEDTLS_SSL_HANDSHAKE_WRAPUP: + return "MBEDTLS_SSL_HANDSHAKE_WRAPUP"; + case MBEDTLS_SSL_NEW_SESSION_TICKET: + return "MBEDTLS_SSL_NEW_SESSION_TICKET"; + case MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT: + return "MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT"; + case MBEDTLS_SSL_HELLO_RETRY_REQUEST: + return "MBEDTLS_SSL_HELLO_RETRY_REQUEST"; + case MBEDTLS_SSL_ENCRYPTED_EXTENSIONS: + return "MBEDTLS_SSL_ENCRYPTED_EXTENSIONS"; + case MBEDTLS_SSL_END_OF_EARLY_DATA: + return "MBEDTLS_SSL_END_OF_EARLY_DATA"; + case MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY: + return "MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY"; + case MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED: + return "MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED"; + case MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO: + return "MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO"; + case MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO: + return "MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO"; + case MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO: + return "MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO"; + case MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST: + return "MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST"; + case MBEDTLS_SSL_HANDSHAKE_OVER: + return "MBEDTLS_SSL_HANDSHAKE_OVER"; + case MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET: + return "MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET"; + case MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH: + return "MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH"; + default: + return "UNKNOWN_VALUE"; + } +} + +#if defined(MBEDTLS_SSL_EARLY_DATA) && defined(MBEDTLS_SSL_CLI_C) +const char *mbedtls_ssl_early_data_status_str( mbedtls_ssl_early_data_status in ) +{ + switch (in) { + case MBEDTLS_SSL_EARLY_DATA_STATUS_NOT_INDICATED: + return "MBEDTLS_SSL_EARLY_DATA_STATUS_NOT_INDICATED"; + case MBEDTLS_SSL_EARLY_DATA_STATUS_ACCEPTED: + return "MBEDTLS_SSL_EARLY_DATA_STATUS_ACCEPTED"; + case MBEDTLS_SSL_EARLY_DATA_STATUS_REJECTED: + return "MBEDTLS_SSL_EARLY_DATA_STATUS_REJECTED"; + default: + return "UNKNOWN_VALUE"; + } +} + +#endif /* defined(MBEDTLS_SSL_EARLY_DATA) && defined(MBEDTLS_SSL_CLI_C) */ +const char *mbedtls_ssl_protocol_version_str( mbedtls_ssl_protocol_version in ) +{ + switch (in) { + case MBEDTLS_SSL_VERSION_UNKNOWN: + return "MBEDTLS_SSL_VERSION_UNKNOWN"; + case MBEDTLS_SSL_VERSION_TLS1_2: + return "MBEDTLS_SSL_VERSION_TLS1_2"; + case MBEDTLS_SSL_VERSION_TLS1_3: + return "MBEDTLS_SSL_VERSION_TLS1_3"; + default: + return "UNKNOWN_VALUE"; + } +} + +const char *mbedtls_tls_prf_types_str( mbedtls_tls_prf_types in ) +{ + switch (in) { + case MBEDTLS_SSL_TLS_PRF_NONE: + return "MBEDTLS_SSL_TLS_PRF_NONE"; + case MBEDTLS_SSL_TLS_PRF_SHA384: + return "MBEDTLS_SSL_TLS_PRF_SHA384"; + case MBEDTLS_SSL_TLS_PRF_SHA256: + return "MBEDTLS_SSL_TLS_PRF_SHA256"; + case MBEDTLS_SSL_HKDF_EXPAND_SHA384: + return "MBEDTLS_SSL_HKDF_EXPAND_SHA384"; + case MBEDTLS_SSL_HKDF_EXPAND_SHA256: + return "MBEDTLS_SSL_HKDF_EXPAND_SHA256"; + default: + return "UNKNOWN_VALUE"; + } +} + +const char *mbedtls_ssl_key_export_type_str( mbedtls_ssl_key_export_type in ) +{ + switch (in) { + case MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET"; +#if defined(MBEDTLS_SSL_PROTO_TLS1_3) + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET"; +#endif + default: + return "UNKNOWN_VALUE"; + } +} + + + +#endif /* MBEDTLS_DEBUG_C */ +/* End of automatically generated file. */ + diff --git a/build/esp-idf/mbedtls/mbedtls/library/version_features.c b/build/esp-idf/mbedtls/mbedtls/library/version_features.c new file mode 100644 index 0000000..4fd1029 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/version_features.c @@ -0,0 +1,853 @@ +/* + * Version feature information + * + * Copyright The Mbed TLS Contributors + * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later + */ + +#include "common.h" + +#if defined(MBEDTLS_VERSION_C) + +#include "mbedtls/version.h" + +#include + +static const char * const features[] = { +#if defined(MBEDTLS_VERSION_FEATURES) + #if defined(MBEDTLS_HAVE_ASM) + "HAVE_ASM", //no-check-names +#endif /* MBEDTLS_HAVE_ASM */ +#if defined(MBEDTLS_NO_UDBL_DIVISION) + "NO_UDBL_DIVISION", //no-check-names +#endif /* MBEDTLS_NO_UDBL_DIVISION */ +#if defined(MBEDTLS_NO_64BIT_MULTIPLICATION) + "NO_64BIT_MULTIPLICATION", //no-check-names +#endif /* MBEDTLS_NO_64BIT_MULTIPLICATION */ +#if defined(MBEDTLS_HAVE_SSE2) + "HAVE_SSE2", //no-check-names +#endif /* MBEDTLS_HAVE_SSE2 */ +#if defined(MBEDTLS_HAVE_TIME) + "HAVE_TIME", //no-check-names +#endif /* MBEDTLS_HAVE_TIME */ +#if defined(MBEDTLS_HAVE_TIME_DATE) + "HAVE_TIME_DATE", //no-check-names +#endif /* MBEDTLS_HAVE_TIME_DATE */ +#if defined(MBEDTLS_PLATFORM_MEMORY) + "PLATFORM_MEMORY", //no-check-names +#endif /* MBEDTLS_PLATFORM_MEMORY */ +#if defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS) + "PLATFORM_NO_STD_FUNCTIONS", //no-check-names +#endif /* MBEDTLS_PLATFORM_NO_STD_FUNCTIONS */ +#if defined(MBEDTLS_PLATFORM_SETBUF_ALT) + "PLATFORM_SETBUF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_SETBUF_ALT */ +#if defined(MBEDTLS_PLATFORM_EXIT_ALT) + "PLATFORM_EXIT_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_EXIT_ALT */ +#if defined(MBEDTLS_PLATFORM_TIME_ALT) + "PLATFORM_TIME_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_TIME_ALT */ +#if defined(MBEDTLS_PLATFORM_FPRINTF_ALT) + "PLATFORM_FPRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_FPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_PRINTF_ALT) + "PLATFORM_PRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_PRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) + "PLATFORM_SNPRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_SNPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT) + "PLATFORM_VSNPRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_VSNPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_NV_SEED_ALT) + "PLATFORM_NV_SEED_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_NV_SEED_ALT */ +#if defined(MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT) + "PLATFORM_SETUP_TEARDOWN_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT */ +#if defined(MBEDTLS_PLATFORM_MS_TIME_ALT) + "PLATFORM_MS_TIME_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_MS_TIME_ALT */ +#if defined(MBEDTLS_PLATFORM_GMTIME_R_ALT) + "PLATFORM_GMTIME_R_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_GMTIME_R_ALT */ +#if defined(MBEDTLS_PLATFORM_ZEROIZE_ALT) + "PLATFORM_ZEROIZE_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_ZEROIZE_ALT */ +#if defined(MBEDTLS_DEPRECATED_WARNING) + "DEPRECATED_WARNING", //no-check-names +#endif /* MBEDTLS_DEPRECATED_WARNING */ +#if defined(MBEDTLS_DEPRECATED_REMOVED) + "DEPRECATED_REMOVED", //no-check-names +#endif /* MBEDTLS_DEPRECATED_REMOVED */ +#if defined(MBEDTLS_TIMING_ALT) + "TIMING_ALT", //no-check-names +#endif /* MBEDTLS_TIMING_ALT */ +#if defined(MBEDTLS_AES_ALT) + "AES_ALT", //no-check-names +#endif /* MBEDTLS_AES_ALT */ +#if defined(MBEDTLS_ARIA_ALT) + "ARIA_ALT", //no-check-names +#endif /* MBEDTLS_ARIA_ALT */ +#if defined(MBEDTLS_CAMELLIA_ALT) + "CAMELLIA_ALT", //no-check-names +#endif /* MBEDTLS_CAMELLIA_ALT */ +#if defined(MBEDTLS_CCM_ALT) + "CCM_ALT", //no-check-names +#endif /* MBEDTLS_CCM_ALT */ +#if defined(MBEDTLS_CHACHA20_ALT) + "CHACHA20_ALT", //no-check-names +#endif /* MBEDTLS_CHACHA20_ALT */ +#if defined(MBEDTLS_CHACHAPOLY_ALT) + "CHACHAPOLY_ALT", //no-check-names +#endif /* MBEDTLS_CHACHAPOLY_ALT */ +#if defined(MBEDTLS_CMAC_ALT) + "CMAC_ALT", //no-check-names +#endif /* MBEDTLS_CMAC_ALT */ +#if defined(MBEDTLS_DES_ALT) + "DES_ALT", //no-check-names +#endif /* MBEDTLS_DES_ALT */ +#if defined(MBEDTLS_DHM_ALT) + "DHM_ALT", //no-check-names +#endif /* MBEDTLS_DHM_ALT */ +#if defined(MBEDTLS_ECJPAKE_ALT) + "ECJPAKE_ALT", //no-check-names +#endif /* MBEDTLS_ECJPAKE_ALT */ +#if defined(MBEDTLS_GCM_ALT) + "GCM_ALT", //no-check-names +#endif /* MBEDTLS_GCM_ALT */ +#if defined(MBEDTLS_NIST_KW_ALT) + "NIST_KW_ALT", //no-check-names +#endif /* MBEDTLS_NIST_KW_ALT */ +#if defined(MBEDTLS_MD5_ALT) + "MD5_ALT", //no-check-names +#endif /* MBEDTLS_MD5_ALT */ +#if defined(MBEDTLS_POLY1305_ALT) + "POLY1305_ALT", //no-check-names +#endif /* MBEDTLS_POLY1305_ALT */ +#if defined(MBEDTLS_RIPEMD160_ALT) + "RIPEMD160_ALT", //no-check-names +#endif /* MBEDTLS_RIPEMD160_ALT */ +#if defined(MBEDTLS_RSA_ALT) + "RSA_ALT", //no-check-names +#endif /* MBEDTLS_RSA_ALT */ +#if defined(MBEDTLS_SHA1_ALT) + "SHA1_ALT", //no-check-names +#endif /* MBEDTLS_SHA1_ALT */ +#if defined(MBEDTLS_SHA256_ALT) + "SHA256_ALT", //no-check-names +#endif /* MBEDTLS_SHA256_ALT */ +#if defined(MBEDTLS_SHA512_ALT) + "SHA512_ALT", //no-check-names +#endif /* MBEDTLS_SHA512_ALT */ +#if defined(MBEDTLS_ECP_ALT) + "ECP_ALT", //no-check-names +#endif /* MBEDTLS_ECP_ALT */ +#if defined(MBEDTLS_MD5_PROCESS_ALT) + "MD5_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_MD5_PROCESS_ALT */ +#if defined(MBEDTLS_RIPEMD160_PROCESS_ALT) + "RIPEMD160_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_RIPEMD160_PROCESS_ALT */ +#if defined(MBEDTLS_SHA1_PROCESS_ALT) + "SHA1_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_SHA1_PROCESS_ALT */ +#if defined(MBEDTLS_SHA256_PROCESS_ALT) + "SHA256_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_SHA256_PROCESS_ALT */ +#if defined(MBEDTLS_SHA512_PROCESS_ALT) + "SHA512_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_SHA512_PROCESS_ALT */ +#if defined(MBEDTLS_DES_SETKEY_ALT) + "DES_SETKEY_ALT", //no-check-names +#endif /* MBEDTLS_DES_SETKEY_ALT */ +#if defined(MBEDTLS_DES_CRYPT_ECB_ALT) + "DES_CRYPT_ECB_ALT", //no-check-names +#endif /* MBEDTLS_DES_CRYPT_ECB_ALT */ +#if defined(MBEDTLS_DES3_CRYPT_ECB_ALT) + "DES3_CRYPT_ECB_ALT", //no-check-names +#endif /* MBEDTLS_DES3_CRYPT_ECB_ALT */ +#if defined(MBEDTLS_AES_SETKEY_ENC_ALT) + "AES_SETKEY_ENC_ALT", //no-check-names +#endif /* MBEDTLS_AES_SETKEY_ENC_ALT */ +#if defined(MBEDTLS_AES_SETKEY_DEC_ALT) + "AES_SETKEY_DEC_ALT", //no-check-names +#endif /* MBEDTLS_AES_SETKEY_DEC_ALT */ +#if defined(MBEDTLS_AES_ENCRYPT_ALT) + "AES_ENCRYPT_ALT", //no-check-names +#endif /* MBEDTLS_AES_ENCRYPT_ALT */ +#if defined(MBEDTLS_AES_DECRYPT_ALT) + "AES_DECRYPT_ALT", //no-check-names +#endif /* MBEDTLS_AES_DECRYPT_ALT */ +#if defined(MBEDTLS_ECDH_GEN_PUBLIC_ALT) + "ECDH_GEN_PUBLIC_ALT", //no-check-names +#endif /* MBEDTLS_ECDH_GEN_PUBLIC_ALT */ +#if defined(MBEDTLS_ECDH_COMPUTE_SHARED_ALT) + "ECDH_COMPUTE_SHARED_ALT", //no-check-names +#endif /* MBEDTLS_ECDH_COMPUTE_SHARED_ALT */ +#if defined(MBEDTLS_ECDSA_VERIFY_ALT) + "ECDSA_VERIFY_ALT", //no-check-names +#endif /* MBEDTLS_ECDSA_VERIFY_ALT */ +#if defined(MBEDTLS_ECDSA_SIGN_ALT) + "ECDSA_SIGN_ALT", //no-check-names +#endif /* MBEDTLS_ECDSA_SIGN_ALT */ +#if defined(MBEDTLS_ECDSA_GENKEY_ALT) + "ECDSA_GENKEY_ALT", //no-check-names +#endif /* MBEDTLS_ECDSA_GENKEY_ALT */ +#if defined(MBEDTLS_ECP_INTERNAL_ALT) + "ECP_INTERNAL_ALT", //no-check-names +#endif /* MBEDTLS_ECP_INTERNAL_ALT */ +#if defined(MBEDTLS_ECP_NO_FALLBACK) + "ECP_NO_FALLBACK", //no-check-names +#endif /* MBEDTLS_ECP_NO_FALLBACK */ +#if defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT) + "ECP_RANDOMIZE_JAC_ALT", //no-check-names +#endif /* MBEDTLS_ECP_RANDOMIZE_JAC_ALT */ +#if defined(MBEDTLS_ECP_ADD_MIXED_ALT) + "ECP_ADD_MIXED_ALT", //no-check-names +#endif /* MBEDTLS_ECP_ADD_MIXED_ALT */ +#if defined(MBEDTLS_ECP_DOUBLE_JAC_ALT) + "ECP_DOUBLE_JAC_ALT", //no-check-names +#endif /* MBEDTLS_ECP_DOUBLE_JAC_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT) + "ECP_NORMALIZE_JAC_MANY_ALT", //no-check-names +#endif /* MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT) + "ECP_NORMALIZE_JAC_ALT", //no-check-names +#endif /* MBEDTLS_ECP_NORMALIZE_JAC_ALT */ +#if defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT) + "ECP_DOUBLE_ADD_MXZ_ALT", //no-check-names +#endif /* MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT */ +#if defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT) + "ECP_RANDOMIZE_MXZ_ALT", //no-check-names +#endif /* MBEDTLS_ECP_RANDOMIZE_MXZ_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT) + "ECP_NORMALIZE_MXZ_ALT", //no-check-names +#endif /* MBEDTLS_ECP_NORMALIZE_MXZ_ALT */ +#if defined(MBEDTLS_ENTROPY_HARDWARE_ALT) + "ENTROPY_HARDWARE_ALT", //no-check-names +#endif /* MBEDTLS_ENTROPY_HARDWARE_ALT */ +#if defined(MBEDTLS_AES_ROM_TABLES) + "AES_ROM_TABLES", //no-check-names +#endif /* MBEDTLS_AES_ROM_TABLES */ +#if defined(MBEDTLS_AES_FEWER_TABLES) + "AES_FEWER_TABLES", //no-check-names +#endif /* MBEDTLS_AES_FEWER_TABLES */ +#if defined(MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH) + "AES_ONLY_128_BIT_KEY_LENGTH", //no-check-names +#endif /* MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH */ +#if defined(MBEDTLS_AES_USE_HARDWARE_ONLY) + "AES_USE_HARDWARE_ONLY", //no-check-names +#endif /* MBEDTLS_AES_USE_HARDWARE_ONLY */ +#if defined(MBEDTLS_CAMELLIA_SMALL_MEMORY) + "CAMELLIA_SMALL_MEMORY", //no-check-names +#endif /* MBEDTLS_CAMELLIA_SMALL_MEMORY */ +#if defined(MBEDTLS_CHECK_RETURN_WARNING) + "CHECK_RETURN_WARNING", //no-check-names +#endif /* MBEDTLS_CHECK_RETURN_WARNING */ +#if defined(MBEDTLS_CIPHER_MODE_CBC) + "CIPHER_MODE_CBC", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_CBC */ +#if defined(MBEDTLS_CIPHER_MODE_CFB) + "CIPHER_MODE_CFB", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_CFB */ +#if defined(MBEDTLS_CIPHER_MODE_CTR) + "CIPHER_MODE_CTR", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_CTR */ +#if defined(MBEDTLS_CIPHER_MODE_OFB) + "CIPHER_MODE_OFB", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_OFB */ +#if defined(MBEDTLS_CIPHER_MODE_XTS) + "CIPHER_MODE_XTS", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_XTS */ +#if defined(MBEDTLS_CIPHER_NULL_CIPHER) + "CIPHER_NULL_CIPHER", //no-check-names +#endif /* MBEDTLS_CIPHER_NULL_CIPHER */ +#if defined(MBEDTLS_CIPHER_PADDING_PKCS7) + "CIPHER_PADDING_PKCS7", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_PKCS7 */ +#if defined(MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS) + "CIPHER_PADDING_ONE_AND_ZEROS", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS */ +#if defined(MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN) + "CIPHER_PADDING_ZEROS_AND_LEN", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN */ +#if defined(MBEDTLS_CIPHER_PADDING_ZEROS) + "CIPHER_PADDING_ZEROS", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_ZEROS */ +#if defined(MBEDTLS_CTR_DRBG_USE_128_BIT_KEY) + "CTR_DRBG_USE_128_BIT_KEY", //no-check-names +#endif /* MBEDTLS_CTR_DRBG_USE_128_BIT_KEY */ +#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED) + "ECDH_VARIANT_EVEREST_ENABLED", //no-check-names +#endif /* MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED) + "ECP_DP_SECP192R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP192R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED) + "ECP_DP_SECP224R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP224R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) + "ECP_DP_SECP256R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP256R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED) + "ECP_DP_SECP384R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP384R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED) + "ECP_DP_SECP521R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP521R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED) + "ECP_DP_SECP192K1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP192K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED) + "ECP_DP_SECP224K1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP224K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED) + "ECP_DP_SECP256K1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP256K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP256R1_ENABLED) + "ECP_DP_BP256R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_BP256R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP384R1_ENABLED) + "ECP_DP_BP384R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_BP384R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP512R1_ENABLED) + "ECP_DP_BP512R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_BP512R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) + "ECP_DP_CURVE25519_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_CURVE25519_ENABLED */ +#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED) + "ECP_DP_CURVE448_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_CURVE448_ENABLED */ +#if defined(MBEDTLS_ECP_NIST_OPTIM) + "ECP_NIST_OPTIM", //no-check-names +#endif /* MBEDTLS_ECP_NIST_OPTIM */ +#if defined(MBEDTLS_ECP_RESTARTABLE) + "ECP_RESTARTABLE", //no-check-names +#endif /* MBEDTLS_ECP_RESTARTABLE */ +#if defined(MBEDTLS_ECP_WITH_MPI_UINT) + "ECP_WITH_MPI_UINT", //no-check-names +#endif /* MBEDTLS_ECP_WITH_MPI_UINT */ +#if defined(MBEDTLS_ECDSA_DETERMINISTIC) + "ECDSA_DETERMINISTIC", //no-check-names +#endif /* MBEDTLS_ECDSA_DETERMINISTIC */ +#if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED) + "KEY_EXCHANGE_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED) + "KEY_EXCHANGE_DHE_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED) + "KEY_EXCHANGE_ECDHE_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED) + "KEY_EXCHANGE_RSA_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) + "KEY_EXCHANGE_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) + "KEY_EXCHANGE_DHE_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) + "KEY_EXCHANGE_ECDHE_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) + "KEY_EXCHANGE_ECDHE_ECDSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) + "KEY_EXCHANGE_ECDH_ECDSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) + "KEY_EXCHANGE_ECDH_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) + "KEY_EXCHANGE_ECJPAKE_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */ +#if defined(MBEDTLS_PK_PARSE_EC_EXTENDED) + "PK_PARSE_EC_EXTENDED", //no-check-names +#endif /* MBEDTLS_PK_PARSE_EC_EXTENDED */ +#if defined(MBEDTLS_PK_PARSE_EC_COMPRESSED) + "PK_PARSE_EC_COMPRESSED", //no-check-names +#endif /* MBEDTLS_PK_PARSE_EC_COMPRESSED */ +#if defined(MBEDTLS_ERROR_STRERROR_DUMMY) + "ERROR_STRERROR_DUMMY", //no-check-names +#endif /* MBEDTLS_ERROR_STRERROR_DUMMY */ +#if defined(MBEDTLS_GENPRIME) + "GENPRIME", //no-check-names +#endif /* MBEDTLS_GENPRIME */ +#if defined(MBEDTLS_FS_IO) + "FS_IO", //no-check-names +#endif /* MBEDTLS_FS_IO */ +#if defined(MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES) + "NO_DEFAULT_ENTROPY_SOURCES", //no-check-names +#endif /* MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES */ +#if defined(MBEDTLS_NO_PLATFORM_ENTROPY) + "NO_PLATFORM_ENTROPY", //no-check-names +#endif /* MBEDTLS_NO_PLATFORM_ENTROPY */ +#if defined(MBEDTLS_ENTROPY_FORCE_SHA256) + "ENTROPY_FORCE_SHA256", //no-check-names +#endif /* MBEDTLS_ENTROPY_FORCE_SHA256 */ +#if defined(MBEDTLS_ENTROPY_NV_SEED) + "ENTROPY_NV_SEED", //no-check-names +#endif /* MBEDTLS_ENTROPY_NV_SEED */ +#if defined(MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER) + "PSA_CRYPTO_KEY_ID_ENCODES_OWNER", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER */ +#if defined(MBEDTLS_MEMORY_DEBUG) + "MEMORY_DEBUG", //no-check-names +#endif /* MBEDTLS_MEMORY_DEBUG */ +#if defined(MBEDTLS_MEMORY_BACKTRACE) + "MEMORY_BACKTRACE", //no-check-names +#endif /* MBEDTLS_MEMORY_BACKTRACE */ +#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT) + "PK_RSA_ALT_SUPPORT", //no-check-names +#endif /* MBEDTLS_PK_RSA_ALT_SUPPORT */ +#if defined(MBEDTLS_PKCS1_V15) + "PKCS1_V15", //no-check-names +#endif /* MBEDTLS_PKCS1_V15 */ +#if defined(MBEDTLS_PKCS1_V21) + "PKCS1_V21", //no-check-names +#endif /* MBEDTLS_PKCS1_V21 */ +#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS) + "PSA_CRYPTO_BUILTIN_KEYS", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */ +#if defined(MBEDTLS_PSA_CRYPTO_CLIENT) + "PSA_CRYPTO_CLIENT", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_CLIENT */ +#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG) + "PSA_CRYPTO_EXTERNAL_RNG", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */ +#if defined(MBEDTLS_PSA_CRYPTO_SPM) + "PSA_CRYPTO_SPM", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_SPM */ +#if defined(MBEDTLS_PSA_KEY_STORE_DYNAMIC) + "PSA_KEY_STORE_DYNAMIC", //no-check-names +#endif /* MBEDTLS_PSA_KEY_STORE_DYNAMIC */ +#if defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) + "PSA_P256M_DRIVER_ENABLED", //no-check-names +#endif /* MBEDTLS_PSA_P256M_DRIVER_ENABLED */ +#if defined(MBEDTLS_PSA_INJECT_ENTROPY) + "PSA_INJECT_ENTROPY", //no-check-names +#endif /* MBEDTLS_PSA_INJECT_ENTROPY */ +#if defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) + "PSA_ASSUME_EXCLUSIVE_BUFFERS", //no-check-names +#endif /* MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS */ +#if defined(MBEDTLS_RSA_NO_CRT) + "RSA_NO_CRT", //no-check-names +#endif /* MBEDTLS_RSA_NO_CRT */ +#if defined(MBEDTLS_SELF_TEST) + "SELF_TEST", //no-check-names +#endif /* MBEDTLS_SELF_TEST */ +#if defined(MBEDTLS_SHA256_SMALLER) + "SHA256_SMALLER", //no-check-names +#endif /* MBEDTLS_SHA256_SMALLER */ +#if defined(MBEDTLS_SHA512_SMALLER) + "SHA512_SMALLER", //no-check-names +#endif /* MBEDTLS_SHA512_SMALLER */ +#if defined(MBEDTLS_SSL_ALL_ALERT_MESSAGES) + "SSL_ALL_ALERT_MESSAGES", //no-check-names +#endif /* MBEDTLS_SSL_ALL_ALERT_MESSAGES */ +#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) + "SSL_DTLS_CONNECTION_ID", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ +#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT) + "SSL_DTLS_CONNECTION_ID_COMPAT", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT */ +#if defined(MBEDTLS_SSL_ASYNC_PRIVATE) + "SSL_ASYNC_PRIVATE", //no-check-names +#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */ +#if defined(MBEDTLS_SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME) + "SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME", //no-check-names +#endif /* MBEDTLS_SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME */ +#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION) + "SSL_CONTEXT_SERIALIZATION", //no-check-names +#endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */ +#if defined(MBEDTLS_SSL_DEBUG_ALL) + "SSL_DEBUG_ALL", //no-check-names +#endif /* MBEDTLS_SSL_DEBUG_ALL */ +#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC) + "SSL_ENCRYPT_THEN_MAC", //no-check-names +#endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */ +#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET) + "SSL_EXTENDED_MASTER_SECRET", //no-check-names +#endif /* MBEDTLS_SSL_EXTENDED_MASTER_SECRET */ +#if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE) + "SSL_KEEP_PEER_CERTIFICATE", //no-check-names +#endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */ +#if defined(MBEDTLS_SSL_KEYING_MATERIAL_EXPORT) + "SSL_KEYING_MATERIAL_EXPORT", //no-check-names +#endif /* MBEDTLS_SSL_KEYING_MATERIAL_EXPORT */ +#if defined(MBEDTLS_SSL_RENEGOTIATION) + "SSL_RENEGOTIATION", //no-check-names +#endif /* MBEDTLS_SSL_RENEGOTIATION */ +#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH) + "SSL_MAX_FRAGMENT_LENGTH", //no-check-names +#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */ +#if defined(MBEDTLS_SSL_RECORD_SIZE_LIMIT) + "SSL_RECORD_SIZE_LIMIT", //no-check-names +#endif /* MBEDTLS_SSL_RECORD_SIZE_LIMIT */ +#if defined(MBEDTLS_SSL_PROTO_TLS1_2) + "SSL_PROTO_TLS1_2", //no-check-names +#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */ +#if defined(MBEDTLS_SSL_PROTO_TLS1_3) + "SSL_PROTO_TLS1_3", //no-check-names +#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */ +#if defined(MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE) + "SSL_TLS1_3_COMPATIBILITY_MODE", //no-check-names +#endif /* MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE */ +#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED) + "SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED */ +#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED) + "SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED", //no-check-names +#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED */ +#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED) + "SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED", //no-check-names +#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED */ +#if defined(MBEDTLS_SSL_EARLY_DATA) + "SSL_EARLY_DATA", //no-check-names +#endif /* MBEDTLS_SSL_EARLY_DATA */ +#if defined(MBEDTLS_SSL_PROTO_DTLS) + "SSL_PROTO_DTLS", //no-check-names +#endif /* MBEDTLS_SSL_PROTO_DTLS */ +#if defined(MBEDTLS_SSL_ALPN) + "SSL_ALPN", //no-check-names +#endif /* MBEDTLS_SSL_ALPN */ +#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY) + "SSL_DTLS_ANTI_REPLAY", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_ANTI_REPLAY */ +#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) + "SSL_DTLS_HELLO_VERIFY", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY */ +#if defined(MBEDTLS_SSL_DTLS_SRTP) + "SSL_DTLS_SRTP", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_SRTP */ +#if defined(MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE) + "SSL_DTLS_CLIENT_PORT_REUSE", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE */ +#if defined(MBEDTLS_SSL_SESSION_TICKETS) + "SSL_SESSION_TICKETS", //no-check-names +#endif /* MBEDTLS_SSL_SESSION_TICKETS */ +#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION) + "SSL_SERVER_NAME_INDICATION", //no-check-names +#endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */ +#if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH) + "SSL_VARIABLE_BUFFER_LENGTH", //no-check-names +#endif /* MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH */ +#if defined(MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN) + "TEST_CONSTANT_FLOW_MEMSAN", //no-check-names +#endif /* MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN */ +#if defined(MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND) + "TEST_CONSTANT_FLOW_VALGRIND", //no-check-names +#endif /* MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND */ +#if defined(MBEDTLS_TEST_HOOKS) + "TEST_HOOKS", //no-check-names +#endif /* MBEDTLS_TEST_HOOKS */ +#if defined(MBEDTLS_THREADING_ALT) + "THREADING_ALT", //no-check-names +#endif /* MBEDTLS_THREADING_ALT */ +#if defined(MBEDTLS_THREADING_PTHREAD) + "THREADING_PTHREAD", //no-check-names +#endif /* MBEDTLS_THREADING_PTHREAD */ +#if defined(MBEDTLS_USE_PSA_CRYPTO) + "USE_PSA_CRYPTO", //no-check-names +#endif /* MBEDTLS_USE_PSA_CRYPTO */ +#if defined(MBEDTLS_PSA_CRYPTO_CONFIG) + "PSA_CRYPTO_CONFIG", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_CONFIG */ +#if defined(MBEDTLS_VERSION_FEATURES) + "VERSION_FEATURES", //no-check-names +#endif /* MBEDTLS_VERSION_FEATURES */ +#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK) + "X509_TRUSTED_CERTIFICATE_CALLBACK", //no-check-names +#endif /* MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK */ +#if defined(MBEDTLS_X509_REMOVE_INFO) + "X509_REMOVE_INFO", //no-check-names +#endif /* MBEDTLS_X509_REMOVE_INFO */ +#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT) + "X509_RSASSA_PSS_SUPPORT", //no-check-names +#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */ +#if defined(MBEDTLS_AESNI_C) + "AESNI_C", //no-check-names +#endif /* MBEDTLS_AESNI_C */ +#if defined(MBEDTLS_AESCE_C) + "AESCE_C", //no-check-names +#endif /* MBEDTLS_AESCE_C */ +#if defined(MBEDTLS_AES_C) + "AES_C", //no-check-names +#endif /* MBEDTLS_AES_C */ +#if defined(MBEDTLS_ASN1_PARSE_C) + "ASN1_PARSE_C", //no-check-names +#endif /* MBEDTLS_ASN1_PARSE_C */ +#if defined(MBEDTLS_ASN1_WRITE_C) + "ASN1_WRITE_C", //no-check-names +#endif /* MBEDTLS_ASN1_WRITE_C */ +#if defined(MBEDTLS_BASE64_C) + "BASE64_C", //no-check-names +#endif /* MBEDTLS_BASE64_C */ +#if defined(MBEDTLS_BLOCK_CIPHER_NO_DECRYPT) + "BLOCK_CIPHER_NO_DECRYPT", //no-check-names +#endif /* MBEDTLS_BLOCK_CIPHER_NO_DECRYPT */ +#if defined(MBEDTLS_BIGNUM_C) + "BIGNUM_C", //no-check-names +#endif /* MBEDTLS_BIGNUM_C */ +#if defined(MBEDTLS_CAMELLIA_C) + "CAMELLIA_C", //no-check-names +#endif /* MBEDTLS_CAMELLIA_C */ +#if defined(MBEDTLS_ARIA_C) + "ARIA_C", //no-check-names +#endif /* MBEDTLS_ARIA_C */ +#if defined(MBEDTLS_CCM_C) + "CCM_C", //no-check-names +#endif /* MBEDTLS_CCM_C */ +#if defined(MBEDTLS_CHACHA20_C) + "CHACHA20_C", //no-check-names +#endif /* MBEDTLS_CHACHA20_C */ +#if defined(MBEDTLS_CHACHAPOLY_C) + "CHACHAPOLY_C", //no-check-names +#endif /* MBEDTLS_CHACHAPOLY_C */ +#if defined(MBEDTLS_CIPHER_C) + "CIPHER_C", //no-check-names +#endif /* MBEDTLS_CIPHER_C */ +#if defined(MBEDTLS_CMAC_C) + "CMAC_C", //no-check-names +#endif /* MBEDTLS_CMAC_C */ +#if defined(MBEDTLS_CTR_DRBG_C) + "CTR_DRBG_C", //no-check-names +#endif /* MBEDTLS_CTR_DRBG_C */ +#if defined(MBEDTLS_DEBUG_C) + "DEBUG_C", //no-check-names +#endif /* MBEDTLS_DEBUG_C */ +#if defined(MBEDTLS_DES_C) + "DES_C", //no-check-names +#endif /* MBEDTLS_DES_C */ +#if defined(MBEDTLS_DHM_C) + "DHM_C", //no-check-names +#endif /* MBEDTLS_DHM_C */ +#if defined(MBEDTLS_ECDH_C) + "ECDH_C", //no-check-names +#endif /* MBEDTLS_ECDH_C */ +#if defined(MBEDTLS_ECDSA_C) + "ECDSA_C", //no-check-names +#endif /* MBEDTLS_ECDSA_C */ +#if defined(MBEDTLS_ECJPAKE_C) + "ECJPAKE_C", //no-check-names +#endif /* MBEDTLS_ECJPAKE_C */ +#if defined(MBEDTLS_ECP_C) + "ECP_C", //no-check-names +#endif /* MBEDTLS_ECP_C */ +#if defined(MBEDTLS_ENTROPY_C) + "ENTROPY_C", //no-check-names +#endif /* MBEDTLS_ENTROPY_C */ +#if defined(MBEDTLS_ERROR_C) + "ERROR_C", //no-check-names +#endif /* MBEDTLS_ERROR_C */ +#if defined(MBEDTLS_GCM_C) + "GCM_C", //no-check-names +#endif /* MBEDTLS_GCM_C */ +#if defined(MBEDTLS_GCM_LARGE_TABLE) + "GCM_LARGE_TABLE", //no-check-names +#endif /* MBEDTLS_GCM_LARGE_TABLE */ +#if defined(MBEDTLS_HKDF_C) + "HKDF_C", //no-check-names +#endif /* MBEDTLS_HKDF_C */ +#if defined(MBEDTLS_HMAC_DRBG_C) + "HMAC_DRBG_C", //no-check-names +#endif /* MBEDTLS_HMAC_DRBG_C */ +#if defined(MBEDTLS_LMS_C) + "LMS_C", //no-check-names +#endif /* MBEDTLS_LMS_C */ +#if defined(MBEDTLS_LMS_PRIVATE) + "LMS_PRIVATE", //no-check-names +#endif /* MBEDTLS_LMS_PRIVATE */ +#if defined(MBEDTLS_NIST_KW_C) + "NIST_KW_C", //no-check-names +#endif /* MBEDTLS_NIST_KW_C */ +#if defined(MBEDTLS_MD_C) + "MD_C", //no-check-names +#endif /* MBEDTLS_MD_C */ +#if defined(MBEDTLS_MD5_C) + "MD5_C", //no-check-names +#endif /* MBEDTLS_MD5_C */ +#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) + "MEMORY_BUFFER_ALLOC_C", //no-check-names +#endif /* MBEDTLS_MEMORY_BUFFER_ALLOC_C */ +#if defined(MBEDTLS_NET_C) + "NET_C", //no-check-names +#endif /* MBEDTLS_NET_C */ +#if defined(MBEDTLS_OID_C) + "OID_C", //no-check-names +#endif /* MBEDTLS_OID_C */ +#if defined(MBEDTLS_PADLOCK_C) + "PADLOCK_C", //no-check-names +#endif /* MBEDTLS_PADLOCK_C */ +#if defined(MBEDTLS_PEM_PARSE_C) + "PEM_PARSE_C", //no-check-names +#endif /* MBEDTLS_PEM_PARSE_C */ +#if defined(MBEDTLS_PEM_WRITE_C) + "PEM_WRITE_C", //no-check-names +#endif /* MBEDTLS_PEM_WRITE_C */ +#if defined(MBEDTLS_PK_C) + "PK_C", //no-check-names +#endif /* MBEDTLS_PK_C */ +#if defined(MBEDTLS_PK_PARSE_C) + "PK_PARSE_C", //no-check-names +#endif /* MBEDTLS_PK_PARSE_C */ +#if defined(MBEDTLS_PK_WRITE_C) + "PK_WRITE_C", //no-check-names +#endif /* MBEDTLS_PK_WRITE_C */ +#if defined(MBEDTLS_PKCS5_C) + "PKCS5_C", //no-check-names +#endif /* MBEDTLS_PKCS5_C */ +#if defined(MBEDTLS_PKCS7_C) + "PKCS7_C", //no-check-names +#endif /* MBEDTLS_PKCS7_C */ +#if defined(MBEDTLS_PKCS12_C) + "PKCS12_C", //no-check-names +#endif /* MBEDTLS_PKCS12_C */ +#if defined(MBEDTLS_PLATFORM_C) + "PLATFORM_C", //no-check-names +#endif /* MBEDTLS_PLATFORM_C */ +#if defined(MBEDTLS_POLY1305_C) + "POLY1305_C", //no-check-names +#endif /* MBEDTLS_POLY1305_C */ +#if defined(MBEDTLS_PSA_CRYPTO_C) + "PSA_CRYPTO_C", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_C */ +#if defined(MBEDTLS_PSA_CRYPTO_SE_C) + "PSA_CRYPTO_SE_C", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ +#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) + "PSA_CRYPTO_STORAGE_C", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_STORAGE_C */ +#if defined(MBEDTLS_PSA_ITS_FILE_C) + "PSA_ITS_FILE_C", //no-check-names +#endif /* MBEDTLS_PSA_ITS_FILE_C */ +#if defined(MBEDTLS_PSA_STATIC_KEY_SLOTS) + "PSA_STATIC_KEY_SLOTS", //no-check-names +#endif /* MBEDTLS_PSA_STATIC_KEY_SLOTS */ +#if defined(MBEDTLS_RIPEMD160_C) + "RIPEMD160_C", //no-check-names +#endif /* MBEDTLS_RIPEMD160_C */ +#if defined(MBEDTLS_RSA_C) + "RSA_C", //no-check-names +#endif /* MBEDTLS_RSA_C */ +#if defined(MBEDTLS_SHA1_C) + "SHA1_C", //no-check-names +#endif /* MBEDTLS_SHA1_C */ +#if defined(MBEDTLS_SHA224_C) + "SHA224_C", //no-check-names +#endif /* MBEDTLS_SHA224_C */ +#if defined(MBEDTLS_SHA256_C) + "SHA256_C", //no-check-names +#endif /* MBEDTLS_SHA256_C */ +#if defined(MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT) + "SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT", //no-check-names +#endif /* MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT */ +#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT) + "SHA256_USE_A64_CRYPTO_IF_PRESENT", //no-check-names +#endif /* MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT */ +#if defined(MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_ONLY) + "SHA256_USE_ARMV8_A_CRYPTO_ONLY", //no-check-names +#endif /* MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_ONLY */ +#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY) + "SHA256_USE_A64_CRYPTO_ONLY", //no-check-names +#endif /* MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY */ +#if defined(MBEDTLS_SHA384_C) + "SHA384_C", //no-check-names +#endif /* MBEDTLS_SHA384_C */ +#if defined(MBEDTLS_SHA512_C) + "SHA512_C", //no-check-names +#endif /* MBEDTLS_SHA512_C */ +#if defined(MBEDTLS_SHA3_C) + "SHA3_C", //no-check-names +#endif /* MBEDTLS_SHA3_C */ +#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT) + "SHA512_USE_A64_CRYPTO_IF_PRESENT", //no-check-names +#endif /* MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT */ +#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY) + "SHA512_USE_A64_CRYPTO_ONLY", //no-check-names +#endif /* MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY */ +#if defined(MBEDTLS_SSL_CACHE_C) + "SSL_CACHE_C", //no-check-names +#endif /* MBEDTLS_SSL_CACHE_C */ +#if defined(MBEDTLS_SSL_COOKIE_C) + "SSL_COOKIE_C", //no-check-names +#endif /* MBEDTLS_SSL_COOKIE_C */ +#if defined(MBEDTLS_SSL_TICKET_C) + "SSL_TICKET_C", //no-check-names +#endif /* MBEDTLS_SSL_TICKET_C */ +#if defined(MBEDTLS_SSL_CLI_C) + "SSL_CLI_C", //no-check-names +#endif /* MBEDTLS_SSL_CLI_C */ +#if defined(MBEDTLS_SSL_SRV_C) + "SSL_SRV_C", //no-check-names +#endif /* MBEDTLS_SSL_SRV_C */ +#if defined(MBEDTLS_SSL_TLS_C) + "SSL_TLS_C", //no-check-names +#endif /* MBEDTLS_SSL_TLS_C */ +#if defined(MBEDTLS_THREADING_C) + "THREADING_C", //no-check-names +#endif /* MBEDTLS_THREADING_C */ +#if defined(MBEDTLS_TIMING_C) + "TIMING_C", //no-check-names +#endif /* MBEDTLS_TIMING_C */ +#if defined(MBEDTLS_VERSION_C) + "VERSION_C", //no-check-names +#endif /* MBEDTLS_VERSION_C */ +#if defined(MBEDTLS_X509_USE_C) + "X509_USE_C", //no-check-names +#endif /* MBEDTLS_X509_USE_C */ +#if defined(MBEDTLS_X509_CRT_PARSE_C) + "X509_CRT_PARSE_C", //no-check-names +#endif /* MBEDTLS_X509_CRT_PARSE_C */ +#if defined(MBEDTLS_X509_CRL_PARSE_C) + "X509_CRL_PARSE_C", //no-check-names +#endif /* MBEDTLS_X509_CRL_PARSE_C */ +#if defined(MBEDTLS_X509_CSR_PARSE_C) + "X509_CSR_PARSE_C", //no-check-names +#endif /* MBEDTLS_X509_CSR_PARSE_C */ +#if defined(MBEDTLS_X509_CREATE_C) + "X509_CREATE_C", //no-check-names +#endif /* MBEDTLS_X509_CREATE_C */ +#if defined(MBEDTLS_X509_CRT_WRITE_C) + "X509_CRT_WRITE_C", //no-check-names +#endif /* MBEDTLS_X509_CRT_WRITE_C */ +#if defined(MBEDTLS_X509_CSR_WRITE_C) + "X509_CSR_WRITE_C", //no-check-names +#endif /* MBEDTLS_X509_CSR_WRITE_C */ +#endif /* MBEDTLS_VERSION_FEATURES */ + NULL +}; + +int mbedtls_version_check_feature(const char *feature) +{ + const char * const *idx = features; + + if (*idx == NULL) { + return -2; + } + + if (feature == NULL) { + return -1; + } + + if (strncmp(feature, "MBEDTLS_", 8)) { + return -1; + } + + feature += 8; + + while (*idx != NULL) { + if (!strcmp(*idx, feature)) { + return 0; + } + idx++; + } + return -1; +} + +#endif /* MBEDTLS_VERSION_C */ 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..5017fd3 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/pkgconfig + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..c718747 Binary files /dev/null and b/build/esp-idf/mbedtls/x509_crt_bundle differ diff --git a/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj new file mode 100644 index 0000000..c5fcbed Binary files /dev/null and b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj differ diff --git a/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj new file mode 100644 index 0000000..68f459f Binary files /dev/null and b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj differ diff --git a/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj new file mode 100644 index 0000000..b690dad Binary files /dev/null and b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj differ diff --git a/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj new file mode 100644 index 0000000..3cd93a4 Binary files /dev/null and b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj differ diff --git a/build/esp-idf/mqtt/cmake_install.cmake b/build/esp-idf/mqtt/cmake_install.cmake new file mode 100644 index 0000000..1f41c7f --- /dev/null +++ b/build/esp-idf/mqtt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/mqtt/libmqtt.a b/build/esp-idf/mqtt/libmqtt.a new file mode 100644 index 0000000..318c04f Binary files /dev/null and b/build/esp-idf/mqtt/libmqtt.a differ diff --git a/build/esp-idf/mqtt_manager/CMakeFiles/__idf_mqtt_manager.dir/mqtt_manager.c.obj b/build/esp-idf/mqtt_manager/CMakeFiles/__idf_mqtt_manager.dir/mqtt_manager.c.obj new file mode 100644 index 0000000..9a35e5e Binary files /dev/null and b/build/esp-idf/mqtt_manager/CMakeFiles/__idf_mqtt_manager.dir/mqtt_manager.c.obj differ diff --git a/build/esp-idf/mqtt_manager/cmake_install.cmake b/build/esp-idf/mqtt_manager/cmake_install.cmake new file mode 100644 index 0000000..58762d3 --- /dev/null +++ b/build/esp-idf/mqtt_manager/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/mqtt_manager/libmqtt_manager.a b/build/esp-idf/mqtt_manager/libmqtt_manager.a new file mode 100644 index 0000000..1280f77 Binary files /dev/null and b/build/esp-idf/mqtt_manager/libmqtt_manager.a differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj new file mode 100644 index 0000000..03bc3ef Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj new file mode 100644 index 0000000..5b68016 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj new file mode 100644 index 0000000..d1708b3 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj new file mode 100644 index 0000000..db8869b Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj new file mode 100644 index 0000000..4a7763e Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj new file mode 100644 index 0000000..a479549 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj new file mode 100644 index 0000000..dafcabb Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj new file mode 100644 index 0000000..d143c5f Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj new file mode 100644 index 0000000..60e164f Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj new file mode 100644 index 0000000..6498f9f Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj new file mode 100644 index 0000000..c42147a Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj new file mode 100644 index 0000000..db1dc36 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj new file mode 100644 index 0000000..667843b Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj new file mode 100644 index 0000000..ecb4b53 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj new file mode 100644 index 0000000..7ef2f12 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj new file mode 100644 index 0000000..61f542b Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj new file mode 100644 index 0000000..a43fb1f Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj new file mode 100644 index 0000000..dd0b878 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj new file mode 100644 index 0000000..6ea0e6e Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj new file mode 100644 index 0000000..e58dd7d Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj new file mode 100644 index 0000000..4e28bc1 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj differ diff --git a/build/esp-idf/newlib/cmake_install.cmake b/build/esp-idf/newlib/cmake_install.cmake new file mode 100644 index 0000000..137f352 --- /dev/null +++ b/build/esp-idf/newlib/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/src/port/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/newlib/libnewlib.a b/build/esp-idf/newlib/libnewlib.a new file mode 100644 index 0000000..08fe6c9 Binary files /dev/null and b/build/esp-idf/newlib/libnewlib.a differ diff --git a/build/esp-idf/newlib/src/port/cmake_install.cmake b/build/esp-idf/newlib/src/port/cmake_install.cmake new file mode 100644 index 0000000..f68813a --- /dev/null +++ b/build/esp-idf/newlib/src/port/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + 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..5650fd9 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..0075de7 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..2868e8f 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..5268f0a 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..4197546 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..0b9536e 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..6324b73 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..eb622d8 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..e63d8e0 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..f7782f9 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..99ec204 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..efadca2 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..66b3062 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..0a94522 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..2755948 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..a62e134 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..ff963c6 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..e2baa54 --- /dev/null +++ b/build/esp-idf/nvs_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..00d6f10 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..cc8bc33 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..984c885 --- /dev/null +++ b/build/esp-idf/nvs_sec_provider/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..72e7b42 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..cde1f57 --- /dev/null +++ b/build/esp-idf/openthread/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..b8e1d47 --- /dev/null +++ b/build/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..f2e0070 --- /dev/null +++ b/build/esp-idf/partition_table/partition-table-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +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..a69687f 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..4c57117 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..e73d013 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..73f6c14 --- /dev/null +++ b/build/esp-idf/perfmon/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/perfmon/libperfmon.a b/build/esp-idf/perfmon/libperfmon.a new file mode 100644 index 0000000..d8de455 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..4b74ec1 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..2538668 --- /dev/null +++ b/build/esp-idf/protobuf-c/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..15297a8 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..b3cda38 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..cf0e131 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..7daa553 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..a2065be 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..8546acc 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..2a84b1a 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..4cc0a4a 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..1e35dba 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/security0.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj new file mode 100644 index 0000000..d2948da Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj new file mode 100644 index 0000000..b37b18a Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.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..d562228 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..56864ca 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..ec51922 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..94bc776 --- /dev/null +++ b/build/esp-idf/protocomm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/protocomm/libprotocomm.a b/build/esp-idf/protocomm/libprotocomm.a new file mode 100644 index 0000000..6cae6d7 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..15cb742 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..d06b309 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..61e596f 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..f055f67 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..a87b773 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..974312b --- /dev/null +++ b/build/esp-idf/pthread/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/pthread/libpthread.a b/build/esp-idf/pthread/libpthread.a new file mode 100644 index 0000000..cf5f71e Binary files /dev/null and b/build/esp-idf/pthread/libpthread.a differ diff --git a/build/esp-idf/rpc_job_parser/CMakeFiles/__idf_rpc_job_parser.dir/rpc_job_parser.c.obj b/build/esp-idf/rpc_job_parser/CMakeFiles/__idf_rpc_job_parser.dir/rpc_job_parser.c.obj new file mode 100644 index 0000000..7741c8b Binary files /dev/null and b/build/esp-idf/rpc_job_parser/CMakeFiles/__idf_rpc_job_parser.dir/rpc_job_parser.c.obj differ diff --git a/build/esp-idf/rpc_job_parser/cmake_install.cmake b/build/esp-idf/rpc_job_parser/cmake_install.cmake new file mode 100644 index 0000000..1e9233c --- /dev/null +++ b/build/esp-idf/rpc_job_parser/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/rpc_job_parser/librpc_job_parser.a b/build/esp-idf/rpc_job_parser/librpc_job_parser.a new file mode 100644 index 0000000..6ee051e Binary files /dev/null and b/build/esp-idf/rpc_job_parser/librpc_job_parser.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..c6c37e4 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..8114c2e 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..ac36cdc --- /dev/null +++ b/build/esp-idf/rt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/rt/librt.a b/build/esp-idf/rt/librt.a new file mode 100644 index 0000000..8681c9e 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..c71a489 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_cmd.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj new file mode 100644 index 0000000..db62a81 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..4f64609 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..57d924b 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..9f4f7e0 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..46e34a3 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..cd1cdda 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..46a6da0 --- /dev/null +++ b/build/esp-idf/sdmmc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/sdmmc/libsdmmc.a b/build/esp-idf/sdmmc/libsdmmc.a new file mode 100644 index 0000000..f426738 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..78fd60b 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/esp32s3/adc_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj new file mode 100644 index 0000000..c6d7855 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj new file mode 100644 index 0000000..54f06f8 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj new file mode 100644 index 0000000..b46d358 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj new file mode 100644 index 0000000..000ca58 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj new file mode 100644 index 0000000..2da2898 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj new file mode 100644 index 0000000..ddbf396 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj new file mode 100644 index 0000000..b6a8af3 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj new file mode 100644 index 0000000..32930f1 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj new file mode 100644 index 0000000..86f8989 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj new file mode 100644 index 0000000..9bc024a Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj new file mode 100644 index 0000000..6460521 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj new file mode 100644 index 0000000..8028312 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj new file mode 100644 index 0000000..3e9cefd Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj new file mode 100644 index 0000000..7f81419 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj new file mode 100644 index 0000000..8f0eff8 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj new file mode 100644 index 0000000..9aa8f44 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj new file mode 100644 index 0000000..acd4c45 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj new file mode 100644 index 0000000..b65ed6d Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj new file mode 100644 index 0000000..36ec107 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj new file mode 100644 index 0000000..8e5017a Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj new file mode 100644 index 0000000..92204bd Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj new file mode 100644 index 0000000..44c26f2 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj new file mode 100644 index 0000000..27e17cb Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj new file mode 100644 index 0000000..416ff9e Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj new file mode 100644 index 0000000..be7928f Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj new file mode 100644 index 0000000..ff6693f Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_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..4d3a418 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..da5056e --- /dev/null +++ b/build/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/soc/libsoc.a b/build/esp-idf/soc/libsoc.a new file mode 100644 index 0000000..309b314 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..d07ea5e 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/esp32s3/spi_flash_oct_flash_init.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj new file mode 100644 index 0000000..4e5a293 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.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..66c41f9 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..e888b0f 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..72acbb2 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..14ea968 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..8ae6d36 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..1abb84f 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_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..b6352ca 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..8841605 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..2423838 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..bf96b91 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..d86dbff 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..13aae62 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..33b0785 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..f6d86bf 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..9a84948 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_hpm_enable.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj new file mode 100644 index 0000000..645f5be Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.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..bc0a4b0 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..5f093b0 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..038981a 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..b0ca8ef --- /dev/null +++ b/build/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..cd2c7b0 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..a29851d 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..97af8be 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..2b16943 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..98287b0 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..03f8c08 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..33001ad 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..938de0c 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..4266fb7 --- /dev/null +++ b/build/esp-idf/spiffs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/spiffs/libspiffs.a b/build/esp-idf/spiffs/libspiffs.a new file mode 100644 index 0000000..4586477 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..0beb575 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..69b95e7 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..89ffb7b 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..53c0040 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..039307e 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..f54e53c --- /dev/null +++ b/build/esp-idf/tcp_transport/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..77cf429 Binary files /dev/null and b/build/esp-idf/tcp_transport/libtcp_transport.a differ diff --git a/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj b/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj new file mode 100644 index 0000000..83a6bdc Binary files /dev/null and b/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj differ diff --git a/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_element.c.obj b/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_element.c.obj new file mode 100644 index 0000000..5196230 Binary files /dev/null and b/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_element.c.obj differ diff --git a/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj b/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj new file mode 100644 index 0000000..748cb3c Binary files /dev/null and b/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj differ diff --git a/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj b/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj new file mode 100644 index 0000000..0f1c828 Binary files /dev/null and b/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj differ diff --git a/build/esp-idf/touch_element/cmake_install.cmake b/build/esp-idf/touch_element/cmake_install.cmake new file mode 100644 index 0000000..dadb1ac --- /dev/null +++ b/build/esp-idf/touch_element/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/touch_element/libtouch_element.a b/build/esp-idf/touch_element/libtouch_element.a new file mode 100644 index 0000000..ae8ce80 Binary files /dev/null and b/build/esp-idf/touch_element/libtouch_element.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..550c27e --- /dev/null +++ b/build/esp-idf/ulp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..aae9bdc 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..d53c09a 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..1626bc4 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..e99b148 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..6b84794 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..a3edad4 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..32f5f4b 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..0da1527 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..38b503a --- /dev/null +++ b/build/esp-idf/unity/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/unity/libunity.a b/build/esp-idf/unity/libunity.a new file mode 100644 index 0000000..ee904ad Binary files /dev/null and b/build/esp-idf/unity/libunity.a differ diff --git a/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/enum.c.obj b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/enum.c.obj new file mode 100644 index 0000000..0e2ea1e Binary files /dev/null and b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/enum.c.obj differ diff --git a/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj new file mode 100644 index 0000000..762443b Binary files /dev/null and b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj differ diff --git a/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj new file mode 100644 index 0000000..7a81848 Binary files /dev/null and b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj differ diff --git a/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj new file mode 100644 index 0000000..d5922de Binary files /dev/null and b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj differ diff --git a/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj new file mode 100644 index 0000000..a23cc4c Binary files /dev/null and b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj differ diff --git a/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj new file mode 100644 index 0000000..9959e3c Binary files /dev/null and b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj differ diff --git a/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj new file mode 100644 index 0000000..23ebe2a Binary files /dev/null and b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj differ diff --git a/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj new file mode 100644 index 0000000..0665aa3 Binary files /dev/null and b/build/esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj differ diff --git a/build/esp-idf/usb/cmake_install.cmake b/build/esp-idf/usb/cmake_install.cmake new file mode 100644 index 0000000..d26fbc3 --- /dev/null +++ b/build/esp-idf/usb/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/usb/libusb.a b/build/esp-idf/usb/libusb.a new file mode 100644 index 0000000..117641f Binary files /dev/null and b/build/esp-idf/usb/libusb.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..137fcf2 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..1d5426b 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_eventfd.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj new file mode 100644 index 0000000..4110c63 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..4aa91c2 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..fc646d5 --- /dev/null +++ b/build/esp-idf/vfs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/vfs/libvfs.a b/build/esp-idf/vfs/libvfs.a new file mode 100644 index 0000000..de202c4 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..2c97fa0 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..fe092d6 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..e58e8dd 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..63b2c63 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..b428207 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..f7c2771 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..401b3ee 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..0c7c87d --- /dev/null +++ b/build/esp-idf/wear_levelling/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..e0943fb Binary files /dev/null and b/build/esp-idf/wear_levelling/libwear_levelling.a differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj new file mode 100644 index 0000000..307b85b Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj new file mode 100644 index 0000000..6c11480 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj new file mode 100644 index 0000000..c585b3f Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj new file mode 100644 index 0000000..6cfe027 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj new file mode 100644 index 0000000..2cfe71e Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj new file mode 100644 index 0000000..e836582 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj new file mode 100644 index 0000000..f88e74f Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj new file mode 100644 index 0000000..9aa9dc5 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj new file mode 100644 index 0000000..7e12d21 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj new file mode 100644 index 0000000..1740d77 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj new file mode 100644 index 0000000..a7336a0 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/cmake_install.cmake b/build/esp-idf/wifi_provisioning/cmake_install.cmake new file mode 100644 index 0000000..0299665 --- /dev/null +++ b/build/esp-idf/wifi_provisioning/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/wifi_provisioning/libwifi_provisioning.a b/build/esp-idf/wifi_provisioning/libwifi_provisioning.a new file mode 100644 index 0000000..0c235bd Binary files /dev/null and b/build/esp-idf/wifi_provisioning/libwifi_provisioning.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..fff8921 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..3db7b16 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..e5937c5 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..1aa7fe2 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..4e1db1c 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/fastpsk.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpsk.c.obj new file mode 100644 index 0000000..fccde21 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpsk.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..4b6f5ae 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..5432726 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..2757f1f 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..a3d95df 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..04a0263 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..74f0d20 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..fdb787e 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..d2064b4 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..133cfd6 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..7e8c220 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..69d0faf 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..af1478c 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..eb4d109 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..6082e12 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..05b209d 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..b4d3cf6 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..6e8d54e 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..085bd81 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..1cb6dcf 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..3f0e24b 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..a2066ce 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..1a056b6 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..274d063 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..364bd6f 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..32001b3 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..4a2dc81 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..0198d14 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..4eefb1b 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..993b10d 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..2801925 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..cc9348e 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..f784388 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..7b7bf2f 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..66af7e6 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..5bd2473 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..9fe9d2c 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..b1a93d5 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..5bba4eb 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..e701b84 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..22dc12e 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..de7d86c 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..8280d1d 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..5aba852 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..e9c3ede 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..120eae7 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..ca069ac 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..cfd7f65 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..77767f4 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..ff8e4c7 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..e551423 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..f94e176 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..b6bad43 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..8b0c626 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..96c08f1 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..e616034 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..b0560fd 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..6389c8e 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..5b0865e 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..d3202fa 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..1a7c7df 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..d9317dd 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..b2bcc02 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..63351b7 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..bfe8954 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..54d394a 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..8522d90 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..d5bbd27 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..c218a94 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..b16199b 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..908acf8 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..4585054 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..48d16c5 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..e76c9a3 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..8aaf5eb 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..7d9b111 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..8a4d784 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..5e314c8 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..71e15f0 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..6391cc7 --- /dev/null +++ b/build/esp-idf/wpa_supplicant/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +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..31e8fc2 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..a5844fa 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..3ccf628 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..61a802c 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..3538f2b 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..7488c16 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..045bfa3 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..fd30086 --- /dev/null +++ b/build/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/esp32-s3_fota_test_wifi") +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/xtensa/libxtensa.a b/build/esp-idf/xtensa/libxtensa.a new file mode 100644 index 0000000..a362674 Binary files /dev/null and b/build/esp-idf/xtensa/libxtensa.a differ diff --git a/build/esp32-s3_fota_test_wifi.bin b/build/esp32-s3_fota_test_wifi.bin new file mode 100644 index 0000000..8b99d55 Binary files /dev/null and b/build/esp32-s3_fota_test_wifi.bin differ diff --git a/build/esp32-s3_fota_test_wifi.elf b/build/esp32-s3_fota_test_wifi.elf new file mode 100644 index 0000000..9514365 Binary files /dev/null and b/build/esp32-s3_fota_test_wifi.elf differ diff --git a/build/esp32-s3_fota_test_wifi.map b/build/esp32-s3_fota_test_wifi.map new file mode 100644 index 0000000..296e001 --- /dev/null +++ b/build/esp32-s3_fota_test_wifi.map @@ -0,0 +1,105713 @@ +Archive member included to satisfy reference by file (symbol) + +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_key_dis_read) +esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) (ESP_EFUSE_KEY5) +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_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(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(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(apb_backup_dma.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_apb_backup_dma_lock_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.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (esp_ipc_isr_stall_abort) +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_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(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(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(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) (esp_ipc_call) +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_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_err_to_name) +esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rom_install_uart_printf) +esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (Cache_Suspend_DCache) +esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) (cache_writeback_items_freeze) +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(cache_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (cache_hal_init) +esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (uart_hal_write_txfifo) +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/esp_system/libesp_system.a(startup_funcs.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/esp_system/libesp_system.a(esp_system_chip.c.obj) (heap_caps_get_free_size) +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/esp_security/libesp_security.a(init.c.obj) + (esp_security_init_include_impl) +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/esp_system/libesp_system.a(cache_err_int.c.obj) (esp_intr_enable_source) +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(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(mspi_timing_tuning.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (mspi_timing_flash_tuning) +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_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (g_dig_dbias_pvt_240m) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (rtc_sleep_pu) +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_memprot.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_mprot_is_conf_locked_any) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) (esp_mprot_ll_err_to_esp_err) +esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) (mspi_timing_config_set_flash_clock) +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_init.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_console.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (sleep_console_usj_pad_backup_and_disable) +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(sleep_cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (sleep_enable_cpu_retention) +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(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_clk_tree_lp_slow_get_freq_hz) +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/esp_system/libesp_system.a(esp_system.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(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/newlib/libnewlib.a(init.c.obj) + (esp_libc_init_funcs) +esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (abort) +esp-idf/newlib/libnewlib.a(assert.c.obj) + (__assert_func) +esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) (malloc) +esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (_lock_acquire_recursive) +esp-idf/newlib/libnewlib.a(pthread.c.obj) + (esp_libc_include_pthread_impl) +esp-idf/newlib/libnewlib.a(getentropy.c.obj) + (esp_libc_include_getentropy_impl) +esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_libc_time_init) +esp-idf/newlib/libnewlib.a(syscalls.c.obj) + (esp_libc_include_syscalls_impl) +esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) (_system_r) +esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) (esp_time_impl_get_time_since_boot) +esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (esp_reent_init) +esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(init.c.obj) (esp_libc_init) +esp-idf/newlib/libnewlib.a(random.c.obj) + esp-idf/newlib/libnewlib.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_systimer.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) + (uart_vfs_include_dev_init) +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_word_length) +esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + (include_esp_phy_override) +esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + (usb_serial_jtag_connection_monitor_include) +esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + (usb_serial_jtag_vfs_include_dev_init) +esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) (usb_serial_jtag_read_bytes) +esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + (esp_vfs_include_console_register) +esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) (esp_vfs_register_fs) +esp-idf/vfs/libvfs.a(nullfs.c.obj) + (esp_vfs_include_nullfs_register) +esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + (nvs_sec_provider_include_impl) +esp-idf/main/libmain.a(main.c.obj) + (app_main) +esp-idf/main/libmain.a(wifi_init.c.obj) + esp-idf/main/libmain.a(main.c.obj) (wifi_init) +esp-idf/main/libmain.a(fs_init.c.obj) + esp-idf/main/libmain.a(main.c.obj) (fs_init) +esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + esp-idf/main/libmain.a(main.c.obj) (mqtt_manager_init) +esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(fs_init.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/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) (esp_mqtt_client_start) +esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (mqtt_get_total_length) +esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (outbox_init) +esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (platform_create_id_string) +esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) (fota_manager_apply) +esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) (ftp_manager_download) +esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) (rpc_job_parse) +esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) (cJSON_Delete) +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_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (gpio_pullup_en) +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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) (esp_ota_get_running_partition) +esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_partition_iterator_release) +esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) (esp_partition_write) +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_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (bootloader_common_ota_select_crc) +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/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_flash_encryption_enabled) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) (bootloader_random_enable) +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_esp32s3.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/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_partition_table_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_bootloader_offset_set) +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(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) (bootloader_enable_qio_mode) +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_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) (esp_cache_freeze_ext_mem_cache) +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_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) (esp_cache_get_alignment) +esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (spi_flash_needs_reset_check) +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_cache) +esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) (spi_flash_mmap) +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_init) +esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) (spi_flash_wrap_probe) +esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (esp_flash_erase_region) +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_flash_default_chip) +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(spi_flash_oct_flash_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_opiflash_init) +esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (spi_flash_enable_high_performance_mode) +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(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_boya) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_th) +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/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(esp_system_console.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) (esp_system_console_put_char) +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_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) (esp_rom_opiflash_cache_mode_config) +esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_rom_efuse_get_opiconfig) +esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (mmu_hal_unmap_all) +esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_init) +esp-idf/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) (systimer_hal_init) +esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_hal_get_sclk) +esp-idf/hal/libhal.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/hal/libhal.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/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) (brownout_hal_config) +esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_gpspi_poll_cmd_done) +esp-idf/hal/libhal.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/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) (rtc_cntl_hal_dma_link_init) +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/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (GPIO_HOLD_MASK) +esp-idf/soc/libsoc.a(uart_periph.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_periph_signal) +esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_periph_signal) +esp-idf/soc/libsoc.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_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) (esp_hmac_calculate) +esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) (esp_crypto_hmac_lock_acquire) +esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) (esp_crypto_sha_enable_periph_clk) +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(clk_ctrl_os.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (periph_rtc_dig_clk8m_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) (esp_random) +esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) (esp_read_mac) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (esp_gpio_reserve) +esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) (temperature_sensor_power_acquire) +esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (io_mux_enable_lp_io_clock) +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_src_get_freq_hz) +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(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (adc_apb_periph_claim) +esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) (systimer_ticks_to_us) +esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (xEventGroupCreate) +esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (xQueueCreateWithCaps) +esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) (xStreamBufferGenericCreateStatic) +esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) (__atomic_fetch_add_8) +esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) (xRingbufferCreate) +esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) (esp_event_handler_instance_register) +esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (esp_event_loop_create) +esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) (nvs_flash_init) +esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::Page::SEC_SIZE) +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_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_page.cpp.obj) (nvs::Item::calculateCrc32() const) +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_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_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::PageManager::fillStats(nvs_stats_t&)) +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::NVSPartition**)) +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/lwip/liblwip.a(netdb.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) (lwip_freeaddrinfo) +esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) (lwip_connect) +esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (tcpip_callback) +esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) (lwip_htons) +esp-idf/lwip/liblwip.a(init.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) (lwip_init) +esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) (ipaddr_aton) +esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (mem_init) +esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (memp_init) +esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (netif_get_by_index) +esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (pbuf_free) +esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (raw_bind_netif) +esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (tcp_init) +esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_input_pcb) +esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_split_unsent_seg) +esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_timer_needed) +esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (udp_init) +esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) (dhcp_network_changed_link_up) +esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) (etharp_cleanup_netif) +esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) (icmp_dest_unreach) +esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (igmp_init) +esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) (ip4_route) +esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip4_addr_isbroadcast_u32) +esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) (ip4_frag) +esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) (icmp6_dest_unreach) +esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip6_route) +esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (ip6addr_aton) +esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) (ip6_frag) +esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) (mld6_stop) +esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) (nd6_input) +esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) (ethbroadcast) +esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (lwip_hook_tcp_isn) +esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) (lwip_hook_ip6_input) +esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (lwip_setsockopt_impl_ext) +esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) (sys_sem_new) +esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) (acd_remove) +esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) (esp_vfs_lwip_sockets_register) +esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (netconn_new_with_proto_and_callback) +esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) (lwip_netconn_is_deallocated_msg) +esp-idf/lwip/liblwip.a(err.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (err_to_errno) +esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (netbuf_delete) +esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (dns_init) +esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip6_chksum_pseudo) +esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) (IP_EVENT) +esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) (esp_netif_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) (g_wifi_default_wpa_crypto_funcs) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (sha256_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (esp_fast_psk) +esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (os_get_random) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (ccmp_decrypt) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_gmac) +esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (bin_clear_free) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) (aes_ccm_ae) +esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) (esp_wifi_init) +esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) (esp_netif_create_default_wifi_sta) +esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (esp_wifi_destroy_if_driver) +esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) (g_wifi_osi_funcs) +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/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (http_parser_url_init) +esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (esp_tls_get_and_clear_last_error) +esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (esp_tls_internal_event_tracker_capture) +esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (esp_tls_get_platform_time) +esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (esp_mbedtls_read) +esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (esp_transport_list_init) +esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (esp_transport_tcp_init) +esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) (esp_transport_utils_ms_to_timeval) +esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (esp_transport_ws_set_path) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_ssl_list_ciphersuites) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_ssl_get_bytes_avail) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_ssl_init) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ssl_handshake_client_step) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ssl_handshake_server_step) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) (mbedtls_ms_time) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (mbedtls_net_init) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ssl_write_client_hello) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_mpi_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (mbedtls_mpi_core_bitlen) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_cipher_info_from_type) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) (mbedtls_cipher_base_lookup_table) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) (mbedtls_ct_memcmp) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_cipher_cmac_starts) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_ctr_drbg_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ecdh_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) (mbedtls_ecp_get_type) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) (mbedtls_ecp_group_load) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_entropy_free) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_md_info_from_type) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_md5) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_pk_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_pk_ecc_set_group) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_rsa_alt_info) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_pk_parse_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_calloc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) (mbedtls_platform_zeroize) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (psa_get_key_attributes) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_aead_encrypt_setup) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) (mbedtls_cipher_values_from_psa) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (psa_reset_key_attributes) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_driver_wrapper_get_key_buffer_size) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_ecp_import_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_hash_abort) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_mac_abort) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_rsa_import_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_is_valid_key_id) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_destroy_persistent_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) (psa_its_get_info) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (psa_generic_status_to_mbedtls) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) (mbedtls_rsa_export) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (mbedtls_rsa_deduce_primes) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha1) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha256) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha512) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (mbedtls_hardware_poll) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) (esp_mbedtls_mem_calloc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.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/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (esp_aes_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (esp_aes_crypt_ecb) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) (esp_sha_read_digest_state) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (esp_ds_rsa_sign) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) (esp_ds_get_data_ctx) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_mpi_exp_mod) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) (esp_mpi_enable_hardware_hw_op) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha1_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (mbedtls_sha256_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (mbedtls_sha512_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (esp_aes_gcm_setkey) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (esp_md5_finish) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (mbedtls_aria_setkey_enc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_asn1_get_tag) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) (mbedtls_asn1_write_len) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (mbedtls_ccm_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) (mbedtls_ecdsa_sign) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) (mbedtls_gcm_init_soft) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) (mbedtls_hmac_drbg_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_oid_get_pk_alg) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pem_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pkcs12_pbe_ext) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pkcs5_pbes2_ext) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (esp_sha_dma_start) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) (esp_aes_intr_alloc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) (esp_crypto_shared_gdma_start_axi_ahb) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) (esp_sha_512_t_init_hash) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) (mbedtls_base64_encode) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) (esp_aes_dma_start) +esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_x509_crt_check_key_usage) +esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) (mbedtls_x509_get_serial) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) (esp_wifi_internal_tx) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (add_mic_ie_bip) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (esp_mesh_quick_funcs) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (ieee80211_phy_init) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (chm_get_current_channel) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (ieee80211_psq_init) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (ieee80211_getmgtframe) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (offchan_in_progress) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (wifi_log) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (ieee80211_decap) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (ieee80211_add_ie_vendor_esp_manufacturer) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (ieee80211_rfid_locp_recv) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (ieee80211_ht_deattach) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (g_wifi_nvs) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (esp_wifi_sta_prof_is_wpa_internal) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (ieee80211_set_phy_bw) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (ieee80211_timer_do_process) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) (gcmp) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (ftm_is_responder_supported) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (wifi_get_init_state) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (g_cnxMgr) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (get_iav_key) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) (send_wake_null_timeout_process) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (ieee80211_gettid) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) (sms4) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (ieee80211_regdomain_get_country) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (band2str) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) (ieee80211_crypto_attach) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (ccmp) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) (ieee80211_send_action_register) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) (tkip) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (app_scan_params) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) (wep) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (pm_is_open) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (ic_get_addr) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) (pp_register_net80211_tx_cb) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) (esf_buf_alloc) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) (lmacIsIdle) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) (pm_coex_reconnect_policy) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) (rcUpdateAMPDUParam) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (wifi_gpio_debug) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) (wDev_ftm_set_t1t4) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) (ptr_beacon_offset_funcs) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) (hal_agreement_add_rx_ba) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) (hal_set_rx_beacon_pti) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) (hal_crypto_clr_key_entry) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) (hal_mac_tx_set_ppdu) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) (hal_mac_rx_get_last_dscr) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) (mac_tx_set_plcp1) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) (hal_sniffer_enable) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) (hal_enable_sta_tsf) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) (RC_SetBasicRate) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) (pp_timer_do_process) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_enable_rom_secure_download_mode) +esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) (esp_efuse_rtc_calib_get_ver) +esp-idf/hal/libhal.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/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) (adc_hal_set_calibration_param) +esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) (mpi_hal_calc_hardware_words) +esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (sha_hal_set_mode) +esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) (aes_hal_setkey) +esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) (hmac_hal_start) +esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) (esp_dport_access_read_buffer) +esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (temperature_sensor_attributes) +esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) (MPI_OPERATIONS_REG) +esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) (esp_ds_start_sign) +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_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) (gdma_new_ahb_channel) +esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (ets_timer_arm) +esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) (esp_timer_create) +esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (esp_phy_disable) +esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_init_data) +esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_track_pll) +esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (dhcps_new) +esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (esp_netif_action_start) +esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (_g_esp_netif_inherent_ap_config) +esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (_g_esp_netif_netstack_default_wifi_ap) +esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) (wlanif_input) +esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) (ethernetif_input) +esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) (esp_pbuf_allocate) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) (esp_supplicant_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (esp_supplicant_unset_all_appie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (wps_get_wps_sm_cb) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (esp_wpa3_free_sae_data) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (owe_deinit) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (hostapd_get_hapd_data) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) (crypto_ecdh_deinit) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (eloop_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) (hostapd_setup_wpa_psk) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) (wpa_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (wpa_auth_gen_wpa_ie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (pmksa_cache_free_entry) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (ap_get_sta) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (handle_auth_sae) +esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) (check_comeback_token) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) (sae_clear_temp_data) +esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (dragonfly_min_pwe_loop_iter) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) (wpa_cipher_valid_mgmt_group) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (hmac_sha256_kdf) +esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (dh_groups_get) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (sha256_prf_bits) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (sha1_prf) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (eap_wsc_build_frag_ack) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (eap_msg_alloc) +esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (pmksa_cache_clear_current) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (cipher_type_map_supp_to_public) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (wpa_parse_wpa_ie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wpabuf_alloc) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) (wpa_snprintf_hex) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_build_public_key) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) (wps_parse_msg) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_generate_pin) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) (wps_build_manufacturer) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_enrollee_get_msg) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (sae_pk_valid_password) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (eap_client_get_eap_state) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wpa_alloc_eapol) +esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (tls_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (crypto_bignum_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (rc4_skip) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (aes_wrap) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (aes_unwrap) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) (aes_siv_decrypt) +esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) (dh5_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) (ieee802_11_parse_elems) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (eap_peer_get_eap_method) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_mschapv2_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_peap_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) (peap_prfplus) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_tls_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) (eap_peer_tls_ssl_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_ttls_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) (mschapv2_remove_domain) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) (wps_process_authenticator) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) (nt_password_hash) +esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) (md4_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) (chap_md5) +esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) (des_encrypt) +esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (esp_coex_common_malloc_internal_wrapper) +esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) (pp_printf) +esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) (regulatory_data) +esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) (esp_crypto_sha1) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_pk_write_pubkey) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (g_misc_nvs) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) (g_espnow_user_oui) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (mesh_set_ie_crypto_config) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) (mesh_malloc) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) (g_mesh_max_layer) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) (esp_mesh_pm_tbtt_timeout_process) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) (g_is_wifi_connected) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) (mesh_tx_cb) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) (esp_mesh_delivery_toDS) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) (esp_mesh_channel_enable_jp) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) (g_mesh_nvs_settings) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) (mesh_topo_get_ttl) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) (esp_mesh_route_init) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) (mesh_timer_do_process) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) (esp_mesh_io_sem_signal) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) (esp_mesh_ap_list_clear) +esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (esp_crt_bundle_attach) +esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) (_binary_x509_crt_bundle_start) +esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_hal_deinit) +esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_ahb_hal_init) +esp-idf/hal/libhal.a(ds_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) (ds_hal_start) +esp-idf/soc/libsoc.a(gdma_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_periph_signals) +esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) (ethip6_output) +esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) (esp_mesh_send_event_internal) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (xthal_window_spill_nw) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) (Xthal_intlevel) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) (xthal_restore_extra_nw) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) (xthal_save_extra_nw) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (operator delete[](void*)) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (std::nothrow) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (operator new[](unsigned int, std::nothrow_t const&)) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) (operator delete(void*)) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) (__cxa_begin_catch) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) (__cxa_get_globals_fast) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) (std::terminate()) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__unexpected_handler) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) (operator new[](unsigned int)) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__terminate_handler) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) (operator new(unsigned int)) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) (vtable for __cxxabiv1::__si_class_type_info) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) (std::type_info::__is_pointer_p() const) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) (vtable for std::bad_alloc) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) (__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) (operator delete(void*, unsigned int)) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) (std::exception::~exception()) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) (__bswapsi2) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (__bswapdi2) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) (__divsf3) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) (__floatundisf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) (__adddf3) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + esp-idf/json/libjson.a(cJSON.c.obj) (__muldf3) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + esp-idf/json/libjson.a(cJSON.c.obj) (__eqdf2) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + esp-idf/json/libjson.a(cJSON.c.obj) (__fixdfsi) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) (__floatunsidf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) (__truncdfsf2) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + esp-idf/json/libjson.a(cJSON.c.obj) (__extendsfdf2) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (__udivdi3) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) (__wrap__Unwind_DeleteException) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) (phy_param_track_tot) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_wakeup_init) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) (g_phyFuns) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (get_phy_version_str) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (set_pbus_mem) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (wait_freq_set_busy) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_dig_reg_backup) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) (rfpll_set_freq) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (tsens_read_init_new) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (ram_i2c_master_reset) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (rc_cal) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) (get_sar_sig_ref) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) (wr_rx_gain_mem) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (ram_wifi_tx_dig_gain) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (rx_11b_opt) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) (pbus_rx_dco_cal) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (ram_set_txcap_reg) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) (bt_txdc_cal) +C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) (coex_pti_print) +esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) (phy_printf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + esp-idf/lwip/liblwip.a(netdb.c.obj) (atoi) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (div) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (environ) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) (itoa) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (rand) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + esp-idf/json/libjson.a(cJSON.c.obj) (strtod) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) (_strtol_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) (strtoul) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) (__utoa) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + esp-idf/json/libjson.a(cJSON.c.obj) (_ctype_) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_fclose_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) (ferror) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) (__sflush_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (fgets) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) (__sglue) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (fopen) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fprintf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fputc) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (fputs) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) (fread) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) (_fseek_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (ftell) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) (__sfvwrite_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) (_fwalk_sglue) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fwrite) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (printf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) (_putc_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (putchar) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) (__srefill_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (remove) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (rename) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) (setbuf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) (setvbuf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (snprintf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) (sprintf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) (sscanf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) (__sread) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + esp-idf/log/liblog.a(log_write.c.obj) (vprintf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) (vsnprintf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) (__swbuf_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (__swsetup_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (asprintf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) (_fseeko_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) (_ftello_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) (memchr) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (memcmp) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + esp-idf/lwip/liblwip.a(def.c.obj) (memmove) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) (strcasecmp) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (strchr) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) (strdup) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) (_strdup_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (strerror) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strlcpy) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) (strncasecmp) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (strnlen) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (strrchr) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) (_user_strerror) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (strndup) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) (strcasestr) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) (_strndup_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (gmtime) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) (gmtime_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (mktime) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) (time) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) (__tzcalc_limits) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) (__tz_lock) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) (_tzset_unlocked) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) (_tzset_unlocked_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) (_timezone) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) (__global_locale_ptr) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) (_impure_ptr) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + esp-idf/newlib/libnewlib.a(getentropy.c.obj) (__errno) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (close) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (fcntl) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) (gettimeofday) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (open) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (read) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) (stat) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (write) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (memcpy) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (memset) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + esp-idf/log/liblog.a(tag_log_level.c.obj) (strcmp) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) (strcpy) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (strlen) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) (strncpy) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) (nan) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) (nanf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) (__gethex) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) (__match) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) (_getenv_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) (__ascii_mbtowc) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) (_Balloc) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) (__ascii_wctomb) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) (siscanf) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) (__ssvfiscanf_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) (_svfprintf_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) (__ssvfscanf_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) (_vfprintf_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) (__sprint_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) (__sflags) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) (__swhatbuf_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) (__sccl) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) (__submore) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) (__gettzinfo) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) (__month_lengths) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) (_localeconv_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) (frexp) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) (_dtoa_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) (__env_lock) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) (_strtoll_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) (_strtoull_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) (_mbrtowc_r) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) (iswspace) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) (iswspace_l) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) (__chclass) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) (__divdf3) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) (__fixdfdi) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) (__fixunsdfsi) +C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) (__floatdidf) + +Allocating common symbols +Common symbol size file + +phy_version_str 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +chip7_phy_init_ctrl + 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + +Discarded input sections + + .text 0x00000000 0x0 CMakeFiles/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.c.obj + .data 0x00000000 0x0 CMakeFiles/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.c.obj + .bss 0x00000000 0x0 CMakeFiles/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.c.obj + .comment 0x00000000 0x30 CMakeFiles/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.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 0x15c 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_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 0x54 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) + .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 0x46 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 0x4e 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 0x43 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 0x45 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 0xf5 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 0x690 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 0x20 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 0x14 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_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.fill_reg + 0x00000000 0x9d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.set_cnt_in_reg + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x51 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 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x72 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x3e 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 0x2e 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 0x4c 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 0x24 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__$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) + .xt.lit 0x00000000 0x90 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x00000000 0x7a4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_block_is_empty + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_purpose_field + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key + 0x00000000 0x4 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_get_key_purpose + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_purpose + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x8 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_key_block_unused + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_unused_key_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_count_unused_key_blocks + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_digest_revoke + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_digest_revoke + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_secure_boot_read_key_digests + 0x00000000 0x24 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_block_is_empty + 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x79 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x3a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x00000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_purpose_field + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.4 + 0x00000000 0x8f 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 0x25 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 0x25 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_purpose + 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x25 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x2b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x49 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_unused_key_block + 0x00000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_count_unused_key_blocks + 0x00000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_key.str1.4 + 0x00000000 0x65 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0xfd esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.4 + 0x00000000 0xd2 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0x105 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_digest_revoke.str1.4 + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_digest_revoke + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_digest_revoke + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_secure_boot_read_key_digests.str1.4 + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_secure_boot_read_key_digests + 0x00000000 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$0 + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$1 + 0x00000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$2 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$3 + 0x00000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$4 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$5 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_revoke_table + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00000000 0x268 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x00000000 0x16a1 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00000000 0x377 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x00000000 0xc96 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00000000 0x138 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000 0x1695 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x00000000 0x1165 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 0xc0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xt.prop 0x00000000 0x99c 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_SYS_DATA_PART2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OCODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_TEMP_CALIB + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR_HI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIG_DBIAS_HVT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_DIG_DBIAS20 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_RTC_DBIAS20 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_DIG_LDO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_RTC_LDO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_CAP + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PKG_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR_LO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D7 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D6 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_DQS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_WP + 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_SPI_PAD_CONFIG_CS + 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_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG_DOWNLOAD_MODE + 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_FORCE_SEND_RESUME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_PAGE_SIZE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TYPE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PIN_POWER_SELECTION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_PRINT_CONTROL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DIRECT_BOOT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TPUW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_PHY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_STRAP_JTAG_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WDT_DELAY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_XPD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXT_PHY_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXCHG_PINS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_PAD_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SOFT_DIS_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_TWAI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_DCACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DCACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY0 + 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_SOFT_DIS_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXT_PHY_ENABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY0 + 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_BLOCK_USR_DATA + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_OCODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_TEMP_CALIB + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIG_DBIAS_HVT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_V_DIG_DBIAS20 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_V_RTC_DBIAS20 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_K_DIG_LDO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_K_RTC_LDO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_VENDOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TEMP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PKG_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_WP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS + 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_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE + 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_FORCE_SEND_RESUME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_ECC_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_PAGE_SIZE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TYPE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PIN_POWER_SELECTION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_ECC_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TPUW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WDT_DELAY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_XPD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_PHY_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_STRAP_JTAG_SEL + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_PAD_JTAG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_TWAI + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_OTG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_DCACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DCACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_ICACHE + 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.SYS_DATA_PART2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY5 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY4 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY3 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY2 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY1 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY0 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USER_DATA + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.OCODE 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.TEMP_CALIB + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.OPTIONAL_UNIQUE_ID + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR_HI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIG_DBIAS_HVT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.V_DIG_DBIAS20 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.V_RTC_DBIAS20 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.K_DIG_LDO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.K_RTC_LDO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PSRAM_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PSRAM_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PSRAM_CAP + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PKG_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR_LO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D7 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D6 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_DQS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_WP + 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.SPI_PAD_CONFIG_CS + 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.DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG_DOWNLOAD_MODE + 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.FORCE_SEND_RESUME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_PAGE_SIZE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_TYPE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PIN_POWER_SELECTION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.UART_PRINT_CONTROL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DIRECT_BOOT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_TPUW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_PHY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.STRAP_JTAG_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WDT_DELAY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_XPD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_EXT_PHY_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_EXCHG_PINS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_PAD_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SOFT_DIS_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_TWAI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_FORCE_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_DCACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DCACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY0 + 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_SOFT_DIS_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXT_PHY_ENABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXCHG_PINS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY0 + 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_BLOCK_USR_DATA + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_OCODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_TEMP_CALIB + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SYS_DATA_PART1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MINOR_HI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIG_DBIAS_HVT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_V_DIG_DBIAS20 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_V_RTC_DBIAS20 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_K_DIG_LDO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_K_RTC_LDO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_CAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_VENDOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TEMP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CAP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PKG_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MINOR_LO + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D7 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D6 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_DQS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_WP + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_HD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS + 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_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE + 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_FORCE_SEND_RESUME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_ECC_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_PAGE_SIZE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TYPE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PIN_POWER_SELECTION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_ECC_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TPUW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_EN + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WDT_DELAY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_XPD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_PHY_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_STRAP_JTAG_SEL + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_PAD_JTAG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_TWAI + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_OTG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_DCACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DCACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_ICACHE + 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) + .xt.prop 0x00000000 0x1530 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.esp_efuse_set_timing + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip_opt + 0x00000000 0xb8 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_set_timing + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x00000000 0x11 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip_opt.str1.4 + 0x00000000 0x1d8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip_opt + 0x00000000 0x27e 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 0x93 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x00000000 0x2d0 esp-idf/efuse/libefuse.a(esp_efuse_utility.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) + .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 0x30 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .xt.prop 0x00000000 0x1bc esp-idf/esp_system/libesp_system.a(startup_funcs.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 0x32 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) + .rodata.str1.4 + 0x00000000 0x8b esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.__func__$0 + 0x00000000 0x17 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.prop 0x00000000 0x3a8 esp-idf/esp_system/libesp_system.a(cpu_start.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_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 0x7 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 0x28 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xt.prop 0x00000000 0xe4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.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 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xt.prop 0x00000000 0x21c 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) + .rodata 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.prop 0x00000000 0x21c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/esp_system/libesp_system.a(apb_backup_dma.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 0xf0 esp-idf/esp_system/libesp_system.a(int_wdt.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) + .xt.lit 0x00000000 0x70 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xt.prop 0x00000000 0x4ec 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 0x38 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xt.prop 0x00000000 0x1ec 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 0x258 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .iram1.7.literal + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.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.2.literal + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.3.literal + 0x00000000 0x38 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.7 0x00000000 0x61 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.2 0x00000000 0x76 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .rodata.str1.4 + 0x00000000 0x33 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.3 0x00000000 0x8e 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) + .rodata.__func__$0 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.esp_ipc_isr_finish_cmd + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stored_interrupt_level + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_count_of_nested_calls + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data.s_ipc_isr_mux + 0x00000000 0x8 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) + .iram1.0.literal + 0x00000000 0x8 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_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) + .iram1.0 0x00000000 0x20 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_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(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) + .iram1 0x00000000 0xa esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_line 0x00000000 0xa6 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_info 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_abbrev 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_str 0x00000000 0xa2 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(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 0x390 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 0x68 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 0x1c1 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 0x33c 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_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 0x300 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .literal.esp_register_freertos_idle_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_deregister_freertos_idle_hook + 0x00000000 0x2e 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 0x2e 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) + .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 0x58 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) + .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.Cache_Count_Flash_Pages + 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_WriteBack_Addr + 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Count_Flash_Pages + 0x00000000 0x17 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_WriteBack_Addr + 0x00000000 0xa2 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .text 0x00000000 0x56 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_line 0x00000000 0x160 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_info 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_abbrev 0x00000000 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_str 0x00000000 0xbe esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xt.prop 0x00000000 0x54 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .literal.efuse_hal_get_mac + 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 0x19 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.prop 0x00000000 0x168 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_set_timing + 0x00000000 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x00000000 0xc esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x00000000 0x24 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_rs_calculate + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x00000000 0x8 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 0x61 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x52 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0xb esp-idf/hal/libhal.a(efuse_hal.c.obj) + .rodata.efuse_hal_program.str1.4 + 0x00000000 0x53 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x6e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_rs_calculate + 0x00000000 0xf esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x5a 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 0x240 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.cache_hal_writeback_addr + 0x00000000 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_writeback_addr + 0x00000000 0x2a esp-idf/hal/libhal.a(cache_hal.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/hal/libhal.a(cache_hal.c.obj) + .xt.prop 0x00000000 0x684 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.uart_hal_txfifo_rst + 0x00000000 0x8 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_txfifo_rst + 0x00000000 0x27 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x00000000 0x5a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_read_rxfifo + 0x00000000 0x2e esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/hal/libhal.a(uart_hal_iram.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) + .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) + .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) + .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) + .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) + .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) + .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.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) + .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) + .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) + .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) + .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) + .xt.lit 0x00000000 0x38 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .xt.prop 0x00000000 0x2ac 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) + .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.5.literal + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6.literal + 0x00000000 0x10 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.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_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) + .text.heap_caps_walker + 0x00000000 0x2a 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.5 0x00000000 0x8a esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6 0x00000000 0x8a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_total_size + 0x00000000 0x2b esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_minimum_free_size + 0x00000000 0x2d 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 0x90 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 0x7f 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 0x3a 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.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) + .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__$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) + .data.min_free_bytes_monitoring + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.lit 0x00000000 0x108 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.prop 0x00000000 0xd68 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 0x3d esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region_with_caps + 0x00000000 0x11a 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 0x48c 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 0x4f 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 0x50 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 0xe 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 0x1e 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 0x7b0 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 0x10b 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 0x136 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 0x51a 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 0x1068 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 0x1ec 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 0x6c 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 0x3d8 esp-idf/heap/libheap.a(heap_caps_base.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.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 0x34 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 0x2d0 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 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.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) + .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 0x288 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) + .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) + .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 0x1ce 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 0x11c4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.periph_ll_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) + .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 0x4b 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 0x73 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 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xt.prop 0x00000000 0x1020 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 0x6d 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) + .iram1.0.literal + 0x00000000 0x5c 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.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.0 0x00000000 0x1ee esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xt.prop 0x00000000 0x2b8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.s_register_config_driver + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.s_register_config_driver + 0x00000000 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_psram_tuning + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .bss.s_tuning_cfg_drv + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .xt.prop 0x00000000 0x1e0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.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 0x3a 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 0x4 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_fast_src_get + 0x00000000 0x4 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_config_fast + 0x00000000 0x10 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_apb_freq_get + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_divider_set + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_divider_set + 0x00000000 0x18 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 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0x1e 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_fast_src_get + 0x00000000 0x18 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_config_fast + 0x00000000 0x38 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_apb_freq_get + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_divider_set + 0x00000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_divider_set + 0x00000000 0x57 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) + .rodata.__func__$4 + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.__func__$3 + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xt.lit 0x00000000 0x128 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xt.prop 0x00000000 0xc3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_vddsdio_get_config + 0x00000000 0x8 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 0x6e 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 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xt.prop 0x00000000 0x36c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .iram1.1.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_get_default_config + 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x00000000 0xd8 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 0x24 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.1 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.rtc_sleep_get_default_config.str1.4 + 0x00000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x00000000 0x1ee esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.rtc_sleep_init.str1.4 + 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x00000000 0x3f5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x00000000 0x81 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x00000000 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.__func__$0 + 0x00000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.__func__$1 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xt.prop 0x00000000 0x300 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_clk_cal_ratio + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_wait_for_slow_cycle + 0x00000000 0xc 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) + .text.rtc_time_slowclk_to_us + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_wait_for_slow_cycle + 0x00000000 0x2e 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 0x3b4 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 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .literal.sar_periph_ctrl_power_enable + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_disable + 0x00000000 0x2c 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.sar_periph_ctrl_power_enable + 0x00000000 0x6f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_disable + 0x00000000 0x6f 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) + .xt.lit 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xt.prop 0x00000000 0x2f4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.memprot_ll_get_split_addr_from_reg + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_iram0_get_monitor_status_intr + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_iram0_get_monitor_status_fault_wr + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_iram0_get_monitor_status_fault_loadstore + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_iram0_get_monitor_status_fault_world + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_iram0_get_monitor_status_fault_addr + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_rtcfast_get_monitor_status_intr + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_rtcfast_get_monitor_status_fault_world + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_rtcfast_get_monitor_status_fault_loadstore + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_rtcfast_get_monitor_status_fault_wr + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_dram0_get_monitor_status_intr + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_dram0_get_monitor_status_fault_world + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_dram0_get_monitor_status_fault_addr + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_dram0_get_monitor_status_fault_wr + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_dram0_get_monitor_status_fault_byte_en + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_get_split_addr + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_get_active_intr + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_is_intr_ena_any + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_get_violate_addr + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_get_violate_world + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_get_violate_operation + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_get_violate_byte_enables + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_dump_configuration + 0x00000000 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_get_split_addr_from_reg + 0x00000000 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_iram0_get_monitor_status_intr + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_iram0_get_monitor_status_fault_wr + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_iram0_get_monitor_status_fault_loadstore + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_iram0_get_monitor_status_fault_world + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_iram0_get_monitor_status_fault_addr + 0x00000000 0x45 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_rtcfast_get_monitor_status_intr + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_rtcfast_get_monitor_status_fault_world + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_rtcfast_get_monitor_status_fault_loadstore + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_rtcfast_get_monitor_status_fault_wr + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_dram0_get_monitor_status_intr + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_dram0_get_monitor_status_fault_world + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_dram0_get_monitor_status_fault_addr + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_dram0_get_monitor_status_fault_wr + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_dram0_get_monitor_status_fault_byte_en + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_get_split_addr + 0x00000000 0x10e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_get_active_intr + 0x00000000 0x11a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_is_intr_ena_any + 0x00000000 0xfc esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_get_violate_addr + 0x00000000 0xa4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_get_violate_world + 0x00000000 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_get_violate_operation + 0x00000000 0xec esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_has_byte_enables + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_get_violate_byte_enables + 0x00000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .rodata.esp_mprot_dump_configuration.str1.4 + 0x00000000 0x326 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_dump_configuration + 0x00000000 0x406 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .xt.lit 0x00000000 0x260 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .xt.prop 0x00000000 0x2f28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_ll_world_to_hl_world + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .literal.esp_mprot_oper_type_to_str + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .literal.esp_mprot_pms_world_to_str + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .text.esp_mprot_ll_world_to_hl_world + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .rodata.esp_mprot_oper_type_to_str.str1.4 + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .text.esp_mprot_oper_type_to_str + 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .rodata.esp_mprot_pms_world_to_str.str1.4 + 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .text.esp_mprot_pms_world_to_str + 0x00000000 0x45 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .xt.prop 0x00000000 0x2ac esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .xt.prop 0x00000000 0x204 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.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 0x54 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) + .iram1.2.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.3.literal + 0x00000000 0x8 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) + .iram1.2 0x00000000 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.3 0x00000000 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .dram1.1 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xt.prop 0x00000000 0x348 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_function_select + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_ext0_set_wakeup_pin + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.entry.literal + 0x00000000 0x4 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) + .iram1.15.literal + 0x00000000 0x10 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.ext0_wakeup_prepare + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.30.literal + 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) + .iram1.29.literal + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.20.literal + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.14.literal + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.ext1_wakeup_prepare + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.18.literal + 0x00000000 0x18 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) + .iram1.28.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.9.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.23.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.10.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.19.literal + 0x00000000 0x14 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) + .rtc.text.5.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.6.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.21.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.22.literal + 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.27.literal + 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.text.7.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.24.literal + 0x00000000 0x5c 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_deregister_phy_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.25.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.26.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_light_sleep_start + 0x00000000 0xf0 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 0x8 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 0x18 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 0x8 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_enable_wifi_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wifi_wakeup + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_bt_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_bt_wakeup + 0x00000000 0xc 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_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 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_sub_mode_force_disable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_sub_mode_dump_config + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.32.literal + 0x00000000 0x8 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_iomux_func_sel + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_function_select + 0x00000000 0x76 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) + .rtc.entry.text + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.8 0x00000000 0x5 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) + .iram1.15 0x00000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.16 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.17 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.ext0_wakeup_prepare + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.30 0x00000000 0x67 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.31 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) + .iram1.29 0x00000000 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.20 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.14 0x00000000 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.ext1_wakeup_prepare.str1.4 + 0x00000000 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.ext1_wakeup_prepare + 0x00000000 0x128 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.18 0x00000000 0x43 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) + .iram1.28 0x00000000 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.9 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.23 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.10 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.19 0x00000000 0x26 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) + .rtc.text.5 0x00000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.6 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.21 0x00000000 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.22 0x00000000 0x176 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.27 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_get_deep_sleep_wake_stub + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.7 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.24 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_deregister_phy_hook + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.25 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.26 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_light_sleep_start + 0x00000000 0x382 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 0x14d 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 0x8d 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) + .text.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x28 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) + .text.esp_sleep_enable_ext0_wakeup + 0x00000000 0x71 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 0x13d 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 0xed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup + 0x00000000 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_gpio_wakeup + 0x00000000 0x27 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 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_wakeup + 0x00000000 0x28 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 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_bt_wakeup + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_cause + 0x00000000 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_pd_config.str1.4 + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_pd_config + 0x00000000 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_sub_mode_force_disable + 0x00000000 0x5d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_sub_mode_dump_config.str1.4 + 0x00000000 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_sub_mode_dump_config + 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.32 0x00000000 0x18 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__$4 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$3 + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$2 + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$1 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_suspended_uarts_bmap + 0x00000000 0x4 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) + .rtc.force_fast.4 + 0x00000000 0x4 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_cb + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xt.lit 0x00000000 0x210 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.sleep_console_usj_pad_backup_and_disable + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .literal.sleep_console_usj_pad_restore + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .text.sleep_console_usj_pad_backup_and_disable + 0x00000000 0xa2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .text.sleep_console_usj_pad_restore + 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .bss.s_usj_state + 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_info 0x00000000 0x5df4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_abbrev 0x00000000 0x251 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_loc 0x00000000 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_line 0x00000000 0x54f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .debug_str 0x00000000 0x4bee esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + .xt.prop 0x00000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.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 0xf3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_str 0x00000000 0x3ca 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) + .literal.cache_tagmem_retention_setup + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .literal.esp_sleep_tagmem_pd_low_init + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .literal.esp_sleep_tagmem_pd_low_deinit + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .literal.esp_sleep_cpu_pd_low_init + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .literal.esp_sleep_cpu_pd_low_deinit + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .literal.sleep_enable_cpu_retention + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .iram1.1.literal + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .literal.esp_sleep_cpu_retention_init + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .literal.esp_sleep_cpu_retention_deinit + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .literal.cpu_domain_pd_allowed + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .literal.sleep_cpu_configure + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.cache_tagmem_retention_setup + 0x00000000 0x14c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.esp_sleep_tagmem_pd_low_init.str1.4 + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.esp_sleep_tagmem_pd_low_init + 0x00000000 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.esp_sleep_tagmem_pd_low_deinit + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.esp_sleep_cpu_pd_low_init + 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.esp_sleep_cpu_pd_low_deinit + 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.sleep_enable_cpu_retention + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .iram1.1 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.esp_sleep_cpu_retention_init + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.esp_sleep_cpu_retention_deinit + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.cpu_domain_pd_allowed + 0x00000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.sleep_cpu_configure.str1.4 + 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .text.sleep_cpu_configure + 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .dram1.0 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_info 0x00000000 0xa80 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_abbrev 0x00000000 0x2b8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_loc 0x00000000 0x336 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_ranges 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_line 0x00000000 0xd5a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .debug_str 0x00000000 0x932 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .xt.prop 0x00000000 0x2d0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + .literal.esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .literal.esp_clk_utils_mspi_speed_mode_sync_after_cpu_freq_switching + 0x00000000 0x8 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(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_before_cpu_freq_switching + 0x00000000 0x38 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 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_info 0x00000000 0x199 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_abbrev 0x00000000 0xdf esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_loc 0x00000000 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_line 0x00000000 0x3ca esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_str 0x00000000 0x353 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .xt.prop 0x00000000 0xd8 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_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 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.periph_inform_out_light_sleep_overhead + 0x00000000 0x1f 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 0x301 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_abbrev 0x00000000 0x1be esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_loc 0x00000000 0x165 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 0x56b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_str 0x00000000 0x4f9 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.xQueueCreateCountingSemaphoreStatic + 0x00000000 0x14 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.uxQueueSpacesAvailable + 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.xQueueCreateCountingSemaphoreStatic + 0x00000000 0x44 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 0x7c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueSpacesAvailable + 0x00000000 0x3a 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 0x15 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__$4 + 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__$16 + 0x00000000 0x24 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 0x117c 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.vTaskPlaceOnEventListRestricted + 0x00000000 0x28 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.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.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.xTaskGetIdleTaskHandle + 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 0xd2 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 0xf7 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 0xa1 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskAbortDelay + 0x00000000 0xee esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnEventListRestricted + 0x00000000 0xc3 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.xTaskGetStaticBuffers.str1.4 + 0x00000000 0x3d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetStaticBuffers + 0x00000000 0x60 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 0xb3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCatchUpTicks + 0x00000000 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyWait + 0x00000000 0x137 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyFromISR + 0x00000000 0x24b 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 0x5e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGenericNotifyValueClear + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x00000000 0x12 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 0xe3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskPriorityRestore + 0x00000000 0xef esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetNext + 0x00000000 0x78 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pvTaskGetCurrentTCBForCore + 0x00000000 0x27 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__$21 + 0x00000000 0x20 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__$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 0x2718 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 0x25 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 0x594 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 0x144 esp-idf/freertos/libfreertos.a(portasm.S.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 0x18 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 0x59 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 0x204 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 0x4b 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 0x20 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xt.prop 0x00000000 0x1d4 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) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(init.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(init.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/newlib/libnewlib.a(init.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/newlib/libnewlib.a(init.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xt.prop 0x00000000 0x3c esp-idf/newlib/libnewlib.a(abort.c.obj) + .literal.__assert + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(assert.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .text.__assert + 0x00000000 0x11 esp-idf/newlib/libnewlib.a(assert.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/newlib/libnewlib.a(assert.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/newlib/libnewlib.a(assert.c.obj) + .literal.memalign + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.aligned_alloc + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.posix_memalign + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.mallinfo + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.memalign + 0x00000000 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.aligned_alloc + 0x00000000 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.posix_memalign + 0x00000000 0x25 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_trim + 0x00000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_usable_size + 0x00000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_stats + 0x00000000 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallopt 0x00000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallinfo + 0x00000000 0x1f esp-idf/newlib/libnewlib.a(heap.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xt.prop 0x00000000 0x348 esp-idf/newlib/libnewlib.a(heap.c.obj) + .iram1.1.literal + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.2.literal + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.1 0x00000000 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.2 0x00000000 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xt.lit 0x00000000 0xc8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xt.prop 0x00000000 0x66c esp-idf/newlib/libnewlib.a(locks.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_setcancelstate + 0x00000000 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_sigmask + 0x00000000 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.sigfillset + 0x00000000 0xd esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/newlib/libnewlib.a(pthread.c.obj) + .literal.getentropy + 0x00000000 0xc esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .text.getentropy + 0x00000000 0x3f esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .literal.adjtime + 0x00000000 0x3c esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_settime + 0x00000000 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_getres + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.adjtime 0x00000000 0xed esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_settime + 0x00000000 0x52 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_getres + 0x00000000 0x27 esp-idf/newlib/libnewlib.a(time.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/newlib/libnewlib.a(time.c.obj) + .xt.prop 0x00000000 0x4bc esp-idf/newlib/libnewlib.a(time.c.obj) + .literal._exit + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.raise + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.system + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._exit 0x00000000 0x9 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.raise 0x00000000 0x15 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.system 0x00000000 0x15 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xt.prop 0x00000000 0xd8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._write_r_console + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .literal._read_r_console + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .literal._fstat_r_console + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .literal._fsync_console + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .text._write_r_console + 0x00000000 0x3c esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .text._read_r_console + 0x00000000 0x42 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .text._fstat_r_console + 0x00000000 0x26 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .text._fsync_console + 0x00000000 0x23 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .xt.prop 0x00000000 0x210 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .xt.prop 0x00000000 0x168 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .literal.esp_reent_cleanup + 0x00000000 0x10 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text.esp_reent_cleanup + 0x00000000 0x75 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xt.prop 0x00000000 0xd8 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .xt.prop 0x00000000 0x120 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/newlib/libnewlib.a(random.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/newlib/libnewlib.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.pthread_mutex_lock_internal + 0x00000000 0x10 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 0xc 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_init + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_init_if_static + 0x00000000 0x10 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_lock + 0x00000000 0x8 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_mutex_unlock + 0x00000000 0x20 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.mutexattr_check + 0x00000000 0x11 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.pthread_mutex_lock_internal + 0x00000000 0x5f 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 0xb1 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_cfg + 0x00000000 0x71 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_default_config + 0x00000000 0x25 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 0xdc esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x00000000 0x6a esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_exit.str1.4 + 0x00000000 0x57 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x00000000 0x96 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) + .text.pthread_mutex_init + 0x00000000 0x72 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init_if_static + 0x00000000 0x3b 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 0x7a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_lock + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_timedlock + 0x00000000 0xf0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_trylock + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_mutex_unlock.str1.4 + 0x00000000 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_unlock + 0x00000000 0x6d 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 0x1c 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 0x25 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_getschedparam + 0x00000000 0x4c 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__$0 + 0x00000000 0x15 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) + .data.pthread_lazy_init_lock + 0x00000000 0x8 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 0x1200 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 0x32 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 0x38 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_broadcast + 0x00000000 0x3f esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_timedwait + 0x00000000 0x15f 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 0x52 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 0x4d4 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) + .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 0x78 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 0x26 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_destroy + 0x00000000 0x64 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_rdlock + 0x00000000 0x56 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_tryrdlock + 0x00000000 0x3e 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 0x4e 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 0x83 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 0x48 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xt.prop 0x00000000 0x414 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 0x14 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_post + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_timedwait + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_trywait + 0x00000000 0xc 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 0xc 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 0x21 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_init + 0x00000000 0x4e esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_post + 0x00000000 0x39 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_timedwait + 0x00000000 0xee esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_trywait + 0x00000000 0x35 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 0x34 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 0x33c 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 0x4a 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) + .xt.prop 0x00000000 0x48 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) + .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.0.literal + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_set + 0x00000000 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_advance + 0x00000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_deinit + 0x00000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x00000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.0 0x00000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_set + 0x00000000 0x7b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_advance + 0x00000000 0x57 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_deinit + 0x00000000 0x60 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x00000000 0x53 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .xt.prop 0x00000000 0x3a8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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 0x23 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_port_set_tx_line_endings + 0x00000000 0x23 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 0x110 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .xt.prop 0x00000000 0x1818 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_pattern_enqueue + 0x00000000 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_pattern_link_free + 0x00000000 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_release_pin + 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_try_set_iomux_pin + 0x00000000 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_ll_enable_bus_clock + 0x00000000 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_module_disable + 0x00000000 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_ll_reset_register + 0x00000000 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_module_enable + 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_enable_tx_write_fifo + 0x00000000 0x28 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_check_buf_full + 0x00000000 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_rx_intr_handler_default + 0x00000000 0x11c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_free_driver_obj + 0x00000000 0x28 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_alloc_driver_obj + 0x00000000 0x30 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_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_disable_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_pattern_queue_reset + 0x00000000 0x3c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_enable_pattern_det_baud_intr + 0x00000000 0x4c 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_disable_rx_intr + 0x00000000 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_disable_tx_intr + 0x00000000 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_enable_tx_intr + 0x00000000 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_tx_all + 0x00000000 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_pin + 0x00000000 0xa8 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_param_config + 0x00000000 0xe4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_intr_config + 0x00000000 0x40 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 + 0x00000000 0x34 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_read_bytes + 0x00000000 0x5c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_get_tx_buffer_free_size + 0x00000000 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_driver_delete + 0x00000000 0x5c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_driver_install + 0x00000000 0xac esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_mode + 0x00000000 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_rx_full_threshold + 0x00000000 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_tx_empty_threshold + 0x00000000 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_rx_timeout + 0x00000000 0x34 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_get_collision_flag + 0x00000000 0x3c 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 0x24 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 0xa4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_detect_bitrate_stop + 0x00000000 0x70 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_find_pattern_from_last + 0x00000000 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_pattern_enqueue.str1.4 + 0x00000000 0x46 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_enqueue + 0x00000000 0x50 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_link_free + 0x00000000 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_release_pin + 0x00000000 0xc8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_try_set_iomux_pin + 0x00000000 0x79 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_ll_enable_bus_clock + 0x00000000 0x70 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_module_disable + 0x00000000 0x58 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_ll_reset_register + 0x00000000 0x124 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_module_enable + 0x00000000 0x7e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_enable_tx_write_fifo + 0x00000000 0xb0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_check_buf_full + 0x00000000 0x74 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_rx_intr_handler_default + 0x00000000 0x8f2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_free_driver_obj + 0x00000000 0x72 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_alloc_driver_obj + 0x00000000 0xea 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_line_inverse + 0x00000000 0x64 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 0xd8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_hw_flow_ctrl.str1.4 + 0x00000000 0x58 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_hw_flow_ctrl + 0x00000000 0xba esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_hw_flow_ctrl + 0x00000000 0x64 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_clear_intr_status + 0x00000000 0x41 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_enable_intr_mask + 0x00000000 0x85 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_disable_intr_mask + 0x00000000 0x7d 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 0x7c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_queue_reset + 0x00000000 0xb4 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 0x129 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) + .text.uart_disable_rx_intr + 0x00000000 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_disable_tx_intr + 0x00000000 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_enable_tx_intr.str1.4 + 0x00000000 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_enable_tx_intr + 0x00000000 0xb1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_tx_all + 0x00000000 0x191 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_pin.str1.4 + 0x00000000 0xd9 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_pin + 0x00000000 0x436 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 0xad esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_dtr + 0x00000000 0x64 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 0x94 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_param_config.str1.4 + 0x00000000 0xbd esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_param_config + 0x00000000 0x386 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_intr_config + 0x00000000 0x104 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_tx_chars.str1.4 + 0x00000000 0x21 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_tx_chars + 0x00000000 0xc0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_write_bytes + 0x00000000 0x9a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_write_bytes_with_break.str1.4 + 0x00000000 0x71 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) + .text.uart_read_bytes + 0x00000000 0x15c 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 0x98 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_driver_delete.str1.4 + 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_driver_delete + 0x00000000 0xfb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_driver_install.str1.4 + 0x00000000 0x1c8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata 0x00000000 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_driver_install + 0x00000000 0x266 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 0x12a 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 0xd8 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 0xd8 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 0x9e 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 0xb2 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 0xad esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_loop_back + 0x00000000 0x45 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_always_rx_timeout + 0x00000000 0x43 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 0x282 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 0x1d3 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__$39 + 0x00000000 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .bss.pat_flg$38 + 0x00000000 0x1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$37 + 0x00000000 0x14 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__$32 + 0x00000000 0x10 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__$30 + 0x00000000 0x11 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__$26 + 0x00000000 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$25 + 0x00000000 0x12 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__$20 + 0x00000000 0xd esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$19 + 0x00000000 0x14 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__$17 + 0x00000000 0x19 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__$14 + 0x00000000 0x17 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) + .xt.lit 0x00000000 0x248 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .xt.prop 0x00000000 0x28e0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.set_xpd_sar + 0x00000000 0xc 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) + .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) + .text.esp_phy_efuse_get_mac + 0x00000000 0xe 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 0x40 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .xt.prop 0x00000000 0x210 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.usb_serial_jtag_is_connected + 0x00000000 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .text.usb_serial_jtag_is_connected + 0x00000000 0x11 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .literal.usbjtag_wait_tx_done_via_driver + 0x00000000 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .literal.usbjtag_rx_char_via_driver + 0x00000000 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .literal.usbjtag_tx_char_via_driver + 0x00000000 0xc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .literal.usb_serial_jtag_vfs_set_tx_line_endings + 0x00000000 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .literal.usb_serial_jtag_vfs_set_rx_line_endings + 0x00000000 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .literal.usb_serial_jtag_vfs_register + 0x00000000 0xc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .literal.usb_serial_jtag_vfs_use_nonblocking + 0x00000000 0x28 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .literal.usb_serial_jtag_vfs_use_driver + 0x00000000 0x28 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usbjtag_wait_tx_done_via_driver + 0x00000000 0x14 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usbjtag_rx_char_via_driver + 0x00000000 0x29 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usbjtag_tx_char_via_driver + 0x00000000 0x40 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_vfs_set_tx_line_endings + 0x00000000 0xa esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_vfs_set_rx_line_endings + 0x00000000 0xa esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.usb_serial_jtag_vfs_register.str1.4 + 0x00000000 0x10 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_vfs_register + 0x00000000 0x18 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_vfs_use_nonblocking + 0x00000000 0x3b esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_vfs_use_driver + 0x00000000 0x3b esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .xt.lit 0x00000000 0xf0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .xt.prop 0x00000000 0xba0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .literal.usb_serial_jtag_isr_handler_default + 0x00000000 0x24 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_read_bytes + 0x00000000 0x10 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_write_bytes + 0x00000000 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_wait_tx_done + 0x00000000 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_driver_uninstall + 0x00000000 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_driver_install + 0x00000000 0xbc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_read_ready + 0x00000000 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_isr_handler_default + 0x00000000 0x1a6 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_read_bytes + 0x00000000 0x4a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .rodata.usb_serial_jtag_write_bytes.str1.4 + 0x00000000 0x6f esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_write_bytes + 0x00000000 0xc4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_wait_tx_done + 0x00000000 0x85 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .rodata.usb_serial_jtag_driver_uninstall.str1.4 + 0x00000000 0x2e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_driver_uninstall + 0x00000000 0xc0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .rodata.usb_serial_jtag_driver_install.str1.4 + 0x00000000 0x172 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_driver_install + 0x00000000 0x282 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_read_ready + 0x00000000 0x10 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x1f esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .xt.prop 0x00000000 0x510 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .text 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .data 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .xt.prop 0x00000000 0x438 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .literal.esp_vfs_free_entry + 0x00000000 0x8 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_fs_with_id + 0x00000000 0x4 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_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.esp_vfs_pread + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pwrite + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_ioctl + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_utime + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_opendir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_readdir + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_readdir_r + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_telldir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_seekdir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_rewinddir + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_closedir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_mkdir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_rmdir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_truncate + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_ftruncate + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflow + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetsid + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsendbreak + 0x00000000 0xc 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_free_entry + 0x00000000 0x1c 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_fs_with_id + 0x00000000 0x25 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_with_id + 0x00000000 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_with_id + 0x00000000 0x79 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 0x9d 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 0x85 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.esp_vfs_pread + 0x00000000 0x7e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pwrite + 0x00000000 0x7e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ioctl + 0x00000000 0x98 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_utime + 0x00000000 0x5d esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_opendir + 0x00000000 0x5f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir + 0x00000000 0x4e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir_r + 0x00000000 0x5c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_telldir + 0x00000000 0x53 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_seekdir + 0x00000000 0x52 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rewinddir + 0x00000000 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_closedir + 0x00000000 0x53 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_mkdir + 0x00000000 0x67 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rmdir + 0x00000000 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_truncate + 0x00000000 0x67 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ftruncate + 0x00000000 0x85 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflow 0x00000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetsid + 0x00000000 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsendbreak + 0x00000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.lit 0x00000000 0x210 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.prop 0x00000000 0x2748 esp-idf/vfs/libvfs.a(vfs.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.is_hmac_key_burnt_in_efuse + 0x00000000 0x8 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .literal.compute_nvs_keys_with_hmac + 0x00000000 0x50 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .literal.read_security_cfg_hmac + 0x00000000 0x38 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .literal.generate_keys_hmac + 0x00000000 0x78 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .literal.nvs_sec_provider_register_hmac + 0x00000000 0x24 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .literal.nvs_sec_provider_deregister + 0x00000000 0x8 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.convert_key_type + 0x00000000 0x7 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.is_hmac_key_burnt_in_efuse + 0x00000000 0x1e esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .rodata.compute_nvs_keys_with_hmac.str1.4 + 0x00000000 0x4e esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .rodata 0x00000000 0x40 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.compute_nvs_keys_with_hmac + 0x00000000 0x114 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .rodata.read_security_cfg_hmac.str1.4 + 0x00000000 0xaa esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.read_security_cfg_hmac + 0x00000000 0x8a esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .rodata.generate_keys_hmac.str1.4 + 0x00000000 0xec esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.generate_keys_hmac + 0x00000000 0x12e esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.nvs_sec_provider_register_hmac + 0x00000000 0x89 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.nvs_sec_provider_deregister + 0x00000000 0x22 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .xt.prop 0x00000000 0x348 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.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 0x8 esp-idf/main/libmain.a(main.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/main/libmain.a(main.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(wifi_init.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(wifi_init.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(wifi_init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/main/libmain.a(wifi_init.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/main/libmain.a(wifi_init.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(fs_init.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(fs_init.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(fs_init.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/main/libmain.a(fs_init.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/main/libmain.a(fs_init.c.obj) + .text 0x00000000 0x0 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .data 0x00000000 0x0 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .bss 0x00000000 0x0 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .xt.prop 0x00000000 0x288 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.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 0x92 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 0x3e 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 0x130 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .xt.prop 0x00000000 0x10c8 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 0x98 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_open_by_dirent + 0x00000000 0xd7 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 0x5c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_gc_quick + 0x00000000 0x5c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_gc + 0x00000000 0x58 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 0x82 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 0x7a esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_ix_remap + 0x00000000 0x176 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 0x1a88 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 0x10e esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .text.spiffs_probe + 0x00000000 0x102 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .text.spiffs_obj_lu_find_id_and_span_by_phdr + 0x00000000 0x8c 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 0x25c8 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 0x92 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_object_index_consistency_check_v + 0x00000000 0x1da esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_rewrite_page + 0x00000000 0x50 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 0x728 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_lookup_check_v + 0x00000000 0x9e esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_page_consistency_check_i + 0x00000000 0x784 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_lookup_consistency_check + 0x00000000 0x6e esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_page_consistency_check + 0x00000000 0x4e esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_object_index_consistency_check + 0x00000000 0x82 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 0x20fb 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 0x13d9 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 0x120 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .debug_line 0x00000000 0x32a3 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .debug_str 0x00000000 0xb01 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 0xd08 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 0x87c esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .literal.esp_mqtt_dispatch_custom_event + 0x00000000 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .literal.esp_mqtt_client_disconnect + 0x00000000 0x20 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .literal.esp_mqtt_client_reconnect + 0x00000000 0x20 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .literal.esp_mqtt_client_unsubscribe + 0x00000000 0x58 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .literal.esp_mqtt_client_enqueue + 0x00000000 0x24 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .literal.esp_mqtt_client_unregister_event + 0x00000000 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .literal.esp_mqtt_client_get_outbox_size + 0x00000000 0xc esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .literal.esp_mqtt_client_get_transport + 0x00000000 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .data 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .bss 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text.esp_mqtt_dispatch_custom_event + 0x00000000 0x1c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_client_disconnect.str1.4 + 0x00000000 0x28 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text.esp_mqtt_client_disconnect + 0x00000000 0x50 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_client_reconnect.str1.4 + 0x00000000 0x2e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text.esp_mqtt_client_reconnect + 0x00000000 0x69 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_client_unsubscribe.str1.4 + 0x00000000 0x5f esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text.esp_mqtt_client_unsubscribe + 0x00000000 0x112 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text.esp_mqtt_client_enqueue + 0x00000000 0xbd esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text.esp_mqtt_client_unregister_event + 0x00000000 0x21 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text.esp_mqtt_client_get_outbox_size + 0x00000000 0x38 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text.esp_mqtt_client_get_transport + 0x00000000 0x1e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.MQTT_EVENTS + 0x00000000 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .xt.lit 0x00000000 0x178 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .xt.prop 0x00000000 0x1e90 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .literal.mqtt_msg_unsubscribe + 0x00000000 0x20 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .literal.mqtt_msg_pingresp + 0x00000000 0x8 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .text 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .data 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .bss 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .text.mqtt_header_complete + 0x00000000 0x70 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .text.mqtt_msg_unsubscribe + 0x00000000 0x79 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .text.mqtt_msg_pingresp + 0x00000000 0x20 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .xt.prop 0x00000000 0xbdc esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .literal.outbox_delete_single_expired + 0x00000000 0xc esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .text 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .data 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .bss 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .text.outbox_delete_single_expired + 0x00000000 0x79 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .xt.prop 0x00000000 0x588 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .text 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .data 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .bss 0x00000000 0x0 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .xt.prop 0x00000000 0xb4 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .text 0x00000000 0x0 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .data 0x00000000 0x0 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .bss 0x00000000 0x0 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .text 0x00000000 0x0 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .data 0x00000000 0x0 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .bss 0x00000000 0x0 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .xt.prop 0x00000000 0x258 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .text 0x00000000 0x0 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .data 0x00000000 0x0 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .bss 0x00000000 0x0 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .literal.compare_double + 0x00000000 0x1c esp-idf/json/libjson.a(cJSON.c.obj) + .literal.add_item_to_array + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.update_offset + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_strdup + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.add_item_to_object + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.ensure + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.create_reference + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.print_string_ptr + 0x00000000 0x1c esp-idf/json/libjson.a(cJSON.c.obj) + .literal.print_string + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.print_number + 0x00000000 0x58 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.print_value + 0x00000000 0x40 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.print + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.print_array + 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.print_object + 0x00000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_GetErrorPtr + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_Version + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_InitHooks + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_SetNumberHelper + 0x00000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ParseWithLength + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_Print + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_PrintUnformatted + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_PrintBuffered + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_PrintPreallocated + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_GetArrayItem + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_GetObjectItemCaseSensitive + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_HasObjectItem + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddItemToArray + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddItemToObject + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddItemToObjectCS + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddItemReferenceToArray + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddItemReferenceToObject + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DetachItemFromArray + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DeleteItemFromArray + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DetachItemFromObject + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DetachItemFromObjectCaseSensitive + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DeleteItemFromObject + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_DeleteItemFromObjectCaseSensitive + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_InsertItemInArray + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ReplaceItemViaPointer + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ReplaceItemInArray + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateNull + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddNullToObject + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateTrue + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddTrueToObject + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateFalse + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddFalseToObject + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateBool + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddBoolToObject + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateNumber + 0x00000000 0x2c esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddNumberToObject + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateString + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddStringToObject + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateStringReference + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateObjectReference + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateArrayReference + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateRaw + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddRawToObject + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateArray + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddArrayToObject + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateObject + 0x00000000 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_AddObjectToObject + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateIntArray + 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateFloatArray + 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateDoubleArray + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_CreateStringArray + 0x00000000 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_Duplicate_rec + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_Duplicate + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_Minify + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_GetNumberValue + 0x00000000 0xc esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_GetStringValue + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_Compare + 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_malloc + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_free + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_SetValuestring + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.replace_item_in_object + 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ReplaceItemInObject + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.cJSON_ReplaceItemInObjectCaseSensitive + 0x00000000 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .text 0x00000000 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + .data 0x00000000 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + .bss 0x00000000 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + .text.compare_double + 0x00000000 0x68 esp-idf/json/libjson.a(cJSON.c.obj) + .text.get_array_item + 0x00000000 0x1a esp-idf/json/libjson.a(cJSON.c.obj) + .text.suffix_object + 0x00000000 0x9 esp-idf/json/libjson.a(cJSON.c.obj) + .text.add_item_to_array + 0x00000000 0x4a esp-idf/json/libjson.a(cJSON.c.obj) + .text.cast_away_const + 0x00000000 0x5 esp-idf/json/libjson.a(cJSON.c.obj) + .text.skip_oneline_comment + 0x00000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .text.skip_multiline_comment + 0x00000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.minify_string + 0x00000000 0x76 esp-idf/json/libjson.a(cJSON.c.obj) + .text.update_offset + 0x00000000 0x1a esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_strdup + 0x00000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.add_item_to_object + 0x00000000 0x82 esp-idf/json/libjson.a(cJSON.c.obj) + .text.ensure 0x00000000 0xb2 esp-idf/json/libjson.a(cJSON.c.obj) + .text.create_reference + 0x00000000 0x36 esp-idf/json/libjson.a(cJSON.c.obj) + .rodata.print_string_ptr.str1.4 + 0x00000000 0xa esp-idf/json/libjson.a(cJSON.c.obj) + .text.print_string_ptr + 0x00000000 0x178 esp-idf/json/libjson.a(cJSON.c.obj) + .text.print_string + 0x00000000 0x11 esp-idf/json/libjson.a(cJSON.c.obj) + .text.print_number + 0x00000000 0x141 esp-idf/json/libjson.a(cJSON.c.obj) + .text.print_value + 0x00000000 0x138 esp-idf/json/libjson.a(cJSON.c.obj) + .text.print 0x00000000 0xa6 esp-idf/json/libjson.a(cJSON.c.obj) + .text.print_array + 0x00000000 0xb9 esp-idf/json/libjson.a(cJSON.c.obj) + .text.print_object + 0x00000000 0x182 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetErrorPtr + 0x00000000 0xe esp-idf/json/libjson.a(cJSON.c.obj) + .rodata.cJSON_Version.str1.4 + 0x00000000 0x9 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_Version + 0x00000000 0x1a esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_InitHooks + 0x00000000 0x64 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_SetNumberHelper + 0x00000000 0x52 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ParseWithLength + 0x00000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_Print + 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_PrintUnformatted + 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_PrintBuffered + 0x00000000 0x66 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_PrintPreallocated + 0x00000000 0x4a esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetArraySize + 0x00000000 0x1a esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetArrayItem + 0x00000000 0x19 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetObjectItemCaseSensitive + 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_HasObjectItem + 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddItemToArray + 0x00000000 0x11 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddItemToObject + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddItemToObjectCS + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddItemReferenceToArray + 0x00000000 0x23 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddItemReferenceToObject + 0x00000000 0x3a esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DetachItemViaPointer + 0x00000000 0x54 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DetachItemFromArray + 0x00000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DeleteItemFromArray + 0x00000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DetachItemFromObject + 0x00000000 0x1c esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DetachItemFromObjectCaseSensitive + 0x00000000 0x1c esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DeleteItemFromObject + 0x00000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_DeleteItemFromObjectCaseSensitive + 0x00000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_InsertItemInArray + 0x00000000 0x5d esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ReplaceItemViaPointer + 0x00000000 0x6c esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ReplaceItemInArray + 0x00000000 0x25 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateNull + 0x00000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddNullToObject + 0x00000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateTrue + 0x00000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddTrueToObject + 0x00000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateFalse + 0x00000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddFalseToObject + 0x00000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateBool + 0x00000000 0x1f esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddBoolToObject + 0x00000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateNumber + 0x00000000 0x62 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddNumberToObject + 0x00000000 0x32 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateString + 0x00000000 0x34 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddStringToObject + 0x00000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateStringReference + 0x00000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateObjectReference + 0x00000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateArrayReference + 0x00000000 0x24 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateRaw + 0x00000000 0x34 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddRawToObject + 0x00000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateArray + 0x00000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddArrayToObject + 0x00000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateObject + 0x00000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_AddObjectToObject + 0x00000000 0x2e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateIntArray + 0x00000000 0x76 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateFloatArray + 0x00000000 0x76 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateDoubleArray + 0x00000000 0x70 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_CreateStringArray + 0x00000000 0x6e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_Duplicate_rec + 0x00000000 0x9e esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_Duplicate + 0x00000000 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_Minify + 0x00000000 0xa1 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsInvalid + 0x00000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsFalse + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsTrue + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsBool + 0x00000000 0x16 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsNull + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsNumber + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetNumberValue + 0x00000000 0x1d esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsString + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_GetStringValue + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsArray + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsObject + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_IsRaw + 0x00000000 0x18 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_Compare + 0x00000000 0x168 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_malloc + 0x00000000 0x11 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_free + 0x00000000 0xf esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_SetValuestring + 0x00000000 0x7e esp-idf/json/libjson.a(cJSON.c.obj) + .text.replace_item_in_object + 0x00000000 0x65 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ReplaceItemInObject + 0x00000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .text.cJSON_ReplaceItemInObjectCaseSensitive + 0x00000000 0x15 esp-idf/json/libjson.a(cJSON.c.obj) + .bss.version$0 + 0x00000000 0xf esp-idf/json/libjson.a(cJSON.c.obj) + .xt.lit 0x00000000 0x2e0 esp-idf/json/libjson.a(cJSON.c.obj) + .xt.prop 0x00000000 0x3318 esp-idf/json/libjson.a(cJSON.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 0x114 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 0x594 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .literal.gpio_ll_set_drive_capability + 0x00000000 0x8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_ll_get_drive_capability + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_ll_force_unhold_all + 0x00000000 0xc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_ll_get_io_config + 0x00000000 0x8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_input_disable + 0x00000000 0x28 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_en + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_pullup_dis + 0x00000000 0x3c 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_pulldown_dis + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_intr_type + 0x00000000 0x40 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_intr_enable + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_intr_disable + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_input_enable + 0x00000000 0x28 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_output_disable + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_output_enable + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_od_disable + 0x00000000 0x28 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_od_enable + 0x00000000 0x28 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_level + 0x00000000 0x28 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 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_direction + 0x00000000 0x3c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_config + 0x00000000 0x60 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_config_as_analog + 0x00000000 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_reset_pin + 0x00000000 0x58 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_isr_handler_add + 0x00000000 0x4c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_isr_handler_remove + 0x00000000 0x44 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 0x50 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_wakeup_disable + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_drive_capability + 0x00000000 0x48 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_get_drive_capability + 0x00000000 0x48 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_hold_en + 0x00000000 0x40 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_hold_dis + 0x00000000 0x40 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) + .iram1.2.literal + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.3.literal + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_iomux_in + 0x00000000 0x8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_iomux_input + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_iomux_out + 0x00000000 0x8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_iomux_output + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_get_io_config + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_dump_io_configuration + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_func_sel + 0x00000000 0x34 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_set_drive_capability + 0x00000000 0x3e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_get_drive_capability + 0x00000000 0x2a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_force_unhold_all + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_get_io_config + 0x00000000 0xb3 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_input_disable + 0x00000000 0x7c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.0 0x00000000 0x105 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.1 0x00000000 0x40 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) + .rodata.gpio_pullup_en.str1.4 + 0x00000000 0x36 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_pullup_en + 0x00000000 0x96 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_pullup_dis + 0x00000000 0xc1 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 0x99 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_pulldown_dis + 0x00000000 0x99 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 0x12c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_intr_enable + 0x00000000 0x99 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_intr_disable + 0x00000000 0x74 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_input_enable + 0x00000000 0x7c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_output_disable + 0x00000000 0xce esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_output_enable + 0x00000000 0xb3 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_od_disable + 0x00000000 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_od_enable + 0x00000000 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_level + 0x00000000 0xba esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_get_level + 0x00000000 0x37 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x00000000 0x11d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_direction + 0x00000000 0xa9 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_config.str1.4 + 0x00000000 0x22 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_config + 0x00000000 0x167 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_config_as_analog + 0x00000000 0xf8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_reset_pin + 0x00000000 0x100 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 0xce esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_uninstall_isr_service + 0x00000000 0x4e 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 0x11d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x00000000 0xd4 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 0xc1 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 0xc1 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) + .iram1.2 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.3 0x00000000 0x27 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_iomux_in + 0x00000000 0x3a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_iomux_input + 0x00000000 0x8a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_iomux_out + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_iomux_output + 0x00000000 0x89 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_get_io_config.str1.4 + 0x00000000 0x35 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_get_io_config + 0x00000000 0xa1 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 0x259 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_func_sel + 0x00000000 0xab 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.__FUNCTION__$2 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$15 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0xd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$19 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$20 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$21 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$22 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$24 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$25 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$26 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$27 + 0x00000000 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$28 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$29 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$30 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$31 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$32 + 0x00000000 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$33 + 0x00000000 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$34 + 0x00000000 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$35 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$36 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$37 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$38 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$39 + 0x00000000 0x11 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 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$43 + 0x00000000 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$44 + 0x00000000 0xf 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 0x195c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_function_select + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_set_drive_capability + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_get_drive_capability + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_pullup_enable + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_pullup_disable + 0x00000000 0x8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_pulldown_enable + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_pulldown_disable + 0x00000000 0x4 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_is_valid_gpio + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_io_number_get + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_init + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_deinit + 0x00000000 0x30 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 0x50 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x00000000 0x44 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_en + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_dis + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_en + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_dis + 0x00000000 0x2c 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 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x00000000 0x30 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 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x00000000 0x34 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_iomux_func_sel + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_function_select + 0x00000000 0x76 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_set_drive_capability + 0x00000000 0x57 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_get_drive_capability + 0x00000000 0x37 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_pullup_enable + 0x00000000 0x27 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_pullup_disable + 0x00000000 0x53 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_pulldown_enable + 0x00000000 0x27 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_pulldown_disable + 0x00000000 0x2a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtcio_ll_wakeup_enable.str1.4 + 0x00000000 0x70 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_wakeup_enable + 0x00000000 0x50 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_is_valid_gpio + 0x00000000 0x21 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_io_number_get + 0x00000000 0xd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtc_gpio_init.str1.4 + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x00000000 0x67 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_deinit + 0x00000000 0x65 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x00000000 0x98 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x00000000 0x51 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 0xde 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 0xce 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_en + 0x00000000 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_dis + 0x00000000 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_en + 0x00000000 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_dis + 0x00000000 0x5c 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 0x71 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x00000000 0x74 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x00000000 0x2e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x00000000 0x2e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x00000000 0x7c 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.__FUNCTION__$4 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$15 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_frame 0x00000000 0x2f8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_info 0x00000000 0x3f73 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_abbrev 0x00000000 0x491 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_loc 0x00000000 0x9b0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_aranges + 0x00000000 0x110 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_ranges 0x00000000 0x100 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_line 0x00000000 0x2311 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_str 0x00000000 0x2947 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .xt.lit 0x00000000 0xf8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .xt.prop 0x00000000 0x9b4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.find_default_boot_partition + 0x00000000 0x1c 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_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_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.erase_last_boot_app_partition + 0x00000000 0x20 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_bootloader_description + 0x00000000 0x18 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) + .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.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_resume + 0x00000000 0xb5 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 0xa6 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) + .text.erase_last_boot_app_partition + 0x00000000 0xd2 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) + .text.esp_ota_get_bootloader_description + 0x00000000 0x64 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 0xbe 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 0x99 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__$4 + 0x00000000 0x1a 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 0x11dc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.bootloader_util_regions_overlap + 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_register_external + 0x00000000 0x34 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) + .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) + .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 0x37 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_register_external + 0x00000000 0x10a 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.__func__$0 + 0x00000000 0x20 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$4 + 0x00000000 0x19 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xt.prop 0x00000000 0x84c 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) + .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) + .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.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) + .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 0xf0 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 0xa8 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 0x142 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x00000000 0xb6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_vddsdio_configure + 0x00000000 0x36 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 0x1d1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x00000000 0x3e6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x00000000 0x4b7 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 0x1092 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x00000000 0x1a6e 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_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) + .xt.lit 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xt.prop 0x00000000 0x384 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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 0x110 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 0x88 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 0xde esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.4 + 0x00000000 0x413 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x2b5 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 0x21c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.bootloader_random_enable + 0x00000000 0x98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .literal.bootloader_random_disable + 0x00000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .text.bootloader_random_enable + 0x00000000 0x22a esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .text.bootloader_random_disable + 0x00000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_info 0x00000000 0x261 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_abbrev 0x00000000 0xaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_line 0x00000000 0x5d6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_str 0x00000000 0x2d7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .iram1.6.literal + 0x00000000 0x4 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_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 0x148 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3 0x00000000 0x38 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 0xc9 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) + .xt.lit 0x00000000 0x98 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.bootloader_spi_flash_resume + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .literal.print_flash_info + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .literal.update_flash_config + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .literal.bootloader_flash_update_size + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.0.literal + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1.literal + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2.literal + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.4.literal + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3.literal + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.5.literal + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .literal.bootloader_init_spi_flash + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_spi_flash_resume + 0x00000000 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.print_flash_info.str1.4 + 0x00000000 0xf9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text.print_flash_info + 0x00000000 0x143 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text.update_flash_config + 0x00000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.0 0x00000000 0x9c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1 0x00000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.4 0x00000000 0x7a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.5 0x00000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_init_spi_flash + 0x00000000 0x56 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .xt.prop 0x00000000 0x5e8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.unpack_load_app + 0x00000000 0x34 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 0x5c 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) + .text.s_flash_seg_needs_map + 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 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_get_partition_description + 0x00000000 0x89 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 0x210 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 0x8d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_cache_and_start_app + 0x00000000 0x23a 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 0x15a 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_sha256_flash_contents + 0x00000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__$1 + 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) + .xt.lit 0x00000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.prop 0x00000000 0x9d8 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) + .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.esp_image_bootloader_offset_get + 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 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.esp_image_bootloader_offset_get + 0x00000000 0xa 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_get_metadata + 0x00000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x00000000 0x22 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) + .xt.lit 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.prop 0x00000000 0x9a8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.bootloader_sha512_start + 0x00000000 0xc 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 0x24 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_sha512_start + 0x00000000 0x2a 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) + .text.bootloader_sha512_finish + 0x00000000 0x4a 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) + .xt.lit 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .iram1.3.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.4.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.6.literal + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.7.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.8.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.10.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.11.literal + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.12.literal + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.s_flash_set_qio_pins + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.enable_qio_mode + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.bootloader_enable_qio_mode + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.5.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.9.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.3 0x00000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.4 0x00000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.6 0x00000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.7 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.8 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.10 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.11 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.12 0x00000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.s_flash_set_qio_pins + 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.enable_qio_mode.str1.4 + 0x00000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.enable_qio_mode + 0x00000000 0x73 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.bootloader_enable_qio_mode.str1.4 + 0x00000000 0x59 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.bootloader_enable_qio_mode + 0x00000000 0x122 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.5 0x00000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.9 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .dram1.2 0x00000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .dram1.1 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.str1.4 + 0x00000000 0x2b esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .dram1.0 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_frame 0x00000000 0x148 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_info 0x00000000 0xdc0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_abbrev 0x00000000 0x314 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_loc 0x00000000 0x1b3 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_ranges 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_line 0x00000000 0xc5b esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_str 0x00000000 0x155f esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xt.prop 0x00000000 0x2d0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.29.literal + 0x00000000 0xc 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) + .iram1.29 0x00000000 0x23 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 0xe2 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 0x171 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.__func__$3 + 0x00000000 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x24 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 0xc00 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) + .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 0x30 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .xt.prop 0x00000000 0x168 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.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 0x78 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .literal.s_c2m_ops + 0x00000000 0x30 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .literal.esp_cache_aligned_malloc_internal + 0x00000000 0x30 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .literal.esp_cache_msync + 0x00000000 0xbc esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .literal.esp_cache_aligned_malloc + 0x00000000 0x4 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .literal.esp_cache_aligned_malloc_prefer + 0x00000000 0x1c esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .literal.esp_cache_aligned_calloc + 0x00000000 0x2c esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .literal.esp_cache_aligned_calloc_prefer + 0x00000000 0x2c 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) + .rodata.s_c2m_ops.str1.4 + 0x00000000 0x32 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.s_c2m_ops + 0x00000000 0x66 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_aligned_malloc_internal + 0x00000000 0xa4 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.esp_cache_msync.str1.4 + 0x00000000 0x204 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_msync + 0x00000000 0x27d esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_aligned_malloc + 0x00000000 0x15 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_aligned_malloc_prefer + 0x00000000 0x89 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_aligned_calloc + 0x00000000 0x8c esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_aligned_calloc_prefer + 0x00000000 0xcf esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x20 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x19 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x20 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x22 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__func__$5 + 0x00000000 0xa esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__func__$6 + 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$7 + 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 0x40 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .xt.prop 0x00000000 0x5a0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.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) + .iram1.11.literal + 0x00000000 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.3.literal + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.4.literal + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.9.literal + 0x00000000 0x24 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) + .literal.esp_enable_cache_wrap + 0x00000000 0x64 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.11 0x00000000 0x40 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.3 0x00000000 0x2e esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.4 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.9 0x00000000 0x4c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.10 0x00000000 0x21 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.esp_enable_cache_wrap.str1.4 + 0x00000000 0x178 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text.esp_enable_cache_wrap + 0x00000000 0x195 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.prop 0x00000000 0x54c 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_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 0x54 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_pages + 0x00000000 0x10a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x00000000 0x13 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 0x510 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.3.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.6.literal + 0x00000000 0x8 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.3 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.6 0x00000000 0x1f esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .dram1.1 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.prop 0x00000000 0x294 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .literal.spi_flash_wrap_probe_c0 + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable_c0 + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable_77 + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_clear_c0 + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_clear_77 + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_probe + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_disable + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .literal.spi_flash_support_wrap_size + 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_probe_c0 + 0x00000000 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable_c0 + 0x00000000 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable_77 + 0x00000000 0x57 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_clear_c0 + 0x00000000 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_clear_77 + 0x00000000 0x3f esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_probe + 0x00000000 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable + 0x00000000 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_disable + 0x00000000 0x2d esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .rodata.spi_flash_support_wrap_size.str1.4 + 0x00000000 0x42 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .text.spi_flash_support_wrap_size + 0x00000000 0x62 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .bss.chip_wrap + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .rodata.str1.4 + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .rodata.spi_flash_wrap_list + 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .debug_info 0x00000000 0xa5f esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .debug_abbrev 0x00000000 0x2a4 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .debug_loc 0x00000000 0x2dc esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .debug_ranges 0x00000000 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .debug_line 0x00000000 0x7ec esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .debug_str 0x00000000 0x1222 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .comment 0x00000000 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + .xt.prop 0x00000000 0x27c esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.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_init + 0x00000000 0x58 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) + .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 0x3c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x00000000 0x3a 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_init + 0x00000000 0x15e 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) + .rodata.esp_flash_erase_chip.str1.4 + 0x00000000 0x3d 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 0xa6 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_set_protected_region + 0x00000000 0xdc 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) + .rodata.esp_flash_suspend_cmd_init.str1.4 + 0x00000000 0xc0 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) + .xt.lit 0x00000000 0xe0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.prop 0x00000000 0x11c4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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 0x24 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 0x54 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 0x9a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.cs_using_iomux + 0x00000000 0x38 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 0xe2 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0 0x00000000 0x154 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) + .rodata.spi_bus_add_flash_device.str1.4 + 0x00000000 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x00000000 0x141 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 0x50 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.prop 0x00000000 0x5c4 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 0x19 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 0x1d 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) + .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 0x5f4 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) + .literal.esp_opiflash_set_required_regs + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .text.esp_opiflash_set_required_regs + 0x00000000 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .xt.prop 0x00000000 0x27c esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .literal.spi_flash_hpm_get_dummy + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_dummy_adjust + 0x00000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_get_dummy_generic + 0x00000000 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_get_dummy + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .bss.s_dummy_conf + 0x00000000 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.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.prop 0x00000000 0x3c 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 0xd8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.prop 0x00000000 0xc60 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 0x1c8 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) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .xt.prop 0x00000000 0x4f8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .literal.memspi_host_read + 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_read + 0x00000000 0x30 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 0x39c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.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 0x204 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .literal.esp_system_console_put_char + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .text.esp_system_console_put_char + 0x00000000 0xe esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .debug_info 0x00000000 0xda esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .debug_abbrev 0x00000000 0x99 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .debug_line 0x00000000 0x1f3 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .debug_str 0x00000000 0x299 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(esp_system_console.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 0xdc 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 0x9b 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 0x34 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 0x7f 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 0x258 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) + .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) + .xt.lit 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .xt.prop 0x00000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.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) + .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_unmap_all + 0x00000000 0x6b esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x00000000 0x11 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) + .rodata.__func__$10 + 0x00000000 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xt.prop 0x00000000 0x4b0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .xt.prop 0x00000000 0x2a0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .xt.prop 0x00000000 0x6e4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .xt.prop 0x00000000 0x174 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.clk_hal_clock_output_setup + 0x00000000 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_clock_output_teardown + 0x00000000 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_setup + 0x00000000 0x56 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_teardown + 0x00000000 0x4a esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .xt.prop 0x00000000 0x408 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.systimer_hal_get_time + 0x00000000 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_deinit + 0x00000000 0x1a esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_get_clock_source + 0x00000000 0x7 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_get_time + 0x00000000 0x1a esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_get_alarm_value + 0x00000000 0x1c esp-idf/hal/libhal.a(systimer_hal.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .xt.prop 0x00000000 0x2e8 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .literal.uart_hal_set_hw_flow_ctrl + 0x00000000 0x14 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_sw_flow_ctrl + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_at_cmd_char + 0x00000000 0x8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_tx_idle_num + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_txfifo_empty_thr + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_mode + 0x00000000 0x8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_inverse_signal + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_loop_back + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_init + 0x00000000 0x10 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_rx_timeout + 0x00000000 0x10 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_hw_flow_ctrl + 0x00000000 0x72 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_hw_flow_ctrl + 0x00000000 0x28 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x00000000 0xd0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x00000000 0xe0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_tx_idle_num + 0x00000000 0x22 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rxfifo_full_thr + 0x00000000 0x1d esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_txfifo_empty_thr + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_wakeup_edge_thrd + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_edge_thrd + 0x00000000 0x13 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_mode + 0x00000000 0x1be esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x00000000 0xf esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_inverse_signal + 0x00000000 0x8b esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_init + 0x00000000 0xb9 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_symb_len + 0x00000000 0x4c esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rx_timeout + 0x00000000 0x5a esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x17 esp-idf/hal/libhal.a(uart_hal.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/hal/libhal.a(uart_hal.c.obj) + .xt.prop 0x00000000 0x594 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.gpio_hal_intr_enable_on_core + 0x00000000 0xc esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.gpio_hal_intr_disable + 0x00000000 0x4 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.gpio_hal_iomux_in + 0x00000000 0x10 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.gpio_hal_iomux_out + 0x00000000 0x14 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.gpio_hal_isolate_in_sleep + 0x00000000 0x4 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text.gpio_hal_intr_enable_on_core + 0x00000000 0x62 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text.gpio_hal_intr_disable + 0x00000000 0x5b esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text.gpio_hal_iomux_in + 0x00000000 0x7d esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text.gpio_hal_iomux_out + 0x00000000 0x76 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text.gpio_hal_isolate_in_sleep + 0x00000000 0x58 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_info 0x00000000 0x137e esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_abbrev 0x00000000 0x22c esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_loc 0x00000000 0x5bb esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_line 0x00000000 0x7da esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_str 0x00000000 0x9b5 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xt.prop 0x00000000 0x138 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.rtcio_ll_pullup_disable + 0x00000000 0x8 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_pulldown_disable + 0x00000000 0x4 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_output_in_sleep + 0x00000000 0x4 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_output_in_sleep + 0x00000000 0x4 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction + 0x00000000 0x8 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x00000000 0x14 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x00000000 0x10 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_pullup_disable + 0x00000000 0x53 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_pulldown_disable + 0x00000000 0x2a esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_output_in_sleep + 0x00000000 0x27 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_output_in_sleep + 0x00000000 0x2a esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x00000000 0x228 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x00000000 0x11a esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x00000000 0x53 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_frame 0x00000000 0xb8 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_info 0x00000000 0x1ab0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_abbrev 0x00000000 0x30c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_loc 0x00000000 0x5f0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_ranges 0x00000000 0x100 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_line 0x00000000 0xcf3 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_str 0x00000000 0xda2 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xt.prop 0x00000000 0x2ac esp-idf/hal/libhal.a(rtc_io_hal.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 0x10 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .xt.prop 0x00000000 0x354 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .literal.touch_hal_config_controller + 0x00000000 0x24 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .literal.s_touch_hal_apply_sleep_config + 0x00000000 0x18 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .literal.touch_hal_save_sleep_config + 0x00000000 0xc esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .literal.touch_hal_prepare_deep_sleep + 0x00000000 0x10 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .rodata.touch_hal_config_controller.str1.4 + 0x00000000 0x29 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .text.touch_hal_config_controller + 0x00000000 0x19e esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .text.s_touch_hal_apply_sleep_config + 0x00000000 0xaf esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .text.touch_hal_save_sleep_config + 0x00000000 0x2e esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .text.touch_hal_prepare_deep_sleep + 0x00000000 0x29 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .data.s_touch_slp_obj + 0x00000000 0x20 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .debug_info 0x00000000 0x5f26 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .debug_abbrev 0x00000000 0x365 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .debug_loc 0x00000000 0x254 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .debug_line 0x00000000 0x90d esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .debug_str 0x00000000 0x3c1c esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .xt.prop 0x00000000 0x144 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .literal.rtc_cntl_hal_dma_link_init + 0x00000000 0x34 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .literal.rtc_cntl_hal_enable_cpu_retention + 0x00000000 0x2c esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .iram1.0.literal + 0x00000000 0x10 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .literal.rtc_cntl_hal_enable_tagmem_retention + 0x00000000 0x34 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .iram1.1.literal + 0x00000000 0x10 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .rodata.rtc_cntl_hal_dma_link_init.str1.4 + 0x00000000 0x73 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .text.rtc_cntl_hal_dma_link_init + 0x00000000 0xbe esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .text.rtc_cntl_hal_enable_cpu_retention + 0x00000000 0xbe esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .iram1.0 0x00000000 0x36 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .text.rtc_cntl_hal_enable_tagmem_retention + 0x00000000 0x116 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .iram1.1 0x00000000 0x5e esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_info 0x00000000 0x882 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_abbrev 0x00000000 0x2ab esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_loc 0x00000000 0x230 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_line 0x00000000 0xae7 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_str 0x00000000 0x6cf esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/hal/libhal.a(rtc_cntl_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) + .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 0xc4 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xt.prop 0x00000000 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .rodata.uart_periph_signal + 0x00000000 0x3c esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_info 0x00000000 0x3f4 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_abbrev 0x00000000 0xd4 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_line 0x00000000 0x219 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_str 0x00000000 0xcfa esp-idf/soc/libsoc.a(uart_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .xt.prop 0x00000000 0xc esp-idf/soc/libsoc.a(uart_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .rodata.spi_periph_signal + 0x00000000 0x84 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_info 0x00000000 0x1bdd esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_abbrev 0x00000000 0x1bd esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_line 0x00000000 0x270 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_str 0x00000000 0x18dd esp-idf/soc/libsoc.a(spi_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .xt.prop 0x00000000 0xc esp-idf/soc/libsoc.a(spi_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xt.prop 0x00000000 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .literal.write_and_padd + 0x00000000 0x8 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .literal.esp_hmac_calculate + 0x00000000 0x70 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .literal.esp_hmac_jtag_enable + 0x00000000 0x38 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .literal.esp_hmac_jtag_disable + 0x00000000 0x14 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text.convert_key_type + 0x00000000 0x7 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text.write_and_padd + 0x00000000 0x2a esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text.esp_hmac_calculate + 0x00000000 0x16d esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .rodata.esp_hmac_jtag_enable.str1.4 + 0x00000000 0x5e esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text.esp_hmac_jtag_enable + 0x00000000 0x8c esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .text.esp_hmac_jtag_disable + 0x00000000 0x2e esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_info 0x00000000 0xd78 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_abbrev 0x00000000 0x282 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_loc 0x00000000 0x25d esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_line 0x00000000 0xb67 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .debug_str 0x00000000 0x13bc esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .xt.prop 0x00000000 0x1bc esp-idf/esp_security/libesp_security.a(esp_hmac.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) + .xt.lit 0x00000000 0x40 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.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) + .xt.lit 0x00000000 0x28 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.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) + .literal.periph_rtc_dig_clk8m_enable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_dig_clk8m_get_freq + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_dig_clk8m_disable + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_enable + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_get_freq + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.periph_rtc_dig_clk8m_disable.str1.4 + 0x00000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_disable + 0x00000000 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.__func__$0 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss.s_rc_fast_freq_hz + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss.s_periph_ref_counts + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .data.periph_spinlock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_info 0x00000000 0x853 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_abbrev 0x00000000 0x1fa esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_loc 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_line 0x00000000 0x666 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_str 0x00000000 0x14e8 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .xt.prop 0x00000000 0xe4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.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) + .xt.lit 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .literal.esp_mac_addr_len_get + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_iface_mac_addr_set + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_set + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_efuse_mac_get_custom + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_derive_local_mac + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_get + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_mac_addr_len_get + 0x00000000 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_iface_mac_addr_set + 0x00000000 0xad esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_base_mac_addr_set + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_custom + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_derive_local_mac + 0x00000000 0x65 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_base_mac_addr_get + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .xt.prop 0x00000000 0x510 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_gpio_revoke + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.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_revoke + 0x00000000 0x1e 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) + .literal.temp_sensor_sync_tsens_idx + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .text.temp_sensor_sync_tsens_idx + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .xt.prop 0x00000000 0x270 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .literal.io_mux_enable_lp_io_clock + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .literal.io_mux_force_disable_lp_io_clock + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .text.io_mux_set_clock_source + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .rodata.io_mux_enable_lp_io_clock.str1.4 + 0x00000000 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .text.io_mux_enable_lp_io_clock + 0x00000000 0xfb esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .text.io_mux_force_disable_lp_io_clock + 0x00000000 0x8b esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .rodata.__func__$0 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .bss.s_rtc_io_status + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .data.s_io_mux_spinlock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_info 0x00000000 0x2254 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_abbrev 0x00000000 0x347 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_loc 0x00000000 0x151 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_ranges 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_line 0x00000000 0x7db esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .debug_str 0x00000000 0x1714 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + .xt.prop 0x00000000 0x150 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.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_enable_src + 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 0x234 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 0x95 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 0x64 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 0xac esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_init_lock + 0x00000000 0x3a 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 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_register_dev + 0x00000000 0x9d 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 0x65 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 0xbb 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 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.35 0x00000000 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.36 0x00000000 0x18 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) + .literal.adc_calc_hw_calibration_code + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .iram1.0.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_acquire + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_release + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_try_acquire + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text.adc_calc_hw_calibration_code + 0x00000000 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .iram1.0 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_acquire + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_release + 0x00000000 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_try_acquire + 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .bss.adc2_lock + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .bss.adc1_lock + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .bss.s_adc_cali_param + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .xt.prop 0x00000000 0x30c esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .literal.xEventGroupCreateStatic + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupGetBitsFromISR + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupSync + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupGetStaticBuffer + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.vEventGroupSetBitsCallback + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.vEventGroupClearBitsCallback + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupCreateStatic + 0x00000000 0x77 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupGetBitsFromISR + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupSync + 0x00000000 0xe1 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupGetStaticBuffer.str1.4 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupGetStaticBuffer + 0x00000000 0x3d esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupSetBitsCallback + 0x00000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupClearBitsCallback + 0x00000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$5 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$7 + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xt.prop 0x00000000 0x510 esp-idf/freertos/libfreertos.a(event_groups.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.xQueueCreateWithCaps + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vQueueDeleteWithCaps + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xSemaphoreCreateGenericWithCaps + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vSemaphoreDeleteWithCaps + 0x00000000 0x1c 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) + .rodata.prvTaskDeleteWithCaps.str1.4 + 0x00000000 0xc0 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.xQueueCreateWithCaps + 0x00000000 0x5c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vQueueDeleteWithCaps + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xSemaphoreCreateGenericWithCaps + 0x00000000 0x74 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vSemaphoreDeleteWithCaps + 0x00000000 0x37 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xStreamBufferGenericCreateWithCaps + 0x00000000 0x76 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__$1 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$2 + 0x00000000 0x15 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) + .debug_frame 0x00000000 0x100 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_info 0x00000000 0x1e3d esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_abbrev 0x00000000 0x4ce esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_loc 0x00000000 0x44b esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_line 0x00000000 0xeb6 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_str 0x00000000 0xf43 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .comment 0x00000000 0x30 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.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 0x7c 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 0x64 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 0xa0 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 0xe4 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 0x16f esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSendFromISR + 0x00000000 0x93 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 0x12c 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 0x90 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 0x50 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceiveCompletedFromISR + 0x00000000 0x50 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 0x2620 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 0x143d 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 0x1f5d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_str 0x00000000 0xb37 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 0xaa4 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.__atomic_exchange_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_compare_exchange_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_add_fetch_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_sub_fetch_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_fetch_and_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_and_fetch_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_or_fetch_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_fetch_xor_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_xor_fetch_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_fetch_nand_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_nand_fetch_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_fetch_and_add_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_add_and_fetch_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_fetch_and_sub_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_sub_and_fetch_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_fetch_and_and_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_and_and_fetch_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_fetch_and_or_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_or_and_fetch_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_fetch_and_xor_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_xor_and_fetch_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_fetch_and_nand_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_nand_and_fetch_8 + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_bool_compare_and_swap_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_val_compare_and_swap_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_lock_test_and_set_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__sync_lock_release_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_load + 0x00000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_store + 0x00000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.__atomic_compare_exchange + 0x00000000 0x28 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_exchange_8 + 0x00000000 0x67 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_compare_exchange_8 + 0x00000000 0x7f esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_add_fetch_8 + 0x00000000 0x67 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_sub_fetch_8 + 0x00000000 0x6b esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_and_8 + 0x00000000 0x63 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_and_fetch_8 + 0x00000000 0x63 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_or_fetch_8 + 0x00000000 0x63 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_xor_8 + 0x00000000 0x62 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_xor_fetch_8 + 0x00000000 0x63 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_nand_8 + 0x00000000 0x6b esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_nand_fetch_8 + 0x00000000 0x6b esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_add_8 + 0x00000000 0x17 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_add_and_fetch_8 + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_sub_8 + 0x00000000 0x17 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_sub_and_fetch_8 + 0x00000000 0x1e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_and_8 + 0x00000000 0x17 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_and_and_fetch_8 + 0x00000000 0x19 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_or_8 + 0x00000000 0x17 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_or_and_fetch_8 + 0x00000000 0x19 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_xor_8 + 0x00000000 0x17 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_xor_and_fetch_8 + 0x00000000 0x19 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_nand_8 + 0x00000000 0x17 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_nand_and_fetch_8 + 0x00000000 0x23 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_bool_compare_and_swap_8 + 0x00000000 0x73 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_val_compare_and_swap_8 + 0x00000000 0x6f esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_lock_test_and_set_8 + 0x00000000 0x67 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_lock_release_8 + 0x00000000 0x57 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_load + 0x00000000 0x53 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_store + 0x00000000 0x53 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_compare_exchange + 0x00000000 0x77 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .xt.lit 0x00000000 0x118 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .xt.prop 0x00000000 0xb58 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .literal.prvReturnItemByteBuf + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemByteBuf + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsByteBuffer + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReturnItemDefault + 0x00000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemDefault + 0x00000000 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvSendItemDoneNoSplit + 0x00000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsDefault + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetFreeSize + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvInitializeNewRingbuffer + 0x00000000 0x4c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemByteBuf + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemAllowSplit + 0x00000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemNoSplit + 0x00000000 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReceiveGenericFromISR + 0x00000000 0x24 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.xRingbufferCreateStatic + 0x00000000 0x2c 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.xRingbufferSendFromISR + 0x00000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveFromISR + 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.xRingbufferReceiveUpTo + 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.vRingbufferReturnItemFromISR + 0x00000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferDelete + 0x00000000 0x18 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.xRingbufferPrintInfo + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetStaticBuffer + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateWithCaps + 0x00000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferDeleteWithCaps + 0x00000000 0x20 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) + .text.prvGetCurMaxSizeNoSplit + 0x00000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeAllowSplit + 0x00000000 0x51 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeByteBuf + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemByteBuf + 0x00000000 0x43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetItemByteBuf.str1.4 + 0x00000000 0x127 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemByteBuf + 0x00000000 0xd7 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsByteBuffer + 0x00000000 0x63 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReturnItemDefault.str1.4 + 0x00000000 0x165 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemDefault + 0x00000000 0x12a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetItemDefault.str1.4 + 0x00000000 0x186 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemDefault + 0x00000000 0x150 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvSendItemDoneNoSplit.str1.4 + 0x00000000 0x7e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvSendItemDoneNoSplit + 0x00000000 0x10c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsDefault + 0x00000000 0xa6 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 0x37 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvInitializeNewRingbuffer.str1.4 + 0x00000000 0x3b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvInitializeNewRingbuffer + 0x00000000 0xc9 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemByteBuf + 0x00000000 0x81 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemAllowSplit + 0x00000000 0xf1 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemNoSplit + 0x00000000 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGenericFromISR + 0x00000000 0xa8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferCreate.str1.4 + 0x00000000 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreate + 0x00000000 0x8a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateNoSplit + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferCreateStatic.str1.4 + 0x00000000 0x82 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateStatic + 0x00000000 0x85 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendAcquire + 0x00000000 0x68 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.xRingbufferSendFromISR + 0x00000000 0xee esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveFromISR + 0x00000000 0x58 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) + .rodata.xRingbufferReceiveUpTo.str1.4 + 0x00000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpTo + 0x00000000 0x62 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.vRingbufferReturnItemFromISR + 0x00000000 0x67 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDelete + 0x00000000 0x2f 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) + .rodata.xRingbufferPrintInfo.str1.4 + 0x00000000 0x43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferPrintInfo + 0x00000000 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferGetStaticBuffer.str1.4 + 0x00000000 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetStaticBuffer + 0x00000000 0x3a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateWithCaps + 0x00000000 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.vRingbufferDeleteWithCaps.str1.4 + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDeleteWithCaps + 0x00000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b 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__$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__$9 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$10 + 0x00000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$12 + 0x00000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$13 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$14 + 0x00000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$15 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$16 + 0x00000000 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$17 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$20 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$22 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$23 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$24 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$25 + 0x00000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$26 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$27 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$29 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$30 + 0x00000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$31 + 0x00000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$32 + 0x00000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$33 + 0x00000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$34 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$35 + 0x00000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$36 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.lit 0x00000000 0x148 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.prop 0x00000000 0x16ec esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.esp_event_handler_instance_unregister + 0x00000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_isr_post + 0x00000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_loop_delete_default + 0x00000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .data 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_handler_instance_unregister + 0x00000000 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_isr_post + 0x00000000 0x24 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_loop_delete_default + 0x00000000 0x26 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xt.prop 0x00000000 0x264 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_handler_instance_unregister_with + 0x00000000 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_isr_post_to + 0x00000000 0x24 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .data 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_instance_unregister_with + 0x00000000 0x21 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_isr_post_to + 0x00000000 0xa2 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_dump + 0x00000000 0x7 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$0 + 0x00000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .xt.lit 0x00000000 0xb8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .xt.prop 0x00000000 0x114c esp-idf/esp_event/libesp_event.a(esp_event.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._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 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_secure_init_partition + 0x00000000 0x2c 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_all + 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_get_str + 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_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 0x1c 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._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_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_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_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_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_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._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.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) + .rodata.nvs_flash_secure_init_partition.str1.4 + 0x00000000 0x47 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_secure_init_partition + 0x00000000 0x56 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_all + 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_get_str + 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 0xf6 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_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 0x8e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_find_in_handle + 0x00000000 0x89 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_next + 0x00000000 0x41 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 0x5a 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._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_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_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_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_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_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._ZL26nvs_sec_default_scheme_cfg + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.lit 0x00000000 0x258 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop 0x00000000 0x1518 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_itemIlEEiPKcT_ + 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_itemIsEEiPKcRT_ + 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_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 0x2c 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._ZN3nvs4Page10setVersionEh + 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._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._ZN3nvs4Page10setVersionEh + 0x00000000 0x19 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 0xdb 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._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.lit 0x00000000 0xd8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop 0x00000000 0x159c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.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._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._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._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._ZNK3nvs7Storage7isValidEv + 0x00000000 0x10 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._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x00000000 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x8a 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._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.prop 0x00000000 0x1290 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._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._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) + .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) + .group 0x00000000 0x3c 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) + .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 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop 0x00000000 0x1e0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.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 0x1c 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 0x8e 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._ZTVN3nvs9NVSHandleE + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.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) + .xt.lit 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xt.prop 0x00000000 0x240 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 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 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._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 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00000000 0x30 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._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_12NVSPartitionE + 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_12NVSPartitionE + 0x00000000 0x61 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_encrypted_partition.cpp.obj) + .group 0x00000000 0x14 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 0x1c 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) + .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) + .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 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition4readEjPvj + 0x00000000 0x5b 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) + .text._ZN3nvs21NVSEncryptedPartitionD0Ev + 0x00000000 0x1c 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) + .rodata._ZTVN3nvs9PartitionE + 0x00000000 0x34 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 0x544c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_abbrev 0x00000000 0x9ff esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_loc 0x00000000 0x2cb 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 0xf3d esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_str 0x00000000 0x4629 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._ZTVN3nvs9PartitionE + 0x00000000 0xc 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) + .literal.lwip_gethostbyname + 0x00000000 0x30 esp-idf/lwip/liblwip.a(netdb.c.obj) + .literal.lwip_gethostbyname_r + 0x00000000 0x14 esp-idf/lwip/liblwip.a(netdb.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) + .text.lwip_gethostbyname + 0x00000000 0x11c esp-idf/lwip/liblwip.a(netdb.c.obj) + .text.lwip_gethostbyname_r + 0x00000000 0x14c esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss.s_aliases$1 + 0x00000000 0x4 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss.s_hostent$2 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss.s_hostname$3 + 0x00000000 0x101 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss.s_phostent_addr$4 + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss.s_hostent_addr$5 + 0x00000000 0x18 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss.h_errno 0x00000000 0x4 esp-idf/lwip/liblwip.a(netdb.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/lwip/liblwip.a(netdb.c.obj) + .xt.prop 0x00000000 0x63c esp-idf/lwip/liblwip.a(netdb.c.obj) + .literal.lwip_poll_inc_sockets_used + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_pollscan + 0x00000000 0x3c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll_dec_sockets_used + 0x00000000 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getaddrname + 0x00000000 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_init + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_cleanup + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_dbg_get_socket + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_accept + 0x00000000 0x84 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_bind + 0x00000000 0x44 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_listen + 0x00000000 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_recvmsg + 0x00000000 0x3c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_readv + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_sendmsg + 0x00000000 0x94 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_writev + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll + 0x00000000 0x50 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getpeername + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockname + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_inet_ntop + 0x00000000 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_inc_sockets_used + 0x00000000 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_pollscan + 0x00000000 0x148 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_dec_sockets_used + 0x00000000 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getaddrname + 0x00000000 0x110 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_init + 0x00000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_cleanup + 0x00000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_dbg_get_socket + 0x00000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_accept.str1.4 + 0x00000000 0x25 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_accept + 0x00000000 0x21c esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_bind + 0x00000000 0x125 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_listen + 0x00000000 0x82 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_recvmsg + 0x00000000 0x168 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_readv + 0x00000000 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_sendmsg + 0x00000000 0x276 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_writev + 0x00000000 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_poll.str1.4 + 0x00000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll + 0x00000000 0x13a esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getpeername + 0x00000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockname + 0x00000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_inet_ntop + 0x00000000 0x62 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$4 + 0x00000000 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$5 + 0x00000000 0xa esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$20 + 0x00000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .xt.lit 0x00000000 0x230 esp-idf/lwip/liblwip.a(sockets.c.obj) + .xt.prop 0x00000000 0x3a74 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.pbuf_free_int + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_new + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_delete + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback + 0x00000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback_fromisr + 0x00000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callback_wait + 0x00000000 0x24 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.pbuf_free_callback + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.mem_free_callback + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_int + 0x00000000 0xe esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_new + 0x00000000 0x1b esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_delete + 0x00000000 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback + 0x00000000 0x2d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback_fromisr + 0x00000000 0x2d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callback_wait + 0x00000000 0x56 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_callback + 0x00000000 0x12 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.mem_free_callback + 0x00000000 0x12 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$3 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$4 + 0x00000000 0x26 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$5 + 0x00000000 0x1e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xt.lit 0x00000000 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xt.prop 0x00000000 0x648 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.lwip_strnstr + 0x00000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .literal.lwip_strnistr + 0x00000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .literal.lwip_itoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnstr + 0x00000000 0x44 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_stricmp + 0x00000000 0x41 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnistr + 0x00000000 0x3c esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_itoa + 0x00000000 0x87 esp-idf/lwip/liblwip.a(def.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/lwip/liblwip.a(def.c.obj) + .xt.prop 0x00000000 0x2e8 esp-idf/lwip/liblwip.a(def.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(init.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/lwip/liblwip.a(init.c.obj) + .literal.ipaddr_ntoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.ipaddr_ntoa_r + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa + 0x00000000 0x26 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa_r + 0x00000000 0x2a esp-idf/lwip/liblwip.a(ip.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/lwip/liblwip.a(ip.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/lwip/liblwip.a(ip.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/lwip/liblwip.a(mem.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/lwip/liblwip.a(mem.c.obj) + .literal.memp_malloc_pool + 0x00000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.memp_free_pool + 0x00000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_init_pool + 0x00000000 0x5 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_malloc_pool.str1.4 + 0x00000000 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_malloc_pool + 0x00000000 0x23 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_free_pool + 0x00000000 0x26 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$1 + 0x00000000 0xf esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$3 + 0x00000000 0x11 esp-idf/lwip/liblwip.a(memp.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/lwip/liblwip.a(memp.c.obj) + .xt.prop 0x00000000 0x354 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.netif_input + 0x00000000 0x20 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_index_to_name + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_name_to_index + 0x00000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_ipaddr + 0x00000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_netmask + 0x00000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_gw + 0x00000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_noaddr + 0x00000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_create_ip6_linklocal_address + 0x00000000 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_ip6_address + 0x00000000 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_input.str1.4 + 0x00000000 0x37 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_input + 0x00000000 0x4e esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_index_to_name + 0x00000000 0x2e esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_name_to_index + 0x00000000 0x1d esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_ipaddr + 0x00000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_netmask + 0x00000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_gw + 0x00000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_noaddr + 0x00000000 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_create_ip6_linklocal_address.str1.4 + 0x00000000 0x32 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_create_ip6_linklocal_address + 0x00000000 0xf6 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add_ip6_address.str1.4 + 0x00000000 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_ip6_address + 0x00000000 0xd5 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$3 + 0x00000000 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$4 + 0x00000000 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$16 + 0x00000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .xt.lit 0x00000000 0x128 esp-idf/lwip/liblwip.a(netif.c.obj) + .xt.prop 0x00000000 0x1104 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.pbuf_header + 0x00000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_dechain + 0x00000000 0x1c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_get_contiguous + 0x00000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_coalesce + 0x00000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memcmp + 0x00000000 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memfind + 0x00000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_strstr + 0x00000000 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_header + 0x00000000 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_dechain.str1.4 + 0x00000000 0x39 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_dechain + 0x00000000 0x6b esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_get_contiguous + 0x00000000 0x56 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_coalesce + 0x00000000 0x24 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memcmp + 0x00000000 0x63 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memfind + 0x00000000 0x41 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_strstr + 0x00000000 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$4 + 0x00000000 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xt.lit 0x00000000 0x118 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xt.prop 0x00000000 0x1068 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.raw_bind + 0x00000000 0x10 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_disconnect + 0x00000000 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_bind + 0x00000000 0xee esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_disconnect + 0x00000000 0x8b esp-idf/lwip/liblwip.a(raw.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/lwip/liblwip.a(raw.c.obj) + .xt.prop 0x00000000 0xa8c esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.tcp_backlog_delayed + 0x00000000 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_bind + 0x00000000 0x24 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_listen_with_backlog_and_err + 0x00000000 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_listen_with_backlog + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_txnow + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_debug_state_str + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_tcp_get_tcp_addrinfo + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_accept_null + 0x00000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_new + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_backlog_delayed + 0x00000000 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_bind + 0x00000000 0x255 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_listen_with_backlog_and_err.str1.4 + 0x00000000 0x2d esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_listen_with_backlog_and_err + 0x00000000 0x18a esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_listen_with_backlog + 0x00000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_txnow + 0x00000000 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_setprio + 0x00000000 0xe esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_debug_state_str + 0x00000000 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_tcp_get_tcp_addrinfo + 0x00000000 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_accept_null.str1.4 + 0x00000000 0x1d esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_accept_null + 0x00000000 0x24 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_new 0x00000000 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$12 + 0x00000000 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$13 + 0x00000000 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$21 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.str1.4 + 0x00000000 0x76 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_state_str + 0x00000000 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + .xt.lit 0x00000000 0x198 esp-idf/lwip/liblwip.a(tcp.c.obj) + .xt.prop 0x00000000 0x1fc8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xt.prop 0x00000000 0x147c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xt.lit 0x00000000 0xd8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xt.prop 0x00000000 0x1110 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .literal.sys_timeouts_deinit + 0x00000000 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + .literal.sys_restart_timeouts + 0x00000000 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text.sys_timeouts_deinit + 0x00000000 0x1f esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text.sys_restart_timeouts + 0x00000000 0x2a esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_num_cyclic_timers + 0x00000000 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xt.prop 0x00000000 0x42c esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/lwip/liblwip.a(udp.c.obj) + .xt.prop 0x00000000 0x1170 esp-idf/lwip/liblwip.a(udp.c.obj) + .literal.dhcp_set_struct + 0x00000000 0x24 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .literal.dhcp_inform + 0x00000000 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_set_struct + 0x00000000 0x61 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_inform + 0x00000000 0xa8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$7 + 0x00000000 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xt.lit 0x00000000 0x128 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xt.prop 0x00000000 0x159c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .literal.etharp_find_addr + 0x00000000 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .literal.etharp_get_entry + 0x00000000 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .literal.etharp_acd_probe + 0x00000000 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + .literal.etharp_acd_announce + 0x00000000 0xc esp-idf/lwip/liblwip.a(etharp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_find_addr.str1.4 + 0x00000000 0x22 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_find_addr + 0x00000000 0x61 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_get_entry + 0x00000000 0x7a esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_acd_probe + 0x00000000 0x25 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_acd_announce + 0x00000000 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$4 + 0x00000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$5 + 0x00000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xt.prop 0x00000000 0xb1c esp-idf/lwip/liblwip.a(etharp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xt.prop 0x00000000 0x18c esp-idf/lwip/liblwip.a(icmp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xt.prop 0x00000000 0x858 esp-idf/lwip/liblwip.a(igmp.c.obj) + .literal.ip4_set_default_multicast_netif + 0x00000000 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_output + 0x00000000 0x18 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_set_default_multicast_netif + 0x00000000 0xa esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_output + 0x00000000 0x4e esp-idf/lwip/liblwip.a(ip4.c.obj) + .rodata.__func__$0 + 0x00000000 0xb esp-idf/lwip/liblwip.a(ip4.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/lwip/liblwip.a(ip4.c.obj) + .xt.prop 0x00000000 0x618 esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_addr_netmask_valid + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ipaddr_addr + 0x00000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_ntoa_r + 0x00000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_ntoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4_addr_netmask_valid + 0x00000000 0x32 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ipaddr_addr + 0x00000000 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_ntoa_r + 0x00000000 0x92 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_ntoa + 0x00000000 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss.str$0 0x00000000 0x10 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xt.prop 0x00000000 0x4f8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .literal.icmp6_send_response_with_addrs + 0x00000000 0x1c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_packet_too_big + 0x00000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_time_exceeded + 0x00000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_time_exceeded_with_addrs + 0x00000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.icmp6_send_response_with_addrs.str1.4 + 0x00000000 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_send_response_with_addrs + 0x00000000 0x4e esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_packet_too_big + 0x00000000 0x13 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_time_exceeded + 0x00000000 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_time_exceeded_with_addrs + 0x00000000 0x18 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xt.prop 0x00000000 0x30c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.ip6_output + 0x00000000 0x1c esp-idf/lwip/liblwip.a(ip6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .text.ip6_output + 0x00000000 0x16d esp-idf/lwip/liblwip.a(ip6.c.obj) + .rodata.__func__$0 + 0x00000000 0xb esp-idf/lwip/liblwip.a(ip6.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/lwip/liblwip.a(ip6.c.obj) + .xt.prop 0x00000000 0xd2c esp-idf/lwip/liblwip.a(ip6.c.obj) + .literal.ip6addr_ntoa_r + 0x00000000 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .literal.ip6addr_ntoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .rodata.ip6addr_ntoa_r.str1.4 + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa_r + 0x00000000 0x216 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa + 0x00000000 0x14 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss.str$0 0x00000000 0x28 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xt.prop 0x00000000 0x564 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.prop 0x00000000 0xb4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xt.prop 0x00000000 0x654 esp-idf/lwip/liblwip.a(mld6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .xt.lit 0x00000000 0xf0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .xt.prop 0x00000000 0x1b0c esp-idf/lwip/liblwip.a(nd6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.prop 0x00000000 0x138 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .literal.ip4_netif_exist + 0x00000000 0x4 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .text.ip4_netif_exist + 0x00000000 0x3a esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .xt.prop 0x00000000 0x228 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .xt.prop 0x00000000 0x294 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .literal.sys_mutex_free + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_mbox_trypost_fromisr + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_jiffies + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_thread_sem_deinit + 0x00000000 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_delay_ms + 0x00000000 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mutex_free + 0x00000000 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_trypost_fromisr.str1.4 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mbox_trypost_fromisr + 0x00000000 0x44 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_jiffies + 0x00000000 0xd esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_thread_sem_deinit + 0x00000000 0x26 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_delay_ms + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$5 + 0x00000000 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xt.lit 0x00000000 0xe0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xt.prop 0x00000000 0x8a0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .xt.prop 0x00000000 0x228 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .literal.netconn_bind + 0x00000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_bind_if + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_listen_with_backlog + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_sendto + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_close + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_accept + 0x00000000 0x3c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_udp_raw_netbuf + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_tcp_pbuf + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv + 0x00000000 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_init + 0x00000000 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_cleanup + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_bind + 0x00000000 0x8c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_bind_if + 0x00000000 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_listen_with_backlog + 0x00000000 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_sendto + 0x00000000 0x51 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_close + 0x00000000 0x11 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_accept + 0x00000000 0x122 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_udp_raw_netbuf + 0x00000000 0x2b esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_tcp_pbuf + 0x00000000 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_recv.str1.4 + 0x00000000 0xa esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv + 0x00000000 0xa2 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_thread_init.str1.4 + 0x00000000 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_init + 0x00000000 0x3c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_cleanup + 0x00000000 0x17 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$2 + 0x00000000 0xd esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xt.lit 0x00000000 0x108 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xt.prop 0x00000000 0xfa8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.accept_function + 0x00000000 0x4c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_bind + 0x00000000 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_bind_if + 0x00000000 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_listen + 0x00000000 0x34 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_accepted + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.accept_function.str1.4 + 0x00000000 0x27 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.accept_function + 0x00000000 0x13a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_bind + 0x00000000 0xcc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_bind_if + 0x00000000 0x6c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_listen.str1.4 + 0x00000000 0x2d esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_listen + 0x00000000 0x15f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_accepted + 0x00000000 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$3 + 0x00000000 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$4 + 0x00000000 0x17 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xt.lit 0x00000000 0x128 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xt.prop 0x00000000 0x19ec esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_new + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_ref + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_chain + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_new + 0x00000000 0x1c esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_ref + 0x00000000 0x46 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_chain + 0x00000000 0x22 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_data + 0x00000000 0x39 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_next + 0x00000000 0x2a esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_first + 0x00000000 0xb esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xt.prop 0x00000000 0x300 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.dns_clear_cache + 0x00000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_getserver + 0x00000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_gethostbyname + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_clear_cache + 0x00000000 0x3e esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_getserver + 0x00000000 0x1a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_gethostbyname + 0x00000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/lwip/liblwip.a(dns.c.obj) + .xt.prop 0x00000000 0x1038 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.inet_cksum_pseudo_partial_base + 0x00000000 0x20 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.inet_chksum_pseudo_partial + 0x00000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip6_chksum_pseudo_partial + 0x00000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip_chksum_pseudo_partial + 0x00000000 0x8 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.inet_cksum_pseudo_partial_base.str1.4 + 0x00000000 0x3d esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_cksum_pseudo_partial_base + 0x00000000 0xac esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_chksum_pseudo_partial + 0x00000000 0x3e esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip6_chksum_pseudo_partial + 0x00000000 0x55 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip_chksum_pseudo_partial + 0x00000000 0x2f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.esp_netif_next + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .text.esp_netif_next + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xt.prop 0x00000000 0x2a0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .literal.esp_netif_dhcpc_option_api + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_find_if_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_add_ip6_address_priv + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_lwip_ipc_call_fn + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_tx_rx_event_api + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.get_handle_from_ifkey_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_start_api + 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_stop_api + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_stop_api + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_hostname_api + 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_get_clients_by_mac_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info_api + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info_api + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_netif_impl_name_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ppp_set_auth_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_join_ip6_multicast_group_api + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_leave_ip6_multicast_group_api + 0x00000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_remove_ip6_address_api + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info_api + 0x00000000 0x38 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_add_ip6_address_api + 0x00000000 0x4c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_default_netif + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_default_netif + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_ip4addr_ntoa + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_ip4addr_aton + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_str_to_ip4 + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_str_to_ip6 + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_deinit + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_tcpip_exec + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_handle_from_ifkey + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_find_if + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_destroy + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_tx_rx_event_enable + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_tx_rx_event_disable + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_transmit + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_stop + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_start + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_stop + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_hostname + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_mac + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_option_api + 0x00000000 0x4c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_get_clients_by_mac + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info + 0x00000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ip6_get_addr_type + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_linklocal + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_global + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_all_ip6 + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_all_preferred_ip6 + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_option + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_option + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_netif_impl_name + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ppp_set_auth + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_join_ip6_multicast_group + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_leave_ip6_multicast_group + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_add_ip6_address + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_remove_ip6_address + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.tcpip_exec_api + 0x00000000 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_option_api + 0x00000000 0x90 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_find_if_api + 0x00000000 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_add_ip6_address_priv + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_lwip_ipc_call_fn + 0x00000000 0x22 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_tx_rx_event_api.str1.4 + 0x00000000 0x1f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_tx_rx_event_api + 0x00000000 0x37 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.get_handle_from_ifkey_api + 0x00000000 0x13 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start_api + 0x00000000 0xa3 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_stop_api + 0x00000000 0x3d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcpc_stop_api.str1.4 + 0x00000000 0x33 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_stop_api + 0x00000000 0x61 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_set_hostname_api.str1.4 + 0x00000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_hostname_api + 0x00000000 0x5d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_clients_by_mac_api + 0x00000000 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info_api + 0x00000000 0x56 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info_api + 0x00000000 0x4c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal_api + 0x00000000 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_name_api + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_ppp_set_auth_api + 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_join_ip6_multicast_group_api.str1.4 + 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_join_ip6_multicast_group_api + 0x00000000 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_leave_ip6_multicast_group_api.str1.4 + 0x00000000 0x39 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_leave_ip6_multicast_group_api + 0x00000000 0x4e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_remove_ip6_address_api + 0x00000000 0x3d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_set_ip_info_api.str1.4 + 0x00000000 0x3b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info_api + 0x00000000 0x11c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_add_ip6_address_api.str1.4 + 0x00000000 0x65 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_add_ip6_address_api + 0x00000000 0xec esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_default_netif + 0x00000000 0x11 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_default_netif + 0x00000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip4_addr + 0x00000000 0x43 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_ip4addr_ntoa + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_ip4addr_aton + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_str_to_ip4 + 0x00000000 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_str_to_ip6 + 0x00000000 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_handle_from_netif_impl + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl + 0x00000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_deinit + 0x00000000 0x19 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_tcpip_exec + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_handle_from_ifkey + 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_find_if + 0x00000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_destroy + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_tx_rx_event_enable + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_tx_rx_event_disable + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_transmit + 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_stop + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_status + 0x00000000 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_stop + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_hostname + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_mac + 0x00000000 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcps_option_api.str1.4 + 0x00000000 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_option_api + 0x00000000 0x291 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_clients_by_mac + 0x00000000 0x41 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info + 0x00000000 0x59 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_get_dns_info.str1.4 + 0x00000000 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info + 0x00000000 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_ip6_get_addr_type + 0x00000000 0x5e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_linklocal + 0x00000000 0x4d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_global + 0x00000000 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_all_ip6 + 0x00000000 0xee esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_all_preferred_ip6 + 0x00000000 0xf0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_route_prio + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_route_prio + 0x00000000 0x11 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_option + 0x00000000 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_option + 0x00000000 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_index + 0x00000000 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_name + 0x00000000 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_napt_enable + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_ppp_set_auth + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_napt_disable + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_link_speed + 0x00000000 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_join_ip6_multicast_group + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_leave_ip6_multicast_group + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_add_ip6_address + 0x00000000 0x2e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_remove_ip6_address + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$2 + 0x00000000 0x17 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xt.lit 0x00000000 0x390 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xt.prop 0x00000000 0x2f64 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .rodata.g_wifi_default_mesh_crypto_funcs + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .literal.sha384_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.sha512_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.sha1_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.md5_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_init + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_update + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_finish + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_sha384_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_sha384 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_md5_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_md5 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.aes_128_ctr_encrypt + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_mod_exp + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_dh_init + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.sha384_vector + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.sha512_vector + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.sha1_vector + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.md5_vector + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_init + 0x00000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_update + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_finish + 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_sha384_vector + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_sha384 + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_md5_vector + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_md5 + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.aes_128_ctr_encrypt + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_mod_exp + 0x00000000 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_dh_init + 0x00000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_global_init + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_global_deinit + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xt.lit 0x00000000 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xt.prop 0x00000000 0xc30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .xt.prop 0x00000000 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .literal.ccmp_aad_nonce_pv1 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_encrypt_pv1 + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_decrypt + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_encrypt + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_aad_nonce_pv1 + 0x00000000 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_get_pn + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_encrypt_pv1 + 0x00000000 0xdc esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_decrypt + 0x00000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_encrypt + 0x00000000 0xfc esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xt.prop 0x00000000 0x348 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.aes_gcm_ad + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .text.aes_gcm_ad + 0x00000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .xt.prop 0x00000000 0x3d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .literal.hwaddr_aton2 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.printf_encode + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpa_ssid_txt + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpa_merge_byte_arrays + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.str_clear_free + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.os_gmtime + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.os_mktime + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.get_param + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.hwaddr_aton2 + 0x00000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .rodata.printf_encode.str1.4 + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.printf_encode + 0x00000000 0xcb esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_ssid_txt + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.__hide_aliasing_typecast + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_is_hex + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.has_ctrl_char + 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_merge_byte_arrays + 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.str_clear_free + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.os_gmtime + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.os_mktime + 0x00000000 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.rssi_to_rcpi + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.get_param + 0x00000000 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .bss.ssid_txt$0 + 0x00000000 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xt.prop 0x00000000 0xc00 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xt.prop 0x00000000 0x300 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .literal.esp_wifi_deinit + 0x00000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .literal.esp_wifi_disconnect + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.esp_wifi_deinit + 0x00000000 0x1d esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.esp_wifi_disconnect + 0x00000000 0xd esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.nan_start + 0x00000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.nan_stop + 0x00000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.nan_input + 0x00000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.nan_sm_handle_event + 0x00000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.wifi_create_nan + 0x00000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.wifi_nan_set_config_local + 0x00000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.nan_dp_post_tx + 0x00000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.nan_dp_delete_peer + 0x00000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.nan_dp_search_node + 0x00000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.nan_ndp_resp_timeout_process + 0x00000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xt.prop 0x00000000 0x414 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .literal.disconnect_and_destroy + 0x00000000 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_set_default_wifi_ap_handlers + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_set_default_wifi_nan_handlers + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_clear_default_wifi_driver_and_handlers + 0x00000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_attach_wifi_ap + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_default_wifi_ap + 0x00000000 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_destroy_default_wifi + 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_wifi + 0x00000000 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_default_wifi_mesh_netifs + 0x00000000 0x8c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.disconnect_and_destroy + 0x00000000 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_set_default_wifi_ap_handlers + 0x00000000 0xd esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_set_default_wifi_nan_handlers + 0x00000000 0xd esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_clear_default_wifi_driver_and_handlers + 0x00000000 0x4d esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_attach_wifi_ap + 0x00000000 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_default_wifi_ap + 0x00000000 0x6a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_destroy_default_wifi + 0x00000000 0x17 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_wifi + 0x00000000 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_mesh_netifs.str1.4 + 0x00000000 0xa8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_default_wifi_mesh_netifs + 0x00000000 0x148 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$0 + 0x00000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$1 + 0x00000000 0x16 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$3 + 0x00000000 0x21 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xt.lit 0x00000000 0xc0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xt.prop 0x00000000 0x678 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_destroy_if_driver + 0x00000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_destroy_if_driver + 0x00000000 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .rodata.memset_func + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .xt.lit 0x00000000 0x148 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .xt.prop 0x00000000 0xcf0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.check_iomux_pins_oct + 0x00000000 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.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 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.alloc_dma_chan + 0x00000000 0x7c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.bus_iomux_pins_set_oct + 0x00000000 0x1c 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.bus_iomux_pins_set + 0x00000000 0x8 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 0x20 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 0x24 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_bus_initialize_io + 0x00000000 0x188 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_bus_free_io_cfg + 0x00000000 0x10 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 0x20 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_bus_using_iomux + 0x00000000 0x8 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 0x94 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 0x20 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) + .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) + .rodata 0x00000000 0x30 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.check_iomux_pins_oct + 0x00000000 0x62 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.check_iomux_pins_quad + 0x00000000 0x9a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.bus_uses_iomux_pins + 0x00000000 0x26 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.alloc_dma_chan.str1.4 + 0x00000000 0x130 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.alloc_dma_chan + 0x00000000 0x1cc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.bus_iomux_pins_set_oct.str1.4 + 0x00000000 0x12 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.bus_iomux_pins_set_oct + 0x00000000 0xab esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.bus_iomux_pins_set_quad + 0x00000000 0xce esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.bus_iomux_pins_set + 0x00000000 0x20 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_irqsource_for_host + 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_irqdma_source_for_host + 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_dma_chan_alloc + 0x00000000 0x5a 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 0xa7 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_free.str1.4 + 0x00000000 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_dma_chan_free + 0x00000000 0x48 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spicommon_bus_initialize_io.str1.4 + 0x00000000 0x352 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_bus_initialize_io + 0x00000000 0x946 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_bus_free_io_cfg + 0x00000000 0x61 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_cs_initialize + 0x00000000 0xd2 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spicommon_cs_free_io.str1.4 + 0x00000000 0x20 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_cs_free_io + 0x00000000 0x52 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_bus_using_iomux + 0x00000000 0x9a 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 0x173 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_initialize + 0x00000000 0x224 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spi_bus_dma_memory_alloc.str1.4 + 0x00000000 0x3a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_dma_memory_alloc + 0x00000000 0x41 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 0x81 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) + .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 0x15 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__func__$3 + 0x00000000 0x17 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) + .data.bus_ctx 0x00000000 0xc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .data.s_mainbus + 0x00000000 0x60 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_frame 0x00000000 0x268 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_info 0x00000000 0x5171 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_abbrev 0x00000000 0x52d esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_loc 0x00000000 0xf8a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_aranges + 0x00000000 0xe0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_ranges 0x00000000 0xf0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_line 0x00000000 0x3976 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_str 0x00000000 0x2e94 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 0xc8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .xt.prop 0x00000000 0xdd4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.http_should_keep_alive + 0x00000000 0x4 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_parser_execute + 0x00000000 0x298 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_method_str + 0x00000000 0x8 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_parser_init + 0x00000000 0xc esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_parser_settings_init + 0x00000000 0x4 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_errno_name + 0x00000000 0x18 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_errno_description + 0x00000000 0x18 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_parser_pause + 0x00000000 0x1c esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_body_is_final + 0x00000000 0x4 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_parser_version + 0x00000000 0x4 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text 0x00000000 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .data 0x00000000 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .bss 0x00000000 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_message_needs_eof + 0x00000000 0x71 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_should_keep_alive + 0x00000000 0x35 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_parser_execute.str1.4 + 0x00000000 0x1ee esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_parser_execute + 0x00000000 0x2bb6 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_method_str.str1.4 + 0x00000000 0xa esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_method_str + 0x00000000 0x19 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_parser_init + 0x00000000 0x4f esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_parser_settings_init + 0x00000000 0x12 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_errno_name.str1.4 + 0x00000000 0x2f esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_errno_name + 0x00000000 0x24 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_errno_description + 0x00000000 0x24 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_parser_pause.str1.4 + 0x00000000 0x31 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_parser_pause + 0x00000000 0x4f esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_body_is_final + 0x00000000 0x19 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_parser_version + 0x00000000 0x8 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.__func__$0 + 0x00000000 0x12 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.__func__$3 + 0x00000000 0x17 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.__func__$4 + 0x00000000 0x10 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.__func__$5 + 0x00000000 0x14 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.str1.4 + 0x00000000 0x7a3 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_strerror_tab + 0x00000000 0x108 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.unhex 0x00000000 0x100 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.tokens + 0x00000000 0x100 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.method_strings + 0x00000000 0x84 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .xt.prop 0x00000000 0x36f0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.get_port + 0x00000000 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_conn_new_sync + 0x00000000 0x34 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_conn_http_new + 0x00000000 0x1c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_conn_http_new_sync + 0x00000000 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_conn_http_new_async + 0x00000000 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_get_global_ca_store + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_get_ciphersuites_list + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_server_session_init + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_server_session_continue_async + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_server_session_create + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_server_session_delete + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_get_ssl_context + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_set_conn_sockfd + 0x00000000 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_get_conn_state + 0x00000000 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_set_conn_state + 0x00000000 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_init_global_ca_store + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_set_global_ca_store + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_free_global_ca_store + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .data 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .bss 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.get_port.str1.4 + 0x00000000 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.get_port + 0x00000000 0x52 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_read + 0x00000000 0x1d esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_write + 0x00000000 0x2d esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.esp_tls_conn_new_sync.str1.4 + 0x00000000 0x6c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_new_sync + 0x00000000 0xd6 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_http_new + 0x00000000 0x79 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_http_new_sync + 0x00000000 0x69 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_http_new_async + 0x00000000 0x4a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_get_global_ca_store + 0x00000000 0xd esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_get_ciphersuites_list + 0x00000000 0xd esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_server_session_init + 0x00000000 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_server_session_continue_async + 0x00000000 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_cfg_server_session_tickets_init + 0x00000000 0x8 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_cfg_server_session_tickets_free + 0x00000000 0x5 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_server_session_create + 0x00000000 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_server_session_delete + 0x00000000 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_get_ssl_context + 0x00000000 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_set_conn_sockfd + 0x00000000 0x3e esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_get_conn_state + 0x00000000 0x40 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_set_conn_state + 0x00000000 0x3c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_get_error_handle + 0x00000000 0x26 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_init_global_ca_store + 0x00000000 0xd esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_set_global_ca_store + 0x00000000 0x11 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_free_global_ca_store + 0x00000000 0xb esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .xt.lit 0x00000000 0x118 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .xt.prop 0x00000000 0xe40 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .data 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .bss 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .text.esp_tls_get_and_clear_error_type + 0x00000000 0x91 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .xt.prop 0x00000000 0x180 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .literal.esp_tls_get_platform_time + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .text 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .data 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .bss 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .text.esp_tls_get_platform_time + 0x00000000 0xf esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .debug_info 0x00000000 0xdd esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .debug_abbrev 0x00000000 0x75 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .debug_line 0x00000000 0x1f2 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .debug_str 0x00000000 0x2a9 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .comment 0x00000000 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .literal.set_server_config + 0x00000000 0x78 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_get_ssl_context + 0x00000000 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_server_session_init + 0x00000000 0x28 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_server_session_continue_async + 0x00000000 0x24 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_server_session_create + 0x00000000 0x20 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_server_session_delete + 0x00000000 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_init_global_ca_store + 0x00000000 0x1c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_set_global_ca_store + 0x00000000 0x40 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_get_global_ca_store + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_free_global_ca_store + 0x00000000 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_get_ciphersuites_list + 0x00000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .data 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .bss 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.set_server_config + 0x00000000 0x17e esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_get_ssl_context.str1.4 + 0x00000000 0x1f esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_get_ssl_context + 0x00000000 0x20 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_server_session_init.str1.4 + 0x00000000 0x3e esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_server_session_init + 0x00000000 0x9d esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_server_session_continue_async + 0x00000000 0x6b esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_server_session_create + 0x00000000 0x84 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_server_session_delete + 0x00000000 0x23 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_init_global_ca_store.str1.4 + 0x00000000 0x29 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_init_global_ca_store + 0x00000000 0x4f esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_set_global_ca_store.str1.4 + 0x00000000 0xc6 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_set_global_ca_store + 0x00000000 0xae esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_get_global_ca_store + 0x00000000 0xa esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_free_global_ca_store + 0x00000000 0x22 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_get_ciphersuites_list + 0x00000000 0xd esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.__func__$0 + 0x00000000 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .xt.lit 0x00000000 0xc0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .xt.prop 0x00000000 0xbf4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_transport_set_errors + 0x00000000 0x8 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .literal.esp_transport_translate_error + 0x00000000 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .text 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .data 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .bss 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .text.esp_transport_get_payload_transport_handle + 0x00000000 0x1c esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .text.esp_transport_connect_async + 0x00000000 0x22 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .text.esp_transport_set_errors + 0x00000000 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .text.esp_transport_translate_error + 0x00000000 0x38 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .xt.prop 0x00000000 0x948 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .literal.ssl_connect_async + 0x00000000 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .literal.ssl_write + 0x00000000 0x48 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .literal.ssl_read + 0x00000000 0x38 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .literal.ssl_connect + 0x00000000 0x54 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .literal.esp_transport_ssl_init + 0x00000000 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .data 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .bss 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.ssl_connect_async + 0x00000000 0x18 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.ssl_write + 0x00000000 0xc6 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .rodata.ssl_read.str1.4 + 0x00000000 0x2f esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.ssl_read + 0x00000000 0xd8 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .rodata.ssl_connect.str1.4 + 0x00000000 0x65 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.ssl_connect + 0x00000000 0xf2 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_enable_global_ca_store + 0x00000000 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_tls_version + 0x00000000 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_cert_data + 0x00000000 0x12 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_cert_data_der + 0x00000000 0xf esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_client_cert_data + 0x00000000 0x12 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_addr_family + 0x00000000 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_client_cert_data_der + 0x00000000 0xf esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_client_key_data + 0x00000000 0x12 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_client_key_password + 0x00000000 0xf esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_client_key_data_der + 0x00000000 0xf esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_alpn_protocol + 0x00000000 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_skip_common_name_check + 0x00000000 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_common_name + 0x00000000 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_ciphersuites_list + 0x00000000 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_crt_bundle_attach + 0x00000000 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_set_ds_data + 0x00000000 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text.esp_transport_ssl_init + 0x00000000 0x47 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .xt.prop 0x00000000 0xbb8 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .text 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .data 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .bss 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .xt.prop 0x00000000 0xe4 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .literal.esp_transport_ws_send_raw + 0x00000000 0x14 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .literal.esp_transport_ws_set_user_agent + 0x00000000 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .literal.esp_transport_ws_set_headers + 0x00000000 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .literal.esp_transport_ws_set_auth + 0x00000000 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .literal.esp_transport_ws_set_config + 0x00000000 0x4c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .literal.esp_transport_ws_get_fin_flag + 0x00000000 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .literal.esp_transport_ws_get_upgrade_request_status + 0x00000000 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .literal.esp_transport_ws_get_redir_uri + 0x00000000 0x20 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .literal.esp_transport_ws_get_read_opcode + 0x00000000 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .literal.esp_transport_ws_get_read_payload_len + 0x00000000 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .text 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .data 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .bss 0x00000000 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.esp_transport_ws_send_raw.str1.4 + 0x00000000 0x31 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .text.esp_transport_ws_send_raw + 0x00000000 0x40 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .text.esp_transport_ws_set_user_agent + 0x00000000 0x41 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .text.esp_transport_ws_set_headers + 0x00000000 0x3e esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .text.esp_transport_ws_set_auth + 0x00000000 0x41 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.esp_transport_ws_set_config.str1.4 + 0x00000000 0x33 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .text.esp_transport_ws_set_config + 0x00000000 0x135 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .text.esp_transport_ws_get_fin_flag + 0x00000000 0x11 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .text.esp_transport_ws_get_upgrade_request_status + 0x00000000 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.esp_transport_ws_get_redir_uri.str1.4 + 0x00000000 0x5c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .text.esp_transport_ws_get_redir_uri + 0x00000000 0x54 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .text.esp_transport_ws_get_read_opcode + 0x00000000 0x1d esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .text.esp_transport_ws_get_read_payload_len + 0x00000000 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .xt.lit 0x00000000 0x108 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .xt.prop 0x00000000 0x111c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .literal.mbedtls_ssl_ciphersuite_from_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_get_ciphersuite_name + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_get_ciphersuite_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_ciphersuite_get_cipher_key_bitlen + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_from_string + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.mbedtls_ssl_get_ciphersuite_name.str1.4 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_name + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_id + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_get_cipher_key_bitlen + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .xt.prop 0x00000000 0x3d8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_check_record + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_get_record_expansion + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_set_inbound_transform + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_set_outbound_transform + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_send_fatal_handshake_failure + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_close_notify + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_check_record + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_check_pending + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_get_record_expansion + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_set_inbound_transform + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_set_outbound_transform + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_send_fatal_handshake_failure + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_close_notify + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .xt.lit 0x00000000 0x140 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .xt.prop 0x00000000 0x19d4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_tls12_session_save + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_session_save + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_tls12_session_load + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_session_load + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_get_handshake_transcript_sha384 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_get_handshake_transcript_sha256 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_tls_prf + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_extension_mask + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_add_hs_msg_to_checksum + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset_msg_layer + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_timer_cb + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_hs_own_cert + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_max_frag_len + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_renegotiation_period + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_ciphersuite + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_version + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_input_max_frag_len + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_max_in_record_payload + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_save + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_copy + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_session + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_session + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset_int + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_load + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_psa_curve_info_from_tls_id + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_handshake_transcript + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_tls12_session_save + 0x00000000 0x17e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_session_save + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_tls12_session_load + 0x00000000 0x281 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_session_load + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_get_handshake_transcript_sha384 + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_get_handshake_transcript_sha256 + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_tls_prf + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_extension_id + 0x00000000 0x19f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_extension_mask + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_add_hs_msg_to_checksum + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset_msg_layer + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dtls_badmac_limit + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_verify + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dbg + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_read_timeout + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_timer_cb + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_cache + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_cert_profile + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_hs_sni + 0x00000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_own_cert + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_ca_chain + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_dn_hints + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_authmode + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_verify + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_sig_algs + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_groups + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_sni + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_alpn_protocol + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_cert_req_ca_list + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_encrypt_then_mac + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_extended_master_secret + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_max_frag_len + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_legacy_renegotiation + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation_enforced + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation_period + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_tickets_cb + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_export_keys_cb + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ciphersuite_id_from_ssl + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ciphersuite + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_get_version.str1.4 + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_version + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_input_max_frag_len + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_max_in_record_payload + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_peer_cert + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_save + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_copy + 0x00000000 0x99 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_session + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_session + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset_int + 0x00000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_load + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_psa_curve_info_from_tls_id + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_handshake_transcript + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_serialized_session_header + 0x00000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .xt.lit 0x00000000 0x340 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .xt.prop 0x00000000 0x3d14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .xt.lit 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .xt.prop 0x00000000 0x15a8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_conf_preference_order + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .xt.lit 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .xt.prop 0x00000000 0x1854 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .literal.mbedtls_net_connect + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_bind + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_accept + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_set_block + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_set_nonblock + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_usleep + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_recv_timeout + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.net_prepare + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_connect + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_bind + 0x00000000 0x10e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_accept + 0x00000000 0x156 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_set_block + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_set_nonblock + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_usleep + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_recv_timeout + 0x00000000 0xb7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .xt.prop 0x00000000 0x654 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .xt.prop 0x00000000 0x774 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.mbedtls_mpi_lt_mpi_ct + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_swap + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_read_string + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_read_file + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mpi_write_hlp + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_write_string + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_write_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_gen_prime + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_self_test + 0x00000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mpi_get_digit + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_lt_mpi_ct + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_swap + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_string + 0x00000000 0x131 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_file + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mpi_write_hlp + 0x00000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_string.str1.4 + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_write_string + 0x00000000 0x111 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_file.str1.4 + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_write_file + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_gen_prime + 0x00000000 0x234 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_self_test.str1.4 + 0x00000000 0x46a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_self_test + 0x00000000 0x2fe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.gcd_pairs + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xt.lit 0x00000000 0x188 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xt.prop 0x00000000 0x1c98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.exp_mod_calc_first_bit_optionally_safe + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_ct_uint_table_lookup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.exp_mod_table_lookup_optionally_safe + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_mul + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.exp_mod_precompute_window + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod_optionally_safe + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod_working_limbs + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod_unsafe + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_from_mont_rep + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.exp_mod_get_window_size + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.exp_mod_calc_first_bit_optionally_safe + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_ct_uint_table_lookup + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.exp_mod_table_lookup_optionally_safe + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_add_if + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_mul + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.exp_mod_precompute_window + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod_optionally_safe + 0x00000000 0x112 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod_working_limbs + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod_unsafe + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_check_zero_ct + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_from_mont_rep + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .xt.lit 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .xt.prop 0x00000000 0xbf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_cipher_list + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_update_ad + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_write_tag + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_check_tag + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_list + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_info_from_string + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_update_ad + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_write_tag + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_check_tag + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss.supported_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xt.lit 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xt.prop 0x00000000 0xffc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .bss.mbedtls_cipher_supported + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xt.lit 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xt.prop 0x00000000 0x8ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .xt.prop 0x00000000 0x18c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.cmac_test_subkeys + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac_reset + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.cmac_test_wth_cipher + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_aes_cmac_prf_128 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.test_aes128_cmac_prf + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cmac_self_test + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.cmac_test_subkeys.str1.4 + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.cmac_test_subkeys + 0x00000000 0x13d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cipher_cmac_reset + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cipher_cmac + 0x00000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.cmac_test_wth_cipher.str1.4 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.cmac_test_wth_cipher + 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_aes_cmac_prf_128 + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.test_aes128_cmac_prf.str1.4 + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.test_aes128_cmac_prf + 0x00000000 0x6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.mbedtls_cmac_self_test.str1.4 + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cmac_self_test + 0x00000000 0x10f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFT 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFM 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFKlen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFK 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_message_lengths + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.test_message + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .xt.prop 0x00000000 0x900 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.ctr_drbg_self_test_entropy + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_write_seed_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update_seed_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_self_test + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.ctr_drbg_self_test_entropy + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_prediction_resistance + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_entropy_len + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_nonce_len + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_reseed_interval + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_write_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_write_seed_file + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_update_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update_seed_file + 0x00000000 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_self_test.str1.4 + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_self_test + 0x00000000 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss.test_offset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_nopr + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_pr + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.pers_nopr + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.pers_pr + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_nopr + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_pr + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xt.prop 0x00000000 0x8b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_can_do + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_get_grp_id + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xt.prop 0x00000000 0x6cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.self_test_rng + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_name + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_point_read_string + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.self_test_point + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_keypair_base + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_keypair + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_set_public_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_write_key_ext + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_write_public_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_keypair_calc_public + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_export + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_self_test + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_rng + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_adjust_exponent + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_name + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_point_read_string + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.self_test_point.str1.4 + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_point + 0x00000000 0x10b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_keypair_base + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_keypair + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_key + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_set_public_key + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_write_key_ext + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_write_public_key + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_keypair_calc_public + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_keypair_get_group_id + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_export + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.mbedtls_ecp_self_test.str1.4 + 0x00000000 0x38d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_self_test + 0x00000000 0x192 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .data.state$0 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xt.lit 0x00000000 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xt.prop 0x00000000 0x210c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xt.prop 0x00000000 0xbdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .literal.entropy_dummy_source + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test_gather + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_manual + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_gather + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_write_seed_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_seed_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_self_test + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test_check_bits + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.entropy_dummy_source + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test_gather + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_manual + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_gather + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_write_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_write_seed_file + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_update_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_seed_file + 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_source_self_test.str1.4 + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_self_test.str1.4 + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_self_test + 0x00000000 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xt.prop 0x00000000 0x5ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_md_error_from_psa + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_list + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_info_from_string + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_get_name + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_file + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_hmac + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_error_from_psa + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_list + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_info_from_string + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_get_name + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_md_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_file + 0x00000000 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_hmac + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.str1.4 + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.md_names + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.supported_digests + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xt.prop 0x00000000 0xe7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md5_self_test + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.mbedtls_md5_self_test.str1.4 + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text.mbedtls_md5_self_test + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_sum + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buflen + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buf + 0x00000000 0x237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.psa_extend_key_usage_flags + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.psa_algorithm_for_rsa + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_check_pair + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_debug + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_get_name + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.copy_from_psa + 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_copy_from_psa + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_copy_public_from_psa + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign_ext + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_get_psa_attributes + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.import_public_into_psa + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.import_pair_into_psa + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_import_into_psa + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.psa_extend_key_usage_flags + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.psa_algorithm_for_rsa + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_check_pair + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_debug + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .rodata.mbedtls_pk_get_name.str1.4 + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_name + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.copy_from_psa + 0x00000000 0x2a9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_copy_from_psa + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_copy_public_from_psa + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign_ext + 0x00000000 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_psa_attributes + 0x00000000 0x20d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.import_public_into_psa + 0x00000000 0x106 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.import_pair_into_psa + 0x00000000 0x14b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_import_into_psa + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xt.lit 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xt.prop 0x00000000 0x117c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .xt.prop 0x00000000 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xt.prop 0x00000000 0x630 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.mbedtls_pk_load_file + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_keyfile + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_public_keyfile + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_load_file.str1.4 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_load_file + 0x00000000 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_keyfile + 0x00000000 0x5f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_public_keyfile + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xt.prop 0x00000000 0xe34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_platform_set_calloc_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_set_calloc_free + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_setup + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_teardown + 0x00000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.psa_extend_key_usage_flags + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_initialized + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_drivers_initialized + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_key_can_do + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_policy_algorithm_intersection + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_algorithm_permits + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_policy_permits + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_restrict_key_policy + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_policy + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.is_hash_supported + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_finalize_alg_and_key_validation + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_verify_check_alg + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_get_base_algorithm + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_nonce_length + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_algorithm + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_tag_length + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_get_kdf_alg + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.is_kdf_alg_supported + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_try_support + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_allows_free_form_secret_input + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_check_input_type + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_seed + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_label + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_input + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_set_other_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_ecjpake_to_pms_input + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_copy_input + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_copy_output + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key_buffer_internal + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_wipe_tag_output_buffer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_key_slot_with_policy + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_transparent_key_slot_with_policy + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_attributes + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_start_key_creation + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_finish_key_creation + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_hash_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_set_key + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_input + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_mac_sign_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_start_hmac + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_mac_verify_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_mac_compute + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute_internal + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_asymmetric_encrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_asymmetric_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_cipher_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_cipher_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_cipher_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_cipher_encrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_cipher_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_aead_encrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_aead_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_aead_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_aead_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_aead_verify + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_init + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_can_do_hash + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_can_do_cipher + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_to_psa_error + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_random_internal + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_seed + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_init_subsystem + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_unstructured_key_bit_size + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_type_and_size_for_key_generation + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_allocate_buffer_to_slot + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key_material_into_slot + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_import_key_into_slot + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_import_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_remove_key_data_from_memory + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_wipe_key_slot + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_fail_key_creation + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_destroy_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_key_attributes + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key_internal + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_export_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key_internal + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_finish_internal + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_setup + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_try_support + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_set_maximum_capacity + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup_kdf + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_clone + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_setup + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_builtin + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_sign_hash + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message_builtin + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_internal + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_builtin + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_verify_hash + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message_builtin + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_internal + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_set_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_get_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_sign_hash_start + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_sign_hash_start + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_abort_internal + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_verify_hash_start + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_verify_hash_start + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_abort_internal + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_complete + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_setup + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_setup + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_nonce_internal + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_lengths + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_abort + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_internal + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_integer_internal + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_integer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_raw_builtin + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_key_agreement + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_raw_internal + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_internal + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key_internal + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_generate_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key_custom + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_configure_entropy_sources + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_free + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_init + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_input_alloc + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_input_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_import_key + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_verify + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compare + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_finish + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_start + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_start + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_set_iv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_nonce + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update_ad + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_bytes + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_key_agreement + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_output_alloc + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_output_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_finish + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compute + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_ecjpake_to_pms_read + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_prf_generate_next_block + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_prf_read + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_encrypt + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_decrypt + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_complete + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_generate_iv + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_update + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_generate_nonce + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_finish + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_verify + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_bytes + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_ecc_key_weierstrass_helper + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_ecc_key_montgomery_helper + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_key_internal + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_key_custom + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_key_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_raw_key_agreement + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_random + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_extend_key_usage_flags + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.key_type_is_raw_bytes + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_initialized + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_drivers_initialized + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_key_can_do + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_policy_algorithm_intersection + 0x00000000 0x3fe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_algorithm_permits + 0x00000000 0x370 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_policy_permits + 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_restrict_key_policy + 0x00000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_policy + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_optional_attributes + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.is_hash_supported + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_finalize_alg_and_key_validation + 0x00000000 0x257 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_verify_check_alg + 0x00000000 0x10d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_get_base_algorithm + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_nonce_length + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_algorithm + 0x00000000 0xc5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_tag_length + 0x00000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_final_checks + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_get_kdf_alg + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.is_kdf_alg_supported + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_try_support + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_allows_free_form_secret_input + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_check_input_type + 0x00000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_seed + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_key + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_label + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_input + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_set_other_key + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_ecjpake_to_pms_input + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_copy_input + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_copy_output + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key_buffer_internal + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_wipe_tag_output_buffer + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_key_slot_with_policy + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_transparent_key_slot_with_policy + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_attributes + 0x00000000 0x67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_start_key_creation + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_finish_key_creation + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_hash_setup + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_set_key + 0x00000000 0xc5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_input + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_mac_sign_setup + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_start_hmac + 0x00000000 0x132 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_mac_verify_setup + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_mac_compute + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute_internal + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_asymmetric_encrypt + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_asymmetric_decrypt + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_cipher_encrypt_setup + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_cipher_decrypt_setup + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_cipher_abort + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_cipher_encrypt + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_cipher_decrypt + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_aead_encrypt + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_aead_decrypt + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_aead_encrypt_setup + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_aead_decrypt_setup + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_aead_verify + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_free + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_init + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_can_do_hash + 0x00000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_can_do_cipher + 0x00000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_to_psa_error + 0x00000000 0x5aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_random_internal + 0x00000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .rodata.mbedtls_psa_random_seed.str1.4 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_seed + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_init_subsystem + 0x00000000 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_unstructured_key_bit_size + 0x00000000 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_type_and_size_for_key_generation + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_allocate_buffer_to_slot + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_copy_key_material_into_slot + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_import_key_into_slot + 0x00000000 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_import_key + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_remove_key_data_from_memory + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_wipe_key_slot + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_fail_key_creation + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_destroy_key + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_key_attributes + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key_internal + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_export_key + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key_internal + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_copy_key + 0x00000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_abort + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_finish_internal + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_setup + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_try_support + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_set_maximum_capacity + 0x00000000 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup_kdf + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_clone + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_abort + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_setup + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_builtin + 0x00000000 0x9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_sign_hash + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_message_builtin + 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_internal + 0x00000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_builtin + 0x00000000 0x9b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_verify_hash + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_message_builtin + 0x00000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_internal + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_set_max_ops + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_get_max_ops + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_interruptible_set_max_ops + 0x00000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_start + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_sign_hash_start + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_complete + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_abort_internal + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_abort + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_start + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_verify_hash_start + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_complete + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_abort_internal + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_complete + 0x00000000 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_abort + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_abort + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_setup + 0x00000000 0x156 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_abort + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_setup + 0x00000000 0xd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_nonce_internal + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_lengths + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_abort + 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_internal + 0x00000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_integer_internal + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_get_capacity + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_set_capacity + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_custom_key_parameters_are_default + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_integer + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_key + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_raw_builtin + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_key_agreement + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_raw_internal + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_internal + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_internal + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_generate_key + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_custom + 0x00000000 0x1d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_ext + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_configure_entropy_sources + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_free + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_init + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_input_alloc + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_input_free + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_import_key + 0x00000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_update + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_verify + 0x00000000 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_compare + 0x00000000 0xad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_update + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_finish + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify + 0x00000000 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_message + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_start + 0x00000000 0xde esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_start + 0x00000000 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_set_iv + 0x00000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_nonce + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_update_ad + 0x00000000 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_bytes + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_key_agreement + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_output_alloc + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_output_free + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_finish + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_compute + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_ecjpake_to_pms_read + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_finish + 0x00000000 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_prf_generate_next_block + 0x00000000 0x1c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_prf_read + 0x00000000 0x11d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_message + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_encrypt + 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_decrypt + 0x00000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_complete + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_generate_iv + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_update + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_finish + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt + 0x00000000 0x1ca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt + 0x00000000 0x145 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt + 0x00000000 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt + 0x00000000 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_generate_nonce + 0x00000000 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_update + 0x00000000 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_finish + 0x00000000 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_verify + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_bytes + 0x00000000 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_ecc_key_weierstrass_helper + 0x00000000 0x140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_ecc_key_montgomery_helper + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_key_internal + 0x00000000 0x111 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_key_custom + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_key_ext + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_key + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_raw_key_agreement + 0x00000000 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_random + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .rodata.default_custom_production + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .data.psa_interruptible_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .bss.global_data + 0x00000000 0x1fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_frame 0x00000000 0x1360 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_info 0x00000000 0xf311 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_abbrev 0x00000000 0x5bf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_loc 0x00000000 0xb0b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_aranges + 0x00000000 0x688 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_ranges 0x00000000 0x720 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_line 0x00000000 0xe0eb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_str 0x00000000 0x443e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .xt.lit 0x00000000 0x5f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .xt.prop 0x00000000 0x7674 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_setup + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_nonce + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_lengths + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update_ad + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_finish + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_abort + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.psa_aead_unpadded_locate_tag + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.psa_aead_setup + 0x00000000 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt_setup + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt_setup + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_nonce + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_lengths + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update_ad + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_finish + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_abort + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt + 0x00000000 0xe1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt + 0x00000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_frame 0x00000000 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_info 0x00000000 0x1761 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_abbrev 0x00000000 0x40f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_loc 0x00000000 0x8e7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_aranges + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_line 0x00000000 0xef1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_str 0x00000000 0xcdb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .xt.prop 0x00000000 0x534 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_cipher_validate_values + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.psa_cipher_update_ecb + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_cipher_values_from_psa + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_cipher_info_from_psa + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.psa_cipher_setup + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_set_iv + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_update + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_finish + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_validate_values + 0x00000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.psa_cipher_update_ecb + 0x00000000 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_values_from_psa + 0x00000000 0x119 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_info_from_psa + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.psa_cipher_setup + 0x00000000 0x151 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt_setup + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt_setup + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_set_iv + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_update + 0x00000000 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_finish + 0x00000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_abort + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt + 0x00000000 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_frame 0x00000000 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_info 0x00000000 0x1541 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_abbrev 0x00000000 0x3c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_loc 0x00000000 0x9c5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_ranges 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_line 0x00000000 0x1408 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_str 0x00000000 0xbbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .xt.prop 0x00000000 0x714 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.psa_reset_key_attributes + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text.psa_reset_key_attributes + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_info 0x00000000 0x223 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_abbrev 0x00000000 0xed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_line 0x00000000 0x31d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_str 0x00000000 0x3a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .literal.psa_driver_wrapper_export_public_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_get_key_buffer_size + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_export_public_key + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_get_builtin_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_info 0x00000000 0x4be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_abbrev 0x00000000 0x183 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_loc 0x00000000 0x143 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_line 0x00000000 0x406 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_str 0x00000000 0x53c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .literal.mbedtls_psa_ecp_load_representation + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_key + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_import_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_public_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_generate_key + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_sign_hash + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_load_public_part + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_verify_hash + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_key_agreement_ecdh + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.check_ecc_parameters + 0x00000000 0x106 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_representation + 0x00000000 0x135 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_key + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_import_key + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_public_key + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_generate_key + 0x00000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_sign_hash + 0x00000000 0x14a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_public_part + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_verify_hash + 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_key_agreement_ecdh + 0x00000000 0x12a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_info 0x00000000 0x18fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_abbrev 0x00000000 0x36b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_loc 0x00000000 0xb91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_line 0x00000000 0x126b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_str 0x00000000 0xc96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .xt.prop 0x00000000 0x6a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_hash_abort + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_setup + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_clone + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_update + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_finish + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_abort + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_setup + 0x00000000 0x109 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_clone + 0x00000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_update + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_finish + 0x00000000 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_compute + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_info 0x00000000 0xdf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_abbrev 0x00000000 0x281 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_loc 0x00000000 0x5ba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_line 0x00000000 0xbec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_str 0x00000000 0x7d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .xt.prop 0x00000000 0x6cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.psa_hmac_abort_internal + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mac_init + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.cmac_setup + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_setup_internal + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_update_internal + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_finish_internal + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_mac_finish_internal + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_abort + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_mac_setup + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_update + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_finish + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_finish + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_compute + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_abort_internal + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mac_init + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.cmac_setup + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_setup_internal + 0x00000000 0x257 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_update_internal + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_finish_internal + 0x00000000 0x146 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_mac_finish_internal + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_abort + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_mac_setup + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_update + 0x00000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_finish + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_finish + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_compute + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_frame 0x00000000 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_info 0x00000000 0x1877 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_abbrev 0x00000000 0x439 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_loc 0x00000000 0xa83 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_line 0x00000000 0x1394 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_str 0x00000000 0xbd7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .xt.prop 0x00000000 0xa08 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.rsa_pss_expected_salt_len + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_check_rsa_key_byte_aligned + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_rsa_oaep_set_padding_mode + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_md_get_size_from_type + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_rsa_decode_md_type + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_load_representation + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_key + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_import_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_public_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_generate_key + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_sign_hash + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_verify_hash + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_encrypt + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_decrypt + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_read_exponent + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.rsa_pss_expected_salt_len + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_check_rsa_key_byte_aligned + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_oaep_set_padding_mode + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_md_get_size_from_type + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_decode_md_type + 0x00000000 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_load_representation + 0x00000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_key + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_import_key + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_public_key + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_generate_key + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_sign_hash + 0x00000000 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_verify_hash + 0x00000000 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_encrypt + 0x00000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_decrypt + 0x00000000 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_frame 0x00000000 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_info 0x00000000 0x19a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_abbrev 0x00000000 0x3cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_loc 0x00000000 0x9a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_line 0x00000000 0x13da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_str 0x00000000 0xa8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .xt.prop 0x00000000 0x678 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_extend_key_usage_flags + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.volatile_key_id_of_index + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_key_slots_initialized + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.get_volatile_key_slot + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_allocate_volatile_key_slot + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_load_persistent_key_into_slot + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_is_valid_key_id + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot_in_memory + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_initialize_key_slots + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_wipe_all_key_slots + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_free_key_slot + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_reserve_free_key_slot + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_unregister_read + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_unregister_read_under_mutex + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_open_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_close_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_purge_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.mbedtls_psa_get_stats + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_extend_key_usage_flags + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.volatile_key_id_of_index + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.slice_index_of_volatile_key_id + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.slot_index_of_volatile_key_id + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_key_slots_initialized + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.get_volatile_key_slot + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_allocate_volatile_key_slot + 0x00000000 0xb5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_load_persistent_key_into_slot + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_is_valid_key_id + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot_in_memory + 0x00000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_initialize_key_slots + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_wipe_all_key_slots + 0x00000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_free_key_slot + 0x00000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_reserve_free_key_slot + 0x00000000 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot + 0x00000000 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_unregister_read + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_unregister_read_under_mutex + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_validate_key_location + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_validate_key_persistence + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_open_key + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_close_key + 0x00000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_purge_key + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.mbedtls_psa_get_stats + 0x00000000 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .bss.global_data + 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_frame 0x00000000 0x238 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_info 0x00000000 0x152c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_abbrev 0x00000000 0x3c2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_loc 0x00000000 0x129a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_aranges + 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_ranges 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_line 0x00000000 0x1cc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_str 0x00000000 0xab7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .xt.prop 0x00000000 0x9f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_crypto_storage_get_data_length + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.check_magic_header + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_crypto_storage_load + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_is_key_present_in_storage + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_crypto_storage_store + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_destroy_persistent_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_format_key_data_for_storage + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_parse_key_data_from_storage + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_save_persistent_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_free_persistent_key_data + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_load_persistent_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_its_identifier_of_slot + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_get_data_length + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .rodata 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.check_magic_header + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_load + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_is_key_present_in_storage + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_store + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_destroy_persistent_key + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_format_key_data_for_storage + 0x00000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_parse_key_data_from_storage + 0x00000000 0x156 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_save_persistent_key + 0x00000000 0x69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_free_persistent_key_data + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_load_persistent_key + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_frame 0x00000000 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_info 0x00000000 0x1197 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_abbrev 0x00000000 0x391 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_loc 0x00000000 0xa3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_aranges + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_line 0x00000000 0x1029 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_str 0x00000000 0x745 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .xt.prop 0x00000000 0x45c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_its_fill_filename + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_read_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_get_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_get + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_set + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_remove + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_fill_filename.str1.4 + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_fill_filename + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_read_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_read_file + 0x00000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_get_info + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_get + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_set.str1.4 + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_set + 0x00000000 0xf1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_remove + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_info 0x00000000 0x1269 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_abbrev 0x00000000 0x337 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_loc 0x00000000 0x534 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_ranges 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_line 0x00000000 0xa3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_str 0x00000000 0x85b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .xt.prop 0x00000000 0x324 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.convert_raw_to_der_single_int + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.convert_der_to_raw_single_int + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.psa_pk_status_to_mbedtls + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.mbedtls_psa_get_random + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.mbedtls_ecdsa_raw_to_der + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.mbedtls_ecdsa_der_to_raw + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.convert_raw_to_der_single_int + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.convert_der_to_raw_single_int + 0x00000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_generic_status_to_mbedtls + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_status_to_mbedtls + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_pk_status_to_mbedtls + 0x00000000 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecc_group_to_psa + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecc_group_from_psa + 0x00000000 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_psa_get_random + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecdsa_raw_to_der + 0x00000000 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecdsa_der_to_raw + 0x00000000 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_pk_rsa_errors + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_lms_errors + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_md_errors + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_info 0x00000000 0xa6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_abbrev 0x00000000 0x2a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_loc 0x00000000 0xa03 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_line 0x00000000 0xfb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_str 0x00000000 0x6e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .xt.prop 0x00000000 0x8ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.myrand + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export_raw + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_write_pubkey + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export_crt + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_write_key + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_set_padding + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_sign_no_mode_check + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_sign_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_gen_key + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_copy + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_self_test + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.myrand 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export_raw + 0x00000000 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export + 0x00000000 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_write_pubkey + 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export_crt + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_write_key + 0x00000000 0x1a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_set_padding + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_get_padding_mode + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_get_md_alg + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_sign_no_mode_check + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_sign_ext + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_gen_key + 0x00000000 0x24c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_copy + 0x00000000 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .rodata.mbedtls_rsa_self_test.str1.4 + 0x00000000 0x3b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .rodata 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_self_test + 0x00000000 0x2bb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xt.lit 0x00000000 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xt.prop 0x00000000 0x1e9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .xt.prop 0x00000000 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .literal.mbedtls_sha1_self_test + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.mbedtls_sha1_self_test.str1.4 + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text.mbedtls_sha1_self_test + 0x00000000 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_sum + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buflen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buf + 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xt.prop 0x00000000 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .literal.mbedtls_sha256_common_self_test + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha256_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha224_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.mbedtls_sha256_common_self_test.str1.4 + 0x00000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256_common_self_test + 0x00000000 0x13b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha224_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha256_test_sum + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha224_test_sum + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha_test_buflen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha_test_buf + 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha512_common_self_test + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha512_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha384_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.mbedtls_sha512_common_self_test.str1.4 + 0x00000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512_common_self_test + 0x00000000 0x13b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha384_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha512_test_sum + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha384_test_sum + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha_test_buflen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha_test_buf + 0x00000000 0x153 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .xt.prop 0x00000000 0x294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .xt.prop 0x00000000 0xfc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .literal.esp_internal_aes_encrypt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_encrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_internal_aes_decrypt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_crypt_cfb8 + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_encrypt + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_encrypt + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_decrypt + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_decrypt + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_cfb8 + 0x00000000 0x151 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .xt.prop 0x00000000 0x690 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.prop 0x00000000 0x3cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .xt.prop 0x00000000 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .literal.esp_ds_deinit_data_ctx + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .literal.esp_ds_mgf_mask + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .literal.esp_ds_hash_mprime + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .text.esp_ds_deinit_data_ctx + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .text.esp_ds_mgf_mask + 0x00000000 0xf1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .text.esp_ds_hash_mprime + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .xt.prop 0x00000000 0x378 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .literal.esp_mpi_mul_mpi_mod + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.esp_mpi_mul_mpi_mod + 0x00000000 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xt.prop 0x00000000 0x4f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.esp_mpi_hardware_words + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_interrupt_enable + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_interrupt_clear + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_mul_mpi_mod_hw_op + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_hardware_words + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_interrupt_enable + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_interrupt_clear + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_mul_mpi_mod_hw_op + 0x00000000 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.mbedtls_internal_sha1_process + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_internal_sha1_process + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xt.prop 0x00000000 0x330 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_internal_sha256_process + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_internal_sha256_process + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.prop 0x00000000 0x360 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_internal_sha512_process + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.esp_sha512_set_mode + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.esp_sha512_set_t + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_internal_sha512_process + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xt.prop 0x00000000 0x444 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .xt.prop 0x00000000 0x6fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_md5_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text.esp_md5_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .xt.prop 0x00000000 0x15c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.mbedtls_aria_self_test + 0x00000000 0x154 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.mbedtls_aria_self_test.str1.4 + 0x00000000 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .text.mbedtls_aria_self_test + 0x00000000 0x4c3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_ctr_ct + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_cfb_ct + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_cbc_ct + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_iv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_pt + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_ct + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_pt + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .xt.prop 0x00000000 0x834 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .literal.mbedtls_asn1_get_enum + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_free_named_data_list + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_find_named_data + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_enum + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_free_named_data_list + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_find_named_data + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xt.prop 0x00000000 0x750 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.asn1_write_tagged_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_raw_buffer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_null + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_oid + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_algorithm_identifier_ext + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_algorithm_identifier + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bool + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_enum + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_tagged_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_utf8_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_printable_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_ia5_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bitstring + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_named_bitstring + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_octet_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_store_named_data + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.asn1_write_tagged_int + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_raw_buffer + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_null + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_oid + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_algorithm_identifier_ext + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_algorithm_identifier + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bool + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_int + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_enum + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_tagged_string + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_utf8_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_printable_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_ia5_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bitstring + 0x00000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_named_bitstring + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_octet_string + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_store_named_data + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xt.prop 0x00000000 0x6b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_ccm_star_encrypt_and_tag + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_star_auth_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_self_test + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_star_encrypt_and_tag + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_star_auth_decrypt + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.mbedtls_ccm_self_test.str1.4 + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_self_test + 0x00000000 0x19b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.res_test_data + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.tag_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.add_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.ad_test_data + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.key_test_data + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xt.prop 0x00000000 0x930 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ecdsa_sign + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_sign_det_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_verify + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_genkey + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_from_keypair + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign_det_ext + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_verify + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_genkey + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_from_keypair + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xt.prop 0x00000000 0x5e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_gcm_self_test + 0x00000000 0x114 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.mbedtls_gcm_self_test.str1.4 + 0x00000000 0x83 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .text.mbedtls_gcm_self_test + 0x00000000 0x5ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.tag_test_data + 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.ct_test_data + 0x00000000 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.pt_test_data + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.pt_index_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.pt_len_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.additional_test_data + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.add_index_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.add_len_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.iv_test_data + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.iv_index_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.iv_len_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.key_test_data + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.key_index_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .xt.prop 0x00000000 0xcb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .literal.hmac_drbg_self_test_entropy + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_seed + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_write_seed_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_update_seed_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_self_test + 0x00000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.hmac_drbg_self_test_entropy + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_seed + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_prediction_resistance + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_entropy_len + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_reseed_interval + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_write_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_write_seed_file + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_update_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_update_seed_file + 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_self_test.str1.4 + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_self_test + 0x00000000 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss.test_offset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_nopr + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_nopr + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_pr + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_pr + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xt.prop 0x00000000 0x6c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.oid_parse_number + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_subidentifier_encode_into + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_x520_attr_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_ext_key_usage_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_certificate_policies_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_attr_short_name + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_extended_key_usage + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_certificate_policies + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_sig_alg_desc + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_sig_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_pk_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_ec_grp + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_ec_grp_algid + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_numeric_string + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_from_numeric_string + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_parse_number + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_subidentifier_num_bytes + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_subidentifier_encode_into + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_x520_attr_from_asn1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_ext_key_usage_from_asn1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_certificate_policies_from_asn1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_attr_short_name + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_extended_key_usage + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_certificate_policies + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_sig_alg_desc + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_sig_alg + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_pk_alg + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_ec_grp + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_ec_grp_algid + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.mbedtls_oid_get_numeric_string.str1.4 + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_numeric_string + 0x00000000 0xe5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_from_numeric_string + 0x00000000 0x198 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_certificate_policies + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_ext_key_usage + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x520_attr_type + 0x00000000 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xt.lit 0x00000000 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xt.prop 0x00000000 0x1098 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_pem_write_buffer + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text.mbedtls_pem_write_buffer + 0x00000000 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xt.prop 0x00000000 0x5dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xt.prop 0x00000000 0x474 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs5_self_test + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.mbedtls_pkcs5_self_test.str1.4 + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_self_test + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.result_key_test_data + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.key_len_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.it_cnt_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.salt_test_data + 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.slen_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.password_test_data + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.plen_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xt.prop 0x00000000 0x438 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .xt.prop 0x00000000 0x4c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .literal.esp_crypto_shared_gdma_start + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .literal.esp_crypto_shared_gdma_free + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.esp_crypto_shared_gdma_start + 0x00000000 0xca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.esp_crypto_shared_gdma_free + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .xt.prop 0x00000000 0x228 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .literal.esp_sha + 0x00000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .text.esp_sha 0x00000000 0x220 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .rodata.__func__$0 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .xt.prop 0x00000000 0x1e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .literal.mbedtls_base64_self_test + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.mbedtls_base64_self_test.str1.4 + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_base64_self_test + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_enc + 0x00000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_dec + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xt.prop 0x00000000 0x3fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .literal.x509_info_ext_key_usage + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_info_cert_policies + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_info + 0x00000000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_info + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_with_profile + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der_nocopy + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der_with_ext_cb + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_file + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_path + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_get_ca_istrue + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_info_ext_key_usage.str1.4 + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_info_ext_key_usage + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_info_cert_policies + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_info.str1.4 + 0x00000000 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_info + 0x00000000 0x58a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_verify_info.str1.4 + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_info + 0x00000000 0x81 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_with_profile + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der_nocopy + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der_with_ext_cb + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_file + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_parse_path.str1.4 + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_path + 0x00000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_get_ca_istrue + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.str1.4 + 0x00000000 0x406 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_crt_verify_strings + 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_none + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_next + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .xt.lit 0x00000000 0x198 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .xt.prop 0x00000000 0x2328 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.md_type_to_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_dn_gets + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_serial_gets + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_sig_alg_gets + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_key_size_helper + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_subject_alt_name + 0x00000000 0xac esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_cert_type + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_key_usage + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.md_type_to_string.str1.4 + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.md_type_to_string + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.nibble_to_hex_digit + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_dn_gets.str1.4 + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_dn_gets + 0x00000000 0x32d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_serial_gets.str1.4 + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_serial_gets + 0x00000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_sig_alg_gets.str1.4 + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_sig_alg_gets + 0x00000000 0xad esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_key_size_helper.str1.4 + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_key_size_helper + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_time_cmp + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_time_is_past + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_time_is_future + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_subject_alt_name.str1.4 + 0x00000000 0x164 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_subject_alt_name + 0x00000000 0x4e6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_cert_type.str1.4 + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_cert_type + 0x00000000 0x1b9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_key_usage.str1.4 + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_key_usage + 0x00000000 0x1ed esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .xt.lit 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .xt.prop 0x00000000 0x1b78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.add_appie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size$part$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_tie_param + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_reg_encap_amsdu_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_reg_netstack_buf_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_set_hmac_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.wifi_is_started + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifiextrairam.3.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_recycle_cache_eb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_empty_txq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifiextrairam.2.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.is_wapi_alloc_tx_buf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_wapi_alloc_tx_buf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.get_wifi_internal_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_pending_eb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_copy_eb_header + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_adjust_head + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_adjust_last_length + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_length_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_setup + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_tx_mgt_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifiextrairam.18.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifiextrairam.19.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_classify + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_rates + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_xrates + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_probe_resp_app_ies + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_beacon_app_ies + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_assoc_resp_ies + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_assoc_req_ies + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_probe_req_ies + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_wme_param + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_dh_param + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_csa + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_supportedchannels + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_extcap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_size + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_setup_robust_mgmtframe + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_mgmt_output + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_getcapinfo + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_bss_max_idle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_assoc_req_construct + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_assoc_resp_construct + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_auth_construct + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_get_robustmgtframe + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_deauth_construct + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_disassoc_construct + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_search_node + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifiextrairam.4.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx_by_ref + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifiextrairam.7.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_mesh_tx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_send_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_encap_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_amsdu + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_proberesp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_deauth + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_raw_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_raw_frame_sanity_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_80211_tx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_beacon_construct + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_get_nvs_he_dcm_max_constellation_tx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifiextrairam.63.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_nulldata + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifi0iram.20.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifi0iram.8.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_keep_alive_data + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_probereq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_mgmt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_proberesp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_deauth_no_bss + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_beacon_alloc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_null_data + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_pm_tx_null_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_internal_tx_is_stop + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_reg_encap_amsdu_cb + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.wifi_is_started + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_recycle_cache_eb + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.get_wifi_internal_state + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_output_pending_eb + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_copy_eb_header + 0x00000000 0x7e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_amsdu_adjust_last_length + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifiextrairam.18 + 0x00000000 0x6b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifiextrairam.19 + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_vnd_ie_size + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifi0iram.38 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_search_node + 0x00000000 0xe0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_internal_tx_by_ref + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_mesh_tx + 0x00000000 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata.esp_wifi_mesh_tx + 0x00000000 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_raw_frame_sanity_check + 0x00000000 0x1e2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_80211_tx + 0x00000000 0x12e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_get_nvs_he_dcm_max_constellation_tx + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifiextrairam.63 + 0x00000000 0xc7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .bss.he_dcm_max_constellation_tx + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.56 + 0x00000000 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.55 + 0x00000000 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.54 + 0x00000000 0x45 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.53 + 0x00000000 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.52 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.51 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.50 + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.49 + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.48 + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.47 + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .xt.lit 0x00000000 0x278 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .xt.prop 0x00000000 0x2b8c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.is_non_esp_oui + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.is_esp_manufacturer_oui + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_is_action_category_robust + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_beacon_txcb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_send_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ap_try_sa_query + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ap_sa_query_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.free_mac_info + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.clear_mac_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_ps_txcb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.cipher_type_map_public_to_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_free_beacon_eb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_send_beacon_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_delete_ptk + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_attach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_deliver_data + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_data_txcb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_ap_reg_rxcb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_query_mac_in_list + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_add_in_mac_list + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_del_mac_info_from_list + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ap_rx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_auth_open + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_recv_ctl + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .wifi0iram.54.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.create_new_bss_for_sa_query_failed_sta + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ap_sa_query_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ap_try_sa_query_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_recv_mgmt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_input + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.add_mic_ie_bip + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .text.ieee80211_hostapd_data_txcb + 0x00000000 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss.ApFreqCalTimer + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss.APRecvBcnStartTick + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .xt.lit 0x00000000 0x118 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .xt.prop 0x00000000 0x1f98 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_public_action_recv_mesh_awake + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_mesh_quick_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_mesh_quick_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_update_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_fully_associated + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.is_esp_mesh_assoc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_public_action_send_mesh_awake + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_public_action_recv_mesh_awake + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .rodata.ieee80211_mesh_quick_init.str1.1 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_mesh_quick_init + 0x00000000 0x186 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_mesh_quick_deinit + 0x00000000 0x9d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_vnd_mesh_update_beacon + 0x00000000 0x43 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_vnd_mesh_fully_associated + 0x00000000 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .rodata.ieee80211_public_action_send_mesh_awake.str1.1 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_public_action_send_mesh_awake + 0x00000000 0x16a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .bss.esp_mesh_ps_duty + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .bss.esp_mesh_appie + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .xt.lit 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .xt.prop 0x00000000 0x2b8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.phymode2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_mode_show + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_setup_ratetable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_set_user_sup_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .text.phymode2str + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata.phymode2str + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .text.ieee80211_set_user_sup_rate + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_warning.4 + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_warning.2 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .xt.lit 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .xt.prop 0x00000000 0x4bc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.chm_end_op_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_phy_change_channel$constprop$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_mhz2num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_release_lock + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_end_op + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_end_op_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_cancel_op + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_acquire_lock + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_get_current_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_check_channel_is_valid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_get_snd_chan_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_set_snd_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .wifi0iram.12.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_get_home_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_set_home_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_get_chan_info + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_set_current_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_change_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_start_op + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_return_home_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .wifi0iram.12 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .xt.lit 0x00000000 0xb0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .xt.prop 0x00000000 0x774 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.ieee80211_psq_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_gpsq_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_find_max_bss + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_set_tim + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_head + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_tail + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_drop_one_pkt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_send_one_pkt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_is_buff_pkt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.pwrsave_flushq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_node_pwrsave + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_node_cleanup + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_txcb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_cleanup + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_take_tail + 0x00000000 0x43 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .xt.lit 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .xt.prop 0x00000000 0x588 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_getmgtframe + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .literal.ieee80211_getbcnframe + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .xt.lit 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .xt.prop 0x00000000 0x9c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .literal.offchan_in_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.offchan_tx_in_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.offchan_roc_in_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.offchan_flush_tx_buf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.offchan_recv_action + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.offchan_send_action_tx_status + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.roc_op_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.roc_op_end + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.offchan_txop_end + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.offchan_txop_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text.offchan_tx_in_progress + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text.offchan_roc_in_progress + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text.offchan_flush_tx_buf + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text.roc_op_start + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text.roc_op_end + 0x00000000 0xc8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text.offchan_txop_end + 0x00000000 0xb6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text.offchan_txop_start + 0x00000000 0x252 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .rodata_wlog_error.5 + 0x00000000 0x31 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .rodata_wlog_debug.4 + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .rodata_wlog_debug.3 + 0x00000000 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .rodata_wlog_debug.2 + 0x00000000 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .data.s_global_offchan_seq + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .xt.lit 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .xt.prop 0x00000000 0x39c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.wifi_log + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .literal.dbg_hmac_rxtx_statis_dump + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .literal.dbg_hmac_statis_dump + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata.dbg_hmac_rxtx_statis_dump.str1.1 + 0x00000000 0x7b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .text.dbg_hmac_rxtx_statis_dump + 0x00000000 0x27e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .text.dbg_hmac_statis_dump + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.14 + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.13 + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.12 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.11 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.10 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.9 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.8 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.7 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.6 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.5 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.4 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.3 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.2 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .xt.lit 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .xt.prop 0x00000000 0xc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .literal.wpa_cipher + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.rsn_cipher + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_decap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_rates + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_set_max_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_phy_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_lr_rates + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_alloc_challenge + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_wpa + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_rsn_cipher_priority + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_better_rsn_pairwise_cipher + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_amsdu_negotiate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_rsn + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_ht_cipher + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_wapi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_action + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .text.ieee80211_deliver_data + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .text.ieee80211_is_11b_rate + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .xt.lit 0x00000000 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .xt.prop 0x00000000 0x1608 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_add_ie_vendor_esp_head + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_now_head + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_mesh_group + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_simple_pair + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_freq_annon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_now + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_ssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_manufacturer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_now_head + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_mesh_group + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_simple_pair + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_freq_annon + 0x00000000 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_now + 0x00000000 0x69 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_ssid + 0x00000000 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .xt.lit 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .xt.prop 0x00000000 0x1d4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_rfid_locp_recv_open + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv_reset + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .literal.register_ieee80211_rfid_locp_recv_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .literal.unregister_ieee80211_rfid_locp_recv_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_open + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_close + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .text.register_ieee80211_rfid_locp_recv_cb + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .text.unregister_ieee80211_rfid_locp_recv_cb + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .xt.lit 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .xt.prop 0x00000000 0x144 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .literal.addba_stop_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_tx_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.addba_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.addba_get_rap_from_private + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.addba_response_txcb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_stop_age_timer$part$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_response + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_body + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_attach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_free_rx_ba_index + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_rx_stop$constprop$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_delba + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_alloc_rx_ba_index + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_rx_start$constprop$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_request + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_deattach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_cal_tx_pps + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_request + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.36.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.38.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.40.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.42.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_age_bss$isra$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_start_age_timer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_age_all + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_process_multicast_address_qos_frame + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.46.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_process_bar_info + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_recv_bar + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_cleanup + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_parse_htcap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_has_ht40_bss + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_update_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.public_recv_action_ht2040_coex + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updatehtcap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updateparams + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_htrates + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_basic_htrates + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_vendor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_body + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_vendor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ht_action_output + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_delba + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_addba + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap1 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap_amsdu + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.hostap_ht_operation_update + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_cal_tx_pps + 0x00000000 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_ampdu_stop + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.36 + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .text.ampdu_dispatch_movement + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.38 + 0x00000000 0x8d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.40 + 0x00000000 0x8d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.42 + 0x00000000 0xcd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_ampdu_start_age_timer + 0x00000000 0x61 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.45 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.43 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.41 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.39 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.37 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .xt.lit 0x00000000 0x198 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .xt.prop 0x00000000 0x1e90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.wifi_nvs_cfg_item_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_cfg_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_sta_restore + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_ap_restore + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_nvs_set_default_ssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_commit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_adjust_2nd_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_compare_cfg_diff + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_set_default_ssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_ssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_password + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_password + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_country + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_listen_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get_sta_listen_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_set_sta_listen_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_reset_current_ap_info + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_lr_info + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_load + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_restore + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_sta_restore + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_ap_restore + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .text.ieee80211_nvs_set_default_ssid + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_set_sta_listen_interval + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_restore + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.7 + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.6 + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .xt.lit 0x00000000 0xd0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .xt.prop 0x00000000 0xabc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_sta_connect_internal_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_pmk_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_pmk_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_update_ap_info_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_ap_ssid_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_ssid_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_authmode_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_max_sta_conn + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_pairwise_cipher_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_sae_ext_config_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_gtk_rekeying_config_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_authmode_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_pmf_config_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_config_sae_pwe_h2e_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_rsnxe + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_wpa2_authmode_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_config_sae_pk_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_sae_pk_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_enable_sae_pk_only_mode_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_owe_trans_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_notify_node_sae_auth_done + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_is_sta_sae_reauth_node + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_sae_identifier_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_password_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_sta_get_prof_password + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_ap_pmf_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_password_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_reset_nvs_pmk_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_set_reset_nvs_pmk_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa2_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wapi_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_rsn_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_pairwise_cipher_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_group_cipher_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_sta_gtk_index + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_sta_gtk_index + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_gtk + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_ptk + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_spp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_wpa_ptk_init_done_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_enable_sta_privacy_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_running_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_auth_done_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa2_cb_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa2_cb_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_unregister_wapi_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_register_wapi_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa_cb_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa_cb_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_assoc_bssid_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_sta_is_connected + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_hostap_private_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_deauthenticate_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_spp_attrubute_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_user_init_flag_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_set_rx_policy + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_get_init_flag + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_set_init_flag + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask_zero + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_set_mask + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_clear_mask + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_del_key_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_key_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_key_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_tx_cb_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_eapol_txdonecb_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_macaddr_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_deauth_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_init_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_ap_key_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ppInstallKey + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_sta_key_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_sta_key_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_appie_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_appie_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unset_appie_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_enable_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_disable_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wpa2_ent_state_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_type_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_type_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_status_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_disarm_sta_connection_timer_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_status_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_cb_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_internal_supplicant_header_md5_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_start_flag_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_pmf_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_mgmt_group_cipher + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_igtk_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_active_igtk_key_id + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_igtk_from_keyidx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_skip_supp_pmkcaching + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_rssi_threshold + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_rm_enabled_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_btm_enabled_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_mbo_enabled_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_ft_enabled_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_mgmt_frame_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_send_mgmt_frm_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_action_tx_req + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_remain_on_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_connect_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_transition_disable_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_set_group_mgmt_cipher_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_sigma_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_op_class_supported_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_get_prof_pmk_internal + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_disable_sae_pk_internal + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.wifi_ap_pmf_enabled + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_sta_gtk_index + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_enable_sta_privacy_internal + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_is_running_internal + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_unregister_wpa2_cb_internal + 0x00000000 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_register_wpa2_cb_internal + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_unregister_wapi_cb + 0x00000000 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_register_wapi_cb + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_assoc_bssid_internal + 0x00000000 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_get_init_flag + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_set_init_flag + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask_zero + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_set_mask + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_clear_mask + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_mac_addr_from_frame + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_del_key_internal + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_key_internal + 0x00000000 0x66 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_key_internal + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_register_tx_cb_internal + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_appie_internal + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_enable_internal + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_disable_internal + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wpa2_ent_state_internal + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_type_internal + 0x00000000 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_wps_type_internal + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_disarm_sta_connection_timer_internal + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_status_internal + 0x00000000 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_cb_internal + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata.esp_wifi_internal_supplicant_header_md5_check.str1.1 + 0x00000000 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_internal_supplicant_header_md5_check + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_start_flag_internal + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_rssi_threshold + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_rm_enabled_internal + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_btm_enabled_internal + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_mbo_enabled_internal + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_ft_enabled_internal + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_action_tx_req + 0x00000000 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_remain_on_channel + 0x00000000 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_sigma_internal + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata 0x00000000 0x3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_op_class_supported_internal + 0x00000000 0x2b2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata.str1.1 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .data.g_wifi_supplicant_funcs_md5 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .xt.lit 0x00000000 0x388 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .xt.prop 0x00000000 0x20c4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_wps_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_get + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_pmk_is_valid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_phy_bw_is_modified + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_phy_bw_is_valid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.current_task_is_wifi_task + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_old_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_2nd_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_phy_2nd_chan_is_valid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_bw + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_protocol_attach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_phy_2nd_chan_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_save_ap_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.map_wifi_config_sae_pwe_to_supp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_set_config_local_2$constprop$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.print_sta_pmk + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_connect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_disconnect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_disconnect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_scan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mac_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_filter_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_ctrl_filter_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_auto_connect_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_softap_max_support_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_softap_set_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_macaddr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_post_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_enable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_disable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_reset_mac + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.39.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.41.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_txq_empty + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_sw_txq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_mode_switch + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mode_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.esp_wifi_internal_set_baw + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_menuconfig_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wpa_crypto_funcs_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_crypto_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_init_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_start_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_connect_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_disconnect_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_start_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_stop_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_scan_params_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_scan_params_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.cipher_map_net80211_to_public_cipher + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_clear_ap_list_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_copy_ap_record + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_list_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_record_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_info_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_sta_list_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_config_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_protocol_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_protocol_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_bw_nvs + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_bw_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_bw_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_channel_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_home_channel_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_channel_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_check_home_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ps_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_country + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_country + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_band_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_band_mode_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restart_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_rxcb_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restore_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_cb_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_max_tpw + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_event_mask + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_csi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_csi_set_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_config_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifirxiram.99.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant_gpio + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_fix_rate_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deauth_sta_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_is_started + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_start_flag + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_is_started + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_enable_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_disable_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_log_mod_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_type_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_status_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ipc_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_appie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_appie_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_cb_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_internal_ioctl_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_tsf_time_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ftm_start_initiator_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_send_mgmt_frame + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_rssi_threshold + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_register_mgmt_frame + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.roc_done_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.roc_sess_handler + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_roc_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.offchan_action_tx_fail + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.offchan_action_tx_sess_handler + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_action_tx_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_configure_wake_window_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_configure_wake_interval_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_disable_pmf_config_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ap_remove_sta_node_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ap_sta_sae_auth_done_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_force_wakeup_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_update_listen_interval_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_coex_pwr_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_on_coex_start_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_on_coex_schm_phase_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_update_tsf_tick_interval_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sample_beacon_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_tbtt_quick_wake_configure_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_set_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_get_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_set_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_get_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_init_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_deinit_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_set_beacon_interval_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_assoc_expire_set_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_set_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_get_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_root_conflicts_set_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_funcs_set_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_key_set_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_set_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_get_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_set_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_clear_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_get_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_set_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_get_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_is_roots_found_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_switch_channel_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_cycle_set_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_cycle_get_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_ext_get_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_act_duty_signaling_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_dynamic_cs_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.config_is_cache_tx_buf_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.config_get_wifi_task_stack_size + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_softap_set_obss_overlap_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_stop + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_start + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ioctl_ht2040_get + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_phy_bw_is_modified + 0x00000000 0xa4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_phy_bw_is_valid + 0x00000000 0xda C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ioctl_ht2040_set + 0x00000000 0x71 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.adc2_wifi_acquire + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.adc2_wifi_release + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_phy_2nd_chan + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_phy_2nd_chan_is_valid + 0x00000000 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_phy_mode + 0x00000000 0x272 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_phy_2nd_chan_process + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.print_sta_pmk + 0x00000000 0x123 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_sta_scan + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_mac_process + 0x00000000 0x11c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_filter_process + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_ctrl_filter_process + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_auto_connect_process + 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_macaddr + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.chip_post_deinit + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.39 + 0x00000000 0x9d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.41 + 0x00000000 0x98 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata.wifi_set_promis_process.str1.1 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_process + 0x00000000 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.esp_wifi_internal_set_baw + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_crypto_deinit + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_hmac_deinit + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_lmac_deinit + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_disconnect + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_scan_start_process + 0x00000000 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_scan_stop_process + 0x00000000 0x63 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ant_to_ant_type + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_scan_params_process + 0x00000000 0x99 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_scan_params_process + 0x00000000 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.cipher_map_net80211_to_public_cipher + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_clear_ap_list_process + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_copy_ap_record + 0x00000000 0xd6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_ap_list_process + 0x00000000 0x215 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_ap_record_process + 0x00000000 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_ap_info_process + 0x00000000 0x176 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_sta_list_process + 0x00000000 0x126 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_protocol_process + 0x00000000 0x11c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_protocol_process + 0x00000000 0x7e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_bw_nvs + 0x00000000 0xeb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_bw_process + 0x00000000 0xc8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_bw_process + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_channel_process + 0x00000000 0x136 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_home_channel_process + 0x00000000 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_channel_process + 0x00000000 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_check_home_channel + 0x00000000 0xc1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ps_process + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_country + 0x00000000 0x1a9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_country + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_band_process + 0x00000000 0x1c6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_band_mode_process + 0x00000000 0xe7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_restart_process + 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_restore_process + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_vnd_ie_process + 0x00000000 0x101 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_vnd_ie_cb_process + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_max_tpw + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_event_mask + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_csi + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_csi_set_config + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ant_config_check + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifirxiram.99 + 0x00000000 0x99 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ant + 0x00000000 0x4f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ant_gpio + 0x00000000 0xa9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_fix_rate_process + 0x00000000 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_deauth_sta_process + 0x00000000 0x106 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_start_flag + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wpa2_ent_enable_process + 0x00000000 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wpa2_ent_disable_process + 0x00000000 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_log_mod_process + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_type_process + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_status_process + 0x00000000 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_cb_process + 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_internal_ioctl_process + 0x00000000 0x6f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_tsf_time_process + 0x00000000 0x82 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ftm_start_initiator_process + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_rssi_threshold + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.roc_done_cb + 0x00000000 0xb2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.roc_sess_handler + 0x00000000 0xa6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_roc_process + 0x00000000 0x1b9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.offchan_action_tx_fail + 0x00000000 0x80 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.offchan_action_tx_sess_handler + 0x00000000 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_action_tx_process + 0x00000000 0x20d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_configure_wake_window_process + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_configure_wake_interval_process + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_disable_pmf_config_process + 0x00000000 0x162 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_force_wakeup_process + 0x00000000 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_update_listen_interval_process + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_coex_pwr_process + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_update_tsf_tick_interval_process + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sample_beacon_process + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_tbtt_quick_wake_configure_process + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_set_progress + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_get_progress + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_roots_ie_set_progress + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_roots_ie_get_progress + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_init_progress + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_deinit_progress + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_sta_disassoc + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_map_deauth_progress + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_sta_disassoc_progress + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_set_beacon_interval_progress + 0x00000000 0x87 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_assoc_expire_set_progress + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_router_bssid_set_progress + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_router_bssid_get_progress + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_root_conflicts_set_progress + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_crypto_funcs_set_progress + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_crypto_key_set_progress + 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_monitor_set_progress + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_monitor_get_progress + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_set_progress + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_clear_progress + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_get_progress + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_rssi_threshold_set_progress + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_rssi_threshold_get_progress + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_is_roots_found_progress + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_switch_channel_progress + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ps_duty_cycle_set_process + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ps_duty_ext_get_process + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_act_duty_signaling_process + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_dynamic_cs_process + 0x00000000 0x92 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.config_is_cache_tx_buf_enabled + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_softap_set_obss_overlap_process + 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata.CSWTCH$450 + 0x00000000 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.152 + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.151 + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.150 + 0x00000000 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .data.g_mesh_root_conflicts_allowed + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .data.map_assoc_expire + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .bss.mesh_router_bssid + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.140 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.139 + 0x00000000 0x51 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.138 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.137 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.136 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.135 + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.134 + 0x00000000 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.133 + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.132 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.131 + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.130 + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.129 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.128 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.127 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.126 + 0x00000000 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.125 + 0x00000000 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.124 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.123 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.122 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.121 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.120 + 0x00000000 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.119 + 0x00000000 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.114 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.113 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.112 + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .data.s_ioctl_table + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.111 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.110 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.106 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.105 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.104 + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.103 + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.102 + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.101 + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.100 + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.98 + 0x00000000 0x45 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.97 + 0x00000000 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.96 + 0x00000000 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.95 + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.94 + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.93 + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.92 + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.91 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.90 + 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.89 + 0x00000000 0x5b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.87 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.86 + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.85 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.84 + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.83 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.82 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.81 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.80 + 0x00000000 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.79 + 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.78 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.77 + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.76 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.75 + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.74 + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.73 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.48 + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.42 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.40 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.13 + 0x00000000 0xac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.12 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.9 + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.8 + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .bss.g_offchan_current_op_id + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .xt.lit 0x00000000 0x570 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .xt.prop 0x00000000 0x4e90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ampdu_age_handle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_addba + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ftm_sess_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ftm_req_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_tx_ftm_msmt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_send_ftmr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ap_try_sa_query + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ap_sa_query_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_send_wake_null + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_cnx_connect_next_ap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_retry_assoc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_sa_query_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_try_sa_query + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_assoc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_auth + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_chm_dwell + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_handshake + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_probe_send + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_csa + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_enter_op_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_inter_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_connect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_hostap_handle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_send_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_register_ftm_timer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_register_hostap_timer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_do_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text.ieee80211_ftm_sess_timeout + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text.ieee80211_ftm_req_timeout + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text.ieee80211_tx_ftm_msmt + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text.ieee80211_send_ftmr + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text.ieee80211_register_ftm_timer + 0x00000000 0x5d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .xt.lit 0x00000000 0xe8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .xt.prop 0x00000000 0x9e4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.gcmp_encap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .literal.gcmp_decap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .xt.lit 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .xt.prop 0x00000000 0xc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .literal.ftm_record_t2t3_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_session_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_send_msmt_pkt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_request_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_send_request + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_offchan_end + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.public_send_action_ftm_req + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_is_supported + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_is_responder_supported + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_get_resp_session_for_peer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_get_resp_session_by_cookie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_add_resp_session + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_free_resp_session + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_record_t1t4_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_set_t1t4_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_responder_cleanup + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_resp_get_burst_slot + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_resp_get_burst_inst_delay + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.public_send_action_ftm_resp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_ftm_sess_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_tx_ftm_msmt_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_resp_allocate_para + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_create_responder_session + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_send_initial_resp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.public_recv_action_ftm_req + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_responder_set_offset + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_is_initiator_supported + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_post_event + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_parse_data + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_session_end + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_session_abort + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_ftm_request_txcb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_send_ftmr_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_process_resp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.public_recv_action_ftm_resp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_negotiate_session + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_offchan_tx_req + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_start_session + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_ftm_req_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_start_initiator_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_end_session_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_cleanup + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_get_report_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_validate_initiator_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_ftm_attach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_ftm_measurement_txcb + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_record_t2t3_cb + 0x00000000 0xbe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_session_timeout + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_send_msmt_pkt + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_request_timeout + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_send_request + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_offchan_end + 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.public_send_action_ftm_req + 0x00000000 0x268 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_get_phy_comp$part$0 + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_is_supported + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_map_bw_param_to_phybw + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_get_resp_session_for_peer + 0x00000000 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_get_resp_session_by_cookie + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_add_resp_session + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_free_resp_session + 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_record_t1t4_cb + 0x00000000 0xf0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_set_t1t4_cb + 0x00000000 0xb6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_resp_get_burst_slot + 0x00000000 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_resp_get_burst_inst_delay + 0x00000000 0x99 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.public_send_action_ftm_resp + 0x00000000 0x3e2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_ftm_sess_timeout_process + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_tx_ftm_msmt_process + 0x00000000 0xa6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_resp_allocate_para + 0x00000000 0x1b5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_create_responder_session + 0x00000000 0xd4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_send_initial_resp + 0x00000000 0x132 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.public_recv_action_ftm_req + 0x00000000 0x164 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_responder_set_offset + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_get_estimated_dist + 0x00000000 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_post_event + 0x00000000 0x86 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_parse_data + 0x00000000 0x2f8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_session_end + 0x00000000 0x77 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_session_abort + 0x00000000 0xcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_ftm_request_txcb + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_send_ftmr_process + 0x00000000 0xb0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata.ftm_initiator_process_resp.str1.1 + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_process_resp + 0x00000000 0x2db C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.public_recv_action_ftm_resp + 0x00000000 0x259 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_negotiate_session + 0x00000000 0x7d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_offchan_tx_req + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_start_session + 0x00000000 0x10a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_ftm_req_timeout_process + 0x00000000 0x59 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_start_initiator_local + 0x00000000 0x317 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_end_session_local + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_cleanup + 0x00000000 0x9a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_get_report_local + 0x00000000 0x83 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_validate_initiator_config + 0x00000000 0xb0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_ftm_attach + 0x00000000 0xb4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.26 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.25 + 0x00000000 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.24 + 0x00000000 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.23 + 0x00000000 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.22 + 0x00000000 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.21 + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.20 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.19 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.18 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.17 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.16 + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.15 + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.14 + 0x00000000 0x43 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.13 + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.12 + 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.11 + 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.10 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.9 + 0x00000000 0x31 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.8 + 0x00000000 0x6f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.7 + 0x00000000 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.6 + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.5 + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.g_ftm_using_get_report_api + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.g_ftm_report_num_entries + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.g_ftm_report_data + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.s_ftm_initiator + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.ftm_req_expiry_timer + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.ftmr_timer + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.4 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.3 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.2 + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.g_t1_offset_psec + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .xt.lit 0x00000000 0x168 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .xt.prop 0x00000000 0x1818 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.esp_wifi_get_config_channel_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_band_get_config_channel_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_channel_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_bw_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_aid_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_negotiated_phymode_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_end_session_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_get_report_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_resp_set_offset_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_netstack_buf_cb_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_send_deauth_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_aid_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_inactive_time_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_init_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_is_stop_in_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_lock + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_unlock + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_completed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_inactive_time_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_ap_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_cacl_mac + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_rssi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_station_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_register_user_ie_manufacturer_recv_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_unregister_user_ie_manufacturer_recv_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_set_user_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_user_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_check_chan_param + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_deinit_in_caller_task + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_in_caller_task + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_osi_ready + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_osi_funcs_register + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_osi_funcs_md5_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_crypto_funcs_md5_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_wifi_type_md5_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_esp_wifi_md5_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_esp_wifi_he_md5_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_wifi_he_type_md5_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.net80211_data_ptr_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.net80211_softap_funcs_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.net80211_funcs_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.net80211_funcs_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_init_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deinit_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_initiate_session + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restart + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_connect_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_disconnect_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_clear_fast_connect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deauth_sta + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_promiscuous_scan_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.get_total_scan_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_scan_parameters + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_scan_parameters + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_records + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_record + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_clear_ap_list + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_list + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_connectionless_module_set_wake_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ps + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ps + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_protocol + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_protocol + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_protocols + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_protocols + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_11b_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_espnow_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_80211_tx_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_80211_tx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_bandwidth + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_bandwidth + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_bandwidths + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_bandwidths + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_home_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_country + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_country_code + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_country + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_country_code + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mac + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_softap_set_obss_overlap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mac + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_ap_info + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_ctrl_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_ctrl_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_rx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_storage + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_rxcb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_sta_ip + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_auto_connect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_auto_connect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restore + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_event_post + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_mesh_event_post + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_enable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_disable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_max_tx_power + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_max_tx_power + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_event_mask + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_event_mask + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_rx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant_gpio + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant_gpio + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_fix_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_fix_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sta_rx_probe_req + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ipc_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_end_session + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_get_report + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_resp_set_offset + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_mac_sleep + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_level + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_mod + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_log + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_ioctl + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_configure_wake_window + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_force_wakeup_acquire + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_force_wakeup_release + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_on_coex_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_on_coex_schm_phase + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_coex_pwr_configure + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_beacon_offset_sample_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_tbtt_quick_wake_configure + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_is_tsf_active + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .wifislpiram.63.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_update_tsf_tick_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_update_listen_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_update_modem_sleep_default_params + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_update_light_sleep_default_params + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sleep_min_active_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_keep_alive_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_beacon_monitor_configure + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sleep_wait_broadcast_data_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_beacon_offset_configure + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_beacon_offset_set_rx_beacon_standard + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_netstack_buf_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_config_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_band_get_config_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_issue_disconnect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_improve_contention_ability + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_bandwidth + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_aid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_aid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_negotiated_phymode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_tsf_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_tx_done_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_inactive_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_inactive_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_statis_dump + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_spp_amsdu + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_disable_pmf_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_phy_apply_phy_init_data + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_mesh_reg_rxcb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ap_assoc_expire + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_ap_assoc_expire + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_router_bssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_router_bssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_beacon_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_beacon_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_map_deauth + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_sta_disassoc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_info + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_ie_len + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_record + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_record + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_get + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_get + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_allow_root_conflicts + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_root_conflicts_allowed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_monitor_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_monitor_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_funcs_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_key_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_ap_records + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_info + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_record + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_clear_parent_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_rssi_threshold_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_rssi_threshold_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_roots_found + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_storage + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_switch_channel_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_active_duty_cycle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_active_duty_cycle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_network_duty_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_network_duty_cycle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_network_duty_cycle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_running_active_duty_cycle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_ps_get_ext_duty + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_ps_duty_signaling + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_non_mesh_connections + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_band + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_band + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_band_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_band_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_dynamic_cs + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_eb_tx_status_success_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_mac_clock_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_register_80211_tx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_config_channel_local + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_band_get_config_channel_local + 0x00000000 0x8e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_channel_local + 0x00000000 0x94 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_bw_local + 0x00000000 0xf2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_aid_local + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_negotiated_phymode_local + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_end_session_local + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_get_report_local + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_resp_set_offset_local + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_inactive_time_local + 0x00000000 0xa6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_inactive_time_local + 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_config + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_station_ap_check + 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_cacl_mac + 0x00000000 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_rssi + 0x00000000 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_get_station_num + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_register_user_ie_manufacturer_recv_cb + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_unregister_user_ie_manufacturer_recv_cb + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_set_user_ie + 0x00000000 0x10c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_get_user_ie + 0x00000000 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.wifi_get_user_ie + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_check_chan_param + 0x00000000 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_osi_ready + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.esp_wifi_internal_osi_funcs_md5_check.str1.1 + 0x00000000 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_osi_funcs_md5_check + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.esp_wifi_internal_crypto_funcs_md5_check.str1.1 + 0x00000000 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_crypto_funcs_md5_check + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.esp_wifi_internal_wifi_type_md5_check.str1.1 + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_wifi_type_md5_check + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.esp_wifi_internal_esp_wifi_md5_check.str1.1 + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_esp_wifi_md5_check + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.esp_wifi_internal_esp_wifi_he_md5_check.str1.1 + 0x00000000 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_esp_wifi_he_md5_check + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.esp_wifi_internal_wifi_he_type_md5_check.str1.1 + 0x00000000 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_wifi_he_type_md5_check + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_ant_update_empty_func + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_initiate_session + 0x00000000 0xc6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restart + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_disconnect_internal + 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_clear_fast_connect + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_deauth_sta + 0x00000000 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_promiscuous_scan_start + 0x00000000 0x94 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.get_total_scan_time + 0x00000000 0xec C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_start + 0x00000000 0x1be C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_stop + 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_scan_parameters + 0x00000000 0xac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_scan_parameters + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_num + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_records + 0x00000000 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_record + 0x00000000 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_clear_ap_list + 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ap_get_sta_list + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_connectionless_module_set_wake_interval + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ps + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ps + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_protocol + 0x00000000 0xd0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.esp_wifi_set_protocol + 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_protocol + 0x00000000 0xae C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_protocols + 0x00000000 0x120 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_protocols + 0x00000000 0x8a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_11b_rate + 0x00000000 0x102 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_espnow_rate + 0x00000000 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_80211_tx_rate + 0x00000000 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_80211_tx + 0x00000000 0x228 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_bandwidth + 0x00000000 0xa4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_bandwidth + 0x00000000 0xae C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_bandwidths + 0x00000000 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_bandwidths + 0x00000000 0x8a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_channel + 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_home_channel + 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_channel + 0x00000000 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_country + 0x00000000 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_country_code + 0x00000000 0xae C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_country + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_country_code + 0x00000000 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_mac + 0x00000000 0x80 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_softap_set_obss_overlap + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_ap_info + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_filter + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_filter + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_ctrl_filter + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_ctrl_filter + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous + 0x00000000 0x7a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_rx_cb + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_storage + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_auto_connect + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_auto_connect + 0x00000000 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restore + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie_cb + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_max_tx_power + 0x00000000 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_max_tx_power + 0x00000000 0x45 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_event_mask + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi + 0x00000000 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_config + 0x00000000 0x9c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_rx_cb + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant_gpio + 0x00000000 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant_gpio + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant + 0x00000000 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_fix_rate + 0x00000000 0x7c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_fix_rate + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_sta_rx_probe_req + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_end_session + 0x00000000 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_get_report + 0x00000000 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_resp_set_offset + 0x00000000 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_mac_sleep + 0x00000000 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_log_mod + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_log + 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_ioctl + 0x00000000 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_configure_wake_window + 0x00000000 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_force_wakeup_acquire + 0x00000000 0x63 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_force_wakeup_release + 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_coex_pwr_configure + 0x00000000 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_beacon_offset_sample_beacon + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_tbtt_quick_wake_configure + 0x00000000 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_is_tsf_active + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .wifislpiram.63 + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_update_tsf_tick_interval + 0x00000000 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_update_listen_interval + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_update_modem_sleep_default_params + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_update_light_sleep_default_params + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_beacon_monitor_configure + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_beacon_offset_configure + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_beacon_offset_set_rx_beacon_standard + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_config_channel + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_band_get_config_channel + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_improve_contention_ability + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_channel + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_bandwidth + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_aid + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_negotiated_phymode + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_tsf_time + 0x00000000 0x90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_tx_done_cb + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_inactive_time + 0x00000000 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_inactive_time + 0x00000000 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_statis_dump + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_spp_amsdu + 0x00000000 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_disable_pmf_config + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_phy_apply_phy_init_data + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_mesh_reg_rxcb + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ap_assoc_expire + 0x00000000 0x6f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_ap_assoc_expire + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_router_bssid + 0x00000000 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_router_bssid + 0x00000000 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_beacon_interval + 0x00000000 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_beacon_interval + 0x00000000 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_sta_disassoc + 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_cur_ap_info + 0x00000000 0xe1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_ie_len + 0x00000000 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_cur_ap_record + 0x00000000 0x168 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_record + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_init + 0x00000000 0x8c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_deinit + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_set + 0x00000000 0x7c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_get + 0x00000000 0xa0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_roots_set + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_roots_get + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_allow_root_conflicts + 0x00000000 0x7a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_is_root_conflicts_allowed + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_parent_monitor_config + 0x00000000 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_monitor_config + 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ie_crypto_funcs_internal + 0x00000000 0x6e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ie_crypto_key_internal + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_ap_records + 0x00000000 0x178 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_get_cur_ap_info + 0x00000000 0xf8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_get_cur_ap_record + 0x00000000 0x1b8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_parent_candidate + 0x00000000 0x73 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_clear_parent_candidate + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_candidate + 0x00000000 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_rssi_threshold_internal + 0x00000000 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_rssi_threshold_internal + 0x00000000 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_is_roots_found + 0x00000000 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_storage + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_switch_channel_internal + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_active_duty_cycle + 0x00000000 0xe4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_active_duty_cycle + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_network_duty_internal + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_network_duty_cycle + 0x00000000 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_network_duty_cycle + 0x00000000 0x90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_ps_get_ext_duty + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_ps_duty_signaling + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_non_mesh_connections + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_band + 0x00000000 0x8c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_band + 0x00000000 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_band_mode + 0x00000000 0xac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_band_mode + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_dynamic_cs + 0x00000000 0x63 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_eb_tx_status_success_internal + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_mac_clock_time + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_register_80211_tx_cb + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.CSWTCH$523 + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.token$0 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.sort_bss$1 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.old_scan_id$2 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.68 + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.67 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.66 + 0x00000000 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.65 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.64 + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_fetch_num + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_sort_num + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_sort_bss + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.61 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.58 + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.57 + 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.56 + 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.55 + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.54 + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.53 + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.52 + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.51 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.50 + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.49 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.48 + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.47 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.46 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.45 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.44 + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.43 + 0x00000000 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.42 + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.41 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.40 + 0x00000000 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.39 + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.38 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.37 + 0x00000000 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.36 + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.35 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.34 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.33 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.32 + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.31 + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.30 + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.29 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.28 + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.24 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.23 + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.22 + 0x00000000 0x6e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.21 + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_verbose.20 + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_verbose.19 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.18 + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.17 + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.10 + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.9 + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_wifi_coex_basic_md5 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_esp_wifi_he_md5 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_wifi_he_type_md5 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_esp_wifi_md5 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_wifi_types_native_md5 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_wifi_types_generic_md5 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_wifi_type_md5 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_wifi_crypto_funcs_md5 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_wifi_osi_funcs_md5 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .xt.lit 0x00000000 0x728 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .xt.prop 0x00000000 0x54cc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.cnx_sta_connect_led_timer_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_cal_rc_util + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_get_next_rc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_traverse_rc_lis_done + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_next_ap_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_op + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.update_ic_params_using_bss$part$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_to_bss + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.ieee80211_cnx_attach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal._cnx_start_connect_without_scan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_can_do_obss_scan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_scan_cmd + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_next_ap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.wl_is_ap_no_lr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.wl_clear_ap_no_lr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_validate_owe_bss + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_check_bssid_in_blacklist + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_from_blacklist + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_add_to_blacklist + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_clear_blacklist + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_choose_rc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_search + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_do_handoff_internal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_add_rc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_all_rc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_do_handoff + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_next_ap_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_start_handoff_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_connect_cmd + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_alloc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc_except + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_rssi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_state_metric + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc_tx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.esp_mesh_get_tsf_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.send_ap_probe + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_node_alloc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_node_remove + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifi0iram.87.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifi0iram.89.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_is_any_node_connecting + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_staconnected_event_policy + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_toomany_deny + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_pm + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss_more + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.ic_set_sta + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_leave + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_associated + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_node_leave + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_node_join + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_start_obss_scan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_done_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_stop_obss_scan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_done + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifislprxiram.112.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifislprxiram.113.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata.cnx_sta_scan_cmd.str1.1 + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.cnx_sta_scan_cmd + 0x00000000 0x3b8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.esp_mesh_get_tsf_time + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifi0iram.87 0x00000000 0x7e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifi0iram.89 0x00000000 0x66 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.cnx_is_any_node_connecting + 0x00000000 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.wifi_softap_staconnected_event_policy + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.wifi_softap_toomany_deny + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.cnx_stop_obss_scan + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifislprxiram.113 + 0x00000000 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.90 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.88 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.26 + 0x00000000 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.25 + 0x00000000 0x65 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.24 + 0x00000000 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.23 + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.22 + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.21 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.20 + 0x00000000 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.19 + 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.18 + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.17 + 0x00000000 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .xt.lit 0x00000000 0x260 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .xt.prop 0x00000000 0x2628 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.get_iav_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_get_key_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_get_key_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_add_action_vendor_spec_esp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_alloc_action_vendor_spec + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_send_action_vendor_spec + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_recv_action_vendor_esp_now + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_recv_action_vendor_spec + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_action_vendor_spec_attach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_spec_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_spec_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_get_key_cb + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_get_key_cb + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_add_action_vendor_spec_esp + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_alloc_action_vendor_spec + 0x00000000 0xf3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_send_action_vendor_spec + 0x00000000 0x3bc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_spec_cb + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_spec_cb + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .data.s_global_vendor_seq$0 + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_tx_content + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .xt.lit 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .xt.prop 0x00000000 0x570 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_is_action_category_robust + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.send_wake_null_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_assoc_comeback + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_eapol_txdone_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.send_wake_null_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_reg_eapol_txdone_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .wifiextrairam.49.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_reg_rxcb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_michael_mic_failure + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_wme_standard_ac_to_esp_ac + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_wmeparams + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_rx_csa + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.update_cs_thres + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.reset_cs_thres + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_obss_scan_param + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_set_bss_max_idle_period + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_ctl + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_bip_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_is_wpa3_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_is_11r_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_is_wifi_ent_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_is_bss_max_idle_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_get_owe_data + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_update_power_off_reset_flag + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_sta_new_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_ft + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_open + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_shared + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_sae + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_retry_assoc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_assoc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_process_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_mgmt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .wifirxiram.55.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .wifirxiram.61.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .bss.esp_test_dump_htc + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .xt.lit 0x00000000 0x140 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .xt.prop 0x00000000 0x2028 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_proto_attach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_iserp_rateset + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_wme_updateparams + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_mlme_connect_bss + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_gettid + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_iserp_rateset + 0x00000000 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_wme_initparams + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .rodata.rates$0 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .xt.lit 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .xt.prop 0x00000000 0x228 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.sms4_decap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .literal.sms4_encap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .xt.lit 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .xt.prop 0x00000000 0xe4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .literal.ieee80211_regdomain_max_tx_power + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_get_country + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_update_phy_country + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_scan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_connect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_add_countryie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_max_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_ap_max_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_min_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_ap_min_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_policy + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_in_range + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_check_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_check_ap_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_is_active_scan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_get_regdomain + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.get_channel_max_bandwidth + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_is_40mhz_valid_bw + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_get_country_info + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_max_tx_power + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_chan_num + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_policy + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_check_channel + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_get_country_info + 0x00000000 0x7d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .data.s_map 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .xt.lit 0x00000000 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .xt.prop 0x00000000 0x66c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_send_sa_query + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query_resp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query_req + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_recv_sa_query_req + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_recv_sa_query_resp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.band2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_rate_ref_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_freedom_inside_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_freedom_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_freedom_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_user_ie_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifattach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifdetach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_softap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_sta + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_recycle_rx_pkt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_get_rand_macaddr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_get_rand_macaddr_keep_oui + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_elem_match + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ie_match + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_elem + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ext_elem + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ext_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_setup_pmf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_create_softap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_create_sta + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_mode_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_is_robust_mgmt_frm + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .text.wifi_recycle_rx_pkt + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .text.wifi_get_rand_macaddr + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .text.wifi_get_rand_macaddr_keep_oui + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ie_match + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ext_elem + 0x00000000 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ext_ie + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata.ieee80211_opcap + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata.str1.1 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_remote + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_git + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .xt.lit 0x00000000 0xe8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .xt.prop 0x00000000 0x9c0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_crypto_encap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_decap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_bip_encrypt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_aes_128_cmac_decrypt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_gmac_decrypt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_get_cipher_mic_len + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_available + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_setkey + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_encap + 0x00000000 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.2 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .xt.lit 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .xt.prop 0x00000000 0x3fc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ccmp_encap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ccmp_decap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_decrypt_espnow_pkt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_decrypt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_encrypt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .text.ieee80211_ccmp_encrypt + 0x00000000 0xe5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.5 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .xt.lit 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .xt.prop 0x00000000 0x228 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_send_action_register + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action_unregister + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_register + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_unregister + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .text.ieee80211_send_action_unregister + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .text.ieee80211_recv_action_unregister + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .xt.lit 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .xt.prop 0x00000000 0x540 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.tkip_decap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.tkip_encap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .xt.lit 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .xt.prop 0x00000000 0xcc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.scan_enter_oper_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.sta_update_owe_bssid$constprop$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_global_scan_times$constprop$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_deattach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_apnum + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_current_scan_times + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_reset_default_app_params + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_attach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_default_params + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.wifi_sta_set_scan_default_params + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_pm_offchan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_pm_channel_op_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_flush_all_tx_buf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_cancel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_bssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_bssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_hidden_ssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_act_duration + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_pas_duration + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_home_chan_dwell_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_probe_ssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_probe_ssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_prefer_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_update_scan_history + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_build_chan_list + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_enter_oper_channel_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_bitmap_to_channel_list + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_desChan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_type + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.cannel_scan_connect_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_connect_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_ssid_do$constprop$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_ssid$isra$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_reset_cipher_and_akm + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.cnx_get_authtype_strength + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_profile_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.free_bss_info + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.clear_bss_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_done + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_next_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_enter_oper_channel_handler + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_end + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_start_handler + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.check_bss_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_scan_id + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_scan_id + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_ht2040_coex + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_owe_channel_info + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_validate_owe_scenarios + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_get_apnum + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_set_current_scan_times + 0x00000000 0x8a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_set_default_params + 0x00000000 0x73 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.wifi_sta_set_scan_default_params + 0x00000000 0x8b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_pm_channel_op_cb + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_add_bssid + 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_set_home_chan_dwell_time + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_bitmap_to_channel_list + 0x00000000 0x196 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.cannel_scan_connect_state + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_connect_state + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_set_scan_id + 0x00000000 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_get_scan_id + 0x00000000 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.93 + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.92 + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.59 + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.58 + 0x00000000 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.57 + 0x00000000 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.56 + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.55 + 0x00000000 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.54 + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.6 + 0x00000000 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.5 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.4 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .xt.lit 0x00000000 0x1b0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .xt.prop 0x00000000 0x2334 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.wep_encap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .xt.prop 0x00000000 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .literal.hal_pm_unblock_txq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.hal_clear_sta_tsf_active_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disable_max_idle_timer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_incr_coex_active_cnt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disable_active_timer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_restart_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_max_idle_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_monitor_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_connectionless_wake_window_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_connectionless_wake_interval_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_sleep_delay_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_slice_wifi_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_active_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_dream_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.2.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_is_dream + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_is_sleeping + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_is_open + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.3.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_allow_tx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_allow_to_enable_bcn_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.4.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_mac_sleep_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_mac_sleep_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_enable_max_idle_timer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_is_sending_keep_alive + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_bss_max_idle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_noise_check_disable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_noise_check_enable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.19.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_reset_keep_alive + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.20.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.21.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.22.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_enable_sleep_delay_timer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disable_disconnected_sleep_delay_timer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_enable_disconnected_sleep_delay_timer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_noise_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_register_pm_tx_null_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_send_nullfunc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_mac_wakeup + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_mac_sleep + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.24.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.25.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.26.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.27.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.28.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.29.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.31.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_monitor_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.32.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_wake + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.33.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_sleep + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.is_off_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_offchan_is_waiting + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_offchan_execute_ready_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_wake_up + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_send_probe_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_off_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_offchan_ready_or_defer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_wake_done + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_separate_connectionless_window + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.23.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.36.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_go_to_sleep + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.37.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_update_tsf_tick_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_mesh_set_next_tbtt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_update_at_next_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_next_tbtt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.38.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.40.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_beacon_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_timestamp_statistic + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_misc_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_is_in_wifi_slice_threshold + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.41.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_schm_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_schm_process_restart + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_slice_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_dream_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_sleep_delay_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.45.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.46.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_restart_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.50.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_tx_data_done_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_tx_null_data_done_quick_wake_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_tx_null_data_done_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_go_to_wake + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_send_probe_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_update_params + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_tbtt_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_active_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.42.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.48.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_max_idle_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifiextrairam.49.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_send_sleep_null_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_send_wake_null_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_coex_schm_process_restart + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_coex_schm_status_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_coex_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.56.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifiextrairam.57.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_data_tx_done + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_sample_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.5.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.9.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.55.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_probe_resp_rx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_tbtt_quick_wake_configure + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_attach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_deattach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_sleep_type + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_get_sleep_type + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_monitor_configure + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_update_modem_sleep_default_params + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_update_light_sleep_default_params + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_sleep_min_active_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_keep_alive_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_get_keep_alive_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_sleep_wait_broadcast_data_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_enable_sta_disconnected_power_management + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_register_connectionless_wake_window + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_unregister_connectionless_wake_window + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_connectionless_module_set_wake_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_is_hw_beacon_filter_active + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .iram1.64.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.65.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_get_beacon_duration + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_add_total_counter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.30.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.47.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.44.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.52.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.53.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_add_loss_counter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.43.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_loss_info_get + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_loss_info_clean + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_get_tx_blocks_retention_mask + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.wifi_apb80m_request + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.wifi_apb80m_release + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.2 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_is_dream + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.3 + 0x00000000 0x71 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_allow_tx + 0x00000000 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_allow_to_enable_bcn_filter + 0x00000000 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .iram1.7 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_mac_sleep_init + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_mac_sleep_deinit + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.19 + 0x00000000 0x9e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.20 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.22 + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_enable_sleep_delay_timer + 0x00000000 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_mac_wakeup + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_mac_sleep + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.is_off_channel + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.37 + 0x00000000 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_update_tsf_tick_interval + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.56 + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_tbtt_quick_wake_configure + 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_set_sleep_type + 0x00000000 0xf8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_get_sleep_type + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_beacon_monitor_configure + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_update_modem_sleep_default_params + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_update_light_sleep_default_params + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_scan_lock + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_scan_unlock + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_try_scan_unlock + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_get_idle_wait_time + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_register_connectionless_wake_window + 0x00000000 0x86 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_unregister_connectionless_wake_window + 0x00000000 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_connectionless_module_set_wake_interval + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_is_hw_beacon_filter_active + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .iram1.64 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_get_beacon_duration + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.52 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_beacon_loss_info_get + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_beacon_loss_info_clean + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.63 + 0x00000000 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.62 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .xt.lit 0x00000000 0x4b8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .xt.prop 0x00000000 0x3bc4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.bb_intr_handl + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_addr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislprxiram.2.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_is_pure_sta + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_ptk_alg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_disable_crypto + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_del_ptk_and_gtk_alg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_obtain_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_rssi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_tx_pkt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_alloc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_tx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_rx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.esp_wifi_internal_free_rx_buffer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_tx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_rx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_post_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_michael_mic_failure_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_pp_tx_done_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_ctrl_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_ctrl_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_promis_rx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_csi_rx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_config_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_is_mgmt_hwdecr_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_pm_tx_null_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_net80211_tx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_ftm_callbacks + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_pp_post + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_enable_sniffer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_disable_sniffer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_vif + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_next_tbtt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_del_rx_ba + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_reset_rx_ba + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_add_rx_ba + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_reset_tbtt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_del_key_all + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_del_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_ac_param + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_ampdu_op + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.esp_mesh_set_6m_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_trc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_bb_check_noise_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_interrupt_handler + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_clear_interrupt_handler + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_enable_rx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_disable_rx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_beacon_int + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_mac + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_bssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_current_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_random + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_trc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_tx_is_idle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_pp_hdl + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy_ubssid_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_sta_auth_flag + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_interface + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_trc_set_per_pkt_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_trc_update_ifx_phy_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_stop_hw_txq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_stop_sw_txq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_txq_empty + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_fix_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_fix_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_create_wifi_task + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_delete_wifi_task + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_csi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislprxiram.10.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislprxiram.11.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_csi_set_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_is_sta_tsf_active + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_update_sta_tsf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislpiram.12.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_update_tsf_tick_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_update_modem_sleep_default_params + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_update_light_sleep_default_params + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_sleep_min_active_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_keep_alive_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_keep_alive_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_sleep_wait_broadcast_data_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_beacon_monitor_configure + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_beacon_offset_configure + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_beacon_offset_set_rx_beacon_standard + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_update_listen_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_rx_disable_bssid_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_rx_enable_bssid_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_bar_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_trc_update_def_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_espnow_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_80211_tx_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_80211_tx_rate_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_espnow_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_80211_tx_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_80211_tx_rate_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_default_sched + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_G6M_sched + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.bb_intr_handl + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislprxiram.2 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_is_pure_sta + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_rssi + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_ebuf_alloc + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_ebuf_recycle_tx + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_ebuf_recycle_rx + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_register_pp_tx_done_cb + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_promis_filter + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_promis_filter + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_promis_ctrl_filter + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_promis_ctrl_filter + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_register_promis_rx_cb + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_register_csi_rx_cb + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_register_ftm_callbacks + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_pp_post + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_reset_rx_ba + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.esp_mesh_set_6m_rate + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_bb_check_noise_init + 0x00000000 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_random + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_trc + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_tx_is_idle + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_fix_rate + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_fix_rate + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_csi + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_csi_set_config + 0x00000000 0x89 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_is_sta_tsf_active + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislpiram.12 + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_update_tsf_tick_interval + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_update_modem_sleep_default_params + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_update_light_sleep_default_params + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_beacon_monitor_configure + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_beacon_offset_configure + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_beacon_offset_set_rx_beacon_standard + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_update_listen_interval + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_rx_disable_bssid_check + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_rx_enable_bssid_check + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_bar_rate + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_trc_update_def_rate + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_espnow_rate + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_80211_tx_rate + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_80211_tx_rate_config + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_espnow_rate + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_80211_tx_rate + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_80211_tx_rate_config + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_default_sched + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_G6M_sched + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_info.8 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .xt.lit 0x00000000 0x350 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .xt.prop 0x00000000 0x16a4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.pp_delete_task_manually + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.xswap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_set_cut_rx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_set_cut_evt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_can_cut_sevt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_can_cut_evt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.RxNodeNum + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.SigSpaceMalloc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.SigSpaceFree + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.DefFreqCalTimerCB + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifirxiram.5.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_register_net80211_tx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_register_config_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_register_timer_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_register_michael_mic_failure_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.6.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_default_event_handler + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppAddTimCount + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRegisterPromisRxCallback + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRegisterTxDoneUserActionCallback + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRegisterRxCallback + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRegisterTxCallback + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppUnregisterTxCallback + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_register_tx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_unregister_tx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.15.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCheckTxQIdle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCheckTxConnTrafficIdle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.17.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.18.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.21.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.esp_wifi_enable_easy_fragment + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.23.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppAssembleMicHdr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCalTkipMic + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppTxFragmentProc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppClearRxFragment + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifirxiram.25.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppGetTxQFirstAvail_Locked + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppFetchTxQFirstAvail + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppDequeueTxQ + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRollBackTxQ + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppSetBarRate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppFillAMPDUBar + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.31.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.32.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.33.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCheckTxAMPDUlength + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppReSendBar + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRecordBarRRC + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.42.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.46.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.48.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.19.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.49.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.50.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.28.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_create_task + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_deattach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.58.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppInitTxq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppEnableQueue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.61.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppTxqEmpty + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .iram1.65.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_delete_task + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.62.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.63.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppProcessWaitQ + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppDisableQueue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCheckTxIdle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.60.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.59.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.64.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppDiscardMPDU + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.67.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCalTxopDur + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.69.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.11.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppPrepareBarFrame + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_attach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.37.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.40.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.39.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.22.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.43.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.8.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.70.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppClearTxq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_stop_sw_txq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.71.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.72.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppGetTaskHdl + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppMessageInQ + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.73.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislpiram.4 + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.rotl 0x00000000 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.rotr 0x00000000 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.pp_set_cut_rx + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.pp_set_cut_evt + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.pp_can_cut_sevt + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.pp_can_cut_evt + 0x00000000 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.RxNodeNum + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.TxNodeNum + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.SigSpaceMalloc + 0x00000000 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.SigSpaceFree + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.DefFreqCalTimerCB + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifirxiram.5 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.6 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.10 0x00000000 0x7e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppAddTimCount + 0x00000000 0x184 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRegisterPromisRxCallback + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRegisterTxDoneUserActionCallback + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.pp_register_tx_cb + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.15 + 0x00000000 0x6b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRecycleTxBuf + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.18 0x00000000 0x55 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.esp_wifi_enable_easy_fragment + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppGetTxQFirstAvail_Locked + 0x00000000 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppFetchTxQFirstAvail + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppDequeueTxQ + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRollBackTxQ + 0x00000000 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppSetBarRate + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.32 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.33 0x00000000 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.34 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppCheckTxAMPDUlength + 0x00000000 0x81 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.35 + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.36 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRecordBarRRC + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.42 + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.46 + 0x00000000 0x61 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.48 + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.49 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.50 + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.emul_timeout + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.58 + 0x00000000 0x92 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppEnableQueue + 0x00000000 0x4d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.61 0x00000000 0x102 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .iram1.65 0x00000000 0x148 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.63 + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppProcessWaitQ + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppDisableQueue + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.60 + 0x00000000 0x92 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.59 0x00000000 0x11c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppDiscardMPDU + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.69 0x00000000 0x59 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.11 0x00000000 0x1cc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.39 + 0x00000000 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.43 0x00000000 0x3f2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifiextrairam.71 + 0x00000000 0x80 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppMessageInQ + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.current_ifidx$0 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.66 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.47 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.44 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.16 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.14 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.13 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.12 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .data.CanDoFreqCal + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.DefFreqCalTimer + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.LowestFreqOffsetInOneChk + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.HighestFreqOffsetInOneChk + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .data.NoiseTimerInterval + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.pend_flag_periodic_cal + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.CurSigIdxToBeUse + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.CurFreeSigIdx + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.SigInMacISR + 0x00000000 0x190 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.pp_allow_cut_sevt + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.pp_need_cut_rx + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata.str1.1 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .data.libpp_reversion_git + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .xt.lit 0x00000000 0x2f8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .xt.prop 0x00000000 0x2fd0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.esf_buf_alloc_dynamic_default_handler + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .wifiextrairam.4.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_alloc_default_handler + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .wifislprxiram.6.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_recycle_default_handler + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .wifirxiram.8.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_setup_for_mesh + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_setup_static + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_free_static + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_setdown + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_setup + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_statis_dump + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .text.esf_buf_setup_for_mesh + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata.esf_buf_statis_dump.str1.1 + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .text.esf_buf_statis_dump + 0x00000000 0xc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.20 + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.19 + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.18 + 0x00000000 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .xt.lit 0x00000000 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .xt.prop 0x00000000 0x60c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.offchan_in_progress + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacIsIdle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacGetTxFrame + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacReachShortLimit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacReachLongLimit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacIsLongFrame + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacRequestTxopQueue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacReleaseTxopQueue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifiextrairam.4.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacSetAcParam + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacInitAc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacInit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxopSuccess + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.19.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacEndRetryAMPDUFail + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.30.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.34.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.35.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.36.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.40.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacDebugTxDrop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_retry_counter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_msdu_lifetime + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_mib + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_rts + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_rts + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.56.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmac_record_txtime + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.62.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacDiscardMSDU + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.20.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.57.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacRetryTxFrame + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifiextrairam.22.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.21.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxopQComplete + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.24.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.15.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifiextrairam.17.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessShortRetryFail + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessCtsTimeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessLongRetryFail + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessCollision + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessCollisions_task + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessAckTimeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxRtsError + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxseckiderr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxError + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifiextrairam.37.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacRxDone + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacDisableTransmit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxTimeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacStopTransmit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.dbg_lmac_get_acs + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmac_stop_hw_txq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.66.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_set_11b_tx_plcp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacIsIdle + 0x00000000 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacReachShortLimit + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacReachLongLimit + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacIsLongFrame + 0x00000000 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.2 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.3 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacRequestTxopQueue + 0x00000000 0x45 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacReleaseTxopQueue + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacProcessTxopSuccess + 0x00000000 0x12d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.19 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.30 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.34 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.35 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.36 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_internal_set_retry_counter + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_internal_set_msdu_lifetime + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_internal_get_mib + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_internal_set_rts + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_internal_get_rts + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.62 0x00000000 0xf2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.20 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.21 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.15 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacRxDone + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.dbg_lmac_get_acs + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.66 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_set_11b_tx_plcp + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$0 + 0x00000000 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$13 + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$14 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.63 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_info.55 + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .bss.g_pp_tx_pkt_num + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.16 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.14 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.12 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.11 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .data.txopstart_index + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .xt.lit 0x00000000 0x1c8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .xt.prop 0x00000000 0x1b0c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.pm_coex_reconnect_policy + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .literal.pm_coex_set_reconnect_policy + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .wifislprxiram.4.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .iram1.2.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .wifislprxiram.5.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .literal.pm_coex_pwr_configure + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .literal.pm_coex_recalculate_wifi_time_slice + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .literal.pm_coex_update_wifi_time_slice_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .text.pm_coex_pwr_configure + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .xt.lit 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .xt.prop 0x00000000 0x33c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .literal.rc11NRate2SchedIdx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc11GRate2SchedIdx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc11BRate2SchedIdx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rx11NRate2AMPDULimit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trcAmpduSetState + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcUpdateAMPDUParam + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGet11NHighestRateIdx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGet11GHighestRateIdx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGet11BHighestRateIdx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGetHighestRateIdx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcClearCurSched + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcClearCurAMPDUSched + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcUpdatePhyMode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcLowerSched + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcUpSched + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcTxUpdatePer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.7.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifirxiram.8.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_onAmpduOp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_set_per_pkt_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcSetBarRate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_default_sched + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_G6M_sched + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGetAmpduSched + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifiextrairam.12.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rssi_margin + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.TRC_PER_IS_GOOD + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcAmpduLowerRate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.TRC_AMPDU_PER_UP_THRESHOLD + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.9.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcUpdateRate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.10.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcReachRetryLimit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcAttach + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_NeedRTS + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifiextrairam.18.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_mask + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_disable_trc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_disable_trc_by_interface + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_sta_trc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifirxiram.24.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_trc_by_index + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_trc_default + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_only_sta_trc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_update_def_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_update_ifx_phy_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_set_per_conn_fix_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_enable_trc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_fix_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_set_fix_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_get_espnow_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_set_espnow_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_get_80211_tx_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_get_80211_tx_rate_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_set_80211_tx_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_set_80211_tx_rate_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_calc_duration + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rx11NRate2AMPDULimit + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trcAmpduSetState + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcSetTxAmpduLimit + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcClearCurStat + 0x00000000 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcClearCurSched + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcClearCurAMPDUSched + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcLowerSched + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcUpSched + 0x00000000 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcUpdateAckSnr + 0x00000000 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifirxiram.8 0x00000000 0x66 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_onAmpduOp + 0x00000000 0xc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcSetBarRate + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_default_sched + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_G6M_sched + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcGetAmpduSched + 0x00000000 0x8a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rssi_margin + 0x00000000 0x144 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.rssi_margin + 0x00000000 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.TRC_PER_IS_GOOD + 0x00000000 0x55 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x00000000 0x89 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcAmpduLowerRate + 0x00000000 0xcc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.TRC_AMPDU_PER_UP_THRESHOLD + 0x00000000 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.TRC_AMPDU_PER_UP_THRESHOLD + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_NeedRTS + 0x00000000 0x9a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.trc_NeedRTS + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_onDisconnect + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_onScanStart + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_onScanDone + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_isAmpduOn + 0x00000000 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_SetTxAmpduState + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.19 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.20 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_mask + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_sta_trc + 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifirxiram.24 + 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_trc_by_index + 0x00000000 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_trc_default + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_only_sta_trc + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_update_def_rate + 0x00000000 0xc2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_fix_rate + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_set_fix_rate + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_get_espnow_rate + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_set_espnow_rate + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_get_80211_tx_rate + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_get_80211_tx_rate_config + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_set_80211_tx_rate + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_set_80211_tx_rate_config + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.CSWTCH$61 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.__FUNCTION__$2 + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_warning.26 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.11 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .data.BAROFDMSched + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .bss.g_80211_tx_rate_config + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .bss.g_80211_tx_rate + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .bss.g_espnow_rate + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .xt.lit 0x00000000 0x1d0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .xt.prop 0x00000000 0x1f74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .iram1.3.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .iram1.4.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_rxtx_statis_dump + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_hw_statis_dump + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_diag_statis_dump + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_ps_statis_dump + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_ps_statis_reset + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_statis_dump + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_perf_throughput_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .iram1.4 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.wifi_gpio_debug_max_event_get + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata.dbg_lmac_rxtx_statis_dump.str1.1 + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_lmac_rxtx_statis_dump + 0x00000000 0x20e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata.dbg_lmac_hw_statis_dump.str1.1 + 0x00000000 0xb8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_lmac_hw_statis_dump + 0x00000000 0x2c6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata.dbg_lmac_diag_statis_dump.str1.1 + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_lmac_diag_statis_dump + 0x00000000 0x1b6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata.dbg_lmac_ps_statis_dump.str1.1 + 0x00000000 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_lmac_ps_statis_dump + 0x00000000 0x187 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_lmac_statis_dump + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_his_lmac_eb_show + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_his_lmac_event_show + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_his_lmac_int_show + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_his_lmac_rx_show + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_his_lmac_tx_show + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_ebuf_loc_show + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_perf_path_show + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_perf_path_set + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_perf_throughput_cal + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.35 + 0x00000000 0x3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .bss.s_t_old 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .bss.s_total 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.34 + 0x00000000 0x55 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.33 + 0x00000000 0x51 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.32 + 0x00000000 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.31 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.30 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.29 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.28 + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.27 + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.26 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.25 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.24 + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.23 + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.22 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.21 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.20 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.19 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.18 + 0x00000000 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.17 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.16 + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.15 + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.14 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.13 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.12 + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.11 + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.10 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.9 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.8 + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.7 + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.6 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.5 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .xt.lit 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .xt.prop 0x00000000 0x408 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.wDev_ftm_set_t1t4 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.3.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.6.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.4.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.5.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.7.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.8.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.50.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.11.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.12.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.13.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_csi_rx_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_SnifferRxData + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_IndicateCtrlFrame + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_SnifferRxAmpdu + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_SetCurChannel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Set_Beacon_Int + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Reset_TBTT + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_reset_bcnSendTick + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Mesh_Enable_Tsf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Mesh_Set_TBTT + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Get_Next_TBTT + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_mac_sleep_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_mac_sleep_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_promis_misc_pkt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_pkt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_promis + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_promis_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_get_promis_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_get_promis_ctrl_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifiorslpiram.21.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_ftm_record_t1t4 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_ftm_record_t2t3 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_ftm_set_callbacks + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_record_ftm_data_local + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.22.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Rxbuf_Deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Rxbuf_Init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_disable_low_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_enable_low_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_is_low_rate_enable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .iram1.36.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .iram1.37.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .iram1.38.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .iram1.39.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .iram1.41.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .iram1.42.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.46.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislpiram.20.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.17.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifirxiram.19.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.23.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.25.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Insert_KeyEntry + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry_all_cnx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Crypto_Disable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_csi_rx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_is_mgmt_hwdecr_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_data_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_funcs_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_funcs_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislpiram.14 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.3 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.6 0x00000000 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.4 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.5 0x00000000 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.7 0x00000000 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.8 0x00000000 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.50 + 0x00000000 0x97 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.11 0x00000000 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.12 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.13 0x00000000 0x92 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wDev_Mesh_Enable_Tsf + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wDev_Mesh_Set_TBTT + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_mac_sleep_init + 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_mac_sleep_deinit + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_set_promis_misc_buf + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_set_promis_filter + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_get_promis_filter + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_set_promis_ctrl_filter + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_get_promis_ctrl_filter + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wDev_RxSecError + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifiorslpiram.21 + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_ftm_set_callbacks + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wDev_FetchFirstDesc + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wDev_is_low_rate_enable + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislpiram.20 + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifirxiram.19 + 0x00000000 0x296 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.25 + 0x00000000 0x120 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_set_csi_rx_cb + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata.__FUNCTION__$0 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata.__FUNCTION__$2 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.49 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.48 + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.27 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.26 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.10 + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_warning.9 + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .xt.lit 0x00000000 0x1f8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .xt.prop 0x00000000 0x1800 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislpiram.2.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislpiram.3.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislpiram.11.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislpiram.12.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_get_rx_beacon_success_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_add_total_counter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_add_loss_counter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.empty_func_p_void_r_float + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislpiram.4.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislpiram.9.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_configure + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_set_rx_beacon_standard + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislprxiram.10.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislprxiram.6.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_resample_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_resample_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_funcs_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_beacon_offset_funcs_empty_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_funcs_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.pm_funcs_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislpiram.2 + 0x00000000 0x18e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislpiram.3 + 0x00000000 0x1d1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislpiram.11 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislpiram.12 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text.pm_beacon_offset_get_rx_beacon_success_rate + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text.pm_beacon_offset_add_total_counter + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text.pm_beacon_offset_add_loss_counter + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislpiram.4 + 0x00000000 0x27c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislpiram.9 + 0x00000000 0xa0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text.pm_beacon_offset_configure + 0x00000000 0x8e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text.pm_beacon_offset_set_rx_beacon_standard + 0x00000000 0x81 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislprxiram.10 + 0x00000000 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text.pm_beacon_offset_init + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text.pm_beacon_offset_deinit + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .wifislprxiram.6 + 0x00000000 0x9f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text.pm_beacon_offset_resample_timeout_process + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .rodata.pm_beacon_offset_check.str1.1 + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text.pm_beacon_offset_check + 0x00000000 0x203 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text.pm_beacon_offset_resample_timeout + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .text.pm_beacon_offset_funcs_init + 0x00000000 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .bss.total_tbtt_count$0 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .bss.prev_last_tbtt_time$1 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .rodata_wlog_debug.18 + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .rodata_wlog_info.17 + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .rodata_wlog_debug.16 + 0x00000000 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .rodata_wlog_debug.15 + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .rodata_wlog_info.14 + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .rodata_wlog_info.13 + 0x00000000 0x51 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .rodata_wlog_error.8 + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .rodata_wlog_info.7 + 0x00000000 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .rodata_wlog_error.5 + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .bss.s_pm_beacon_offset_config + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .bss.s_pm_beacon_offset + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .xt.lit 0x00000000 0xb8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .xt.prop 0x00000000 0x84c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .literal.hal_agreement_add_rx_ba + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .literal.hal_agreement_clr_rx_ba + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .literal.hal_agreement_del_rx_ba + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_store + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_restore + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_restore_by_hw_index + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .text.hal_agreement_clr_rx_ba + 0x00000000 0xa1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .text.hal_ba_session_store + 0x00000000 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .text.hal_ba_session_restore + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .rodata_wlog_info.3 + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .xt.lit 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .xt.prop 0x00000000 0x150 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .literal.hal_coex_pti_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_rx_beacon_pti + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_rx_beacon_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .wifirxiram.2.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .wifiextrairam.3.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_rx_active_pti + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_rx_ack_pti + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_wifi_default_pti + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .xt.lit 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .xt.prop 0x00000000 0x180 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_crypto_clr_key_entry + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_get_using_key_idx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_set_key_entry + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_is_key_valid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_get_key_entry + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_mgmt_rx_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_enable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_disable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .text.hal_crypto_get_using_key_idx + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .xt.lit 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .xt.prop 0x00000000 0x2b8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.mac_tx_set_plcp0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.mac_tx_set_duration + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifiextrairam.2.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_tx_set_ppdu + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.3.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.4.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.5.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifiextrairam.6.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.7.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_set_txq_invalid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_is_txq_valid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_is_txq_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.8.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_now + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_tx_set_cca + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_disable_low_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_enable_low_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.9.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.mac_rxbuf_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_disable_mac + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_enable_mac + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislpiram.10.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislprxiram.11.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislprxiram.12.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.mac_txrx_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_set_rxq_policy + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.mac_last_rxbuf_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.13.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.14.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.15.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.16.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_set_addr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_set_bssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_rx_set_policy + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_clr_bssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_get_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.wDev_Mesh_Disable_Tsf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.17.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_set_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_reset + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_set_csi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislprxiram.18.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.19.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_rx_enable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_rx_disable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_enable_sta_beacon_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_disable_sta_beacon_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_set_sta_beacon_filter + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_enable_sta_dump_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_beacon_ie_crc_get + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_beacon_ie_crc_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_rx_disable_bssid_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_rx_enable_bssid_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.mac_tx_set_plcp0 + 0x00000000 0xce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.mac_tx_set_duration + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.7 0x00000000 0x4f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_is_txq_enabled + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_now 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.9 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_disable_mac + 0x00000000 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_enable_mac + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislpiram.10 + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.mac_rxbuf_disable + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.13 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.16 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_clr_bssid + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_tsf_get_time + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.wDev_Mesh_Disable_Tsf + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_tsf_set_time + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_set_csi + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_rx_enable + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_rx_disable + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_enable_sta_dump_beacon + 0x00000000 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_beacon_ie_crc_get + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_beacon_ie_crc_set + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_rx_disable_bssid_check + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_rx_enable_bssid_check + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .bss.g_mac_deinit_txing + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .bss.g_mac_deinit_rxing + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .bss.g_mac_deinit_count + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .xt.lit 0x00000000 0x1b8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .xt.prop 0x00000000 0xce4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.2.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .wifirxiram.3.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .wifirxiram.4.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .wifirxiram.5.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .iram1.6.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .iram1.2 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .iram1.6 0x00000000 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .xt.lit 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .xt.prop 0x00000000 0xf0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .literal.mac_tx_set_plcp1 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_plcp2 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_htsig + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_mac_fill_hwtxop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_txop_q + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .wifi0iram.2.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_mac_get_txq_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_mac_clr_txq_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_mac_get_txq_pmd + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_attenna_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_mac_rate_autoack_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .text.mac_tx_set_plcp2 + 0x00000000 0x4b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .xt.lit 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .xt.prop 0x00000000 0x3cc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_sniffer_enable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_disable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_rx_set_promis + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_rx_clr_statistics + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_set_promis_misc_pkt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .text.hal_sniffer_rx_clr_statistics + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .xt.lit 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .xt.prop 0x00000000 0x168 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .literal.hal_enable_sta_tsf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_disable_sta_tsf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_disable_softap_tsf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .iram1.2.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .iram1.3.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_timer_update_by_rtc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.4.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_set_sta_tsf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .iram1.5.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_enable_tsf_timer_wakeup + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_disable_tsf_timer_wakeup + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .iram1.6.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_disable_tsf_timer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_enable_sta_tbtt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_disable_sta_tbtt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_set_sta_tbtt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_set_sta_tbtt_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_set_sta_tbtt_ahead_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.7.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.8.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.9.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_set_sta_tsf_wakeup + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.10.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.11.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.12.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.13.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.14.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.15.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.16.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.17.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.18.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.19.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.20.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.21.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.22.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.23.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.27.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.28.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.29.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.30.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.31.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.32.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.33.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.34.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.35.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.36.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.37.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.38.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_tsf_get_tbttstart + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .iram1.5 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.hal_tsf_timer_get_target + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.hal_enable_tsf_timer_wakeup + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.hal_disable_tsf_timer_wakeup + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .iram1.6 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.hal_disable_tsf_timer + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.hal_get_sta_next_tbtt + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.9 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.hal_tsf_clear_soc_wakeup_request + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.10 + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.11 + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.12 + 0x00000000 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.13 + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_tbtt_rf_ctrl_wait_cycles + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_timer_rf_ctrl_wait_cycles + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_clear_mac_modem_rf_power_state + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_get_mac_modem_rf_power_state + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_clear_soc_wakeup_request + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_map_tbtt_target_to_rx_frame + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_unmap_tbtt_target_to_rx_frame + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_tsf_time_deviation + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_tsf_time_deviation_sync_enable + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_tsf_time_deviation_sync_disable + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_rx_beacon_success_tsf_time_deviation_sync_enable + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_rx_beacon_success_tsf_time_deviation_sync_disable + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_rx_beacon_fail_tsf_time_deviation_sync_enable + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_rx_beacon_fail_tsf_time_deviation_sync_disable + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_rx_beacon_abort_tsf_time_deviation_sync_enable + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_rx_beacon_abort_tsf_time_deviation_sync_disable + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.15 + 0x00000000 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.17 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.18 + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.19 + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.20 + 0x00000000 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.21 + 0x00000000 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.22 + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.23 + 0x00000000 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.24 + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.25 + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.26 + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_tbtt_rf_ctrl_disable + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.27 + 0x00000000 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.28 + 0x00000000 0x55 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.29 + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.34 + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_timer_modem_wakeup_enable + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_timer_modem_wakeup_disable + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_timer_rf_ctrl_enable + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_timer_rf_ctrl_disable + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_rx_control_timestamp_use_tsf_enable + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_set_rx_control_timestamp_use_tsf_disable + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.tsf_hal_select_rx_start_default_tsf + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .xt.lit 0x00000000 0x188 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .xt.prop 0x00000000 0x1248 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.RC_GetDuration + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.RC_GetAckRate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.RC_GetRtsRate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.RC_GetAckTime + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.RC_GetCtsTime + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.RC_GetBlockAckTime + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .text.RC_GetAckRate + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .text.RC_GetRtsRate + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .text.RC_GetAckTime + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .text.RC_GetBlockAckTime + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .xt.lit 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .xt.prop 0x00000000 0x180 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.pp_timer_resample + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_coex_restart + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_max_idle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_beacon_monitor_tbtt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_beacon_monitor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_connectionless_wake_window + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_connectionless_wake_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_disconnected_sleep_delay + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_sleep_delay + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_coex_slice + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_active + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_dream + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .wifislpiram.2.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_noise_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .wifislpiram.3.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_register_post_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .xt.lit 0x00000000 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .xt.prop 0x00000000 0x3e4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.esp_efuse_get_pkg_ver + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_set_rom_log_scheme + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x10 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 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x39 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x22 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 0x3b4 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x184 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x15 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 0x458 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0x62d 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 0x20 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_rtc_calib_get_ver + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .literal.esp_efuse_rtc_calib_get_init_code + 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .literal.esp_efuse_rtc_calib_get_cal_voltage + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .literal.esp_efuse_rtc_calib_get_tsens_val + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.esp_efuse_rtc_calib_get_ver.str1.4 + 0x00000000 0x100 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .text.esp_efuse_rtc_calib_get_ver + 0x00000000 0x54 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.esp_efuse_rtc_calib_get_init_code.str1.4 + 0x00000000 0x10f esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .text.esp_efuse_rtc_calib_get_init_code + 0x00000000 0xfe esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.esp_efuse_rtc_calib_get_cal_voltage.str1.4 + 0x00000000 0x45 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .text.esp_efuse_rtc_calib_get_cal_voltage + 0x00000000 0x111 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.esp_efuse_rtc_calib_get_tsens_val.str1.4 + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .text.esp_efuse_rtc_calib_get_tsens_val + 0x00000000 0x7a esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.__func__$0 + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.__func__$1 + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.__func__$2 + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .rodata.__func__$3 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_info 0x00000000 0xb81 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_abbrev 0x00000000 0x248 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_loc 0x00000000 0x39b esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_ranges 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_line 0x00000000 0xc4d esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .debug_str 0x00000000 0x95e esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .xt.prop 0x00000000 0x228 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/hal/libhal.a(mpu_hal.c.obj) + .literal.adc_oneshot_ll_start + 0x00000000 0xc esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.adc_oneshot_ll_set_atten + 0x00000000 0x4 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.get_controller + 0x00000000 0x4 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.adc_ll_calibration_prepare + 0x00000000 0x28 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.adc_ll_calibration_finish + 0x00000000 0x8 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.adc_oneshot_ll_get_event + 0x00000000 0x14 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.read_cal_channel + 0x00000000 0x10 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.adc_hal_set_controller + 0x00000000 0x18 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.cal_setup + 0x00000000 0x10 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.adc_hal_arbiter_config + 0x00000000 0x10 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.adc_hal_calibration_init + 0x00000000 0x8 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.adc_hal_set_calibration_param + 0x00000000 0x10 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .literal.adc_hal_self_calibration + 0x00000000 0x5c esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_oneshot_ll_start + 0x00000000 0x69 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_oneshot_ll_set_atten + 0x00000000 0x5c esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.get_controller + 0x00000000 0x30 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_ll_calibration_prepare + 0x00000000 0x9e esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_ll_calibration_finish + 0x00000000 0x32 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .rodata.adc_oneshot_ll_get_event.str1.4 + 0x00000000 0x39 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_oneshot_ll_get_event + 0x00000000 0x39 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.read_cal_channel + 0x00000000 0x60 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_hal_set_controller + 0x00000000 0x104 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.cal_setup + 0x00000000 0x46 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_hal_arbiter_config + 0x00000000 0x1ac esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_hal_calibration_init + 0x00000000 0x32 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_hal_set_calibration_param + 0x00000000 0x5e esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .rodata 0x00000000 0x8 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text.adc_hal_self_calibration + 0x00000000 0x1e1 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_frame 0x00000000 0x148 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_info 0x00000000 0x4584 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_abbrev 0x00000000 0x4cd esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_loc 0x00000000 0x91d esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_ranges 0x00000000 0xa0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_line 0x00000000 0x12da esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .debug_str 0x00000000 0x2542 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .xt.prop 0x00000000 0x600 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text.mpi_hal_disable_hardware_hw_op + 0x00000000 0x5 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .xt.prop 0x00000000 0x3f0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xt.prop 0x00000000 0x2ac esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.aes_ll_write_block + 0x00000000 0x8 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.aes_ll_read_block + 0x00000000 0x8 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.aes_hal_transform_block + 0x00000000 0x10 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_ll_write_block + 0x00000000 0x2b esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_ll_read_block + 0x00000000 0x2b esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_hal_transform_block + 0x00000000 0x2e esp-idf/hal/libhal.a(aes_hal.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/hal/libhal.a(aes_hal.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.hmac_ll_write_block_512 + 0x00000000 0x8 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .literal.hmac_ll_read_result_256 + 0x00000000 0x4 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .literal.hmac_hal_write_one_block_512 + 0x00000000 0xc esp-idf/hal/libhal.a(hmac_hal.c.obj) + .literal.hmac_hal_write_block_512 + 0x00000000 0x8 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .literal.hmac_hal_next_block_padding + 0x00000000 0x8 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .literal.hmac_hal_next_block_normal + 0x00000000 0x8 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .literal.hmac_hal_read_result_256 + 0x00000000 0xc esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_ll_write_block_512 + 0x00000000 0x2d esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_ll_read_result_256 + 0x00000000 0x21 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_write_one_block_512 + 0x00000000 0x2d esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_write_block_512 + 0x00000000 0x18 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_next_block_padding + 0x00000000 0x1a esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_next_block_normal + 0x00000000 0x1a esp-idf/hal/libhal.a(hmac_hal.c.obj) + .text.hmac_hal_read_result_256 + 0x00000000 0x22 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .xt.prop 0x00000000 0x354 esp-idf/hal/libhal.a(hmac_hal.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) + .xt.prop 0x00000000 0x3c esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .xt.prop 0x00000000 0xc esp-idf/soc/libsoc.a(temperature_sensor_periph.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) + .xt.prop 0x00000000 0x18 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .literal.esp_ds_is_busy + 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .literal.esp_ds_sign + 0x00000000 0x10 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .literal.esp_ds_encrypt_params + 0x00000000 0x1c esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .text.esp_ds_is_busy + 0x00000000 0xd esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .text.esp_ds_sign + 0x00000000 0x46 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .text.esp_ds_encrypt_params + 0x00000000 0x56 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .xt.prop 0x00000000 0x2f4 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .literal.spi_ll_enable_bus_clock + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .literal.spi_ll_reset_register + 0x00000000 0x1c 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 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spi_ll_enable_bus_clock + 0x00000000 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spi_ll_reset_register + 0x00000000 0x90 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 0xc3 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spicommon_periph_in_use + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spicommon_periph_free + 0x00000000 0x8e 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 0x57b7 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_abbrev 0x00000000 0x364 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_loc 0x00000000 0x20d 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 0x867 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_str 0x00000000 0x4fcd 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 0x21c esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .literal.gdma_install_tx_interrupt + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_install_rx_interrupt + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_default_rx_isr + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_default_tx_isr + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_get_free_m2m_trig_id_mask + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_get_alignment_constraints + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_apply_strategy + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_set_priority + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_register_tx_event_callbacks + 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_register_rx_event_callbacks + 0x00000000 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_stop + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_append + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_reset + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_install_tx_interrupt.str1.4 + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_install_tx_interrupt + 0x00000000 0xc6 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_install_rx_interrupt + 0x00000000 0xc6 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_default_rx_isr + 0x00000000 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_default_tx_isr + 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_get_free_m2m_trig_id_mask + 0x00000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_get_alignment_constraints + 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_apply_strategy + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_set_priority + 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_register_tx_event_callbacks.str1.4 + 0x00000000 0xfd esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_register_tx_event_callbacks + 0x00000000 0x1e4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_register_rx_event_callbacks.str1.4 + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_register_rx_event_callbacks + 0x00000000 0x234 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_stop + 0x00000000 0xb6 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_append + 0x00000000 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_reset + 0x00000000 0x83 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$20 + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$19 + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$15 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$8 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .xt.lit 0x00000000 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .xt.prop 0x00000000 0xf90 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_init + 0x00000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_deinit + 0x00000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xt.prop 0x00000000 0x1c8 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .literal.print_timer_info + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.0.literal + 0x00000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_deinit + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_dump + 0x00000000 0x40 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.11.literal + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.12.literal + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.13.literal + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.14.literal + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.15.literal + 0x00000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.print_timer_info.str1.4 + 0x00000000 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.print_timer_info + 0x00000000 0x33 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.0 0x00000000 0xed esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x00000000 0x3d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.esp_timer_dump.str1.4 + 0x00000000 0x3d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_dump + 0x00000000 0xcc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.11 0x00000000 0x3f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.12 0x00000000 0x50 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.13 0x00000000 0x42 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.14 0x00000000 0x53 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.15 0x00000000 0x16 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xt.lit 0x00000000 0xc8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xt.prop 0x00000000 0xb40 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.2.literal + 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .iram1.3.literal + 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_phy_erase_cal_data_in_nvs + 0x00000000 0x40 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .iram1.2 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .iram1.3 0x00000000 0x23 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_release_init_data + 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_erase_cal_data_in_nvs.str1.4 + 0x00000000 0xb3 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_erase_cal_data_in_nvs + 0x00000000 0x9e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__$4 + 0x00000000 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .dram1.1 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .xt.prop 0x00000000 0x678 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .rodata.phy_init_magic_post + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .rodata.phy_init_magic_pre + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .xt.prop 0x00000000 0x24 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .literal.phy_ant_config_check + 0x00000000 0x1c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_ant_set_gpio_output + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.esp_phy_set_ant_gpio + 0x00000000 0x30 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.esp_phy_get_ant_gpio + 0x00000000 0x18 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.esp_phy_set_ant + 0x00000000 0x18 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.esp_phy_get_ant + 0x00000000 0x18 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_ant_config_check + 0x00000000 0x69 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_ant_set_gpio_output + 0x00000000 0x3a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.esp_phy_set_ant_gpio.str1.4 + 0x00000000 0x52 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.esp_phy_set_ant_gpio + 0x00000000 0xbc esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.esp_phy_get_ant_gpio + 0x00000000 0x35 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.esp_phy_set_ant + 0x00000000 0x43 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.esp_phy_get_ant.str1.4 + 0x00000000 0x1a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.esp_phy_get_ant + 0x00000000 0x35 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss.s_phy_ant_gpio_config + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .xt.prop 0x00000000 0x5b8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.dhcp_search_ip_on_mac + 0x00000000 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.dhcps_dns_setserver_by_type + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.dhcps_dns_setserver + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.dhcps_dns_getserver + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_option_info + 0x00000000 0x80 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcp_search_ip_on_mac + 0x00000000 0x3a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_setserver_by_type + 0x00000000 0x32 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_setserver + 0x00000000 0x14 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_getserver_by_type + 0x00000000 0x31 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_getserver + 0x00000000 0x14 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xt.prop 0x00000000 0x1080 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.esp_netif_action_join_ip6_multicast_group + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_leave_ip6_multicast_group + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_add_ip6_address + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_remove_ip6_address + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_join_ip6_multicast_group + 0x00000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_leave_ip6_multicast_group + 0x00000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_add_ip6_address + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_remove_ip6_address + 0x00000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xt.prop 0x00000000 0x210 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_eth_config + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_ap_config + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_soft_ap_ip + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_wifi_ap + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_wifi_nan + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_eth + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_wifi_netif_config_nan + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_wifi_netif_config_ap + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_eth_netif_config + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .literal.wlanif_init_ap + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .literal.wlanif_init_nan + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text.wlanif_init_ap + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text.wlanif_init_nan + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .xt.prop 0x00000000 0x270 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .literal.ethernet_low_level_output + 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .literal.ethernetif_input + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .literal.ethernetif_init + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernet_low_level_init + 0x00000000 0x20 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernet_low_level_output + 0x00000000 0x81 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernetif_input + 0x00000000 0x58 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .rodata.ethernetif_init.str1.4 + 0x00000000 0x4e esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernetif_init + 0x00000000 0x58 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .rodata.__func__$0 + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_info 0x00000000 0xb14 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_abbrev 0x00000000 0x2d5 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_loc 0x00000000 0x22a esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_line 0x00000000 0x813 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_str 0x00000000 0x78e esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .xt.prop 0x00000000 0x18c esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .literal.wpa_sendto_wrapper + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .literal.esp_supplicant_disable_pmk_caching + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text.wpa_sendto_wrapper + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text.esp_supplicant_disable_pmk_caching + 0x00000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xt.prop 0x00000000 0x66c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .literal.esp_supplicant_str_to_mac + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .literal.wpa_supplicant_connect + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .literal.esp_get_tx_power + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .literal.wpa_drv_send_action + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_supplicant_str_to_mac + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.wpa_supplicant_connect + 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_get_tx_power + 0x00000000 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.wpa_drv_send_action + 0x00000000 0x51 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_wnm_is_btm_supported_connection + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_wnm_send_bss_transition_mgmt_query + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_rrm_is_rrm_supported_connection + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_rrm_send_neighbor_report_request + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_rrm_send_neighbor_rep_request + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .xt.prop 0x00000000 0x3cc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .literal.wps_rxq_init + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_rxq_enqueue + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_rxq_dequeue + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_rxq_deinit + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.save_credentials_cb + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_ether_send + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_init + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_stop_connection_timers + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_wps_scan_done + 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.is_wps_pbc_overlap + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.ap_supports_sae + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_build_ic_appie_wps_pr + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_build_ic_appie_wps_ar + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_parse_scan_result + 0x00000000 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_post + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_rx_eapol + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_timeout + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_msg_timeout + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_success + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_eapol_start_handle + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_wps_scan + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_alloc_eapol + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_free_eapol + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_send_eap_identity_rsp + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_send_frag_ack + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_enrollee_process_msg_frag + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_process_wps_mX_req + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_send_wps_mX_rsp + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_tx_start + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_start_pending + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_stop_process + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_notify_deauth + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_add_discard_ap + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_start_msg_timer + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_set_default_factory + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_set_factory_info + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_dev_deinit + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_dev_init + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_timeout_internal + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_success_internal + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_eapol_start_handle_internal + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_init_cfg_pin + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_init + 0x00000000 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_delete_timer + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_finish + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_rx_eapol_internal + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_msg_timeout_internal + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_deinit + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_get + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_start + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_wps_scan_internal + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_task_deinit + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_task_init + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_post_block + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.esp_wifi_wps_disable + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_check_wifi_mode + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.esp_wifi_wps_enable + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.is_wps_enabled + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_wps_enable_internal + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_wps_disable_internal + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_task + 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.esp_wifi_wps_start + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_rxq_init + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_rxq_enqueue + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_rxq_dequeue + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_rf_band_cb + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_rxq_deinit + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.save_credentials_cb + 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_ether_send + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_init + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_stop_connection_timers + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_wps_scan_done + 0x00000000 0x152 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.is_wps_pbc_overlap + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.ap_supports_sae + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_build_ic_appie_wps_pr + 0x00000000 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_build_ic_appie_wps_ar + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_parse_scan_result + 0x00000000 0x279 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_post + 0x00000000 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_rx_eapol + 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_timeout + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_msg_timeout + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_success + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_eapol_start_handle + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_wps_scan + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_alloc_eapol + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_free_eapol + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_send_eap_identity_rsp + 0x00000000 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_send_frag_ack + 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_enrollee_process_msg_frag + 0x00000000 0x9b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_process_wps_mX_req + 0x00000000 0x11d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_send_wps_mX_rsp + 0x00000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wps_tx_start.str1.4 + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_tx_start + 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_start_pending + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_stop_process + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_notify_deauth + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_add_discard_ap + 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_start_msg_timer + 0x00000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wps_set_default_factory.str1.4 + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_set_default_factory + 0x00000000 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_set_factory_info + 0x00000000 0x73 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_dev_deinit + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wps_dev_init.str1.4 + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_dev_init + 0x00000000 0x162 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_timeout_internal + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_success_internal + 0x00000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_eapol_start_handle_internal + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wps_init_cfg_pin.str1.4 + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_init_cfg_pin + 0x00000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wifi_station_wps_init.str1.4 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_init + 0x00000000 0x1fe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_delete_timer + 0x00000000 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_finish + 0x00000000 0x135 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_rx_eapol_internal + 0x00000000 0x19e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_msg_timeout_internal + 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_deinit + 0x00000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_get + 0x00000000 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_start + 0x00000000 0xfa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_wps_scan_internal + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_task_deinit + 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wps_task_init.str1.4 + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_task_init + 0x00000000 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_post_block + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.esp_wifi_wps_disable.str1.4 + 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.esp_wifi_wps_disable + 0x00000000 0xc9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_check_wifi_mode + 0x00000000 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.esp_wifi_wps_enable + 0x00000000 0xf5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.is_wps_enabled + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_wps_enable_internal + 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_wps_disable_internal + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_task + 0x00000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.esp_wifi_wps_start + 0x00000000 0xd1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.wps_buf$0 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_factory_info + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.gWpsSm 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_sig_cnt + 0x00000000 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_task_create_sem + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_data_lock + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_queue + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_task_hdl + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_rxq + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_enabled + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_api_sem + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_api_lock + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.str1.4 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .data.wps_model_number + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .xt.lit 0x00000000 0x200 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .xt.prop 0x00000000 0x1e30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.esp_wifi_unregister_wpa3_cb + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text.esp_wifi_unregister_wpa3_cb + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xt.prop 0x00000000 0xc18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xt.prop 0x00000000 0x6f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.crypto_rng_wrapper + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.pk_write_ec_pubkey_formatted + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.pk_write_ec_param + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_group_byname + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_affine_coordinates + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_get_order + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_key_compare + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_debug_print_point + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_key_get_public_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_priv_key_der + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_group_from_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_key_get_private_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_publickey_buf + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_write_pubkey_der + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_key_parse_priv + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_curve_id + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ecdh + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ecdsa_get_sign + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_key_verify_signature_r_s + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_parse_subpub_key + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_is_ec_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_key_gen + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.mbedtls_pk_write_pubkey_formatted + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_pk_write_formatted_pubkey_der + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_write_pub_key + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_key_get_subject_public_key + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_rng_wrapper + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.pk_write_ec_pubkey_formatted + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.pk_write_ec_param + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_group_byname + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_affine_coordinates + 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_get_order + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_key_compare + 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_debug_print_point + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_key_get_public_key + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_priv_key_der + 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_group_from_key + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_key_get_private_key + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_publickey_buf + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_write_pubkey_der + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_key_parse_priv + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_curve_id + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ecdh + 0x00000000 0x112 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ecdsa_get_sign + 0x00000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_key_verify_signature_r_s + 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_key_debug_print + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_parse_subpub_key + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_is_ec_key + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_key_gen + 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.mbedtls_pk_write_pubkey_formatted + 0x00000000 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_pk_write_formatted_pubkey_der + 0x00000000 0xf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_write_pub_key + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_key_get_subject_public_key + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .xt.lit 0x00000000 0x1b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .xt.prop 0x00000000 0x1494 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.eloop_register_timeout_blocking + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_cancel_timeout_one + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_is_timeout_registered + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_deplete_timeout + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_replenish_timeout + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .rodata.eloop_register_timeout_blocking.str1.4 + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_register_timeout_blocking + 0x00000000 0x199 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_cancel_timeout_one + 0x00000000 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_is_timeout_registered + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_deplete_timeout + 0x00000000 0xcd esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_replenish_timeout + 0x00000000 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .rodata.__func__$0 + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .xt.prop 0x00000000 0x7d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.hostapd_config_defaults_bss + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_config_defaults + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp_empty + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_wep_key_cmp + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_maclist_found + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults_bss + 0x00000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults + 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp_empty + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_wep_key_cmp + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_maclist_found + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_rate_found + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xt.prop 0x00000000 0x4b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.wpa_auth_pmksa_remove + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_auth_sm_event + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sta_no_wpa + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_pmksa_remove + 0x00000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sm_event + 0x00000000 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xt.lit 0x00000000 0x1e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xt.prop 0x00000000 0x1f8c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xt.prop 0x00000000 0x8e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .literal.pmksa_cache_auth_flush + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .literal.pmksa_cache_auth_list + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text.pmksa_cache_auth_flush + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .rodata.pmksa_cache_auth_list.str1.4 + 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text.pmksa_cache_auth_list + 0x00000000 0xda esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .xt.prop 0x00000000 0x570 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .literal.ap_sta_delayed_1x_auth_fail_cb + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.hostapd_free_stas + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.ap_sta_delayed_1x_auth_fail_disconnect + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.ap_sta_pending_delayed_1x_auth_fail_disconnect + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_delayed_1x_auth_fail_cb + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_for_each_sta + 0x00000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.hostapd_free_stas + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_delayed_1x_auth_fail_disconnect + 0x00000000 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_pending_delayed_1x_auth_fail_disconnect + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .xt.prop 0x00000000 0x2e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .xt.prop 0x00000000 0xc30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .literal.sae_state_txt + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_state_txt.str1.4 + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_state_txt + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xt.lit 0x00000000 0x198 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xt.prop 0x00000000 0x2550 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .text.dragonfly_suitable_group + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .xt.prop 0x00000000 0x45c esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .literal.wpa_cipher_txt + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.wpa_insert_pmkid + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.wpa_cipher_rsc_len + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata.wpa_cipher_txt.str1.4 + 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_cipher_txt + 0x00000000 0x9d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_insert_pmkid + 0x00000000 0x157 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_cipher_rsc_len + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xt.lit 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xt.prop 0x00000000 0x15fc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .literal.dh_init + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.dh_derive_shared + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_init 0x00000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_derive_shared + 0x00000000 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .xt.prop 0x00000000 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .literal.eap_wsc_build_frag_ack + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .text.eap_wsc_build_frag_ack + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_info 0x00000000 0x3d2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_abbrev 0x00000000 0x1bf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_loc 0x00000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_line 0x00000000 0x45b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_str 0x00000000 0x522 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .xt.prop 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .literal.wpabuf_put_be24 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.wpabuf_put_be32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.eap_hdr_validate + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.eap_msg_alloc + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.wpabuf_put_be24 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.wpabuf_put_be32 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_hdr_len_valid + 0x00000000 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_hdr_validate + 0x00000000 0xb5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_msg_alloc + 0x00000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_update_len + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_get_id + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_get_type + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_frame 0x00000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_info 0x00000000 0xa53 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_abbrev 0x00000000 0x29f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_loc 0x00000000 0x831 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_aranges + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_line 0x00000000 0xb75 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_str 0x00000000 0x60a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .xt.prop 0x00000000 0x2b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.pmksa_cache_list + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .rodata.pmksa_cache_list.str1.4 + 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text.pmksa_cache_list + 0x00000000 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xt.prop 0x00000000 0x678 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.wpa_sm_set_pmk + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.wpa_sta_is_cur_pmksa_set + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.eapol_sm_notify_eap_success + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sm_set_pmk + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sta_is_cur_pmksa_set + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xt.lit 0x00000000 0x208 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xt.prop 0x00000000 0x25bc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xt.prop 0x00000000 0x60c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .literal.wpabuf_resize + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_alloc_ext_data + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_dup + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_concat + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_printf + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_resize + 0x00000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_alloc_ext_data + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_dup + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_concat + 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_printf + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xt.prop 0x00000000 0x360 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal._wpa_snprintf_hex + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpa_snprintf_hex_uppercase + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpa_snprintf_hex + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .rodata._wpa_snprintf_hex.str1.4 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text._wpa_snprintf_hex + 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex_uppercase + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_info 0x00000000 0x34d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_abbrev 0x00000000 0x139 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_loc 0x00000000 0x27c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_line 0x00000000 0x492 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_str 0x00000000 0x312 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpabuf_put_be32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_init + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_deinit + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_process_msg + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_get_msg + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_is_selected_pbc_registrar + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_is_selected_pin_registrar + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_is_addr_authorized + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_ap_priority_compar + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_get_uuid_e + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_is_20 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_build_assoc_req_ie + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_build_assoc_resp_ie + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_build_probe_req_ie + 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_attr_text + 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.is_selected_pin_registrar + 0x00000000 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wpabuf_put_be32 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .rodata.wps_init.str1.4 + 0x00000000 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_init + 0x00000000 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_deinit + 0x00000000 0x5b esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_process_msg + 0x00000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_get_msg + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_is_selected_pbc_registrar + 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_is_selected_pin_registrar + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .rodata.wps_is_addr_authorized.str1.4 + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_is_addr_authorized + 0x00000000 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_ap_priority_compar + 0x00000000 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_get_uuid_e + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_is_20 + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_build_assoc_req_ie + 0x00000000 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_build_assoc_resp_ie + 0x00000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_build_probe_req_ie + 0x00000000 0x112 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .rodata.wps_attr_text.str1.4 + 0x00000000 0xfb esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_attr_text + 0x00000000 0x231 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_frame 0x00000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_info 0x00000000 0x2a6d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_abbrev 0x00000000 0x4db esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_loc 0x00000000 0xe01 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_line 0x00000000 0x1c39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_str 0x00000000 0x17a2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .xt.prop 0x00000000 0x93c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wpabuf_put_be16 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wpabuf_put_be24 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wpabuf_put_be32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_public_key + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_req_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_resp_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_config_methods + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_uuid_e + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_dev_password_id + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_config_error + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_authenticator + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_version + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_wfa_ext + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_msg_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_enrollee_nonce + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_registrar_nonce + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_auth_type_flags + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_encr_type_flags + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_conn_type_flags + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_assoc_state + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_key_wrap_auth + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_encr_settings + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_ie_encapsulate + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_mac_addr + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_rf_bands_attr + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_ap_channel + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wpabuf_put_be16 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wpabuf_put_be24 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wpabuf_put_be32 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_public_key + 0x00000000 0xf9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_req_type + 0x00000000 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_resp_type + 0x00000000 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_config_methods + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_uuid_e + 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_dev_password_id + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_config_error + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_authenticator + 0x00000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_version + 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_wfa_ext + 0x00000000 0x154 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_msg_type + 0x00000000 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_enrollee_nonce + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_registrar_nonce + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_auth_type_flags + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_encr_type_flags + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_conn_type_flags + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_assoc_state + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_key_wrap_auth + 0x00000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_encr_settings + 0x00000000 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_ie_encapsulate + 0x00000000 0x7f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_mac_addr + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_rf_bands_attr + 0x00000000 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_ap_channel + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_frame 0x00000000 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_info 0x00000000 0x431c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_abbrev 0x00000000 0x4b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_loc 0x00000000 0x2050 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_aranges + 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_ranges 0x00000000 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_line 0x00000000 0x2bd1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_str 0x00000000 0x19b5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .xt.lit 0x00000000 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .xt.prop 0x00000000 0x6cc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_parse_vendor_ext_wfa + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .literal.wps_parse_vendor_ext + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .literal.wps_set_attr + 0x00000000 0xd4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .literal.wps_parse_msg + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .text.wps_set_vendor_ext_wfa_subelem + 0x00000000 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .text.wps_parse_vendor_ext_wfa + 0x00000000 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .text.wps_parse_vendor_ext + 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .text.wps_set_attr + 0x00000000 0x704 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .text.wps_parse_msg + 0x00000000 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_info 0x00000000 0xd28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_abbrev 0x00000000 0x2be esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_loc 0x00000000 0x17c4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_line 0x00000000 0x1c97 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_str 0x00000000 0xf40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .xt.prop 0x00000000 0xf0c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_kdf + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_derive_keys + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_derive_psk + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_decrypt_encr_settings + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_pin_checksum + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_pin_valid + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_generate_pin + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_fail_event + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_success_event + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_pwd_auth_fail_event + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_dev_type_str2bin + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_dev_type_bin2str + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.uuid_gen_mac_addr + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_config_methods_str2bin + 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_build_wsc_ack + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_build_wsc_nack + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_kdf 0x00000000 0x9f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .rodata.wps_derive_keys.str1.4 + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_derive_keys + 0x00000000 0xf9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_derive_psk + 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_decrypt_encr_settings + 0x00000000 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pin_checksum + 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pin_valid + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_generate_pin + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pin_str_valid + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_fail_event + 0x00000000 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_success_event + 0x00000000 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pwd_auth_fail_event + 0x00000000 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pbc_overlap_event + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_selected_registrar_timeout_event + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pbc_timeout_event + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pbc_active_event + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pbc_disable_event + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_dev_type_str2bin + 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .rodata.wps_dev_type_bin2str.str1.4 + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_dev_type_bin2str + 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .rodata.uuid_gen_mac_addr.str1.4 + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.uuid_gen_mac_addr + 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .rodata.wps_config_methods_str2bin.str1.4 + 0x00000000 0xb5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_config_methods_str2bin + 0x00000000 0x14f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_build_wsc_ack + 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_build_wsc_nack + 0x00000000 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_frame 0x00000000 0x238 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_info 0x00000000 0x268f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_abbrev 0x00000000 0x4f6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_loc 0x00000000 0x9b4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_aranges + 0x00000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_ranges 0x00000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_line 0x00000000 0x1b79 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_str 0x00000000 0x1165 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .xt.prop 0x00000000 0x78c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wpabuf_put_be16 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wpabuf_put_be32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_process_primary_dev_type + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_process_manufacturer + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_process_model_name + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_process_model_number + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_process_serial_number + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_process_dev_name + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_manufacturer + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_model_name + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_model_number + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_serial_number + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_primary_dev_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_secondary_dev_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_req_dev_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_dev_name + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_device_attrs + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_os_version + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_vendor_ext_m1 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_rf_bands + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_vendor_ext + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_application_ext + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_process_device_attrs + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_device_data_free + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wpabuf_put_be16 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wpabuf_put_be32 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_primary_dev_type + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_manufacturer + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_model_name + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_model_number + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_serial_number + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_dev_name + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_manufacturer + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_model_name + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_model_number + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_serial_number + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_primary_dev_type + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_secondary_dev_type + 0x00000000 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_req_dev_type + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_dev_name + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_device_attrs + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_os_version + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_vendor_ext_m1 + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_rf_bands + 0x00000000 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_vendor_ext + 0x00000000 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_application_ext + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_device_attrs + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_os_version + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_vendor_ext_m1 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_rf_bands + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_device_data_free + 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_frame 0x00000000 0x2b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_info 0x00000000 0x2615 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_abbrev 0x00000000 0x32b esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_loc 0x00000000 0x1233 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_aranges + 0x00000000 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_ranges 0x00000000 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_line 0x00000000 0x1d51 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_str 0x00000000 0x10d3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .xt.lit 0x00000000 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .xt.prop 0x00000000 0x75c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_wps_state + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_build_m1 + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_build_e_hash + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_build_m3 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_build_e_snonce1 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_build_m5 + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_build_e_snonce2 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_build_m7 + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_registrar_nonce + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_uuid_r + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_r_hash1 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_r_hash2 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_build_wsc_done + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_wsc_start + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_enrollee_nonce + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_wsc_ack + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_wsc_nack + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_dev_pw_id + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_pubkey + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_m2 + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_m2d + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_r_snonce1 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_m4 + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_r_snonce2 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_m6 + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_cred_e + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_creds + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_ap_settings_e + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_m8 + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_wsc_msg + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_enrollee_get_msg + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_enrollee_process_msg + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_build_ap_settings + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_build_wps_state + 0x00000000 0x4b esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_build_m1 + 0x00000000 0x180 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_build_e_hash + 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_build_m3 + 0x00000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_build_e_snonce1 + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_build_m5 + 0x00000000 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_build_e_snonce2 + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_build_m7 + 0x00000000 0xdf esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_registrar_nonce + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_uuid_r + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_r_hash1 + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_r_hash2 + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_build_wsc_done + 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_wsc_start + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_enrollee_nonce + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_wsc_ack + 0x00000000 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_wsc_nack + 0x00000000 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_dev_pw_id + 0x00000000 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_pubkey + 0x00000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_m2 + 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_m2d + 0x00000000 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_r_snonce1 + 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_m4 + 0x00000000 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_r_snonce2 + 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_m6 + 0x00000000 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_cred_e + 0x00000000 0xa9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_creds + 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_ap_settings_e + 0x00000000 0xa9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_m8 + 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_wsc_msg + 0x00000000 0x155 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_enrollee_get_msg + 0x00000000 0xde esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_enrollee_process_msg + 0x00000000 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_frame 0x00000000 0x340 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_info 0x00000000 0x4800 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_abbrev 0x00000000 0x563 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_loc 0x00000000 0x1c10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_aranges + 0x00000000 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_ranges 0x00000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_line 0x00000000 0x3ee3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_str 0x00000000 0x21cd esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .xt.lit 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .xt.prop 0x00000000 0x1254 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.add_char + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .literal.sae_pk_base32_encode + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.add_char + 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.sae_pk_base32_encode + 0x00000000 0x110 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .xt.prop 0x00000000 0xa38 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .literal.config_changed_handler + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_api_lock + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_api_unlock + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_rxq_init + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_rxq_enqueue + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_rxq_dequeue + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_rxq_deinit + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_globals_reset + 0x00000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_set_eap_state + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_start_eapol_internal + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_start_eapol_timer + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_wifi_sta_enterprise_disable + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_post + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_start_eapol + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_task_delete + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_peer_sm_deinit + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_peer_sm_init + 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_client_disable_fn + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_sm_rx_eapol + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_ent_rx_eapol + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_sm_send_eapol + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_sm_process_request + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_sm_rx_eapol_internal + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_task + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_wifi_set_okc_support + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_client_enable_fn + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_wifi_sta_enterprise_enable + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_certificate_and_key + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_certificate_and_key + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_ca_cert + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_ca_cert + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_identity + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_identity + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_username + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_username + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_password + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_password + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_new_password + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_new_password + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_disable_time_check + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wifi_sta_get_enterprise_disable_time_check + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_get_disable_time_check + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_ttls_phase2_method + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_pac_file + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_fast_params + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_use_default_cert_bundle + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_domain_name + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_eap_methods + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.config_changed_handler + 0x00000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_api_lock + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_api_unlock + 0x00000000 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_rxq_init + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_rxq_enqueue + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_rxq_dequeue + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_rxq_deinit + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_globals_reset + 0x00000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_set_eap_state + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.wpa2_start_eapol_internal.str1.4 + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_start_eapol_internal + 0x00000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_start_eapol_timer + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_wifi_sta_enterprise_disable + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_post + 0x00000000 0xa5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_start_eapol + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_task_delete + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.eap_peer_sm_deinit.str1.4 + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_peer_sm_deinit + 0x00000000 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.eap_peer_sm_init.str1.4 + 0x00000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_peer_sm_init + 0x00000000 0x111 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_client_disable_fn + 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_sm_rx_eapol + 0x00000000 0x75 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_ent_rx_eapol + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_sm_send_eapol + 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.eap_sm_process_request.str1.4 + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_sm_process_request + 0x00000000 0x20e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.eap_sm_rx_eapol_internal.str1.4 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_sm_rx_eapol_internal + 0x00000000 0x121 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_task + 0x00000000 0xeb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_wifi_set_okc_support + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_client_enable_fn + 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_wifi_sta_enterprise_enable + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_certificate_and_key + 0x00000000 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_certificate_and_key + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_ca_cert + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_ca_cert + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_identity + 0x00000000 0x75 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_identity + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_username + 0x00000000 0x75 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_username + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_password + 0x00000000 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_password + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_new_password + 0x00000000 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_new_password + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_disable_time_check + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wifi_sta_get_enterprise_disable_time_check + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_get_disable_time_check + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.esp_eap_client_set_ttls_phase2_method.str1.4 + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_ttls_phase2_method + 0x00000000 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_suiteb_192bit_certification + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_pac_file + 0x00000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.esp_eap_client_set_fast_params.str1.4 + 0x00000000 0x4b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_fast_params + 0x00000000 0xe9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_use_default_cert_bundle + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_domain_name + 0x00000000 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_eap_methods + 0x00000000 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_rxq + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .data.s_disable_time_check + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wifi_wpa2_sync_sem + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_api_lock + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .data.s_wpa2_state + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_queue + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_task_hdl + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_data_lock + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .xt.lit 0x00000000 0x188 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .xt.prop 0x00000000 0x13c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .text.wpa_sm_get_beacon_ie + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xt.prop 0x00000000 0x2b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .literal.tls_mbedtls_cleanup + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_conn_delete + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_key_derivation + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_read + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_write + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_enable_sha1_config + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.set_ca_cert + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.set_pki_context + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_set_ciphersuite + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.set_client_config + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_create_mbedtls_handle + 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_prf + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_init + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_deinit + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_init + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_deinit + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_handshake + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_encrypt + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_decrypt + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_get_version + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_get_cipher + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_set_params + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_export_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_shutdown + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_get_random + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_cleanup + 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_conn_delete + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_key_derivation + 0x00000000 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_read + 0x00000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_write + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_enable_sha1_config + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.set_ca_cert + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.set_pki_context + 0x00000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_set_ciphersuite + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.set_client_config.str1.4 + 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.set_client_config + 0x00000000 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.tls_create_mbedtls_handle.str1.4 + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_create_mbedtls_handle + 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_prf + 0x00000000 0xbf esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_init + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_deinit + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_init + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_deinit + 0x00000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_errors + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_established + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_global_set_verify + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_verify + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_handshake + 0x00000000 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_server_handshake + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_encrypt + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_decrypt + 0x00000000 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_resumed + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_cipher_list + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_version + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_cipher + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_enable_workaround + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_failed + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_read_alerts + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_write_alerts + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_params + 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_global_set_params + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_session_ticket_cb + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_export_key + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_eap_fast_key + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_client_hello_ext + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_shutdown + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_random + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.__func__$0 + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.eap_mbedtls_x509_crt_profile + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .data.tls_sig_algs_for_eap + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .bss.tls_instance_count + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_frame 0x00000000 0x3e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_info 0x00000000 0x472b esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_abbrev 0x00000000 0x5ec esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_loc 0x00000000 0x10bd esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_aranges + 0x00000000 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_ranges 0x00000000 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_line 0x00000000 0x1f0e esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_str 0x00000000 0x2b09 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .xt.lit 0x00000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .xt.prop 0x00000000 0xb34 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.crypto_bignum_bits + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_to_string + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_free_buffer + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_bignum_bits + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_bignum_to_string + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_free_buffer + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .xt.lit 0x00000000 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .xt.prop 0x00000000 0x6cc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .literal.aes_siv_encrypt + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .text.aes_siv_encrypt + 0x00000000 0xbe esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .xt.prop 0x00000000 0x2dc esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .literal.dh5_init + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .literal.dh5_derive_shared + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .text.dh5_init + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .text.dh5_init_fixed + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .text.dh5_derive_shared + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .text.dh5_free + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_info 0x00000000 0x344 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_abbrev 0x00000000 0x1ab esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_loc 0x00000000 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_line 0x00000000 0x3bd esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_str 0x00000000 0x366 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .xt.prop 0x00000000 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.mbo_add_ie + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.ieee802_11_parse_candidate_list + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.ieee802_11_vendor_ie_concat + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.get_ie 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_ie_count + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.get_vendor_ie + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.mbo_add_ie + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .rodata.ieee802_11_parse_candidate_list.str1.4 + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_parse_candidate_list + 0x00000000 0x139 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_vendor_ie_concat + 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_ext_capab + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.get_operating_class + 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .data.global_op_class_size + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .rodata.global_op_class + 0x00000000 0x110 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .xt.prop 0x00000000 0x588 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.wpabuf_put_be24 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.wpabuf_put_be32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_free_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_copy_buf + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_get_eap_method + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_get_methods + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_get_type + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_phase2_type + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_phase2_types + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_alloc + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_free + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_register + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_unregister_methods + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_register_methods + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_config_init + 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_config_deinit + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_blob_init + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_get_method_name + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_blob_deinit + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_abort + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_allowed_method + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_allowMethod + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_build_identity_resp + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_build_nak + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request_identity + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request_new_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_buildIdentity + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_identity + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_password2 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_new_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_set_config_blob + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_blob + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_config_allowed_method + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_allowed_phase2_type + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_set_scard_pin + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_get_scard_identity + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.wpabuf_put_be24 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.wpabuf_put_be32 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_free_key + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_copy_buf + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_eap_method + 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_methods + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_type + 0x00000000 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_phase2_type + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_phase2_types + 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_alloc + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_free + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_register + 0x00000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_unregister_methods + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_register_methods + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_deinit_prev_method + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_peer_config_init.str1.4 + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_config_init + 0x00000000 0x1ee esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_config_deinit + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_peer_blob_init.str1.4 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_blob_init + 0x00000000 0x132 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_sm_get_method_name.str1.4 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_get_method_name + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_blob_deinit + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_abort + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_allowed_method + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_allowMethod + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_build_identity_resp + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_build_nak + 0x00000000 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request + 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_identity + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_password + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_new_password + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_buildIdentity + 0x00000000 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_identity + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_password + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_password2 + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_new_password + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_set_config_blob + 0x00000000 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_blob + 0x00000000 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.config_methods + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.eap_methods + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .data.g_eap_method_mask + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_domain_match + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.esp_crt_bundle_attach_fn + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_default_cert_bundle + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_suiteb_certification + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_pac_file_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_pac_file + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_phase1_options + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ttls_phase2_type + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_new_password_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_new_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_password_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ca_cert_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ca_cert + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_passwd_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_passwd + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_client_cert_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_client_cert + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_username_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_username + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_anonymous_identity_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_anonymous_identity + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_frame 0x00000000 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_info 0x00000000 0x2679 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_abbrev 0x00000000 0x558 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_loc 0x00000000 0xf9b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_aranges + 0x00000000 0x168 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_ranges 0x00000000 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_line 0x00000000 0x29a3 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_str 0x00000000 0x14da esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .xt.lit 0x00000000 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .xt.prop 0x00000000 0x1098 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_mschapv2_getKey + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_check_config + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_copy_challenge + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_challenge_reply + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_challenge + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_password_changed + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_success + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_deinit + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_failure_txt + 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_change_password + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_failure + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_process + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_init + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_peer_mschapv2_register + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_check_mslen + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_isKeyAvailable + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_getKey + 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_check_config + 0x00000000 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_copy_challenge + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_challenge_reply + 0x00000000 0x11e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_challenge + 0x00000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_password_changed + 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_success + 0x00000000 0x8b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_deinit + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .rodata.eap_mschapv2_failure_txt.str1.4 + 0x00000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_failure_txt + 0x00000000 0x166 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_change_password + 0x00000000 0x1d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_failure + 0x00000000 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_process + 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_init + 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .rodata.eap_peer_mschapv2_register.str1.4 + 0x00000000 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_peer_mschapv2_register + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_frame 0x00000000 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_info 0x00000000 0x27bf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_abbrev 0x00000000 0x4d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_loc 0x00000000 0x1189 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_aranges + 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_ranges 0x00000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_line 0x00000000 0x2274 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_str 0x00000000 0x1173 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .xt.prop 0x00000000 0x918 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_peap_get_session_id + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_free_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_init_for_reauth + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_deinit_for_reauth + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_has_reauth_data + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_get_status + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_get_emsk + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_getKey + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.wpabuf_put_be32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.wpabuf_put_be16 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peapv2_tlv_eap_payload + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_get_isk + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_build_nak + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_derive_cmk + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_validate_cryptobinding + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.peap_phase2_sufficient + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_add_cryptobinding + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_build_result + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_process + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_phase2_request + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_decrypt + 0x00000000 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_process + 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_deinit + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_parse_phase1 + 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_init + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peer_peap_register + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_isKeyAvailable + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_session_id + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_free_key + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_init_for_reauth + 0x00000000 0x65 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_deinit_for_reauth + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_has_reauth_data + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_get_status.str1.4 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_status + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_emsk + 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata 0x00000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_getKey.str1.4 + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_getKey + 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.wpabuf_put_be32 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.wpabuf_put_be16 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peapv2_tlv_eap_payload + 0x00000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_isk + 0x00000000 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_build_nak + 0x00000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_derive_cmk.str1.4 + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_derive_cmk + 0x00000000 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_validate_cryptobinding + 0x00000000 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.peap_phase2_sufficient + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_add_cryptobinding + 0x00000000 0xbe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_build_result + 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_process + 0x00000000 0x175 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_phase2_request + 0x00000000 0x1aa esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_decrypt + 0x00000000 0x3d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_process.str1.4 + 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_process + 0x00000000 0x236 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_deinit + 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_parse_phase1.str1.4 + 0x00000000 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_parse_phase1 + 0x00000000 0xfc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_init.str1.4 + 0x00000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_init + 0x00000000 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peer_peap_register.str1.4 + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peer_peap_register + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_frame 0x00000000 0x2b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_info 0x00000000 0x3cbe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_abbrev 0x00000000 0x4dd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_loc 0x00000000 0x1b96 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_aranges + 0x00000000 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_ranges 0x00000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_line 0x00000000 0x412f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_str 0x00000000 0x13e9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .xt.lit 0x00000000 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .xt.prop 0x00000000 0x10c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.peap_prfplus + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .text.peap_prfplus + 0x00000000 0xbd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_info 0x00000000 0x360 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_abbrev 0x00000000 0x164 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_loc 0x00000000 0x163 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_line 0x00000000 0x59f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_str 0x00000000 0x302 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .literal.eap_tls_getKey + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_failure + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_free_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_success + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_process + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_deinit + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_init + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_peer_tls_register + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_isKeyAvailable + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_getKey + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_failure + 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_free_key + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .rodata.eap_tls_success.str1.4 + 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_success + 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_process + 0x00000000 0x16c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_deinit + 0x00000000 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_init + 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .rodata.eap_peer_tls_register.str1.4 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_peer_tls_register + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_info 0x00000000 0x1547 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_abbrev 0x00000000 0x3fb esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_loc 0x00000000 0x4bd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_line 0x00000000 0xeac esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_str 0x00000000 0xd43 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_params_flags + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_params_from_conf1 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_check_blob + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_params_from_conf + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_init_connection + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.wpabuf_put_be32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_msg_alloc + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_ssl_init + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_derive_key + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_derive_session_id + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_build_ack + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_status + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_process_init + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reset_input + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reassemble_fragment + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_data_reassemble + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_process_input + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reset_output + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_ssl_deinit + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_process_output + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_process_helper + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reauth_init + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_decrypt + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_encrypt + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_select_phase2_methods + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_phase2_nak + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_tls_params_flags.str1.4 + 0x00000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_params_flags + 0x00000000 0x6b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_params_from_conf1 + 0x00000000 0x8f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_check_blob + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_params_from_conf + 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_init_connection + 0x00000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.wpabuf_put_be32 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_msg_alloc + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_peer_tls_ssl_init.str1.4 + 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_ssl_init + 0x00000000 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_derive_key + 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_peer_tls_derive_session_id.str1.4 + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_derive_session_id + 0x00000000 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_build_ack + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_peer_tls_status.str1.4 + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_status + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_process_init + 0x00000000 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reset_input + 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reassemble_fragment + 0x00000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_data_reassemble + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_process_input + 0x00000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reset_output + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_ssl_deinit + 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_tls_process_output.str1.4 + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_process_output + 0x00000000 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_peer_tls_process_helper.str1.4 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_process_helper + 0x00000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reauth_init + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_decrypt + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_encrypt + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_select_phase2_methods + 0x00000000 0x101 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_phase2_nak + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_frame 0x00000000 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_info 0x00000000 0x2bf1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_abbrev 0x00000000 0x512 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_loc 0x00000000 0x1149 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_aranges + 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_ranges 0x00000000 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_line 0x00000000 0x287b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_str 0x00000000 0x13db esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .xt.lit 0x00000000 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .xt.prop 0x00000000 0xc48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_ttls_fake_identity_request + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_get_emsk + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_get_session_id + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_getKey + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_free_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_init_for_reauth + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_deinit_for_reauth + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_has_reauth_data + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_get_status + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_eap_process + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_encrypt_response + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_eap_method + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_avp_hdr + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_avp_encapsulate + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_eap + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_avp_add + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_pap + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_implicit_challenge + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_mschapv2 + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_mschap + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_chap + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_implicit_identity_request + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_phase2_eap + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_start + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_parse_attr_eap + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_parse_avp + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_parse_avps + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_phase2_mschapv2 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_decrypted + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_decrypt + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_v0_derive_key + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_handshake + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_deinit + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_init + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_peer_ttls_register + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_eap_deinit + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_select_eap_method + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_check_auth_status + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_isKeyAvailable + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_fake_identity_request + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_emsk + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_session_id + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_getKey + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_free_key + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_init_for_reauth + 0x00000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_deinit_for_reauth + 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_has_reauth_data + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_get_status.str1.4 + 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_status + 0x00000000 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_eap_process + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_encrypt_response + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_eap_method + 0x00000000 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_avp_hdr + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_avp_encapsulate + 0x00000000 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_eap + 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_avp_add + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_pap + 0x00000000 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_implicit_challenge.str1.4 + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_implicit_challenge + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_mschapv2 + 0x00000000 0x181 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_mschap + 0x00000000 0x146 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_chap + 0x00000000 0x109 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_phase2_request.str1.4 + 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request + 0x00000000 0xd7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_implicit_identity_request + 0x00000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_phase2_eap + 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_start + 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_parse_attr_eap + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_parse_avp + 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_parse_avps + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_phase2_mschapv2 + 0x00000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_decrypted + 0x00000000 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_decrypt + 0x00000000 0x122 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_v0_derive_key.str1.4 + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_v0_derive_key + 0x00000000 0x65 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_handshake + 0x00000000 0x15c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process + 0x00000000 0xba esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_deinit + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_init.str1.4 + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_init + 0x00000000 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_peer_ttls_register.str1.4 + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_peer_ttls_register + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_frame 0x00000000 0x3e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_info 0x00000000 0x4551 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_abbrev 0x00000000 0x4d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_loc 0x00000000 0x2335 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_aranges + 0x00000000 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_ranges 0x00000000 0x180 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_line 0x00000000 0x42d7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_str 0x00000000 0x15e7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .xt.lit 0x00000000 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .xt.prop 0x00000000 0x1470 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.mschapv2_derive_response + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .literal.mschapv2_verify_auth_response + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_remove_domain + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_derive_response + 0x00000000 0xda esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_verify_auth_response + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_info 0x00000000 0x5ae esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_abbrev 0x00000000 0x171 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_loc 0x00000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_line 0x00000000 0x6ad esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_str 0x00000000 0x44d esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .xt.prop 0x00000000 0x18c esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .literal.wps_process_cred_ssid + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_process_cred_network_key + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_process_cred_mac_addr + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_workaround_cred_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_process_authenticator + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_process_key_wrap_auth + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_process_cred + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_process_ap_settings + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_cred_network_idx + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_cred_auth_type + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_cred_encr_type + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_cred_network_key_idx + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_cred_ssid + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_cred_network_key + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_cred_mac_addr + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_workaround_cred_key + 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_authenticator + 0x00000000 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_key_wrap_auth + 0x00000000 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_cred + 0x00000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_ap_settings + 0x00000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_frame 0x00000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_info 0x00000000 0x1aed esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_abbrev 0x00000000 0x3b4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_loc 0x00000000 0x588 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_aranges + 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_line 0x00000000 0xd4f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_str 0x00000000 0x1075 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .xt.prop 0x00000000 0x480 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.challenge_hash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_password_hash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.hash_nt_password_hash + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.challenge_response + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_nt_response + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_nt_response_pwhash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_authenticator_response_pwhash + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_authenticator_response + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_challenge_response + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.get_master_key + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.get_asymetric_start_key + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.encrypt_pw_block_with_password_hash + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.new_password_encrypted_with_old_nt_password_hash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_password_hash_encrypted_with_block + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.old_nt_password_hash_encrypted_with_new_nt_password_hash + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.utf8_to_ucs2 + 0x00000000 0xc5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.challenge_hash + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_password_hash + 0x00000000 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.hash_nt_password_hash + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.challenge_response + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_nt_response + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_nt_response_pwhash + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_authenticator_response_pwhash + 0x00000000 0x89 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_authenticator_response + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_challenge_response + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.get_master_key + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.get_asymetric_start_key + 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.encrypt_pw_block_with_password_hash + 0x00000000 0x83 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.new_password_encrypted_with_old_nt_password_hash + 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_password_hash_encrypted_with_block + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.old_nt_password_hash_encrypted_with_new_nt_password_hash + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.shs_pad2$0 + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic2$1 + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic3$2 + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.shs_pad1$3 + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic1$4 + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic2$5 + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic1$6 + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_frame 0x00000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_info 0x00000000 0x129e esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_abbrev 0x00000000 0x287 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_loc 0x00000000 0x761 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_line 0x00000000 0x105c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_str 0x00000000 0x6c3 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .xt.prop 0x00000000 0x654 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.MD4Init + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Transform + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Update + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Pad + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Final + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.md4_vector + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Init 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Transform + 0x00000000 0x454 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Update + 0x00000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Pad 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Final + 0x00000000 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.md4_vector + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .rodata.PADDING + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_info 0x00000000 0x60e esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_abbrev 0x00000000 0x1c9 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_loc 0x00000000 0x43c esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_line 0x00000000 0xab9 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_str 0x00000000 0x3f2 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .xt.prop 0x00000000 0x1bc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.chap_md5 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .text.chap_md5 + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_info 0x00000000 0x1d1 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_abbrev 0x00000000 0x10b esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_loc 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_line 0x00000000 0x356 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_str 0x00000000 0x2c4 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .literal.desfunc + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.cookey + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.deskey + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_encrypt + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_key_setup + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_block_encrypt + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_block_decrypt + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_key_setup + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_encrypt + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_decrypt + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.desfunc 0x00000000 0x1e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.cookey 0x00000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.deskey 0x00000000 0x16c esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_encrypt + 0x00000000 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_key_setup + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_block_encrypt + 0x00000000 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_block_decrypt + 0x00000000 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_key_setup + 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_encrypt + 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_decrypt + 0x00000000 0x99 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP8 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP7 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP6 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP5 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP4 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP3 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP2 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP1 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.pc2 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.totrot + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.pc1 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.bigbyte + 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.bytebit + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_info 0x00000000 0xe4c esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_abbrev 0x00000000 0x2ed esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_loc 0x00000000 0xf47 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_line 0x00000000 0x1b81 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_str 0x00000000 0x47c esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .xt.prop 0x00000000 0x3b4 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.esp_coex_internal_semphr_take_wrapper + 0x00000000 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_internal_semphr_give_wrapper + 0x00000000 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_internal_semphr_delete_wrapper + 0x00000000 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.9.literal + 0x00000000 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.8.literal + 0x00000000 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_internal_semphr_create_wrapper + 0x00000000 0xc esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .data 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.7 0x00000000 0x10 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coexist_debug_matrix_init_wrapper + 0x00000000 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_take_wrapper + 0x00000000 0x21 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_give_wrapper + 0x00000000 0x15 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_delete_wrapper + 0x00000000 0x1a esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.9 0x00000000 0x11 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.8 0x00000000 0x14 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_create_wrapper + 0x00000000 0x24 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .data.g_coex_adapter_funcs + 0x00000000 0x50 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .xt.prop 0x00000000 0x4e0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.sc_printf + 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .literal.core_printf + 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .literal.target_printf + 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .literal.wapi_printf + 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .literal.mesh_printf + 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.sc_printf.str1.4 + 0x00000000 0xc esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.sc_printf + 0x00000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.core_printf.str1.4 + 0x00000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.core_printf + 0x00000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.target_printf.str1.4 + 0x00000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.target_printf + 0x00000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.wapi_printf.str1.4 + 0x00000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.wapi_printf + 0x00000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.mesh_printf.str1.4 + 0x00000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.mesh_printf + 0x00000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .xt.prop 0x00000000 0x1bc esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + .xt.prop 0x00000000 0x18 esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + .text 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .data 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .bss 0x00000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .xt.prop 0x00000000 0xd8 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .literal.pk_get_type_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_get_ec_group_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_pubkey + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_param + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_rsa_der + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_private + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_rfc8410_der + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_der + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey_der + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_key_der + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey_pem + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_key_pem + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_get_type_ext + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_get_ec_group_id + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_pubkey + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_param + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_rsa_der + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_private + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_rfc8410_der + 0x00000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_der + 0x00000000 0x104 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey_der + 0x00000000 0x126 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_key_der + 0x00000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata.mbedtls_pk_write_pubkey_pem.str1.4 + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey_pem + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata.mbedtls_pk_write_key_pem.str1.4 + 0x00000000 0xbd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_key_pem + 0x00000000 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_frame 0x00000000 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_info 0x00000000 0x17e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_abbrev 0x00000000 0x3ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_loc 0x00000000 0xaf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_ranges 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_line 0x00000000 0x13cf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_str 0x00000000 0x92f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xt.prop 0x00000000 0x510 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.misc_nvs_load + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .literal.misc_nvs_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .literal.misc_nvs_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .literal.misc_nvs_restore + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .text.misc_nvs_restore + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .bss.g_log_mod + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .rodata.str1.1 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .data.libcore_reversion_git + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .xt.lit 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .xt.prop 0x00000000 0x15c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .literal.mt_recv_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_send_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_clear_lmk + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_get_lmk + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_get_key_idx$constprop$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_set_lmk + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_copy_peer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_register_recv_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_unregister_recv_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_register_send_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_unregister_send_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_send + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_del_peer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_mod_peer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_get_peer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_fetch_peer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_is_peer_exist + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_add_peer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_get_peer_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_get_version + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_set_pmk + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_set_wake_window + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_set_peer_rate_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_set_user_oui + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.mt_get_user_oui + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_recv_cb + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_send_cb.str1.1 + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_send_cb + 0x00000000 0x9a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_clear_lmk + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_get_lmk.str1.1 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_get_lmk + 0x00000000 0x66 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_get_key_idx$constprop$0.str1.1 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_get_key_idx$constprop$0 + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_set_lmk.str1.1 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_set_lmk + 0x00000000 0x142 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_copy_peer.str1.1 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_copy_peer + 0x00000000 0xbe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_init.str1.1 + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_init 0x00000000 0xe7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_deinit.str1.1 + 0x00000000 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_deinit + 0x00000000 0x1a1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_register_recv_cb.str1.1 + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_register_recv_cb + 0x00000000 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_unregister_recv_cb + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_register_send_cb.str1.1 + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_register_send_cb + 0x00000000 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_unregister_send_cb + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_send.str1.1 + 0x00000000 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_send 0x00000000 0x122 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_del_peer.str1.1 + 0x00000000 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_del_peer + 0x00000000 0xe1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_mod_peer.str1.1 + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_mod_peer + 0x00000000 0x19e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_get_peer.str1.1 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_get_peer + 0x00000000 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_fetch_peer + 0x00000000 0x90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_is_peer_exist + 0x00000000 0x66 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_add_peer.str1.1 + 0x00000000 0x12e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_add_peer + 0x00000000 0x38f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_get_peer_num.str1.1 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_get_peer_num + 0x00000000 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_get_version.str1.1 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_get_version + 0x00000000 0x4f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_set_pmk.str1.1 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_set_pmk + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_set_wake_window + 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_set_peer_rate_config.str1.1 + 0x00000000 0x152 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_set_peer_rate_config + 0x00000000 0x2dd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_set_user_oui + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .rodata.mt_get_user_oui.str1.1 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .text.mt_get_user_oui + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .data.g_mt_version + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .bss.g_mt 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .xt.lit 0x00000000 0xd8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .xt.prop 0x00000000 0x1044 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .literal.esp_mesh_ps_duty_ext_get_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_announce + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_yield + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_fixed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_gone + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ps + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_ext_assoc_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_sync_interface_tsf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ext_assoc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free$part$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed$part$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_my_ie_encrypted + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_ssid_len + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_coding_ie_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_encrypt_vnd_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_assoc_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_decrypt_vnd_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_check_vnd_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_set_ie_crypto_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_get + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_sta_monitor_rssi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_reject_connection + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_change_beacon_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_get + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_ie_esp_mesh_head + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ssid_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ext_assoc_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ps_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_duty_signaling + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_init_mesh_assoc_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.roots_type2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_malloc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_num_reach_max + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_reset_window_open_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_announce + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_get + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_valid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce_used + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield_used + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_fixed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_gone + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_get_vnd_roots_len + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_roots_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_stop_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_close_expire + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_open_expire + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_fixed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_gone + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.print_roots_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_duty_signaling + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_ps_set_new_duty + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_post_event + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_master_is_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_parse_ps_entire_rule + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_parse_ps_uplink_rule + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_check_duration_expire + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_set_master_identity + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_clr_master_identity + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_clr_remaining + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_set_remaining + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_check_allowed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_cycle_set_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_ps_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_recv_mesh_duty_signaling + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_process_remaining + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_root_process_duty_duration_expire + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_cycle_get_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_found + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_invalid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_is_ie_ignored + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_is_same_router + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_conflict_root_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_check_roots_gone + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_announce + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_conflict_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_remove_conflict_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_yield + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_conflict_table + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_find_conflict_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_update_conflict_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_add_conflict_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_found_conflict_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_remove_gone + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_gone + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie_ttl + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_yield + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_root_process_roots_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_parse_conflict_roots_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_roots_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_check_conflict_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_assoc_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_clear_parent_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_switch_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_weak_rssi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_assoc_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_candidate_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_monitor_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_monitor_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_get_sub_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_set_flag_roots_found + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_roots_len + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_probe_response + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_vote_candidate_rssi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_beacon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_set_rssi_threshold + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_get_rssi_threshold + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_init_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_deinit_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_zero_addr + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_ext_assoc_len + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_ext_get_process + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ssid + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_announce + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_yield + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_fixed + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_gone + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ps + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_ext_assoc_ie + 0x00000000 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_sync_interface_tsf + 0x00000000 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ext_assoc + 0x00000000 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_free$part$0 + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_fixed$part$0 + 0x00000000 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_my_ie_encrypted + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_ssid_len + 0x00000000 0x6e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_coding_ie_key + 0x00000000 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_encrypt_vnd_ie + 0x00000000 0x86 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_assoc_ie + 0x00000000 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_decrypt_vnd_ie + 0x00000000 0x86 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_check_vnd_ie + 0x00000000 0x85 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_set_ie_crypto_config + 0x00000000 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_mesh_quick_set + 0x00000000 0x1da C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.ieee80211_mesh_quick_set + 0x00000000 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_mesh_quick_get + 0x00000000 0x13e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.ieee80211_mesh_quick_get + 0x00000000 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_sta_monitor_rssi + 0x00000000 0x142 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_reject_connection + 0x00000000 0xc5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_change_beacon_interval + 0x00000000 0x8c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_quick_set + 0x00000000 0x1a0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_quick_get + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.ieee80211_add_ie_esp_mesh_head.str1.1 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_ie_esp_mesh_head + 0x00000000 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ssid_ie + 0x00000000 0xe6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ext_assoc_ie + 0x00000000 0x8e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ps_ie + 0x00000000 0x8e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.ieee80211_add_mesh_duty_signaling.str1.1 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_duty_signaling + 0x00000000 0xda C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_init_mesh_assoc_ie + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.roots_type2str.str1.1 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.roots_type2str + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_free + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_malloc + 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._print_roots_count + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_num_reach_max + 0x00000000 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_reset_window_open_time + 0x00000000 0x7b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_announce + 0x00000000 0x275 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_fixed + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_roots_get + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_valid + 0x00000000 0xb0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce + 0x00000000 0xa5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce_used + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield_used + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_fixed + 0x00000000 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_gone + 0x00000000 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_get_vnd_roots_len + 0x00000000 0x8b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_roots_ie + 0x00000000 0x11c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_stop_beacon + 0x00000000 0xdb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata._mesh_check_window_close_expire.str1.1 + 0x00000000 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_check_window_close_expire + 0x00000000 0x17e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_check_window_open_expire + 0x00000000 0x194 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_fixed + 0x00000000 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_gone + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.print_roots_ie + 0x00000000 0x27b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_duty_signaling + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_ps_set_new_duty + 0x00000000 0x9a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_post_event + 0x00000000 0xce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_master_is_root + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.mesh_parse_ps_entire_rule.str1.1 + 0x00000000 0xe2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_parse_ps_entire_rule + 0x00000000 0x460 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.mesh_parse_ps_uplink_rule.str1.1 + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_parse_ps_uplink_rule + 0x00000000 0x1f1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_check_duration_expire + 0x00000000 0x4b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_set_master_identity + 0x00000000 0xba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_clr_master_identity + 0x00000000 0x114 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_clr_remaining + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_set_remaining + 0x00000000 0x9b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_check_allowed + 0x00000000 0x1e0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_cycle_set_process + 0x00000000 0x290 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_ps_ie + 0x00000000 0x272 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_recv_mesh_duty_signaling + 0x00000000 0x110 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.mesh_nwk_duty_process_remaining.str1.1 + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_process_remaining + 0x00000000 0x2e9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_root_process_duty_duration_expire + 0x00000000 0xaa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.esp_mesh_ps_duty_cycle_get_process.str1.1 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_cycle_get_process + 0x00000000 0x163 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_is_new_root_found + 0x00000000 0x1a0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_is_new_root_invalid + 0x00000000 0x90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_is_ie_ignored + 0x00000000 0x7c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_is_same_router + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_conflict_root_state + 0x00000000 0x266 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata._mesh_check_roots_gone.str1.1 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_check_roots_gone + 0x00000000 0xec C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_announce + 0x00000000 0x12c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata._mesh_timer_process_conflict_root.str1.1 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_conflict_root + 0x00000000 0x130 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_remove_conflict_root + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata._mesh_roots_process_yield.str1.1 + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_yield + 0x00000000 0x144 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_conflict_table + 0x00000000 0xe9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_find_conflict_root + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_update_conflict_root + 0x00000000 0xd4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.esp_mesh_add_conflict_root.str1.1 + 0x00000000 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_add_conflict_root + 0x00000000 0x1a3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_is_new_found_conflict_root + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.ieee80211_vnd_mesh_roots_set.str1.1 + 0x00000000 0x5f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_roots_set + 0x00000000 0x4fb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_remove_gone + 0x00000000 0x51 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_gone + 0x00000000 0x17a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata._mesh_roots_process_stop.str1.1 + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_stop + 0x00000000 0x138 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_process_roots_ie_ttl + 0x00000000 0xae C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata._mesh_timer_process_yield.str1.1 + 0x00000000 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_yield + 0x00000000 0x20c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.mesh_root_process_roots_ie.str1.1 + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_root_process_roots_ie + 0x00000000 0x30e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_process_roots_ie + 0x00000000 0x360 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_parse_conflict_roots_ie + 0x00000000 0x464 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_conflict_roots_ie + 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_check_conflict_beacon + 0x00000000 0xe1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.esp_mesh_parse_conflict_assoc_ie.str1.1 + 0x00000000 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_conflict_assoc_ie + 0x00000000 0x498 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_set_parent_candidate + 0x00000000 0xe0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_clear_parent_candidate + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_candidate + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.mesh_post_parent_switch_candidate.str1.1 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_switch_candidate + 0x00000000 0x333 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_weak_rssi + 0x00000000 0x18a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_assoc_ie + 0x00000000 0xcf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_parent_candidate_ie + 0x00000000 0x240 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_set_parent_monitor_config + 0x00000000 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_monitor_config + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_get_sub_ie + 0x00000000 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_set_flag_roots_found + 0x00000000 0xca C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_roots_len + 0x00000000 0x2a2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_parent_ie + 0x00000000 0x412 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_probe_response + 0x00000000 0x10e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_vote_candidate_rssi + 0x00000000 0xfc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_beacon + 0x00000000 0x146 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_set_rssi_threshold + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_get_rssi_threshold + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_quick_funcs_init + 0x00000000 0x1aa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_init_cb + 0x00000000 0x9b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_quick_funcs_deinit + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_deinit_cb + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.str1.1 + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.CSWTCH$683 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.rx_bcn_count$0 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.monitor_count$1 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.last_parent_layer$2 + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.mesh_sub_ie$3 + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .data.candidate_rssi$4 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.monitor_time_start$5 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.__func__$6 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.post_event_time$7 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.signaling_token$8 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.__func__$9 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.max_ie_len$11 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.roots_found_time$12 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.is_roots_found$13 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.post_event_time$14 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.__func__$15 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.__func__$16 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.__func__$17 + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.36 + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.35 + 0x00000000 0x77 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_info.34 + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_parent_worse_rssi_time + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.33 + 0x00000000 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_info.32 + 0x00000000 0x99 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.31 + 0x00000000 0xa0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.30 + 0x00000000 0xa3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.29 + 0x00000000 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.28 + 0x00000000 0x89 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_info.27 + 0x00000000 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_info.26 + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.25 + 0x00000000 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.24 + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.23 + 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.22 + 0x00000000 0x51 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.21 + 0x00000000 0x6e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_info.20 + 0x00000000 0x85 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.19 + 0x00000000 0x61 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.18 + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.17 + 0x00000000 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.16 + 0x00000000 0x5f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.15 + 0x00000000 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.14 + 0x00000000 0x43 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.13 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.12 + 0x00000000 0x6e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.11 + 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.10 + 0x00000000 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.9 + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.8 + 0x00000000 0x75 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.7 + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.6 + 0x00000000 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_error.5 + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.4 + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.3 + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_error.2 + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.esp_mesh_remain_nwk_duty + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_ps_device_duty_type + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_ps_parent_duty_type + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_ps_device_duty + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_ps_parent_duty + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.wifi_vnd_ext_mesh_roots + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_conflict_roots + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_roots_ie_life + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_assoc_time + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_weak_time + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_parent_candidate + 0x00000000 0xb8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_rssi_threshold + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_monitor_parent_cfg + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_recv_bcn_count + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_is_probe_requested + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.iv 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_ie_crypto_funcs + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_ie_crypto_key + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .data.g_mesh_monitor_parent_beacon_count + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .data.MESH_BCAST_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .xt.lit 0x00000000 0x3d0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .xt.prop 0x00000000 0x4bc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_mutex_lock + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.mesh_mutex_unlock + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_mbox + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_free_mbox + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.mesh_malloc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.mesh_free + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_context + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_free_context + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.mesh_create_task + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.wifi_event_id2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.nwk_event_id2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.tx_msg_id2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.tx_state_id2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.discnx_reason_id2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.mesh_ie_type2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.scan_status2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.vote_done2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.vote_start2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.txq_opr2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.tx_wifi_err2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.io_cfg2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.opt_type2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.reconnect_type2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.dutytype2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_mutex_lock + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_mutex_unlock + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.esp_mesh_create_mbox.str1.1 + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.esp_mesh_create_mbox + 0x00000000 0x99 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.esp_mesh_free_mbox + 0x00000000 0x8a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_malloc + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_free + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.esp_mesh_create_context + 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.esp_mesh_free_context + 0x00000000 0x8a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_create_task + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.wifi_event_id2str.str1.1 + 0x00000000 0x339 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.wifi_event_id2str + 0x00000000 0x166 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.wifi_event_id2str + 0x00000000 0x108 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.nwk_event_id2str.str1.1 + 0x00000000 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.nwk_event_id2str + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.tx_msg_id2str.str1.1 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.tx_msg_id2str + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.tx_state_id2str.str1.1 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.tx_state_id2str + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.discnx_reason_id2str.str1.1 + 0x00000000 0x145 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.discnx_reason_id2str + 0x00000000 0x151 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.discnx_reason_id2str + 0x00000000 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_ie_type2str + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.scan_status2str + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.vote_done2str.str1.1 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.vote_done2str + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.vote_start2str + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.txq_opr2str + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.tx_wifi_err2str + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.io_cfg2str + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.opt_type2str + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.reconnect_type2str + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.dutytype2str.str1.1 + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.dutytype2str + 0x00000000 0xbc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.dutytype2str + 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.str1.1 + 0x00000000 0x89e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$75 + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$73 + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$71 + 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$69 + 0x00000000 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$67 + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$65 + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$63 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$61 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$59 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$56 + 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$54 + 0x00000000 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$52 + 0x00000000 0xc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .bss.strid$0 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.__func__$1 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.__func__$2 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .xt.lit 0x00000000 0xc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .xt.prop 0x00000000 0xd08 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_get_rx_pending + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_ie_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_wifi_event_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_wifi_event_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_stop_recv + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_parse_option + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_add_option + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_chain_header_add_ttl + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_send_process_topo + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_send_process_flag + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_wait + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_signal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_send_mgmt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_send + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_recv_add_option + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_recv_process_flag + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_recv + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_recv + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_encrypt_ie_plain_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_router + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_router + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_set_id + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_id + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_id + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_type + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_type + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_max_layer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_password + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_authmode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_authmode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_connections + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_connections + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_non_mesh_connections + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_non_mesh_connections + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_layer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_parent_bssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_print_rxQ_waiting + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_myself_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_tcpip_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_flush_tcpip_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_recv_release + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_recv_toDS + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_max_layer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_self_organized + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_self_organized + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_set_parent + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_parent + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_waive_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_waive_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_send_stop_vote + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_send_stop_vote + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_vote_percentage + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_vote_percentage + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_addr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_attempts + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_attempts + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_xmit_state_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_total_node_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_switch_parent_paras + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_switch_parent_paras + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_xon_qsize + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_xon_qsize + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_group + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_insert_group_addr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_addr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_group_id + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_id + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_list + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_capacity_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_capacity_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_ie_encrypted + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_funcs + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_funcs + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_ie_crypto_key + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_root_healing_delay + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_healing_delay + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_passive_scan_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_passive_scan_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_fix_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_root_fixed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_announce_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_announce_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_list + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_switch_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_look_for_network + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_topology + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_topology + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_device_active + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_enable_ps + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_disable_ps + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_ps_enabled + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_ps_get_duties + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_get_rx_pending.str1.1 + 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_rx_pending + 0x00000000 0x136 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_ie_init + 0x00000000 0x11c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.mesh_wifi_event_init.str1.1 + 0x00000000 0x71 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_wifi_event_init + 0x00000000 0xce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_wifi_event_deinit + 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_init + 0x00000000 0x23c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.mesh_stop_recv.str1.1 + 0x00000000 0x9f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_stop_recv + 0x00000000 0x1ba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_parse_option + 0x00000000 0x110 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.mesh_parse_option + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_add_option + 0x00000000 0x10c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_chain_header_add_ttl + 0x00000000 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_send_process_topo + 0x00000000 0x51 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_send_process_flag + 0x00000000 0x135 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_send_sem_wait + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_send_sem_signal + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_send_mgmt + 0x00000000 0x2ba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_send.str1.1 + 0x00000000 0xd4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_send + 0x00000000 0x66d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_send + 0x00000000 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_recv_add_option + 0x00000000 0x162 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_recv_process_flag + 0x00000000 0xd4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_recv + 0x00000000 0x3b0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_recv.str1.1 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_recv + 0x00000000 0x164 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.mesh_encrypt_ie_plain_key.str1.1 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_encrypt_ie_plain_key + 0x00000000 0x112 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_config + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_router + 0x00000000 0xb4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_router + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_set_id + 0x00000000 0xd8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_id + 0x00000000 0x152 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_id + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_type + 0x00000000 0xb4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_type + 0x00000000 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_max_layer + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_set_ap_password.str1.1 + 0x00000000 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_password + 0x00000000 0xce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_authmode + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_ap_authmode + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_set_ap_connections.str1.1 + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_connections + 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_ap_connections + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_set_non_mesh_connections.str1.1 + 0x00000000 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_non_mesh_connections + 0x00000000 0x7d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_set_config.str1.1 + 0x00000000 0xf7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_config + 0x00000000 0x492 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_non_mesh_connections + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_layer + 0x00000000 0x65 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_parent_bssid + 0x00000000 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_root + 0x00000000 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_print_rxQ_waiting.str1.1 + 0x00000000 0x8b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_print_rxQ_waiting + 0x00000000 0x1e6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_push_to_myself_queue + 0x00000000 0x216 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_push_to_tcpip_queue.str1.1 + 0x00000000 0x158 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_push_to_tcpip_queue + 0x00000000 0x385 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_flush_tcpip_queue + 0x00000000 0x9b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_recv_release + 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_recv_toDS + 0x00000000 0x1d8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_max_layer + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_self_organized + 0x00000000 0x6d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_self_organized + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.mesh_set_parent.str1.1 + 0x00000000 0x1b8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_set_parent + 0x00000000 0x61c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_set_parent.str1.1 + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_parent + 0x00000000 0x15a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_waive_root + 0x00000000 0x99 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_waive_root + 0x00000000 0xa4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.mesh_send_stop_vote.str1.1 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_send_stop_vote + 0x00000000 0x19a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_send_stop_vote + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_vote_percentage + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_vote_percentage + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_root_addr + 0x00000000 0xaa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_attempts + 0x00000000 0xae C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_attempts + 0x00000000 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_push_to_xmit_state_queue + 0x00000000 0xb0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_stop.str1.1 + 0x00000000 0x26b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_stop + 0x00000000 0x6be C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_deinit + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_start + 0x00000000 0x20a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_total_node_num + 0x00000000 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_switch_parent_paras + 0x00000000 0xb8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_switch_parent_paras + 0x00000000 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_xon_qsize + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_xon_qsize + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_my_group + 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_insert_group_addr + 0x00000000 0x13a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_addr + 0x00000000 0x1a6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_group_id + 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_id + 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_group_num + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_group_list + 0x00000000 0x86 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_capacity_num + 0x00000000 0x87 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_capacity_num + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_my_ie_encrypted + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_set_ie_crypto_funcs + 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_set_ie_crypto_funcs.str1.1 + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_funcs + 0x00000000 0x107 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_set_ie_crypto_key + 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_set_ie_crypto_key.str1.1 + 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_key + 0x00000000 0x193 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_ie_crypto_key + 0x00000000 0xde C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_root_healing_delay + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_root_healing_delay + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_passive_scan_time + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_passive_scan_time + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_fix_root + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_root_fixed + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_announce_interval + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_announce_interval + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_num + 0x00000000 0xea C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_list + 0x00000000 0x12a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_switch_channel.str1.1 + 0x00000000 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_switch_channel + 0x00000000 0x11a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_look_for_network + 0x00000000 0x5d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_topology + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_topology + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_device_active + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_enable_ps + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_disable_ps + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_ps_enabled + 0x00000000 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_ps_get_duties + 0x00000000 0xe4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$0 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$1 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$2 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$3 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$4 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$5 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$6 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$7 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$8 + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$9 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.option$10 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.value$11 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$12 + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$13 + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_mesh_group_addr + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_mesh_send_mutex + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_mesh_stop_mutex + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_stop_event_group + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.mesh_ioctl_sem + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.mesh_xmit_sem + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.mesh_xmit_state_mbox + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.mesh_tcpip_mbox + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.mesh_myself_mbox + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_mesh_ext_crypto_config + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.s_mesh_ie_crypto_plain_key + 0x00000000 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_is_mesh_started + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_is_mesh_inited + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_extra_toDS_qsize + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_extra_toSelf_qsize + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_is_standalone_sta + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_xon_cfg_qsize + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_ann_interval + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_is_root_fixed + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_rt_capacity + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_root_healing_delay + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_passive_scan_time + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_manual_nwk + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_cfg_attemps + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_cfg_vote_percent + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_cfg_switch_parent + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_chain + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_ie + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_ext_cfg + 0x00000000 0xd0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_self_map_addr + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_self_sta_addr + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_max_layer + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.str1.1 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.libmesh_reversion_git + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.MESH_BCAST_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .xt.lit 0x00000000 0x338 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .xt.prop 0x00000000 0x3804 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_pm_tbtt_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tbtt_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_rx_beacon_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tx_data_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tx_null_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_go_to_sleep + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_go_to_wake + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_is_start_pm_now + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.mesh_pm_tbtt_start + 0x00000000 0x5d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tbtt_timeout_process + 0x00000000 0x1c4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_rx_beacon_process + 0x00000000 0x154 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tx_data_process + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tx_null_process + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.mesh_pm_set_null + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_go_to_sleep + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_go_to_wake + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_is_start_pm_now + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss.rx_bcn_count$0 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss.send_null_cnt$1 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .rodata_wlog_info.4 + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .rodata_wlog_warning.3 + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .rodata_wlog_info.2 + 0x00000000 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss.mesh_ps_keep_cnx + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .data.s_mesh_active_duty_cycle + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss.s_mesh_next_awake_tbtt + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss.s_mesh_is_awake_duty + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .data.g_mesh_dfs_compensation_ms + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .xt.lit 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .xt.prop 0x00000000 0x408 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.mesh_nwk_find_conflict_roots$part$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_sta_auth_expire_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_register_timer_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_update_rssi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_ie$constprop$0$isra$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.is_mesh_last_parent + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_root_switch + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_switch_parent + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_my_votes + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_change_layer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_parent_candidate_config + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_parent_check_root_conflict + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.route_announce_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_monitor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timer_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timer_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_disable_parent_switch_monitor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ps_control_check_awake + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_set_awake + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_set_sleep + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_get_min_duty + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_find_conflict_roots + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_remove_conflict_roots + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_is_yield_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_add_conflict_roots + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_announce + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_monitor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_delete_timers + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_gone + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_fixed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_conflict_roots + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_rmv_announcement + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_scan_allowed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_rt_change_debug + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_rt_change_debug + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_disconnected + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_request + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_no_parent_found + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_connect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_child_set_ps_duty + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_child_clr_ps_duty + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_process_ps_type + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.is_mesh_child + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_flush_scan_result + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_done + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.scan_result_print + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_scan_done_process_weak + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_parent_insert_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done_vote + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_update_current_parent + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_update_ie_rssi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate_ie + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_check_rc_expire + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_vote_done + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_rootless + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_clear_parent$part$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_clear_parent$constprop$0$isra$0 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_disconnect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_votes + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_process_root_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_process_same_root_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_add_invalid_rc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal._mesh_find_root_competitor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_is_last_rc_existing + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_update_rcandidate_rssi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_init_rcandidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_check_last_rcandidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_find_root_competitor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_vote_root_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_router + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_nvs_settings + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_is_better_parent + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_compute_rank + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_set_ignore + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_limit_layer2_cap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_rssi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_layer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_process_ps_awake + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_child_event + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_process_child_macconnected + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.print_txupQ_pending + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx_lock + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_insert_child + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_child + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_children + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_leaf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_no_parent + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_clear_parent + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_revote_root + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_healing + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_push_to_nwk_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_route_announce_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_connect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_router + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_candidate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_disconnect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_manual_networking + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_disconnect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_connect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_disconnect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_reselect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_layer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_ie_change + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_conflict_discnx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_cycle + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_wifi_event_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_post_toDS_state + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_rssi_threshold + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_rssi_threshold + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_set_default_rssi_threshold + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_inited + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_running + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_process_parent_organized + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_beacon_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_adjust_passive_scan_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_beacon_interval + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_parent_select_done + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_select + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_main + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_get_duties + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_print_scan_result + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_find_conflict_roots$part$0 + 0x00000000 0x4b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_sta_auth_expire_time + 0x00000000 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_register_timer_cb + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_ie_update_rssi + 0x00000000 0xb6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_ie$constprop$0$isra$0 + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_ie + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.is_mesh_last_parent + 0x00000000 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_send_root_switch + 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_is_switch_parent.str1.1 + 0x00000000 0x12d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_switch_parent + 0x00000000 0x1f0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_compute_my_votes + 0x00000000 0x7e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_change_layer.str1.1 + 0x00000000 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_change_layer + 0x00000000 0x9d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_set_parent_candidate_config.str1.1 + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_parent_candidate_config + 0x00000000 0xc6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_parent_check_root_conflict + 0x00000000 0xc2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.route_announce_timer_start + 0x00000000 0xce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.route_announce_timeout_process.str1.1 + 0x00000000 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.route_announce_timeout_process + 0x00000000 0xb0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.route_announce_timer_stop + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_ie_monitor.str1.1 + 0x00000000 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_ie_monitor + 0x00000000 0x13c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ie_monitor_timeout_process + 0x00000000 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timer_start + 0x00000000 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timer_start + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.candidate_monitor_timer_stop + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_disable_parent_switch_monitor + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.candidate_monitor_timer_start.str1.1 + 0x00000000 0x7d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.candidate_monitor_timer_start + 0x00000000 0x1f3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_ps_control_check_awake + 0x00000000 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_set_awake + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_set_sleep + 0x00000000 0x61 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_ps_control_get_min_duty.str1.1 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_get_min_duty + 0x00000000 0x110 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_ps_control_timeout_process.str1.1 + 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_timeout_process + 0x00000000 0x1be C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_find_conflict_roots + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_remove_conflict_roots.str1.1 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_remove_conflict_roots + 0x00000000 0xde C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.is_self_mac_greater + 0x00000000 0x82 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_is_yield_root + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_add_conflict_roots + 0x00000000 0x1e0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_yield_roots_announce + 0x00000000 0x1f0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_yield_roots_monitor + 0x00000000 0x1a2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_delete_timers + 0x00000000 0xbe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_gone + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_fixed + 0x00000000 0xd4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_stop + 0x00000000 0xaf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_conflict_roots + 0x00000000 0x18e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_send_rmv_announcement.str1.1 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_send_rmv_announcement + 0x00000000 0x1ce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_scan_allowed + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_rt_change_debug + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_rt_change_debug + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_disconnected + 0x00000000 0x9c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_process_scan_request.str1.1 + 0x00000000 0xe0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_scan_request + 0x00000000 0xe9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_check_no_parent_found.str1.1 + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_no_parent_found + 0x00000000 0x98 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_root_process_connect + 0x00000000 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_child_set_ps_duty + 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_child_clr_ps_duty + 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_process_ps_type + 0x00000000 0xa0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_is_better_parent + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.is_mesh_child + 0x00000000 0x67 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_flush_scan_result + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_process_scan_done.str1.1 + 0x00000000 0xac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_scan_done + 0x00000000 0x1f8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.scan_result_print.str1.1 + 0x00000000 0x157 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.scan_result_print + 0x00000000 0x28b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_scan_done_process_weak.str1.1 + 0x00000000 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_scan_done_process_weak + 0x00000000 0xe0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_conn_init + 0x00000000 0xb6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_conn_deinit + 0x00000000 0xb7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_parent_insert_candidate + 0x00000000 0x157 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_scan_done_vote.str1.1 + 0x00000000 0x17f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_scan_done_vote + 0x00000000 0x4f4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_scan_done.str1.1 + 0x00000000 0xad C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_scan_done + 0x00000000 0x748 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_update_current_parent + 0x00000000 0x120 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate + 0x00000000 0x93 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_update_ie_rssi + 0x00000000 0xa4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate_ie + 0x00000000 0x9b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_check_rc_expire.str1.1 + 0x00000000 0x115 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_check_rc_expire + 0x00000000 0x34a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_vote_done + 0x00000000 0xd1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_rootless + 0x00000000 0xb8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_clear_parent$part$0.str1.1 + 0x00000000 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_clear_parent$part$0 + 0x00000000 0x150 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_clear_parent$constprop$0$isra$0 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_node_process_disconnect + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_compute_votes + 0x00000000 0xd6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_process_root_candidate + 0x00000000 0x234 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_process_same_root_candidate + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_add_invalid_rc.str1.1 + 0x00000000 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_add_invalid_rc + 0x00000000 0x116 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata._mesh_find_root_competitor.str1.1 + 0x00000000 0xcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text._mesh_find_root_competitor + 0x00000000 0x6a4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.print_rc_info + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_is_last_rc_existing + 0x00000000 0x11a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_update_rcandidate_rssi + 0x00000000 0x90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_init_rcandidate.str1.1 + 0x00000000 0x4b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_init_rcandidate + 0x00000000 0xfa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_check_last_rcandidate.str1.1 + 0x00000000 0xa1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_check_last_rcandidate + 0x00000000 0x25c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_find_root_competitor + 0x00000000 0x1c6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_vote_root_candidate.str1.1 + 0x00000000 0x13c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_vote_root_candidate + 0x00000000 0x582 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_router + 0x00000000 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_process_nvs_settings.str1.1 + 0x00000000 0xdc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_nvs_settings + 0x00000000 0x230 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_is_better_parent + 0x00000000 0x106 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_compute_rank + 0x00000000 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_select_set_ignore.str1.1 + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_set_ignore + 0x00000000 0xd5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_select_parent_limit_layer2_cap.str1.1 + 0x00000000 0x108 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_limit_layer2_cap + 0x00000000 0x244 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_select_parent_try_rssi.str1.1 + 0x00000000 0x95 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_try_rssi + 0x00000000 0x1dc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_select_parent_try_layer.str1.1 + 0x00000000 0x8c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_try_layer + 0x00000000 0x148 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_select_parent.str1.1 + 0x00000000 0x69 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_parent + 0x00000000 0x20e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_num + 0x00000000 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_process_ps_awake + 0x00000000 0x11c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_child_event + 0x00000000 0xe4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_process_child_macconnected.str1.1 + 0x00000000 0xc8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_process_child_macconnected + 0x00000000 0x244 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.print_txupQ_pending.str1.1 + 0x00000000 0x14a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.print_txupQ_pending + 0x00000000 0x268 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_idx + 0x00000000 0x71 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_idx_lock + 0x00000000 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_insert_child.str1.1 + 0x00000000 0x11b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_insert_child + 0x00000000 0x2e3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_remove_child + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_remove_children.str1.1 + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_remove_children + 0x00000000 0x116 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_leaf + 0x00000000 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_process_no_parent.str1.1 + 0x00000000 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_no_parent + 0x00000000 0xd2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_clear_parent + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_revote_root + 0x00000000 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_node_process_healing + 0x00000000 0xbf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_push_to_nwk_queue.str1.1 + 0x00000000 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_push_to_nwk_queue + 0x00000000 0x122 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_route_announce_timeout + 0x00000000 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ie_monitor_timeout + 0x00000000 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timeout + 0x00000000 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timeout + 0x00000000 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_candidate_monitor_timeout + 0x00000000 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_candidate_monitor_timeout_process + 0x00000000 0xc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_timeout + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_sta_connect.str1.1 + 0x00000000 0x11a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_sta_connect + 0x00000000 0x1fd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_connect_to_router.str1.1 + 0x00000000 0x9a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_connect_to_router + 0x00000000 0x307 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_connect_to_candidate.str1.1 + 0x00000000 0x10f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_connect_to_candidate + 0x00000000 0x3ba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timeout_process + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_root_process_disconnect + 0x00000000 0xf4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_manual_networking.str1.1 + 0x00000000 0xc7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_manual_networking + 0x00000000 0x30c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_sta_disconnect + 0x00000000 0x7c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_connect.str1.1 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_connect + 0x00000000 0x80 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_disconnect + 0x00000000 0x80 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_parent_reselect + 0x00000000 0xcc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_check_layer.str1.1 + 0x00000000 0x77 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_layer + 0x00000000 0xea C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_process_ie_change.str1.1 + 0x00000000 0x75 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_ie_change + 0x00000000 0x390 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_conflict_discnx + 0x00000000 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_node_process_cycle.str1.1 + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_node_process_cycle + 0x00000000 0xf8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_wifi_event_cb.str1.1 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_wifi_event_cb + 0x00000000 0x41b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_wifi_event_cb + 0x00000000 0x104 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_post_toDS_state + 0x00000000 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_rssi_threshold + 0x00000000 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_rssi_threshold + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_set_default_rssi_threshold + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_nwk_inited + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_nwk_running + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_process_parent_organized + 0x00000000 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_task_deinit + 0x00000000 0xa7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_nwk_task_init.str1.1 + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_nwk_task_init + 0x00000000 0x382 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_nwk_task_deinit + 0x00000000 0xb4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_beacon_interval + 0x00000000 0x6b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_adjust_passive_scan_time.str1.1 + 0x00000000 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_adjust_passive_scan_time + 0x00000000 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_beacon_interval + 0x00000000 0x4d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_parent_select_done.str1.1 + 0x00000000 0x1aa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_parent_select_done + 0x00000000 0x8a0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.esp_mesh_parent_select.str1.1 + 0x00000000 0x242 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_parent_select + 0x00000000 0x8de C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timeout_process + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_task_main.str1.1 + 0x00000000 0xcf6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_task_main + 0x00000000 0x3606 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_task_main + 0x00000000 0xb0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_get_duties + 0x00000000 0x102 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_print_scan_result + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.last_event_id$1 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$3 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$4 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$5 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$6 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$7 + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$8 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$10 + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$11 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$12 + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$13 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$14 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$15 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$17 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$18 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$19 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$20 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$21 + 0x00000000 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$22 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$23 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$24 + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$25 + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$26 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$27 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$28 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$29 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.cnx_backoff$30 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_final_struggle$32 + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.max_voter_num$33 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$35 + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$37 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$38 + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_rt_change_dbg + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_monitor_timer_interval + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_history_root_backoff + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.retry_attemps + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_ps_cnt + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_layer_backoff_times + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_rssi_backoff_times + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.vote_log_time_start + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.vote_log_time_stop + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_vote_scan_times + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_extra_scan_attempts + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_vote_ps_times + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_vote_rc_times + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_rcandidate + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_rcandidate + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_ps_control + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .data.s_mesh_beacon_interval + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_running_channel + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .data.s_monitor_parent_config + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_first_short_time_retries + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_parent_rssi_threshold + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_root_addr + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_is_parent_set + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_sta_discnx_times + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_sta_cnx_times + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent_chain + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent_ie + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.ann_time_start + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mie_log_time_start + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_root_connect_timer_armed + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.ps_control_timer + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.candidate_monitor_timer + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.root_connect_timer + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.bcn_change_timer + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mie_monitor_timer + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.route_announce_timer + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_timer_func + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_task + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_mbox + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.is_nwk_running + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_parent_root_children_list + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_vote_invalid_list + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_vote_expire_list + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_parent_cyclic_list + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_parent_map_list + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_parent_idle_list + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_print_scan_result_enable + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .data.s_mesh_scan_done + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_scan_req + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_layer + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_rmv_opt + 0x00000000 0x4d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_conn_mutex + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_ext_vote_state + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_conn + 0x00000000 0x2c8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_current_parent + 0x00000000 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_disconnecting + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_connecting + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_connected + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .xt.lit 0x00000000 0x498 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .xt.prop 0x00000000 0x6edc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_print_txQ_waiting + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_print_txQ_waiting + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_get_tx_pending + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_get_tx_pending + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_event + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_forward_check_active + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_check_tid_mbox_full + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_ack_state_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_best_effort_tx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_wnd_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_operation_rxseqno + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_cidx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_insert_child + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_delete_child + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_xonseq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_clear_xonseq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_process_txupQ_pending + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_tx_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_force_txupQ_pending + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_available_txupQ_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_txQ + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_tid_flush + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_tid_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_ps_tx_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_ps_tx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.tx_task_main + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_discard_context + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_xon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_recv_xon + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_main + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_deliver_packet + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_flush_packets + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_disconnected + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_expired + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_upstream_packets + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.xon_task_main + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_no_wnd + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_task_main + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_main + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_flush_upstream_packets + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_time + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_print_txQ_waiting.str1.1 + 0x00000000 0x94 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_print_txQ_waiting + 0x00000000 0x135 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_print_txQ_waiting.str1.1 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_print_txQ_waiting + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_get_tx_pending.str1.1 + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_get_tx_pending + 0x00000000 0x19b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_get_tx_pending + 0x00000000 0x63 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_send_block_event.str1.1 + 0x00000000 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_event + 0x00000000 0x1ae C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_start + 0x00000000 0x1a8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_forward_check_active + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_check_tid_mbox_full.str1.1 + 0x00000000 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_check_tid_mbox_full + 0x00000000 0x1ba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_check_tid_mbox_full + 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_ack_state_queue + 0x00000000 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_tx_cb + 0x00000000 0xf8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_best_effort_tx + 0x00000000 0x302 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_push_to_wnd_queue.str1.1 + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_wnd_queue + 0x00000000 0xfa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_operation_rxseqno.str1.1 + 0x00000000 0x138 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_operation_rxseqno + 0x00000000 0x3b6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_get_cidx + 0x00000000 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_insert_child + 0x00000000 0x90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_delete_child + 0x00000000 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_get_xonseq + 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_clear_xonseq + 0x00000000 0x59 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_txupQ_pending.str1.1 + 0x00000000 0x3db C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending + 0x00000000 0xbca C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_process_txupQ_pending.str1.1 + 0x00000000 0x81 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_process_txupQ_pending + 0x00000000 0x26f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_push_to_tx_queue.str1.1 + 0x00000000 0x129 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_tx_queue + 0x00000000 0x510 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_force_txupQ_pending.str1.1 + 0x00000000 0x57 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_force_txupQ_pending + 0x00000000 0x142 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_available_txupQ_num.str1.1 + 0x00000000 0x43 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_available_txupQ_num + 0x00000000 0x1c4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_flush_txQ + 0x00000000 0x122 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_tx_tid_flush.str1.1 + 0x00000000 0xc7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_tid_flush + 0x00000000 0x1d6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_tx_tid_stop.str1.1 + 0x00000000 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_tx_tid_stop + 0x00000000 0x1e8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_ps_tx_queue + 0x00000000 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_ps_tx + 0x00000000 0x12c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.tx_task_main.str1.1 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.tx_task_main + 0x00000000 0x221 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_discard_context + 0x00000000 0x168 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_send_xon.str1.1 + 0x00000000 0x24f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_xon + 0x00000000 0x688 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_recv_xon + 0x00000000 0x14e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_tx_task_main.str1.1 + 0x00000000 0x176 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_tx_task_main + 0x00000000 0x902 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_xon_deliver_packet.str1.1 + 0x00000000 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_deliver_packet + 0x00000000 0x1ac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_flush_packets + 0x00000000 0x267 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_xon_process_disconnected.str1.1 + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_disconnected + 0x00000000 0x2e0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_expired + 0x00000000 0x12e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_flush_upstream_packets.str1.1 + 0x00000000 0x31 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_flush_upstream_packets + 0x00000000 0x6e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.xon_task_main.str1.1 + 0x00000000 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.xon_task_main + 0x00000000 0x198 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_no_wnd + 0x00000000 0xc8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_xon_task_main.str1.1 + 0x00000000 0x22b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_task_main + 0x00000000 0xa04 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_tx_task_deinit + 0x00000000 0x1b6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_tx_task_init.str1.1 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_task_init + 0x00000000 0x20f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_tx_task_init + 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_task_deinit + 0x00000000 0x99 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_deinit + 0x00000000 0xac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_send_block_deinit + 0x00000000 0x8e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_send_block_main.str1.1 + 0x00000000 0x158 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_send_block_main + 0x00000000 0x45e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_send_block_init.str1.1 + 0x00000000 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_init + 0x00000000 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_flush_upstream_packets.str1.1 + 0x00000000 0x9d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_flush_upstream_packets + 0x00000000 0x16c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_time + 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$0 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$1 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$2 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$3 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$4 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$5 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$6 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$7 + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_fail_cnt$8 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9 + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$10 + 0x00000000 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$11 + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$12 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$13 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$14 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$15 + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$16 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$17 + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$18 + 0x00000000 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$19 + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$20 + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$21 + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$22 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_self_xonseq + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.send_block_flush_mbox + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.send_block_task + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.send_block_mbox + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.is_block_running + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .data.g_mesh_packet_lifetime + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_xon 0x00000000 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_conn_leave + 0x00000000 0x2c8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_xreq_seqno + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_be_xmit_seqno + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_new_wnd_mbox + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_ack_state_mbox + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_mbox + 0x00000000 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_task + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.is_mesh_tx_started + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_reassign_xseqno + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .data.MESH_BCAST_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .xt.lit 0x00000000 0x190 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .xt.prop 0x00000000 0x33e4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.optype2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_get_optlen + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_mcast_cover_node + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_remove_myself_from_forwarding + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toDS + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toSelf + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_process_mcast_cover_node + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_mcast + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_bcast + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_switch + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_waive + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_announce + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_routing_table + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_options + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_ucast + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_forward_packet + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.optype2str.str1.1 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.optype2str + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.esp_mesh_get_optlen.str1.1 + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_get_optlen + 0x00000000 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.esp_mesh_mcast_cover_node.str1.1 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_mcast_cover_node + 0x00000000 0x336 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_remove_myself_from_forwarding + 0x00000000 0x116 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.esp_mesh_delivery_toDS.str1.1 + 0x00000000 0x63 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_delivery_toDS + 0x00000000 0x1ea C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.esp_mesh_delivery_toSelf.str1.1 + 0x00000000 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_delivery_toSelf + 0x00000000 0x38a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mcast_cover_node + 0x00000000 0x466 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_process_mcast + 0x00000000 0x176 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_process_bcast + 0x00000000 0x37c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_root_switch + 0x00000000 0x176 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.mesh_process_mgmt_root_waive.str1.1 + 0x00000000 0x8d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_root_waive + 0x00000000 0x1d4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.mesh_process_mgmt_announce.str1.1 + 0x00000000 0x13a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_announce + 0x00000000 0x3f2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.mesh_process_mgmt_routing_table.str1.1 + 0x00000000 0x102 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_routing_table + 0x00000000 0x3d2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.esp_mesh_process_options.str1.1 + 0x00000000 0x66 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_process_options + 0x00000000 0x212 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.esp_mesh_process_ucast.str1.1 + 0x00000000 0x33c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_process_ucast + 0x00000000 0x970 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.esp_mesh_forward_packet.str1.1 + 0x00000000 0xb1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_forward_packet + 0x00000000 0x3ae C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.str1.1 + 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.CSWTCH$647 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.__func__$0 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.__func__$1 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.__func__$2 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.__func__$3 + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.__func__$4 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .bss.mesh_xseqno + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .data.MESH_BCAST_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .xt.lit 0x00000000 0x80 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .xt.prop 0x00000000 0x138c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_channel_enable_jp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .literal.esp_mesh_scan_done_get_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_reselect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_look_for_network + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_allow_switch + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.esp_mesh_channel_enable_jp.str1.1 + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text.esp_mesh_channel_enable_jp + 0x00000000 0x63 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.esp_mesh_scan_done_get_channel.str1.1 + 0x00000000 0x314 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text.esp_mesh_scan_done_get_channel + 0x00000000 0x72a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.mesh_nwk_process_reselect.str1.1 + 0x00000000 0x159 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_reselect + 0x00000000 0x29b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.mesh_nwk_process_look_for_network.str1.1 + 0x00000000 0x104 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_look_for_network + 0x00000000 0x31a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.mesh_nwk_process_allow_switch.str1.1 + 0x00000000 0xe5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_allow_switch + 0x00000000 0x128 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.__func__$0 + 0x00000000 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.__func__$1 + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .bss.look_for_nwk_count$2 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .bss.scan_times$3 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.__func__$4 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .xt.lit 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .xt.prop 0x00000000 0x564 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .literal.nvs_op2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_operate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_layer + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_assoc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .rodata.nvs_op2str.str1.1 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.nvs_op2str + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .rodata.esp_mesh_nvs_operate.str1.1 + 0x00000000 0x93 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_operate + 0x00000000 0x350 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .rodata.esp_mesh_nvs_operate + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_set_layer + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_set_assoc + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .rodata.esp_mesh_nvs_init.str1.1 + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_init + 0x00000000 0x57 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_deinit + 0x00000000 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .rodata.str1.1 + 0x00000000 0x55 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .rodata.CSWTCH$63 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .bss.mesh_nvs_settings + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .data.mesh_nvs_handle + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .bss.g_mesh_nvs_settings + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .xt.lit 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .xt.prop 0x00000000 0x324 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_push_to_rx_queue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.mesh_topo_get_ttl + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_wifi_recv_cb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_main + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.esp_mesh_push_to_rx_queue.str1.1 + 0x00000000 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.esp_mesh_push_to_rx_queue + 0x00000000 0xc8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.mesh_topo_get_ttl.str1.1 + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.mesh_topo_get_ttl + 0x00000000 0xba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.esp_mesh_wifi_recv_cb.str1.1 + 0x00000000 0x21a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.esp_mesh_wifi_recv_cb + 0x00000000 0x714 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.esp_mesh_rx_task_deinit + 0x00000000 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.mesh_rx_task_deinit + 0x00000000 0x86 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.mesh_rx_task_main.str1.1 + 0x00000000 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.mesh_rx_task_main + 0x00000000 0x248 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.esp_mesh_rx_task_init.str1.1 + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.esp_mesh_rx_task_init + 0x00000000 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.__func__$0 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.__func__$1 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss.parent_last_mac_seqno$2 + 0x00000000 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.__func__$3 + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_task + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_mbox + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss.is_rx_running + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .data.MESH_BCAST_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .xt.lit 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .xt.prop 0x00000000 0x558 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.mesh_rt_change_timeout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_deinit + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timer_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timeout_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_match_self + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_total_children_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_sub_route + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_route + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_print_route_table + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_sub_capacity + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.routetype2str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_update_route_table + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_delete_sub_children + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_add_announcement + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_fill_rmv_sub_child + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_malloc_rmv_announcement + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_construct_rmv_announcement + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_pack_rmv_announcement + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_rmv_announcement + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_multi_routing_table + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_ie_update_capacity + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_nonassociated_children + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_monitor_nonassociated_children + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_remove_nonassociated_children + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_copy_mgmt_announce + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_process_redundant_subchildren + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_combine_multi_redundant_ack + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_multi_redundant_ack + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_refresh_routing_table + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table_size + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_list + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_request + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_ack + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_nwk_redundant_route + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timeout + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_route_init + 0x00000000 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_route_deinit + 0x00000000 0x9e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timer_start + 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timeout_process + 0x00000000 0x57 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_match_self + 0x00000000 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_get_total_children_num + 0x00000000 0x7a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_lookup_sub_route + 0x00000000 0xc4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_lookup_route.str1.1 + 0x00000000 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_lookup_route + 0x00000000 0x132 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_print_route_table + 0x00000000 0x8e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_get_sub_capacity + 0x00000000 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.routetype2str.str1.1 + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.routetype2str + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.mesh_update_route_table.str1.1 + 0x00000000 0xf1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_update_route_table + 0x00000000 0x3c4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_delete_sub_children + 0x00000000 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_send_add_announcement + 0x00000000 0xbc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.mesh_fill_rmv_sub_child.str1.1 + 0x00000000 0x186 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_fill_rmv_sub_child + 0x00000000 0x37c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.mesh_malloc_rmv_announcement.str1.1 + 0x00000000 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_malloc_rmv_announcement + 0x00000000 0xb4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_construct_rmv_announcement + 0x00000000 0xa6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_pack_rmv_announcement + 0x00000000 0xba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_pack_rmv_announcement + 0x00000000 0x12b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_pack_multi_routing_table.str1.1 + 0x00000000 0xd4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_pack_multi_routing_table + 0x00000000 0x48c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_ie_update_capacity + 0x00000000 0x163 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_check_nonassociated_children + 0x00000000 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_monitor_nonassociated_children.str1.1 + 0x00000000 0xb6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_monitor_nonassociated_children + 0x00000000 0x2d4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_remove_nonassociated_children.str1.1 + 0x00000000 0xac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_remove_nonassociated_children + 0x00000000 0x1ba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_copy_mgmt_announce.str1.1 + 0x00000000 0x112 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_copy_mgmt_announce + 0x00000000 0x2cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_process_redundant_subchildren.str1.1 + 0x00000000 0x1c2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_process_redundant_subchildren + 0x00000000 0x3a2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_combine_multi_redundant_ack.str1.1 + 0x00000000 0x159 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_combine_multi_redundant_ack + 0x00000000 0x281 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_check_multi_redundant_ack.str1.1 + 0x00000000 0x137 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_check_multi_redundant_ack + 0x00000000 0x28d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_refresh_routing_table.str1.1 + 0x00000000 0xeb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_refresh_routing_table + 0x00000000 0x6d6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_get_routing_table_size + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_get_routing_table.str1.1 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_get_routing_table + 0x00000000 0x1a3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_get_subnet_nodes_num + 0x00000000 0xbb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_get_subnet_nodes_list + 0x00000000 0xfa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_send_rtable_request + 0x00000000 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_send_rtable_ack.str1.1 + 0x00000000 0x7b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_send_rtable_ack + 0x00000000 0x1f2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.esp_mesh_nwk_redundant_route.str1.1 + 0x00000000 0xa3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_nwk_redundant_route + 0x00000000 0x1a8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.str1.1 + 0x00000000 0x43 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.CSWTCH$438 + 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$0 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$1 + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$2 + 0x00000000 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$3 + 0x00000000 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$4 + 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$5 + 0x00000000 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$6 + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$7 + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$8 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$9 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$10 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$11 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.mesh_multi_send_ack + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.mesh_multi_recv_ack + 0x00000000 0xf0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.rt_change_timer + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.mesh_route_table + 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.is_route_inited + 0x00000000 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .xt.lit 0x00000000 0x120 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .xt.prop 0x00000000 0x183c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_timer_route_announce + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_mie_monitor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_bcn_change + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_root_connect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_candidate_monitor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_rt_change + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_ps_control + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_do_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_route_announce + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_mie_monitor + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_bcn_change + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_root_connect + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_candidate_monitor + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_rt_change + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_ps_control + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .rodata.mesh_timer_do_process.str1.1 + 0x00000000 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_do_process + 0x00000000 0xea C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .rodata.__func__$0 + 0x00000000 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .data.mesh_timer_info + 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .xt.lit 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .xt.prop 0x00000000 0x210 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.esp_mesh_io_sem_wait + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.esp_mesh_io_sem_signal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_set_io_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.esp_mesh_stop_parent_reconnection + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_set_router + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_set_self_organized + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_set_type + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_csa_set_bssid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_switch_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_look_for_network + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_nwk_io_process + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.esp_mesh_io_sem_wait + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.esp_mesh_io_sem_signal + 0x00000000 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.mesh_set_io_process.str1.1 + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_set_io_process + 0x00000000 0xdb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.esp_mesh_stop_parent_reconnection + 0x00000000 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.mesh_set_router.str1.1 + 0x00000000 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_set_router + 0x00000000 0x1ea C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.mesh_set_self_organized.str1.1 + 0x00000000 0x59 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_set_self_organized + 0x00000000 0x12c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.mesh_set_type.str1.1 + 0x00000000 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_set_type + 0x00000000 0x2aa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_csa_set_bssid + 0x00000000 0x8c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_switch_channel + 0x00000000 0x6b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_look_for_network + 0x00000000 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.mesh_nwk_io_process.str1.1 + 0x00000000 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_nwk_io_process + 0x00000000 0x1d1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.mesh_nwk_io_process + 0x00000000 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.__func__$0 + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.__func__$1 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .bss.csa_bssid + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .bss.s_mesh_io_error + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .bss.g_mesh_stop_reconnection + 0x00000000 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .xt.lit 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .xt.prop 0x00000000 0x6b4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.esp_mesh_ap_list_clear + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_expire + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_expire + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_invalid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_invalid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_update_invalid + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_enqueue + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .rodata.esp_mesh_ap_list_clear.str1.1 + 0x00000000 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear + 0x00000000 0xc7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find_expire + 0x00000000 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear_expire + 0x00000000 0xb7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find_invalid + 0x00000000 0x9c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear_invalid + 0x00000000 0xbb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_update_invalid + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find + 0x00000000 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_enqueue + 0x00000000 0x194 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .rodata.__func__$0 + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .rodata.__func__$1 + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .comment 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .xt.lit 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .xt.prop 0x00000000 0x558 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_crt_get_name_len + 0x00000000 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_get_key_len + 0x00000000 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_get_key + 0x00000000 0x8 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_get_len + 0x00000000 0x8 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_get_certcount + 0x00000000 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_get_cert + 0x00000000 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_check_bundle + 0x00000000 0x18 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_init + 0x00000000 0x8 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_find_cert + 0x00000000 0x18 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_check_signature + 0x00000000 0x68 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_verify_callback + 0x00000000 0x60 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_attach + 0x00000000 0x30 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_detach + 0x00000000 0x8 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_set + 0x00000000 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_in_use + 0x00000000 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.get16_le + 0x00000000 0x8 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_get_name_len + 0x00000000 0x10 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_get_name + 0x00000000 0x7 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_get_key_len + 0x00000000 0x10 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_get_key + 0x00000000 0x1a esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_get_len + 0x00000000 0x1f esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_get_cert_offset + 0x00000000 0xa esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_get_certcount + 0x00000000 0x12 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_get_cert + 0x00000000 0x11 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_check_bundle.str1.4 + 0x00000000 0x5a esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_check_bundle + 0x00000000 0x86 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_init + 0x00000000 0x1e esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_find_cert + 0x00000000 0x84 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_check_signature.str1.4 + 0x00000000 0xce esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_check_signature + 0x00000000 0x128 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_verify_callback.str1.4 + 0x00000000 0xf2 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_verify_callback + 0x00000000 0xde esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_bundle_attach.str1.4 + 0x00000000 0x25 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_attach + 0x00000000 0x60 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_detach + 0x00000000 0x1a esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_set + 0x00000000 0x11 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_in_use + 0x00000000 0x11 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .bss.s_crt_bundle + 0x00000000 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.s_dummy_crt + 0x00000000 0x198 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_frame 0x00000000 0x1c0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_info 0x00000000 0x210d esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_abbrev 0x00000000 0x427 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_loc 0x00000000 0x6b1 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_aranges + 0x00000000 0xa8 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_ranges 0x00000000 0xb0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_line 0x00000000 0x122e esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_str 0x00000000 0x181c esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .xt.prop 0x00000000 0x4f8 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .rodata.embedded + 0x00000000 0x10d7b esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_stop + 0x00000000 0x10 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_append + 0x00000000 0x10 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_reset + 0x00000000 0x10 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_strategy + 0x00000000 0x1a esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_read_intr_status + 0x00000000 0x15 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_get_intr_status_reg + 0x00000000 0x12 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text.gdma_hal_get_eof_desc_addr + 0x00000000 0x16 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .xt.prop 0x00000000 0x27c esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .xt.prop 0x00000000 0x564 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(ds_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(ds_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(ds_hal.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/hal/libhal.a(ds_hal.c.obj) + .xt.prop 0x00000000 0x2ac esp-idf/hal/libhal.a(ds_hal.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .rodata.gdma_periph_signals + 0x00000000 0x2c esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_info 0x00000000 0x497 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_abbrev 0x00000000 0xac esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_line 0x00000000 0x125 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_str 0x00000000 0xff4 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .xt.prop 0x00000000 0xc esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .literal.esp_mesh_send_event_internal + 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .rodata.esp_mesh_send_event_internal.str1.4 + 0x00000000 0xb esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .text.esp_mesh_send_event_internal + 0x00000000 0x18 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .rodata.MESH_EVENT + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_info 0x00000000 0x1a8 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_abbrev 0x00000000 0xde esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_loc 0x00000000 0x2b esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_line 0x00000000 0x35e esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_str 0x00000000 0x2fe esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xt.prop 0x00000000 0x3c esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .xt.prop 0x00000000 0xf0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .text 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .xt.prop 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .xt.prop 0x00000000 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .xt.prop 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .xt.prop 0x00000000 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .literal._ZSt15set_new_handlerPFvvE + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .text._ZSt15set_new_handlerPFvvE + 0x00000000 0x1e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .xt.lit 0x00000000 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .xt.prop 0x00000000 0x78 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .eh_frame 0x00000000 0x38 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .xt.prop 0x00000000 0x6c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .literal._ZSt18uncaught_exceptionv + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .literal._ZSt19uncaught_exceptionsv + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .text.__cxa_get_exception_ptr + 0x00000000 0xa C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .text._ZSt18uncaught_exceptionv + 0x00000000 0x12 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .text._ZSt19uncaught_exceptionsv + 0x00000000 0xd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .eh_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .xt.lit 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .xt.prop 0x00000000 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .literal.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .text.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x00000000 0x1e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .dtors 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .eh_frame 0x00000000 0x8c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .xt.lit 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .xt.prop 0x00000000 0x168 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .literal._ZSt13set_terminatePFvvE + 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZN10__cxxabiv112__unexpectedEPFvvE + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZSt14set_unexpectedPFvvE + 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZSt14get_unexpectedv + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .literal.unlikely._ZSt10unexpectedv + 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt13set_terminatePFvvE + 0x00000000 0x25 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZN10__cxxabiv112__unexpectedEPFvvE + 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt14set_unexpectedPFvvE + 0x00000000 0x25 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt14get_unexpectedv + 0x00000000 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .text.unlikely._ZSt10unexpectedv + 0x00000000 0xf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .eh_frame 0x00000000 0x70 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .xt.lit 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .xt.prop 0x00000000 0x18c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .data._ZN10__cxxabiv120__unexpected_handlerE + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_info 0x00000000 0x3c1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_abbrev 0x00000000 0x278 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_aranges + 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_line 0x00000000 0x7c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_str 0x00000000 0x678 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_line_str + 0x00000000 0x429 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .xt.prop 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .eh_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .xt.prop 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .group 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .eh_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .xt.prop 0x00000000 0x54 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .eh_frame 0x00000000 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .xt.lit 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .xt.prop 0x00000000 0x1a4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .group 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .literal._ZNSt9type_infoD0Ev + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .literal._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv + 0x00000000 0x7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .text._ZNSt9type_infoD0Ev + 0x00000000 0xf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .text._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x00000000 0x2e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .rodata._ZTVSt9type_info + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .xt.lit 0x00000000 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .xt.prop 0x00000000 0xcc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .xt.prop._ZTVSt9type_info + 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .group 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .xt.lit 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .xt.prop 0x00000000 0x90 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .group 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .eh_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .xt.lit 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .xt.prop 0x00000000 0x1bc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .group 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNKSt9exception4whatEv + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNKSt13bad_exception4whatEv + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNSt9exceptionD0Ev + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNSt13bad_exceptionD0Ev + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv115__forced_unwindD0Ev + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD2Ev + 0x00000000 0x5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZNKSt9exception4whatEv.str1.1 + 0x00000000 0xf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNKSt9exception4whatEv + 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZNKSt13bad_exception4whatEv.str1.1 + 0x00000000 0x13 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNKSt13bad_exception4whatEv + 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt9exceptionD0Ev + 0x00000000 0xf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD0Ev + 0x00000000 0xf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD2Ev + 0x00000000 0x5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD0Ev + 0x00000000 0xf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD2Ev + 0x00000000 0x5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x00000000 0xf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text._ZGTtNKSt9exceptionD1Ev + 0x00000000 0x5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text._ZGTtNKSt13bad_exceptionD1Ev + 0x00000000 0x5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVSt9exception + 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVSt13bad_exception + 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv115__forced_unwindE + 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv119__foreign_exceptionE + 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .xt.lit 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop 0x00000000 0x1f8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVSt9exception + 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVSt13bad_exception + 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv115__forced_unwindE + 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv119__foreign_exceptionE + 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .text 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line 0x00000000 0x6f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line_str + 0x00000000 0xc6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_info 0x00000000 0x31 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .debug_str 0x00000000 0xdf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .xt.prop 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .text 0x00000000 0x22 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + .debug_line 0x00000000 0x8d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + .debug_line_str + 0x00000000 0xc6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + .debug_info 0x00000000 0x31 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + .debug_str 0x00000000 0xdf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + .xt.prop 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + .text 0x00000000 0x59 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + .debug_line 0x00000000 0xf9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + .debug_info 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + .xt.prop 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + .text 0x00000000 0x85 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + .debug_line 0x00000000 0x159 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + .debug_info 0x00000000 0x25 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + .xt.prop 0x00000000 0x90 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + .literal 0x00000000 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .text 0x00000000 0x312 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line 0x00000000 0x6b1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .debug_info 0x00000000 0x25 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .xt.prop 0x00000000 0x420 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .literal 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .text 0x00000000 0x1ff C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .debug_line 0x00000000 0x478 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .debug_info 0x00000000 0x25 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .xt.prop 0x00000000 0x228 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .literal 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .text 0x00000000 0x176 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .debug_line 0x00000000 0x36f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .debug_info 0x00000000 0x25 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .xt.prop 0x00000000 0x288 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .literal 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .text 0x00000000 0x4c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line 0x00000000 0xe7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .debug_info 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .xt.prop 0x00000000 0x6c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .text 0x00000000 0x3d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + .debug_line 0x00000000 0xc9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + .debug_info 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + .xt.prop 0x00000000 0x54 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + .literal 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .text 0x00000000 0xa4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_line 0x00000000 0x195 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_info 0x00000000 0x25 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .xt.prop 0x00000000 0xb4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .literal 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x62 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line 0x00000000 0x117 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_info 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .xt.prop 0x00000000 0x6c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .literal 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x37 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_info 0x00000000 0xce C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_abbrev 0x00000000 0x68 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_loclists + 0x00000000 0xf5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line 0x00000000 0xef C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_str 0x00000000 0x162 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line_str + 0x00000000 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x26e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .debug_info 0x00000000 0x69b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .debug_abbrev 0x00000000 0x1ad C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .debug_loclists + 0x00000000 0x517 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .debug_rnglists + 0x00000000 0x5a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .debug_line 0x00000000 0xa88 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .debug_str 0x00000000 0x1d7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .debug_line_str + 0x00000000 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .xt.prop 0x00000000 0x18c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .text 0x00000000 0x2ea C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .debug_info 0x00000000 0x716 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .debug_abbrev 0x00000000 0x1a6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .debug_loclists + 0x00000000 0x4c3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .debug_rnglists + 0x00000000 0x51 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .debug_line 0x00000000 0xcae C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .debug_str 0x00000000 0x1d7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .debug_line_str + 0x00000000 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .xt.prop 0x00000000 0x168 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .text 0x00000000 0x254 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_info 0x00000000 0x671 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000 0x18d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_loclists + 0x00000000 0x5b1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_rnglists + 0x00000000 0x5f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_line 0x00000000 0xa29 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_str 0x00000000 0x1d8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .debug_line_str + 0x00000000 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .xt.prop 0x00000000 0x174 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .text 0x00000000 0x2bb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_info 0x00000000 0x6f1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_abbrev 0x00000000 0x1a3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_loclists + 0x00000000 0x5f2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_rnglists + 0x00000000 0x4f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_line 0x00000000 0xc39 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_str 0x00000000 0x1d8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .debug_line_str + 0x00000000 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + .xt.prop 0x00000000 0x144 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/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.wait_hw_freq_busy + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.phy_param_track + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.ram_txpwr_cal_track + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.ram_bt_track_tx_power + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.ram_wifi_track_tx_power + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.ulp_ext_code_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.ulp_code_track + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.rfpll_cap_track + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.ram_bt_track_pll_cap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.bt_track_pll_cap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.ram_tx_pwctrl_background + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.txpwr_offset + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.pocket_sar_power + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.rom_wifi_track_pll_cap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.phy_param_track_tot + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .text.phy_param_track + 0x00000000 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .text.ram_bt_track_pll_cap + 0x00000000 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .text.bt_track_pll_cap + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .text.ram_tx_pwctrl_background + 0x00000000 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .text.pocket_sar_power + 0x00000000 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .text.rom_wifi_track_pll_cap + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .xt.lit 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .xt.prop 0x00000000 0x4f8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .iram1.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.RFChannelSel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_change_channel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_rx_rifs_en + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_bbpll_en_usb + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_bt_power_track + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_get_rf_cal_version + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.noise_check_loop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.tx_pwctrl_background + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_force_rx_gain + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_get_rx_gain + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_rx_band_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_param_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_init_param_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_get_rfdata_num + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.ant_tx_cfg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.ant_rx_cfg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_wftx_ref_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_set_tx_seed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_get_tx_seed + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_set_signal_test + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.RFChannelSel + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_rx_rifs_en + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_bt_power_track + 0x00000000 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.tx_pwctrl_background + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_force_rx_gain + 0x00000000 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_get_rx_gain + 0x00000000 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_rx_band_set + 0x00000000 0x8b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_param_set + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_get_rfdata_num + 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_wftx_ref_set + 0x00000000 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_get_tx_seed + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_set_signal_test + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .xt.lit 0x00000000 0xa0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .xt.prop 0x00000000 0x474 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .iram1.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.phy_get_romfunc_addr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.bb_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.pwr_limit_force + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.register_chipv7_phy_init_param + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.esp_phy_efuse_get_mac + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.phy_get_mac_addr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.phy_set_mac_data + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.phy_rfcal_data_sub + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.rf_cal_data_recovery + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.phy_rfcal_data_check_value + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.rf_cal_data_backup + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.phy_rfcal_data_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.get_txcap_data + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.esp_phy_efuse_get_chip_ver_pkg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.get_chip_version + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.rf_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.register_chipv7_phy + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .text.esp_phy_efuse_get_mac + 0x00000000 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .text.phy_get_mac_addr + 0x00000000 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .text.get_txcap_data + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .text.esp_phy_efuse_get_chip_ver_pkg + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .xt.lit 0x00000000 0x98 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .xt.prop 0x00000000 0x768 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.get_phy_version_str + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_version_print + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_reg_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_i2c_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.get_iq_value + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.get_dc_value + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_tx_gain_print + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_cal_print + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.get_bias_ref_code + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_get_vdd33 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.pbus_print + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.phy_version_print + 0x00000000 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.phy_reg_check + 0x00000000 0x276 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.phy_i2c_check + 0x00000000 0x20d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.get_dc_value + 0x00000000 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.phy_tx_gain_print + 0x00000000 0x174 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.phy_cal_print + 0x00000000 0x6dd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.pbus_print + 0x00000000 0xeb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .xt.lit 0x00000000 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .xt.prop 0x00000000 0x4e0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.ram_pbus_force_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .literal.rom_pbus_xpd_tx_on + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .literal.txcal_debuge_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .literal.txcal_work_mode + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .literal.save_pbus_reg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .literal.set_pbus_mem + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .text.ram_pbus_force_mode + 0x00000000 0xd7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .text.rom_pbus_xpd_tx_on + 0x00000000 0x94 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .xt.lit 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .xt.prop 0x00000000 0x2f4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .iram1.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.wr_rf_freq_mem + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.write_freq_mem_all + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.freq_i2c_write_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.pll_cap_mem_update + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.get_rf_freq_cap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.get_rf_freq_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.freq_get_i2c_data + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.freq_i2c_data_write + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.set_chan_freq_hw_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.set_chan_freq_sw_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .text.write_freq_mem_all + 0x00000000 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .text.get_rf_freq_cap + 0x00000000 0x79 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .xt.lit 0x00000000 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .xt.prop 0x00000000 0x708 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .iram1.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_set_most_tpw + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_get_most_tpw + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.get_max_power + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.esp_tx_state_out + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_get_adc_rand + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_internal_delay + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_ftm_comp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_11p_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.ant_dft_cfg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.ant_wifitx_cfg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.ant_wifirx_cfg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.ant_bttx_cfg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.ant_btrx_cfg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_chan_dump_cfg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_enable_low_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_disable_low_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_chan_filt_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_rx11blr_cfg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_get_cca + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_set_cca_cnt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_get_cca_cnt + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_get_noise_floor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_get_rssi + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.set_rx_sense + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_set_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_set_wifi_mode_only + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_txpwr_backoff + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_get_tx_rate + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_dig_ldo_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_init_flag + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_txtone_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_txtone_stop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_get_most_tpw + 0x00000000 0x77 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.get_max_power + 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.esp_tx_state_out + 0x00000000 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_get_adc_rand + 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_internal_delay + 0x00000000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_ftm_comp + 0x00000000 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_chan_dump_cfg + 0x00000000 0x85 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_chan_filt_set + 0x00000000 0xa6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_rx11blr_cfg + 0x00000000 0x66 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_get_cca + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_set_cca_cnt + 0x00000000 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_get_cca_cnt + 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_get_noise_floor + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_get_rssi + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_set_rate + 0x00000000 0x1ae C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_set_wifi_mode_only + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_txpwr_backoff + 0x00000000 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_get_tx_rate + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .rodata.str1.1 + 0x00000000 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_dig_ldo_cal + 0x00000000 0x134 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_init_flag + 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_txtone_start + 0x00000000 0xce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_txtone_stop + 0x00000000 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .xt.lit 0x00000000 0x100 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .xt.prop 0x00000000 0x900 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.restart_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.write_rfpll_sdm + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.wait_rfpll_cal_end + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.rfpll_set_freq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.correct_rfpll_offset + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.ram_pll_vol_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.ram_write_pll_cap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.read_pll_cap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.rfpll_cap_correct + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.rfpll_cap_init_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.set_rfpll_freq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.set_rf_freq_offset + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.set_channel_rfpll_freq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.phy_set_freq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.chip_v7_set_chan_misc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.chip_v7_set_chan + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.chip_v7_set_chan_offset + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.chip_v7_set_chan_ana + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.set_chanfreq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.get_pll_ref_code + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .text.get_pll_ref_code + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .xt.lit 0x00000000 0x90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .xt.prop 0x00000000 0x618 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.phy_set_tsens_power + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.tsens_read_init_new + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.tsens_dac_to_index + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.tsens_dac_cal_new + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.phy_set_tsens_range + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.ram_tsens_code_read + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.ram_tsens_temp_read_new + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.phy_get_tsens_value + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.ram_tsens_temp_read + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.ram_temp_to_power + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.get_temp_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.phy_set_tsens_power + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.tsens_dac_to_index + 0x00000000 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.tsens_dac_cal_new + 0x00000000 0x66 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.phy_set_tsens_range + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.ram_tsens_temp_read_new + 0x00000000 0x67 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.phy_get_tsens_value + 0x00000000 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .rodata.phy_tsens_attribute + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .xt.lit 0x00000000 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .xt.prop 0x00000000 0x2b8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .iram1.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .literal.ram_set_chan_cal_interp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .literal.chan14_mic_cfg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .literal.chan14_mic_enable + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .literal.set_adc_rand + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .text.chan14_mic_enable + 0x00000000 0x31 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .rodata 0x00000000 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .text.set_adc_rand + 0x00000000 0xf2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .xt.lit 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .xt.prop 0x00000000 0x228 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .literal.get_rc_dout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .literal.rc_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .literal.phy_analog_delay_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .rodata.str1.1 + 0x00000000 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .rodata 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .text.phy_analog_delay_cal + 0x00000000 0x2c7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .xt.lit 0x00000000 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .xt.prop 0x00000000 0x198 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .literal.phy_set_pwdet_power + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.get_sar_sig_ref + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.pwdet_tone_start + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.get_tone_sar_dout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.get_fm_sar_dout + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.txtone_linear_pwr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.get_power_db + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.meas_tone_pwr_db + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.ram_read_sar2_code + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .text.phy_set_pwdet_power + 0x00000000 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .text.meas_tone_pwr_db + 0x00000000 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .xt.lit 0x00000000 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .xt.prop 0x00000000 0x228 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.gen_rx_gain_table + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .literal.wr_rx_gain_mem + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .literal.set_rx_gain_param + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .literal.set_rx_gain_table + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .literal.rx_blocking_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .text.rx_blocking_set + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .xt.lit 0x00000000 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .xt.prop 0x00000000 0x318 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .iram1.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.rom_txbbgain_to_index + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.rom_index_to_txbbgain + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.dig_gain_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.bt_chan_pwr_interp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.rom_set_tx_gain_mem + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.phy_get_txpwr_param + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.target_power_backoff + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.ram_get_rate_fcc_index + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.ram_get_chan_target_power + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.get_tx_gain_value + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.ram_bt_get_tx_gain + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.ram_wifi_get_tx_gain + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.ram_wifi_set_tx_gain + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.bt_tx_gain_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.tx_gain_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .text.rom_txbbgain_to_index + 0x00000000 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .text.rom_index_to_txbbgain + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .text.rom_set_tx_gain_mem + 0x00000000 0xdc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .text.phy_get_txpwr_param + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .text.target_power_backoff + 0x00000000 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .rodata.CSWTCH$48 + 0x00000000 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .xt.lit 0x00000000 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .xt.prop 0x00000000 0x5e8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .iram1.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.rom_agc_reg_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.ram_bb_reg_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.txiq_set_reg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.rxiq_set_reg + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.start_tx_tone_step + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.start_tx_tone + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.stop_tx_tone + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.read_hw_noisefloor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.ram_check_noise_floor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.ram_set_noise_floor + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.rom_phy_bbpll_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.phy_rx_sense_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.tx_state_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.phy_close_pa + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.phy_freq_correct + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.wifi_rifs_mode_en + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.phy_get_fetx_delay + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.phy_fft_scale_force + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.force_txrx_off + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.rom_agc_reg_init + 0x00000000 0xd6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.ram_bb_reg_init + 0x00000000 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.start_tx_tone + 0x00000000 0x7c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.ram_check_noise_floor + 0x00000000 0xc2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.rom_phy_bbpll_cal + 0x00000000 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.phy_rx_sense_set + 0x00000000 0x82 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.tx_state_set + 0x00000000 0x82 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.phy_close_pa + 0x00000000 0x8a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.wifi_rifs_mode_en + 0x00000000 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.phy_get_fetx_delay + 0x00000000 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.phy_fft_scale_force + 0x00000000 0x5d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .xt.lit 0x00000000 0x120 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .xt.prop 0x00000000 0x900 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.rxiq_get_mis + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rxiq_cover_mg_mp + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rfcal_rxiq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.get_rfcal_rxiq_data + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.pbus_rx_dco_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rxdc_est_min + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.pbus_rx_dco_cal_1step + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.set_rx_gain_cal_iq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rx_chan_dc_sort + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.set_rx_gain_cal_dc + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.spur_coef_cfg_new + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rfrx_sat_rst + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.get_rfrx_sat + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rfrx_sat_check + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rom_noise_check_loop + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.phy_2448m_spur_pwr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .text.rfrx_sat_rst + 0x00000000 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .text.get_rfrx_sat + 0x00000000 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .text.rfrx_sat_check + 0x00000000 0x3dc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .text.rom_noise_check_loop + 0x00000000 0x189 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .xt.lit 0x00000000 0x80 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .xt.prop 0x00000000 0xbd0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .iram1.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .literal.rom_i2c_sar2_init_code + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .literal.phy_i2c_init2 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .literal.phy_get_i2c_data + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .literal.i2c_bbpll_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .literal.bias_reg_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .text.rom_i2c_sar2_init_code + 0x00000000 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .xt.lit 0x00000000 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .xt.prop 0x00000000 0x2f4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .literal.txdc_cal_v70 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.bt_txdc_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.txdc_cal_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.txiq_get_mis_pwr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.txiq_cover + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.get_power_atten + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.rfcal_txiq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.bt_txiq_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.txiq_cal_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.pwdet_ref_code + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.pwdet_code_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.rfcal_txcap + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.tx_cap_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.rfcal_pwrctrl + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.tx_pwctrl_init_cal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.tx_pwctrl_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.bt_tx_pwctrl_init + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.bt_txpwr_freq + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .xt.lit 0x00000000 0x90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .xt.prop 0x00000000 0x900 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .iram1.literal + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_filter_sel + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_v2_recorrect + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_corr_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_dpo_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_restart_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_target_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_detect_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_agc_gain_max + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_gain_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_v2_rx_rssi_thresh + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_v2_rx_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_v2_tx_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_v2_version + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_tx_cca_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_v2_init_cmplx + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.coex_pti_print + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.force_coex_timer0_wifi_v2 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.force_coex_timer0_wifi_pti_v2 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.force_coex_timer1_bt_v2 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.force_coex_timer1_bt_pti_v2 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.force_coex_timer11_bt_v2 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.force_coex_timer11_bt_pti_v2 + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_get_channel_pwr_set + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_get_channel_pwr + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_get_channel_pwr_unset + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_set_chn + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_set_rx_sense + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.ieee802154_set_rx_sense + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.bt_bb_set_max_gain + 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .iram1 0x00000000 0x12d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_filter_sel + 0x00000000 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_v2_recorrect + 0x00000000 0xf7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_corr_set + 0x00000000 0xfb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_dpo_set + 0x00000000 0xca C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_restart_set + 0x00000000 0x197 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_target_set + 0x00000000 0x1b3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_detect_set + 0x00000000 0xcc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_agc_gain_max + 0x00000000 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_gain_set + 0x00000000 0x1a6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_v2_rx_rssi_thresh + 0x00000000 0x85 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_v2_rx_set + 0x00000000 0xe4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_v2_tx_set + 0x00000000 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .rodata.str1.1 + 0x00000000 0x99 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_v2_version + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_tx_cca_set + 0x00000000 0x170 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_v2_init_cmplx + 0x00000000 0x87 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.coex_pti_print + 0x00000000 0xb4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.force_coex_timer0_wifi_v2 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.force_coex_timer0_wifi_pti_v2 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.force_coex_timer1_bt_v2 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.force_coex_timer1_bt_pti_v2 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.force_coex_timer11_bt_v2 + 0x00000000 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.force_coex_timer11_bt_pti_v2 + 0x00000000 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_get_channel_pwr_set + 0x00000000 0xa3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_get_channel_pwr + 0x00000000 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_get_channel_pwr_unset + 0x00000000 0x45 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_set_chn + 0x00000000 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_set_rx_sense + 0x00000000 0xab C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.ieee802154_set_rx_sense + 0x00000000 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .text.bt_bb_set_max_gain + 0x00000000 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .comment 0x00000000 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .xt.lit 0x00000000 0xf0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .xt.prop 0x00000000 0x6cc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .literal.rtc_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.rtc_printf.str1.4 + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.rtc_printf + 0x00000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .text 0x00000000 0x29 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .debug_info 0x00000000 0x8ea C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .debug_abbrev 0x00000000 0x1eb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .debug_loclists + 0x00000000 0x3c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .debug_line 0x00000000 0xd6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .debug_str 0x00000000 0x4e8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .debug_line_str + 0x00000000 0x2a1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .text 0x00000000 0xd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .debug_info 0x00000000 0xfc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .debug_abbrev 0x00000000 0xc1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .debug_loclists + 0x00000000 0x5e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .debug_line 0x00000000 0x99 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .debug_str 0x00000000 0x11f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .debug_line_str + 0x00000000 0x1cd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .xt.prop 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + .xt.prop 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + .literal 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .text 0x00000000 0x4c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .debug_info 0x00000000 0x17e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .debug_abbrev 0x00000000 0x119 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .debug_loclists + 0x00000000 0x99 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .debug_line 0x00000000 0x15c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .debug_str 0x00000000 0x133 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .debug_line_str + 0x00000000 0x1d0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .xt.prop 0x00000000 0x78 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .literal 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .text 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .rodata.str1.1 + 0x00000000 0x6b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .debug_info 0x00000000 0x9ac C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .debug_abbrev 0x00000000 0x24c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .debug_loclists + 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .debug_rnglists + 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .debug_line 0x00000000 0x274 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .debug_str 0x00000000 0x507 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .debug_line_str + 0x00000000 0x2aa C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .xt.prop 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .xt.prop 0x00000000 0xa20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .xt.prop 0x00000000 0x1b0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .xt.prop 0x00000000 0x18c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .literal 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .text 0x00000000 0x7c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .rodata.str1.1 + 0x00000000 0x25 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .debug_info 0x00000000 0x1c6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .debug_abbrev 0x00000000 0x115 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .debug_loclists + 0x00000000 0xb9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .debug_line 0x00000000 0x225 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .debug_str 0x00000000 0x14e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .debug_line_str + 0x00000000 0x1db C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .xt.prop 0x00000000 0x78 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + .literal 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .text 0x00000000 0x338 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .debug_frame 0x00000000 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .debug_info 0x00000000 0x87d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .debug_abbrev 0x00000000 0x267 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .debug_loclists + 0x00000000 0x53b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .debug_line 0x00000000 0x994 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .debug_str 0x00000000 0x177 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .debug_line_str + 0x00000000 0x23c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .xt.prop 0x00000000 0x36c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .xt.prop 0x00000000 0xc0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .literal 0x00000000 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .text 0x00000000 0x47 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .debug_info 0x00000000 0x8d4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .debug_abbrev 0x00000000 0x1dd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .debug_loclists + 0x00000000 0x2b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .debug_line 0x00000000 0x146 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .debug_str 0x00000000 0x544 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .debug_line_str + 0x00000000 0x2ac C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .xt.prop 0x00000000 0x1bc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .literal 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .text 0x00000000 0xf6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .debug_info 0x00000000 0xaa7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .debug_abbrev 0x00000000 0x261 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .debug_loclists + 0x00000000 0xf0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .debug_line 0x00000000 0x355 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .debug_str 0x00000000 0x566 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .debug_line_str + 0x00000000 0x2b2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .xt.prop 0x00000000 0xc0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .xt.prop 0x00000000 0x210 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .xt.prop 0x00000000 0x90 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .literal 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .text 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .debug_info 0x00000000 0x988 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .debug_abbrev 0x00000000 0x256 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .debug_loclists + 0x00000000 0x4c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .debug_line 0x00000000 0x14c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .debug_str 0x00000000 0x539 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .debug_line_str + 0x00000000 0x2bb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .literal 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .text 0x00000000 0x64 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .debug_info 0x00000000 0x985 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .debug_abbrev 0x00000000 0x253 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .debug_loclists + 0x00000000 0x5c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .debug_line 0x00000000 0x16c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .debug_str 0x00000000 0x559 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .debug_line_str + 0x00000000 0x2a9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .xt.prop 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .literal 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .text 0x00000000 0x78 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .debug_info 0x00000000 0xa4b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .debug_abbrev 0x00000000 0x25f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .debug_loclists + 0x00000000 0x5c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .debug_line 0x00000000 0x1f4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .debug_str 0x00000000 0x5a3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .debug_line_str + 0x00000000 0x2bc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .xt.prop 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .xt.prop 0x00000000 0xe4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .literal 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .text 0x00000000 0x29 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .debug_info 0x00000000 0x93b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .debug_abbrev 0x00000000 0x251 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .debug_loclists + 0x00000000 0x5c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .debug_line 0x00000000 0x121 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .debug_str 0x00000000 0x4f3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .debug_line_str + 0x00000000 0x2a1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .xt.prop 0x00000000 0x24c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .xt.prop 0x00000000 0x54 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .xt.prop 0x00000000 0x84 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .literal 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .text 0x00000000 0x84 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .debug_info 0x00000000 0x9f1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .debug_abbrev 0x00000000 0x290 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .debug_loclists + 0x00000000 0xbc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .debug_line 0x00000000 0x1c8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .debug_str 0x00000000 0x563 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .debug_line_str + 0x00000000 0x2a6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .xt.prop 0x00000000 0x78 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .literal 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .text 0x00000000 0x2c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .debug_info 0x00000000 0x8e3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .debug_abbrev 0x00000000 0x214 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .debug_loclists + 0x00000000 0x44 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .debug_line 0x00000000 0xf9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .debug_str 0x00000000 0x4fb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .debug_line_str + 0x00000000 0x2a7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .xt.prop 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .xt.prop 0x00000000 0xfc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .literal 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .text 0x00000000 0x2e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .debug_info 0x00000000 0x8be C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .debug_abbrev 0x00000000 0x213 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .debug_loclists + 0x00000000 0x3c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .debug_line 0x00000000 0xed C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .debug_str 0x00000000 0x4f9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .debug_line_str + 0x00000000 0x2ac C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .literal 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .text 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .debug_info 0x00000000 0x884 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .debug_abbrev 0x00000000 0x1e2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .debug_loclists + 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .debug_line 0x00000000 0xa2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .debug_str 0x00000000 0x4e6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .debug_line_str + 0x00000000 0x2a4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .literal 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .text 0x00000000 0x1a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .debug_info 0x00000000 0x89c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .debug_abbrev 0x00000000 0x1b6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .debug_line 0x00000000 0xa7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .debug_str 0x00000000 0x4e5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .debug_line_str + 0x00000000 0x2a4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .literal 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .text 0x00000000 0x18a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_info 0x00000000 0xa7d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_abbrev 0x00000000 0x298 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_loclists + 0x00000000 0x12c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_line 0x00000000 0x4a3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_str 0x00000000 0x58a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_line_str + 0x00000000 0x2b8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .xt.prop 0x00000000 0x168 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .xt.prop 0x00000000 0xc0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .xt.prop 0x00000000 0xcc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .xt.prop 0x00000000 0x84 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .literal 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .text 0x00000000 0x9c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .debug_info 0x00000000 0x98c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .debug_abbrev 0x00000000 0x26a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .debug_loclists + 0x00000000 0xa1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .debug_line 0x00000000 0x250 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .debug_str 0x00000000 0x51a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .debug_line_str + 0x00000000 0x2b0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .xt.prop 0x00000000 0x90 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .xt.prop 0x00000000 0xb4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .xt.prop 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .xt.prop 0x00000000 0x234 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .literal 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .text 0x00000000 0xce C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .debug_info 0x00000000 0x947 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .debug_abbrev 0x00000000 0x23a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .debug_loclists + 0x00000000 0xa0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .debug_line 0x00000000 0x2c4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .debug_str 0x00000000 0x547 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .debug_line_str + 0x00000000 0x2ac C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .xt.prop 0x00000000 0xf0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .literal 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .text 0x00000000 0x12 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_info 0x00000000 0xf1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_abbrev 0x00000000 0xab C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_line 0x00000000 0x8c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_str 0x00000000 0x129 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .debug_line_str + 0x00000000 0x246 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .text 0x00000000 0x1b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .debug_info 0x00000000 0x110 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .debug_abbrev 0x00000000 0xb1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .debug_loclists + 0x00000000 0x98 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .debug_line 0x00000000 0xd0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .debug_str 0x00000000 0x12c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .debug_line_str + 0x00000000 0x23f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .literal 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .text 0x00000000 0x4f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_info 0x00000000 0x12b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_abbrev 0x00000000 0x90 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_loclists + 0x00000000 0x150 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line 0x00000000 0x17f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_str 0x00000000 0x11c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line_str + 0x00000000 0x23f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .xt.prop 0x00000000 0x90 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .text 0x00000000 0x41 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .debug_info 0x00000000 0x109 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .debug_abbrev 0x00000000 0xac C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .debug_loclists + 0x00000000 0xc9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .debug_line 0x00000000 0x121 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .debug_str 0x00000000 0x136 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .debug_line_str + 0x00000000 0x242 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .xt.prop 0x00000000 0x78 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .literal 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .text 0x00000000 0x41 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .debug_info 0x00000000 0x15b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .debug_abbrev 0x00000000 0xbb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .debug_loclists + 0x00000000 0xee C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .debug_rnglists + 0x00000000 0x1a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .debug_line 0x00000000 0x143 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .debug_str 0x00000000 0x121 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .debug_line_str + 0x00000000 0x1eb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .xt.prop 0x00000000 0x54 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .text 0x00000000 0x22 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .debug_info 0x00000000 0xe1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .debug_abbrev 0x00000000 0x86 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .debug_loclists + 0x00000000 0x7e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .debug_line 0x00000000 0xda C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .debug_str 0x00000000 0x115 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .debug_line_str + 0x00000000 0x1d6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .xt.prop 0x00000000 0x3c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .text 0x00000000 0x1d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .debug_info 0x00000000 0xf4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .debug_abbrev 0x00000000 0x82 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .debug_loclists + 0x00000000 0x4c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .debug_line 0x00000000 0xd6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .debug_str 0x00000000 0x115 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .debug_line_str + 0x00000000 0x1d6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .xt.prop 0x00000000 0x54 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .text 0x00000000 0x25 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .debug_info 0x00000000 0xe9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .debug_abbrev 0x00000000 0x9f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .debug_loclists + 0x00000000 0x42 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .debug_line 0x00000000 0xf9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .debug_str 0x00000000 0x11d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .debug_line_str + 0x00000000 0x242 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .xt.prop 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .literal 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .text 0x00000000 0x15 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .debug_info 0x00000000 0x86a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .debug_abbrev 0x00000000 0x1d1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .debug_loclists + 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .debug_line 0x00000000 0xa0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .debug_str 0x00000000 0x4e6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .debug_line_str + 0x00000000 0x2a7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .literal 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .text 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_info 0x00000000 0x913 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_abbrev 0x00000000 0x21c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_loclists + 0x00000000 0x34 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_line 0x00000000 0xd7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_str 0x00000000 0x502 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_line_str + 0x00000000 0x2b6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .xt.prop 0x00000000 0x3c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .xt.prop 0x00000000 0x828 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .literal 0x00000000 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .text 0x00000000 0x2e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_info 0x00000000 0x923 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_abbrev 0x00000000 0x21a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_loclists + 0x00000000 0x2c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_line 0x00000000 0xcd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_str 0x00000000 0x515 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_line_str + 0x00000000 0x2b3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .xt.prop 0x00000000 0x3c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .literal 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .text 0x00000000 0x50 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .debug_info 0x00000000 0x151 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .debug_abbrev 0x00000000 0xde C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .debug_loclists + 0x00000000 0xea C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .debug_line 0x00000000 0x1c9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .debug_str 0x00000000 0x139 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .debug_line_str + 0x00000000 0x242 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .xt.prop 0x00000000 0xa8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .text 0x00000000 0x33 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_info 0x00000000 0x10d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_abbrev 0x00000000 0xa3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_loclists + 0x00000000 0x86 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_line 0x00000000 0x133 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_str 0x00000000 0x12e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_line_str + 0x00000000 0x242 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .xt.prop 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .literal 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .text 0x00000000 0x44 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_info 0x00000000 0x178 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_abbrev 0x00000000 0xca C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_loclists + 0x00000000 0xe6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_rnglists + 0x00000000 0x1d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_line 0x00000000 0x164 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_str 0x00000000 0x129 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_line_str + 0x00000000 0x257 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .text 0x00000000 0x36 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .debug_info 0x00000000 0xde C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .debug_abbrev 0x00000000 0x79 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .debug_loclists + 0x00000000 0xa6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .debug_line 0x00000000 0x101 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .debug_str 0x00000000 0x11d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .debug_line_str + 0x00000000 0x242 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .text 0x00000000 0x1a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .debug_info 0x00000000 0xe1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .debug_abbrev 0x00000000 0x8d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .debug_loclists + 0x00000000 0x4b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .debug_line 0x00000000 0xbd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .debug_str 0x00000000 0x123 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .debug_line_str + 0x00000000 0x242 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .literal 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .text 0x00000000 0x32 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .debug_info 0x00000000 0x128 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .debug_abbrev 0x00000000 0xce C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .debug_loclists + 0x00000000 0x86 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .debug_line 0x00000000 0x100 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .debug_str 0x00000000 0x122 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .debug_line_str + 0x00000000 0x1d9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .xt.prop 0x00000000 0x6c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .text 0x00000000 0x36 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .debug_info 0x00000000 0xef C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .debug_abbrev 0x00000000 0x9f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .debug_loclists + 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .debug_line 0x00000000 0x134 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .debug_str 0x00000000 0x11c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .debug_line_str + 0x00000000 0x23f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .xt.prop 0x00000000 0x78 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .xt.prop 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .literal 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .text 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .debug_info 0x00000000 0x88d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .debug_abbrev 0x00000000 0x1e2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .debug_loclists + 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .debug_line 0x00000000 0xa2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .debug_str 0x00000000 0x4ef C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .debug_line_str + 0x00000000 0x2aa C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .literal 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .text 0x00000000 0x62 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .debug_info 0x00000000 0x1cd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .debug_abbrev 0x00000000 0x109 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .debug_loclists + 0x00000000 0xab C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .debug_line 0x00000000 0x18e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .debug_str 0x00000000 0x140 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .debug_line_str + 0x00000000 0x25d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .xt.prop 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .literal 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .text 0x00000000 0x41 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .debug_info 0x00000000 0x905 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .debug_abbrev 0x00000000 0x22f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .debug_loclists + 0x00000000 0x87 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .debug_line 0x00000000 0x139 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .debug_str 0x00000000 0x4fc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .debug_line_str + 0x00000000 0x2b9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .xt.prop 0x00000000 0x78 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .literal 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .text 0x00000000 0x3a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .rodata.str1.1 + 0x00000000 0x6b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .debug_info 0x00000000 0x9cc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .debug_abbrev 0x00000000 0x23d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .debug_loclists + 0x00000000 0x34 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .debug_line 0x00000000 0x118 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .debug_str 0x00000000 0x56a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .debug_line_str + 0x00000000 0x323 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .literal 0x00000000 0x54 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .text 0x00000000 0x1bf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_info 0x00000000 0x24e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_abbrev 0x00000000 0xf7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_loclists + 0x00000000 0x115 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_line 0x00000000 0x524 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_str 0x00000000 0x1c3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_line_str + 0x00000000 0x296 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .xt.prop 0x00000000 0xa8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .literal 0x00000000 0x54 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .text 0x00000000 0x520 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .rodata 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .debug_info 0x00000000 0x4a1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .debug_abbrev 0x00000000 0x20c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .debug_loclists + 0x00000000 0x26f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .debug_rnglists + 0x00000000 0x17 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .debug_line 0x00000000 0xc7f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .debug_str 0x00000000 0x2b6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .debug_line_str + 0x00000000 0x2af C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .xt.prop 0x00000000 0x330 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .literal 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .text 0x00000000 0x190 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_info 0x00000000 0x298 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_abbrev 0x00000000 0x139 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_loclists + 0x00000000 0x132 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_line 0x00000000 0x447 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_str 0x00000000 0x1ee C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_line_str + 0x00000000 0x268 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .xt.prop 0x00000000 0x114 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .literal 0x00000000 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .text 0x00000000 0x1e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .debug_info 0x00000000 0x106 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .debug_abbrev 0x00000000 0xc8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .debug_line 0x00000000 0x7e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .debug_str 0x00000000 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .debug_line_str + 0x00000000 0x1d4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .literal 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .text 0x00000000 0x31 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .debug_info 0x00000000 0x889 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .debug_abbrev 0x00000000 0x1d7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .debug_line 0x00000000 0xc2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .debug_str 0x00000000 0x513 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .debug_line_str + 0x00000000 0x2a6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .literal 0x00000000 0x88 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .text 0x00000000 0x476 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .bss 0x00000000 0x1c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .rodata.str1.1 + 0x00000000 0x61 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_info 0x00000000 0xe6c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_abbrev 0x00000000 0x2bd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_loclists + 0x00000000 0x1c1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_line 0x00000000 0xb81 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_str 0x00000000 0x64e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_line_str + 0x00000000 0x344 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .xt.prop 0x00000000 0x21c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .data 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .bss 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .rodata.str1.1 + 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .debug_info 0x00000000 0xcb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .debug_abbrev 0x00000000 0x5e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .debug_aranges + 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .debug_line 0x00000000 0x3e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .debug_str 0x00000000 0x12a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .debug_line_str + 0x00000000 0x1c7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .xt.prop 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .bss 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .xt.prop 0x00000000 0x9c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .bss 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .xt.prop 0x00000000 0xd8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .xt.prop 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .xt.prop 0x00000000 0x54 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .literal 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .text 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .debug_info 0x00000000 0xa83 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .debug_abbrev 0x00000000 0x1e1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .debug_loclists + 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .debug_line 0x00000000 0xbf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .debug_str 0x00000000 0x62d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .debug_line_str + 0x00000000 0x338 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .literal 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .text 0x00000000 0x135 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line 0x00000000 0x30f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line_str + 0x00000000 0xc4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_info 0x00000000 0x33 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .debug_str 0x00000000 0xd9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .xt.prop 0x00000000 0x15c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .literal 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .text 0x00000000 0x74 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_line 0x00000000 0x146 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_line_str + 0x00000000 0xc4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_info 0x00000000 0x31 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .debug_str 0x00000000 0xd9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .xt.prop 0x00000000 0xd8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .literal 0x00000000 0x1c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .text 0x00000000 0x123 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .debug_line 0x00000000 0x2b4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .debug_line_str + 0x00000000 0xc4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .debug_info 0x00000000 0x33 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .debug_str 0x00000000 0xd9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .xt.prop 0x00000000 0x120 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .literal 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .text 0x00000000 0x90 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .debug_line 0x00000000 0x182 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .debug_line_str + 0x00000000 0xc4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .debug_info 0x00000000 0x33 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .debug_str 0x00000000 0xd9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .xt.prop 0x00000000 0x114 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .literal 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .text 0x00000000 0x63 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .debug_line 0x00000000 0x122 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .debug_line_str + 0x00000000 0xc4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .debug_info 0x00000000 0x31 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .debug_str 0x00000000 0xd9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .xt.prop 0x00000000 0xc0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .literal 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .text 0x00000000 0x113 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .debug_line 0x00000000 0x2a8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .debug_line_str + 0x00000000 0xc5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .debug_info 0x00000000 0x33 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .debug_str 0x00000000 0xdb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .xt.prop 0x00000000 0x1a4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .xt.prop 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .xt.prop 0x00000000 0x498 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .xt.prop 0x00000000 0x1c8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .literal 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .text 0x00000000 0x8c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_info 0x00000000 0x9a4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_abbrev 0x00000000 0x245 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_loclists + 0x00000000 0x92 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_line 0x00000000 0x22d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_str 0x00000000 0x52e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_line_str + 0x00000000 0x2c0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .xt.prop 0x00000000 0xcc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .xt.prop 0x00000000 0x54 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .xt.prop 0x00000000 0x78c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .xt.prop 0x00000000 0x6c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .literal 0x00000000 0x1c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .text 0x00000000 0xc4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .debug_info 0x00000000 0xa0a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .debug_abbrev 0x00000000 0x25a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .debug_loclists + 0x00000000 0x51 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .debug_line 0x00000000 0x2cb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .debug_str 0x00000000 0x555 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .debug_line_str + 0x00000000 0x2cc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .xt.prop 0x00000000 0x1c38 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .xt.prop 0x00000000 0x2730 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .xt.prop 0x00000000 0x2094 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .xt.prop 0x00000000 0x2808 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .xt.prop 0x00000000 0x20ac C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .xt.prop 0x00000000 0xb4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .xt.prop 0x00000000 0xe4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .literal 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .xt.prop 0x00000000 0xf0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .xt.prop 0x00000000 0x174 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .literal 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .text 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .data 0x00000000 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_frame 0x00000000 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_info 0x00000000 0x170 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_abbrev 0x00000000 0xb7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_line 0x00000000 0x74 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_str 0x00000000 0x19e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_line_str + 0x00000000 0x254 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .xt.prop 0x00000000 0x3c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .text 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .rodata 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_info 0x00000000 0xad C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_abbrev 0x00000000 0x61 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_aranges + 0x00000000 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_line 0x00000000 0x3f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_str 0x00000000 0x11e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_line_str + 0x00000000 0x19a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .xt.prop 0x00000000 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .xt.prop 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .xt.prop 0x00000000 0x810 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .literal 0x00000000 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .text 0x00000000 0x1e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .debug_frame 0x00000000 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .debug_info 0x00000000 0x88a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .debug_abbrev 0x00000000 0x1e4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .debug_line 0x00000000 0xaa C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .debug_str 0x00000000 0x559 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .debug_line_str + 0x00000000 0x2ab C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .comment 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .xt.prop 0x00000000 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .xt.prop 0x00000000 0x198 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .xt.prop 0x00000000 0x198 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .xt.prop 0x00000000 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .xt.prop 0x00000000 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .xt.prop 0x00000000 0x3c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + .xt.prop 0x00000000 0x201c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + .literal 0x00000000 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .text 0x00000000 0x213 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .debug_line 0x00000000 0x4a1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .debug_info 0x00000000 0x25 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .xt.prop 0x00000000 0x264 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .literal 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .text 0x00000000 0x6c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .debug_line 0x00000000 0x135 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .debug_info 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .xt.prop 0x00000000 0xa8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .literal 0x00000000 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x5d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_line 0x00000000 0x117 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_info 0x00000000 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .xt.lit 0x00000000 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .xt.prop 0x00000000 0xa8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x81 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + .data 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + .bss 0x00000000 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + .debug_line 0x00000000 0x159 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + .debug_line_str + 0x00000000 0xc7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + .debug_info 0x00000000 0x25 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + .debug_str 0x00000000 0xd5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + .xt.prop 0x00000000 0x9c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + +Memory Configuration + +Name Origin Length Attributes +iram0_0_seg 0x40374000 0x00057700 xr +iram0_2_seg 0x42000020 0x007fffe0 xr +dram0_0_seg 0x3fc88000 0x00053700 rw +drom0_0_seg 0x3c000020 0x01ffffe0 r +rtc_iram_seg 0x600fe000 0x00001fe8 xrw +rtc_reserved_seg 0x600fffe8 0x00000018 rw +rtc_slow_seg 0x50000000 0x00002000 rw +extern_ram_seg 0x3c000020 0x01ffffe0 xrw +*default* 0x00000000 0xffffffff + +Linker script and memory map + + 0x00000000 IDF_TARGET_ESP32S3 = 0x0 +LOAD CMakeFiles/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.c.obj +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.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_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.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_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_twai/libesp_driver_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_adc/libesp_adc.a +LOAD esp-idf/esp_driver_cam/libesp_driver_cam.a +LOAD esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a +LOAD esp-idf/esp_eth/libesp_eth.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/espcoredump/libespcoredump.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/rt/librt.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/touch_element/libtouch_element.a +LOAD esp-idf/usb/libusb.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/fota_manager/libfota_manager.a +LOAD esp-idf/ftp_manager/libftp_manager.a +LOAD esp-idf/rpc_job_parser/librpc_job_parser.a +LOAD esp-idf/mqtt_manager/libmqtt_manager.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/esp_driver_cam/libesp_driver_cam.a +LOAD esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.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_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/esp_https_server/libesp_https_server.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/rt/librt.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/touch_element/libtouch_element.a +LOAD esp-idf/usb/libusb.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/fota_manager/libfota_manager.a +LOAD esp-idf/ftp_manager/libftp_manager.a +LOAD esp-idf/rpc_job_parser/librpc_job_parser.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.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_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.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_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_twai/libesp_driver_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_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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.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_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.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_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_twai/libesp_driver_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_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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.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_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.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_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_twai/libesp_driver_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_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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.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_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.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_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_twai/libesp_driver_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_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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.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_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.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_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_twai/libesp_driver_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_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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_mm/libesp_mm.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_security/libesp_security.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.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_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +LOAD esp-idf/esp_vfs_console/libesp_vfs_console.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/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/sdmmc/libsdmmc.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_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_driver_twai/libesp_driver_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_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 esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/newlib/libnewlib.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a +LOAD esp-idf/cxx/libcxx.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a +LOAD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libm.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libnosys.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a +LOAD C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a + 0x60000000 PROVIDE (UART0 = 0x60000000) + 0x60002000 PROVIDE (SPIMEM1 = 0x60002000) + 0x60003000 PROVIDE (SPIMEM0 = 0x60003000) + 0x60004000 PROVIDE (GPIO = 0x60004000) + [!provide] PROVIDE (SDM = 0x60004f00) + 0x60007000 PROVIDE (EFUSE = 0x60007000) + 0x60008000 PROVIDE (RTCCNTL = 0x60008000) + 0x60008400 PROVIDE (RTCIO = 0x60008400) + 0x60008800 PROVIDE (SENS = 0x60008800) + [!provide] PROVIDE (RTC_I2C = 0x60008c00) + [!provide] PROVIDE (HINF = 0x6000b000) + [!provide] PROVIDE (I2S0 = 0x6000f000) + [!provide] PROVIDE (I2S1 = 0x6002d000) + 0x60010000 PROVIDE (UART1 = 0x60010000) + [!provide] PROVIDE (I2C0 = 0x60013000) + [!provide] PROVIDE (UHCI0 = 0x60014000) + [!provide] PROVIDE (HOST = 0x60015000) + [!provide] PROVIDE (RMT = 0x60016000) + [!provide] PROVIDE (RMTMEM = 0x60016800) + [!provide] PROVIDE (PCNT = 0x60017000) + [!provide] PROVIDE (SLC = 0x60018000) + [!provide] PROVIDE (LEDC = 0x60019000) + [!provide] PROVIDE (MCPWM0 = 0x6001e000) + [!provide] PROVIDE (MCPWM1 = 0x6002c000) + [!provide] PROVIDE (MCP = 0x600c3000) + 0x6001f000 PROVIDE (TIMERG0 = 0x6001f000) + 0x60020000 PROVIDE (TIMERG1 = 0x60020000) + 0x60023000 PROVIDE (SYSTIMER = 0x60023000) + 0x60024000 PROVIDE (GPSPI2 = 0x60024000) + 0x60025000 PROVIDE (GPSPI3 = 0x60025000) + 0x60026000 PROVIDE (SYSCON = 0x60026000) + [!provide] PROVIDE (I2C1 = 0x60027000) + [!provide] PROVIDE (SDMMC = 0x60028000) + [!provide] PROVIDE (TWAI = 0x6002b000) + 0x6003f000 PROVIDE (GDMA = 0x6003f000) + 0x6002e000 PROVIDE (UART2 = 0x6002e000) + [!provide] PROVIDE (DMA = 0x6003f000) + 0x60040000 PROVIDE (APB_SARADC = 0x60040000) + [!provide] PROVIDE (LCD_CAM = 0x60041000) + 0x60038000 PROVIDE (USB_SERIAL_JTAG = 0x60038000) + [!provide] PROVIDE (USB0 = 0x60080000) + [!provide] PROVIDE (USB_DWC = 0x60080000) + [!provide] PROVIDE (USB_WRAP = 0x60039000) + [!provide] PROVIDE (WORLD_CONTROLLER = 0x600d0000) + 0x600c0000 PROVIDE (SYSTEM = 0x600c0000) + 0x4000057c rtc_get_reset_reason = 0x4000057c + 0x40000588 analog_super_wdt_reset_happened = 0x40000588 + 0x40000594 jtag_cpu_reset_happened = 0x40000594 + 0x400005a0 rtc_get_wakeup_cause = 0x400005a0 + 0x400005ac rtc_select_apb_bridge = 0x400005ac + 0x400005b8 rtc_unhold_all_pads = 0x400005b8 + 0x400005c4 ets_is_print_boot = 0x400005c4 + 0x400005d0 ets_printf = 0x400005d0 + 0x400005dc ets_install_putc1 = 0x400005dc + 0x400005e8 ets_install_uart_printf = 0x400005e8 + 0x400005f4 ets_install_putc2 = 0x400005f4 + 0x40000600 PROVIDE (ets_delay_us = 0x40000600) + 0x4000060c ets_get_stack_info = 0x4000060c + 0x40000618 ets_install_lock = 0x40000618 + 0x40000624 ets_backup_dma_copy = 0x40000624 + 0x40000630 ets_apb_backup_init_lock_func = 0x40000630 + 0x4000063c UartRxString = 0x4000063c + 0x40000648 uart_tx_one_char = 0x40000648 + 0x40000654 uart_tx_one_char2 = 0x40000654 + 0x40000660 uart_rx_one_char = 0x40000660 + 0x4000066c uart_rx_one_char_block = 0x4000066c + 0x40000678 uart_rx_readbuff = 0x40000678 + 0x40000684 uartAttach = 0x40000684 + 0x40000690 uart_tx_flush = 0x40000690 + 0x4000069c uart_tx_wait_idle = 0x4000069c + 0x400006a8 uart_div_modify = 0x400006a8 + 0x400006b4 ets_write_char_uart = 0x400006b4 + 0x400006c0 uart_tx_switch = 0x400006c0 + 0x400006cc multofup = 0x400006cc + 0x400006d8 software_reset = 0x400006d8 + 0x400006e4 software_reset_cpu = 0x400006e4 + 0x400006f0 assist_debug_clock_enable = 0x400006f0 + 0x400006fc assist_debug_record_enable = 0x400006fc + 0x40000708 clear_super_wdt_reset_flag = 0x40000708 + 0x40000714 disable_default_watchdog = 0x40000714 + 0x40000720 ets_set_appcpu_boot_addr = 0x40000720 + 0x4000072c esp_rom_set_rtc_wake_addr = 0x4000072c + 0x40000738 esp_rom_get_rtc_wake_addr = 0x40000738 + 0x40000744 send_packet = 0x40000744 + 0x40000750 recv_packet = 0x40000750 + 0x4000075c GetUartDevice = 0x4000075c + 0x40000768 UartDwnLdProc = 0x40000768 + 0x40000774 Uart_Init = 0x40000774 + 0x40000780 ets_set_user_start = 0x40000780 + 0x3ff1fffc ets_rom_layout_p = 0x3ff1fffc + 0x3fcefffc ets_ops_table_ptr = 0x3fcefffc + 0x4000078c mz_adler32 = 0x4000078c + 0x40000798 mz_crc32 = 0x40000798 + 0x400007a4 mz_free = 0x400007a4 + 0x400007b0 tdefl_compress = 0x400007b0 + 0x400007bc tdefl_compress_buffer = 0x400007bc + 0x400007c8 tdefl_compress_mem_to_heap = 0x400007c8 + 0x400007d4 tdefl_compress_mem_to_mem = 0x400007d4 + 0x400007e0 tdefl_compress_mem_to_output = 0x400007e0 + 0x400007ec tdefl_get_adler32 = 0x400007ec + 0x400007f8 tdefl_get_prev_return_status = 0x400007f8 + 0x40000804 tdefl_init = 0x40000804 + 0x40000810 tdefl_write_image_to_png_file_in_memory = 0x40000810 + 0x4000081c tdefl_write_image_to_png_file_in_memory_ex = 0x4000081c + 0x40000828 tinfl_decompress = 0x40000828 + 0x40000834 tinfl_decompress_mem_to_callback = 0x40000834 + 0x40000840 tinfl_decompress_mem_to_heap = 0x40000840 + 0x4000084c tinfl_decompress_mem_to_mem = 0x4000084c + [!provide] PROVIDE (jd_prepare = 0x40000858) + [!provide] PROVIDE (jd_decomp = 0x40000864) + 0x3fcefff8 dsps_fft2r_w_table_fc32_1024 = 0x3fcefff8 + [!provide] PROVIDE (opi_flash_set_lock_func = 0x40000870) + [!provide] PROVIDE (esp_rom_spi_cmd_config = 0x4000087c) + [!provide] PROVIDE (esp_rom_spi_cmd_start = 0x40000888) + 0x40000894 PROVIDE (esp_rom_opiflash_pin_config = 0x40000894) + 0x400008a0 PROVIDE (esp_rom_spi_set_op_mode = 0x400008a0) + [!provide] PROVIDE (esp_rom_opiflash_mode_reset = 0x400008ac) + 0x400008b8 PROVIDE (esp_rom_opiflash_exec_cmd = 0x400008b8) + [!provide] PROVIDE (esp_rom_opiflash_soft_reset = 0x400008c4) + [!provide] PROVIDE (esp_rom_opiflash_read_id = 0x400008d0) + [!provide] PROVIDE (esp_rom_opiflash_rdsr = 0x400008dc) + 0x400008e8 PROVIDE (esp_rom_opiflash_wait_idle = 0x400008e8) + 0x400008f4 PROVIDE (esp_rom_opiflash_wren = 0x400008f4) + 0x40000900 PROVIDE (esp_rom_opiflash_erase_sector = 0x40000900) + 0x4000090c PROVIDE (esp_rom_opiflash_erase_block_64k = 0x4000090c) + 0x40000918 PROVIDE (esp_rom_opiflash_erase_area = 0x40000918) + 0x40000924 PROVIDE (esp_rom_opiflash_read = 0x40000924) + 0x40000930 PROVIDE (esp_rom_opiflash_write = 0x40000930) + 0x4000093c PROVIDE (esp_rom_spi_set_dtr_swap_mode = 0x4000093c) + [!provide] PROVIDE (esp_rom_opiflash_exit_continuous_read_mode = 0x40000948) + 0x40000954 PROVIDE (esp_rom_opiflash_legacy_driver_init = 0x40000954) + [!provide] PROVIDE (esp_rom_opiflash_read_raw = 0x4004d9d4) + 0x3fcefff4 PROVIDE (rom_opiflash_cmd_def = 0x3fcefff4) + [!provide] PROVIDE (rom_spi_usr_cmd_legacy_funcs = 0x3fcefff0) + 0x40000960 PROVIDE (esp_rom_spiflash_wait_idle = 0x40000960) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted = 0x4000096c) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_dest = 0x40000978) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40000984) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40000990) + [!provide] PROVIDE (esp_rom_spiflash_erase_chip = 0x4000099c) + [!provide] PROVIDE (_esp_rom_spiflash_erase_sector = 0x400009a8) + [!provide] PROVIDE (_esp_rom_spiflash_erase_block = 0x400009b4) + [!provide] PROVIDE (_esp_rom_spiflash_write = 0x400009c0) + [!provide] PROVIDE (_esp_rom_spiflash_read = 0x400009cc) + [!provide] PROVIDE (_esp_rom_spiflash_unlock = 0x400009d8) + [!provide] PROVIDE (_SPIEraseArea = 0x400009e4) + [!provide] PROVIDE (_SPI_write_enable = 0x400009f0) + [!provide] PROVIDE (esp_rom_spiflash_erase_sector = 0x400009fc) + [!provide] PROVIDE (esp_rom_spiflash_erase_block = 0x40000a08) + [!provide] PROVIDE (esp_rom_spiflash_write = 0x40000a14) + [!provide] PROVIDE (esp_rom_spiflash_read = 0x40000a20) + [!provide] PROVIDE (esp_rom_spiflash_unlock = 0x40000a2c) + [!provide] PROVIDE (SPIEraseArea = 0x40000a38) + 0x40000a44 PROVIDE (SPI_write_enable = 0x40000a44) + 0x40000a50 PROVIDE (esp_rom_spiflash_config_param = 0x40000a50) + [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000a5c) + 0x40000a68 PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40000a68) + [!provide] PROVIDE (esp_rom_spi_flash_auto_sus_res = 0x40000a74) + [!provide] PROVIDE (esp_rom_spi_flash_send_resume = 0x40000a80) + [!provide] PROVIDE (esp_rom_spi_flash_update_id = 0x40000a8c) + 0x40000a98 PROVIDE (esp_rom_spiflash_config_clk = 0x40000a98) + 0x40000aa4 PROVIDE (esp_rom_spiflash_config_readmode = 0x40000aa4) + [!provide] PROVIDE (esp_rom_spiflash_read_status = 0x40000ab0) + [!provide] PROVIDE (esp_rom_spiflash_read_statushigh = 0x40000abc) + [!provide] PROVIDE (esp_rom_spiflash_write_status = 0x40000ac8) + [!provide] PROVIDE (esp_rom_opiflash_cache_mode_config = 0x40000ad4) + [!provide] PROVIDE (esp_rom_spiflash_auto_wait_idle = 0x40000ae0) + [!provide] PROVIDE (spi_flash_attach = 0x40000aec) + [!provide] PROVIDE (spi_flash_get_chip_size = 0x40000af8) + [!provide] PROVIDE (spi_flash_guard_set = 0x40000b04) + [!provide] PROVIDE (spi_flash_guard_get = 0x40000b10) + [!provide] PROVIDE (spi_flash_write_config_set = 0x40000b1c) + [!provide] PROVIDE (spi_flash_write_config_get = 0x40000b28) + [!provide] PROVIDE (spi_flash_safe_write_address_func_set = 0x40000b34) + [!provide] PROVIDE (spi_flash_unlock = 0x40000b40) + [!provide] PROVIDE (spi_flash_erase_range = 0x40000b4c) + [!provide] PROVIDE (spi_flash_erase_sector = 0x40000b58) + [!provide] PROVIDE (spi_flash_write = 0x40000b64) + [!provide] PROVIDE (spi_flash_read = 0x40000b70) + [!provide] PROVIDE (spi_flash_write_encrypted = 0x40000b7c) + [!provide] PROVIDE (spi_flash_read_encrypted = 0x40000b88) + [!provide] PROVIDE (spi_flash_mmap_os_func_set = 0x40000b94) + [!provide] PROVIDE (spi_flash_mmap_page_num_init = 0x40000ba0) + [!provide] PROVIDE (spi_flash_mmap = 0x40000bac) + [!provide] PROVIDE (spi_flash_mmap_pages = 0x40000bb8) + [!provide] PROVIDE (spi_flash_munmap = 0x40000bc4) + [!provide] PROVIDE (spi_flash_mmap_dump = 0x40000bd0) + [!provide] PROVIDE (spi_flash_check_and_flush_cache = 0x40000bdc) + [!provide] PROVIDE (spi_flash_mmap_get_free_pages = 0x40000be8) + [!provide] PROVIDE (spi_flash_cache2phys = 0x40000bf4) + [!provide] PROVIDE (spi_flash_phys2cache = 0x40000c00) + [!provide] PROVIDE (spi_flash_disable_cache = 0x40000c0c) + [!provide] PROVIDE (spi_flash_restore_cache = 0x40000c18) + [!provide] PROVIDE (spi_flash_cache_enabled = 0x40000c24) + [!provide] PROVIDE (spi_flash_enable_cache = 0x40000c30) + [!provide] PROVIDE (spi_cache_mode_switch = 0x40000c3c) + [!provide] PROVIDE (spi_common_set_dummy_output = 0x40000c48) + [!provide] PROVIDE (spi_common_set_flash_cs_timing = 0x40000c54) + 0x40000c60 PROVIDE (esp_rom_spi_set_address_bit_len = 0x40000c60) + [!provide] PROVIDE (esp_enable_cache_flash_wrap = 0x40000c6c) + [!provide] PROVIDE (SPILock = 0x40000c78) + [!provide] PROVIDE (SPIMasterReadModeCnfig = 0x40000c84) + [!provide] PROVIDE (SPI_Common_Command = 0x40000c90) + [!provide] PROVIDE (SPI_WakeUp = 0x40000c9c) + [!provide] PROVIDE (SPI_block_erase = 0x40000ca8) + [!provide] PROVIDE (SPI_chip_erase = 0x40000cb4) + [!provide] PROVIDE (SPI_init = 0x40000cc0) + [!provide] PROVIDE (SPI_page_program = 0x40000ccc) + [!provide] PROVIDE (SPI_read_data = 0x40000cd8) + [!provide] PROVIDE (SPI_sector_erase = 0x40000ce4) + [!provide] PROVIDE (SelectSpiFunction = 0x40000cf0) + [!provide] PROVIDE (SetSpiDrvs = 0x40000cfc) + [!provide] PROVIDE (Wait_SPI_Idle = 0x40000d08) + [!provide] PROVIDE (spi_dummy_len_fix = 0x40000d14) + [!provide] PROVIDE (Disable_QMode = 0x40000d20) + [!provide] PROVIDE (Enable_QMode = 0x40000d2c) + 0x3fceffe8 PROVIDE (rom_spiflash_legacy_funcs = 0x3fceffe8) + 0x3fceffe4 PROVIDE (rom_spiflash_legacy_data = 0x3fceffe4) + [!provide] PROVIDE (g_flash_guard_ops = 0x3fceffec) + [!provide] PROVIDE (spi_flash_hal_poll_cmd_done = 0x40000d38) + [!provide] PROVIDE (spi_flash_hal_device_config = 0x40000d44) + [!provide] PROVIDE (spi_flash_hal_configure_host_io_mode = 0x40000d50) + [!provide] PROVIDE (spi_flash_hal_common_command = 0x40000d5c) + [!provide] PROVIDE (spi_flash_hal_read = 0x40000d68) + [!provide] PROVIDE (spi_flash_hal_erase_chip = 0x40000d74) + [!provide] PROVIDE (spi_flash_hal_erase_sector = 0x40000d80) + [!provide] PROVIDE (spi_flash_hal_erase_block = 0x40000d8c) + [!provide] PROVIDE (spi_flash_hal_program_page = 0x40000d98) + [!provide] PROVIDE (spi_flash_hal_set_write_protect = 0x40000da4) + [!provide] PROVIDE (spi_flash_hal_host_idle = 0x40000db0) + [!provide] PROVIDE (spi_flash_chip_generic_probe = 0x40000ed0) + [!provide] PROVIDE (spi_flash_chip_generic_detect_size = 0x40000edc) + [!provide] PROVIDE (spi_flash_chip_generic_write = 0x40000ee8) + [!provide] PROVIDE (spi_flash_chip_generic_write_encrypted = 0x40000ef4) + [!provide] PROVIDE (spi_flash_chip_generic_set_write_protect = 0x40000f00) + [!provide] PROVIDE (spi_flash_common_write_status_16b_wrsr = 0x40000f0c) + [!provide] PROVIDE (spi_flash_chip_generic_reset = 0x40000f18) + [!provide] PROVIDE (spi_flash_chip_generic_erase_chip = 0x40000f24) + [!provide] PROVIDE (spi_flash_chip_generic_erase_sector = 0x40000f30) + [!provide] PROVIDE (spi_flash_chip_generic_erase_block = 0x40000f3c) + [!provide] PROVIDE (spi_flash_chip_generic_page_program = 0x40000f48) + [!provide] PROVIDE (spi_flash_chip_generic_get_write_protect = 0x40000f54) + [!provide] PROVIDE (spi_flash_common_read_status_16b_rdsr_rdsr2 = 0x40000f60) + [!provide] PROVIDE (spi_flash_chip_generic_read_reg = 0x40000f6c) + [!provide] PROVIDE (spi_flash_chip_generic_yield = 0x40000f78) + [!provide] PROVIDE (spi_flash_generic_wait_host_idle = 0x40000f84) + [!provide] PROVIDE (spi_flash_chip_generic_wait_idle = 0x40000f90) + [!provide] PROVIDE (spi_flash_chip_generic_config_host_io_mode = 0x40000f9c) + [!provide] PROVIDE (spi_flash_chip_generic_read = 0x40000fa8) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr2 = 0x40000fb4) + [!provide] PROVIDE (spi_flash_chip_generic_get_io_mode = 0x40000fc0) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr = 0x40000fcc) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr = 0x40000fd8) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr2 = 0x40000fe4) + [!provide] PROVIDE (spi_flash_common_set_io_mode = 0x40000ff0) + [!provide] PROVIDE (spi_flash_chip_generic_set_io_mode = 0x40000ffc) + [!provide] PROVIDE (spi_flash_chip_gd_get_io_mode = 0x40001008) + [!provide] PROVIDE (spi_flash_chip_gd_probe = 0x40001014) + [!provide] PROVIDE (spi_flash_chip_gd_set_io_mode = 0x40001020) + [!provide] PROVIDE (spi_flash_chip_generic_config_data = 0x3fceffe0) + [!provide] PROVIDE (memspi_host_read_id_hs = 0x4000102c) + [!provide] PROVIDE (memspi_host_read_status_hs = 0x40001038) + [!provide] PROVIDE (memspi_host_flush_cache = 0x40001044) + [!provide] PROVIDE (memspi_host_erase_chip = 0x40001050) + [!provide] PROVIDE (memspi_host_erase_sector = 0x4000105c) + [!provide] PROVIDE (memspi_host_erase_block = 0x40001068) + [!provide] PROVIDE (memspi_host_program_page = 0x40001074) + [!provide] PROVIDE (memspi_host_read = 0x40001080) + [!provide] PROVIDE (memspi_host_set_write_protect = 0x4000108c) + [!provide] PROVIDE (memspi_host_set_max_read_len = 0x40001098) + [!provide] PROVIDE (memspi_host_read_data_slicer = 0x400010a4) + [!provide] PROVIDE (memspi_host_write_data_slicer = 0x400010b0) + [!provide] PROVIDE (esp_flash_chip_driver_initialized = 0x400010bc) + [!provide] PROVIDE (esp_flash_read_id = 0x400010c8) + [!provide] PROVIDE (esp_flash_get_size = 0x400010d4) + [!provide] PROVIDE (esp_flash_erase_chip = 0x400010e0) + [!provide] PROVIDE (rom_esp_flash_erase_region = 0x400010ec) + [!provide] PROVIDE (esp_flash_get_chip_write_protect = 0x400010f8) + [!provide] PROVIDE (esp_flash_set_chip_write_protect = 0x40001104) + [!provide] PROVIDE (esp_flash_get_protectable_regions = 0x40001110) + [!provide] PROVIDE (esp_flash_get_protected_region = 0x4000111c) + [!provide] PROVIDE (esp_flash_set_protected_region = 0x40001128) + [!provide] PROVIDE (esp_flash_read = 0x40001134) + [!provide] PROVIDE (rom_esp_flash_write = 0x40001140) + [!provide] PROVIDE (rom_esp_flash_write_encrypted = 0x4000114c) + [!provide] PROVIDE (esp_flash_read_encrypted = 0x40001158) + [!provide] PROVIDE (esp_flash_get_io_mode = 0x40001164) + [!provide] PROVIDE (esp_flash_set_io_mode = 0x40001170) + [!provide] PROVIDE (spi_flash_boot_attach = 0x4000117c) + [!provide] PROVIDE (spi_flash_dump_counters = 0x40001188) + [!provide] PROVIDE (spi_flash_get_counters = 0x40001194) + [!provide] PROVIDE (spi_flash_op_counters_config = 0x400011a0) + [!provide] PROVIDE (spi_flash_reset_counters = 0x400011ac) + [!provide] PROVIDE (esp_flash_read_chip_id = 0x400011b8) + [!provide] PROVIDE (detect_spi_flash_chip = 0x400011c4) + [!provide] PROVIDE (esp_rom_spiflash_write_disable = 0x400011d0) + [!provide] PROVIDE (esp_flash_default_chip = 0x3fceffdc) + [!provide] PROVIDE (esp_flash_api_funcs = 0x3fceffd8) + 0x400015fc PROVIDE (Cache_Get_ICache_Line_Size = 0x400015fc) + 0x40001608 PROVIDE (Cache_Get_DCache_Line_Size = 0x40001608) + 0x40001614 PROVIDE (Cache_Get_Mode = 0x40001614) + 0x40001620 PROVIDE (Cache_Set_ICache_Mode = 0x40001620) + 0x4000162c PROVIDE (Cache_Set_DCache_Mode = 0x4000162c) + [!provide] PROVIDE (Cache_Address_Through_ICache = 0x40001638) + [!provide] PROVIDE (Cache_Address_Through_DCache = 0x40001644) + [!provide] PROVIDE (Cache_Set_Default_Mode = 0x40001650) + [!provide] PROVIDE (Cache_Enable_Defalut_ICache_Mode = 0x4000165c) + 0x40001668 PROVIDE (ROM_Boot_Cache_Init = 0x40001668) + [!provide] PROVIDE (Cache_Invalidate_ICache_Items = 0x40001674) + [!provide] PROVIDE (Cache_Invalidate_DCache_Items = 0x40001680) + [!provide] PROVIDE (Cache_Clean_Items = 0x4000168c) + [!provide] PROVIDE (Cache_WriteBack_Items = 0x40001698) + [!provide] PROVIDE (Cache_Op_Addr = 0x400016a4) + 0x400016b0 PROVIDE (Cache_Invalidate_Addr = 0x400016b0) + [!provide] PROVIDE (Cache_Clean_Addr = 0x400016bc) + 0x400016c8 PROVIDE (rom_Cache_WriteBack_Addr = 0x400016c8) + 0x400016d4 PROVIDE (Cache_Invalidate_ICache_All = 0x400016d4) + 0x400016e0 PROVIDE (Cache_Invalidate_DCache_All = 0x400016e0) + [!provide] PROVIDE (Cache_Clean_All = 0x400016ec) + 0x400016f8 PROVIDE (Cache_WriteBack_All = 0x400016f8) + [!provide] PROVIDE (Cache_Mask_All = 0x40001704) + [!provide] PROVIDE (Cache_UnMask_Dram0 = 0x40001710) + [!provide] PROVIDE (Cache_Suspend_ICache_Autoload = 0x4000171c) + [!provide] PROVIDE (Cache_Resume_ICache_Autoload = 0x40001728) + 0x40001734 PROVIDE (Cache_Suspend_DCache_Autoload = 0x40001734) + 0x40001740 PROVIDE (Cache_Resume_DCache_Autoload = 0x40001740) + [!provide] PROVIDE (Cache_Start_ICache_Preload = 0x4000174c) + [!provide] PROVIDE (Cache_ICache_Preload_Done = 0x40001758) + [!provide] PROVIDE (Cache_End_ICache_Preload = 0x40001764) + [!provide] PROVIDE (Cache_Start_DCache_Preload = 0x40001770) + [!provide] PROVIDE (Cache_DCache_Preload_Done = 0x4000177c) + [!provide] PROVIDE (Cache_End_DCache_Preload = 0x40001788) + [!provide] PROVIDE (Cache_Config_ICache_Autoload = 0x40001794) + [!provide] PROVIDE (Cache_Config_ICache_Region_Autoload = 0x400017a0) + [!provide] PROVIDE (Cache_Enable_ICache_Autoload = 0x400017ac) + [!provide] PROVIDE (Cache_Disable_ICache_Autoload = 0x400017b8) + [!provide] PROVIDE (Cache_Config_DCache_Autoload = 0x400017c4) + [!provide] PROVIDE (Cache_Config_DCache_Region_Autoload = 0x400017d0) + [!provide] PROVIDE (Cache_Enable_DCache_Autoload = 0x400017dc) + [!provide] PROVIDE (Cache_Disable_DCache_Autoload = 0x400017e8) + [!provide] PROVIDE (Cache_Enable_ICache_PreLock = 0x400017f4) + [!provide] PROVIDE (Cache_Disable_ICache_PreLock = 0x40001800) + [!provide] PROVIDE (Cache_Lock_ICache_Items = 0x4000180c) + [!provide] PROVIDE (Cache_Unlock_ICache_Items = 0x40001818) + [!provide] PROVIDE (Cache_Enable_DCache_PreLock = 0x40001824) + [!provide] PROVIDE (Cache_Disable_DCache_PreLock = 0x40001830) + [!provide] PROVIDE (Cache_Lock_DCache_Items = 0x4000183c) + [!provide] PROVIDE (Cache_Unlock_DCache_Items = 0x40001848) + [!provide] PROVIDE (Cache_Lock_Addr = 0x40001854) + [!provide] PROVIDE (Cache_Unlock_Addr = 0x40001860) + 0x4000186c PROVIDE (Cache_Disable_ICache = 0x4000186c) + 0x40001878 PROVIDE (Cache_Enable_ICache = 0x40001878) + 0x40001884 PROVIDE (Cache_Disable_DCache = 0x40001884) + 0x40001890 PROVIDE (Cache_Enable_DCache = 0x40001890) + 0x4000189c PROVIDE (rom_Cache_Suspend_ICache = 0x4000189c) + 0x400018a8 PROVIDE (Cache_Resume_ICache = 0x400018a8) + 0x400018b4 PROVIDE (rom_Cache_Suspend_DCache = 0x400018b4) + 0x400018c0 PROVIDE (Cache_Resume_DCache = 0x400018c0) + [!provide] PROVIDE (Cache_Occupy_Items = 0x400018cc) + [!provide] PROVIDE (Cache_Occupy_Addr = 0x400018d8) + 0x400018e4 PROVIDE (rom_Cache_Freeze_ICache_Enable = 0x400018e4) + 0x400018f0 PROVIDE (Cache_Freeze_ICache_Disable = 0x400018f0) + 0x400018fc PROVIDE (rom_Cache_Freeze_DCache_Enable = 0x400018fc) + 0x40001908 PROVIDE (Cache_Freeze_DCache_Disable = 0x40001908) + 0x40001914 PROVIDE (Cache_Set_IDROM_MMU_Size = 0x40001914) + [!provide] PROVIDE (flash2spiram_instruction_offset = 0x40001920) + [!provide] PROVIDE (flash2spiram_rodata_offset = 0x4000192c) + [!provide] PROVIDE (flash_instr_rodata_start_page = 0x40001938) + [!provide] PROVIDE (flash_instr_rodata_end_page = 0x40001944) + 0x40001950 PROVIDE (Cache_Set_IDROM_MMU_Info = 0x40001950) + [!provide] PROVIDE (Cache_Get_IROM_MMU_End = 0x4000195c) + [!provide] PROVIDE (Cache_Get_DROM_MMU_End = 0x40001968) + [!provide] PROVIDE (Cache_Owner_Init = 0x40001974) + 0x40001980 PROVIDE (Cache_Occupy_ICache_MEMORY = 0x40001980) + 0x4000198c PROVIDE (Cache_Occupy_DCache_MEMORY = 0x4000198c) + [!provide] PROVIDE (Cache_MMU_Init = 0x40001998) + [!provide] PROVIDE (Cache_Ibus_MMU_Set = 0x400019a4) + [!provide] PROVIDE (Cache_Dbus_MMU_Set = 0x400019b0) + 0x400019bc PROVIDE (rom_Cache_Count_Flash_Pages = 0x400019bc) + [!provide] PROVIDE (Cache_Flash_To_SPIRAM_Copy = 0x400019c8) + [!provide] PROVIDE (Cache_Travel_Tag_Memory = 0x400019d4) + [!provide] PROVIDE (Cache_Travel_Tag_Memory2 = 0x400019e0) + [!provide] PROVIDE (Cache_Get_Virtual_Addr = 0x400019ec) + [!provide] PROVIDE (Cache_Get_Memory_BaseAddr = 0x400019f8) + [!provide] PROVIDE (Cache_Get_Memory_Addr = 0x40001a04) + [!provide] PROVIDE (Cache_Get_Memory_value = 0x40001a10) + 0x40001a1c PROVIDE (rom_config_instruction_cache_mode = 0x40001a1c) + 0x40001a28 PROVIDE (rom_config_data_cache_mode = 0x40001a28) + [!provide] PROVIDE (rom_cache_op_cb = 0x3fceffc8) + [!provide] PROVIDE (rom_cache_internal_table_ptr = 0x3fceffc4) + 0x40001a34 ets_get_apb_freq = 0x40001a34 + 0x40001a40 ets_get_cpu_frequency = 0x40001a40 + 0x40001a4c ets_update_cpu_frequency = 0x40001a4c + 0x40001a58 ets_get_printf_channel = 0x40001a58 + 0x40001a64 ets_get_xtal_div = 0x40001a64 + 0x40001a70 ets_set_xtal_div = 0x40001a70 + 0x40001a7c ets_get_xtal_freq = 0x40001a7c + 0x40001a88 gpio_input_get = 0x40001a88 + 0x40001a94 gpio_matrix_in = 0x40001a94 + 0x40001aa0 gpio_matrix_out = 0x40001aa0 + 0x40001ac4 gpio_output_set = 0x40001ac4 + 0x40001ad0 gpio_pad_hold = 0x40001ad0 + 0x40001adc gpio_pad_input_disable = 0x40001adc + 0x40001ae8 gpio_pad_input_enable = 0x40001ae8 + 0x40001af4 gpio_pad_pulldown = 0x40001af4 + 0x40001b00 gpio_pad_pullup = 0x40001b00 + 0x40001b0c gpio_pad_select_gpio = 0x40001b0c + 0x40001b18 gpio_pad_set_drv = 0x40001b18 + 0x40001b24 gpio_pad_unhold = 0x40001b24 + 0x40001b30 gpio_pin_wakeup_disable = 0x40001b30 + 0x40001b3c gpio_pin_wakeup_enable = 0x40001b3c + 0x40001b48 gpio_bypass_matrix_in = 0x40001b48 + 0x40001b54 intr_matrix_set = 0x40001b54 + 0x40001b60 ets_intr_lock = 0x40001b60 + 0x40001b6c ets_intr_unlock = 0x40001b6c + 0x40001b78 ets_isr_attach = 0x40001b78 + 0x40001b84 ets_isr_mask = 0x40001b84 + 0x40001b90 ets_isr_unmask = 0x40001b90 + 0x40001b9c xthal_bcopy = 0x40001b9c + 0x40001ba8 xthal_memcpy = 0x40001ba8 + 0x40001bb4 xthal_get_ccompare = 0x40001bb4 + 0x40001bc0 xthal_set_ccompare = 0x40001bc0 + 0x40001bcc xthal_get_ccount = 0x40001bcc + 0x40001bd8 xthal_get_interrupt = 0x40001bd8 + 0x40001be4 xthal_set_intclear = 0x40001be4 + 0x40001bf0 _xtos_ints_off = 0x40001bf0 + 0x40001bfc _xtos_ints_on = 0x40001bfc + 0x40001c08 _xtos_restore_intlevel = 0x40001c08 + 0x40001c14 _xtos_set_exception_handler = 0x40001c14 + 0x40001c20 _xtos_set_interrupt_handler = 0x40001c20 + 0x40001c2c _xtos_set_interrupt_handler_arg = 0x40001c2c + 0x40001c38 _xtos_set_intlevel = 0x40001c38 + 0x40001c44 _xtos_set_vpri = 0x40001c44 + 0x40001c50 md5_vector = 0x40001c50 + 0x40001c5c MD5Init = 0x40001c5c + 0x40001c68 MD5Update = 0x40001c68 + 0x40001c74 MD5Final = 0x40001c74 + 0x40001c80 hmac_md5_vector = 0x40001c80 + 0x40001c8c hmac_md5 = 0x40001c8c + 0x40001c98 crc32_le = 0x40001c98 + 0x40001ca4 crc32_be = 0x40001ca4 + 0x40001cb0 crc16_le = 0x40001cb0 + 0x40001cbc crc16_be = 0x40001cbc + 0x40001cc8 crc8_le = 0x40001cc8 + 0x40001cd4 crc8_be = 0x40001cd4 + 0x40001ce0 esp_crc8 = 0x40001ce0 + 0x40001cec ets_sha_enable = 0x40001cec + 0x40001cf8 ets_sha_disable = 0x40001cf8 + 0x40001d04 ets_sha_get_state = 0x40001d04 + 0x40001d10 ets_sha_init = 0x40001d10 + 0x40001d1c ets_sha_process = 0x40001d1c + 0x40001d28 ets_sha_starts = 0x40001d28 + 0x40001d34 ets_sha_update = 0x40001d34 + 0x40001d40 ets_sha_finish = 0x40001d40 + 0x40001d4c ets_sha_clone = 0x40001d4c + 0x40001d58 ets_hmac_enable = 0x40001d58 + 0x40001d64 ets_hmac_disable = 0x40001d64 + 0x40001d70 ets_hmac_calculate_message = 0x40001d70 + 0x40001d7c ets_hmac_calculate_downstream = 0x40001d7c + 0x40001d88 ets_hmac_invalidate_downstream = 0x40001d88 + 0x40001d94 ets_jtag_enable_temporarily = 0x40001d94 + 0x40001da0 ets_aes_enable = 0x40001da0 + 0x40001dac ets_aes_disable = 0x40001dac + 0x40001db8 ets_aes_setkey = 0x40001db8 + 0x40001dc4 ets_aes_block = 0x40001dc4 + 0x40001dd0 ets_bigint_enable = 0x40001dd0 + 0x40001ddc ets_bigint_disable = 0x40001ddc + 0x40001de8 ets_bigint_multiply = 0x40001de8 + 0x40001df4 ets_bigint_modmult = 0x40001df4 + 0x40001e00 ets_bigint_modexp = 0x40001e00 + 0x40001e0c ets_bigint_wait_finish = 0x40001e0c + 0x40001e18 ets_bigint_getz = 0x40001e18 + 0x40001e24 ets_ds_enable = 0x40001e24 + 0x40001e30 ets_ds_disable = 0x40001e30 + 0x40001e3c ets_ds_start_sign = 0x40001e3c + 0x40001e48 ets_ds_is_busy = 0x40001e48 + 0x40001e54 ets_ds_finish_sign = 0x40001e54 + 0x40001e60 ets_ds_encrypt_params = 0x40001e60 + 0x40001e6c ets_aes_setkey_dec = 0x40001e6c + 0x40001e78 ets_aes_setkey_enc = 0x40001e78 + 0x40001e84 ets_mgf1_sha256 = 0x40001e84 + 0x40001e90 ets_efuse_read = 0x40001e90 + 0x40001e9c ets_efuse_program = 0x40001e9c + 0x40001ea8 ets_efuse_clear_program_registers = 0x40001ea8 + 0x40001eb4 ets_efuse_write_key = 0x40001eb4 + 0x40001ec0 ets_efuse_get_read_register_address = 0x40001ec0 + 0x40001ecc ets_efuse_get_key_purpose = 0x40001ecc + 0x40001ed8 ets_efuse_key_block_unused = 0x40001ed8 + 0x40001ee4 ets_efuse_find_unused_key_block = 0x40001ee4 + 0x40001ef0 ets_efuse_rs_calculate = 0x40001ef0 + 0x40001efc ets_efuse_count_unused_key_blocks = 0x40001efc + 0x40001f08 ets_efuse_secure_boot_enabled = 0x40001f08 + 0x40001f14 ets_efuse_secure_boot_aggressive_revoke_enabled = 0x40001f14 + 0x40001f20 ets_efuse_cache_encryption_enabled = 0x40001f20 + 0x40001f2c ets_efuse_download_modes_disabled = 0x40001f2c + 0x40001f38 ets_efuse_find_purpose = 0x40001f38 + 0x40001f44 ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x40001f44 + 0x40001f50 ets_efuse_force_send_resume = 0x40001f50 + 0x40001f5c ets_efuse_get_flash_delay_us = 0x40001f5c + 0x40001f68 ets_efuse_get_mac = 0x40001f68 + 0x40001f74 ets_efuse_get_spiconfig = 0x40001f74 + 0x40001f80 ets_efuse_usb_print_is_disabled = 0x40001f80 + 0x40001f8c ets_efuse_usb_serial_jtag_print_is_disabled = 0x40001f8c + 0x40001f98 ets_efuse_get_uart_print_control = 0x40001f98 + 0x40001fa4 ets_efuse_get_wp_pad = 0x40001fa4 + 0x40001fb0 ets_efuse_legacy_spi_boot_mode_disabled = 0x40001fb0 + 0x40001fbc ets_efuse_security_download_modes_enabled = 0x40001fbc + 0x40001fc8 ets_efuse_set_timing = 0x40001fc8 + 0x40001fd4 ets_efuse_jtag_disabled = 0x40001fd4 + 0x40001fe0 ets_efuse_usb_download_mode_disabled = 0x40001fe0 + 0x40001fec ets_efuse_usb_module_disabled = 0x40001fec + 0x40001ff8 ets_efuse_usb_device_disabled = 0x40001ff8 + 0x40002004 ets_efuse_flash_octal_mode = 0x40002004 + 0x40002010 ets_efuse_ecc_en = 0x40002010 + 0x4000201c ets_efuse_ecc_flash_page_size = 0x4000201c + 0x40002028 ets_efuse_ecc_16to17_mode = 0x40002028 + 0x40002034 ets_ecc_flash_enable = 0x40002034 + 0x40002040 ets_ecc_flash_enable_all = 0x40002040 + 0x4000204c ets_ecc_flash_disable = 0x4000204c + 0x40002058 ets_ecc_flash_disable_all = 0x40002058 + 0x40002064 ets_ecc_get_flash_page_size = 0x40002064 + 0x40002070 ets_ecc_set_flash_page_size = 0x40002070 + 0x4000207c ets_ecc_set_flash_byte_mode = 0x4000207c + 0x40002088 ets_ecc_get_flash_byte_mode = 0x40002088 + 0x40002094 ets_ecc_set_flash_range = 0x40002094 + 0x400020a0 ets_ecc_get_flash_range = 0x400020a0 + 0x400020ac ets_ecc_sram_enable = 0x400020ac + 0x400020b8 ets_ecc_sram_disable = 0x400020b8 + 0x400020c4 ets_ecc_sram_enable_all = 0x400020c4 + 0x400020d0 ets_ecc_sram_disable_all = 0x400020d0 + 0x400020dc ets_ecc_get_sram_page_size = 0x400020dc + 0x400020e8 ets_ecc_set_sram_page_size = 0x400020e8 + 0x400020f4 ets_ecc_get_sram_byte_mode = 0x400020f4 + 0x40002100 ets_ecc_set_sram_byte_mode = 0x40002100 + 0x4000210c ets_ecc_set_sram_range = 0x4000210c + 0x40002118 ets_ecc_get_sram_range = 0x40002118 + 0x3fceffc0 ets_ecc_table_ptr = 0x3fceffc0 + 0x40002124 ets_emsa_pss_verify = 0x40002124 + 0x40002130 ets_rsa_pss_verify = 0x40002130 + 0x4000213c ets_secure_boot_verify_bootloader_with_keys = 0x4000213c + 0x40002148 ets_secure_boot_verify_signature = 0x40002148 + 0x40002154 ets_secure_boot_read_key_digests = 0x40002154 + 0x40002160 ets_secure_boot_revoke_public_key_digest = 0x40002160 + [!provide] PROVIDE (usb_uart_otg_rx_one_char = 0x400025a4) + [!provide] PROVIDE (usb_uart_otg_rx_one_char_block = 0x400025b0) + [!provide] PROVIDE (usb_uart_otg_tx_flush = 0x400025bc) + [!provide] PROVIDE (usb_uart_otg_tx_one_char = 0x400025c8) + [!provide] PROVIDE (usb_uart_device_rx_one_char = 0x400025d4) + [!provide] PROVIDE (usb_uart_device_rx_one_char_block = 0x400025e0) + [!provide] PROVIDE (usb_uart_device_tx_flush = 0x400025ec) + [!provide] PROVIDE (usb_uart_device_tx_one_char = 0x400025f8) + [!provide] PROVIDE (Uart_Init_USB = 0x40002604) + [!provide] PROVIDE (uart_acm_dev = 0x3fceffbc) + 0x3fceffb9 PROVIDE (g_uart_print = 0x3fceffb9) + 0x3fceffb8 PROVIDE (g_usb_print = 0x3fceffb8) + 0x40002610 cdc_acm_class_handle_req = 0x40002610 + 0x4000261c cdc_acm_init = 0x4000261c + 0x40002628 cdc_acm_fifo_fill = 0x40002628 + 0x40002634 cdc_acm_rx_fifo_cnt = 0x40002634 + 0x40002640 cdc_acm_fifo_read = 0x40002640 + 0x4000264c cdc_acm_irq_tx_enable = 0x4000264c + 0x40002658 cdc_acm_irq_tx_disable = 0x40002658 + 0x40002664 cdc_acm_irq_state_enable = 0x40002664 + 0x40002670 cdc_acm_irq_state_disable = 0x40002670 + 0x4000267c cdc_acm_irq_tx_ready = 0x4000267c + 0x40002688 cdc_acm_irq_rx_enable = 0x40002688 + 0x40002694 cdc_acm_irq_rx_disable = 0x40002694 + 0x400026a0 cdc_acm_irq_rx_ready = 0x400026a0 + 0x400026ac cdc_acm_irq_is_pending = 0x400026ac + 0x400026b8 cdc_acm_irq_callback_set = 0x400026b8 + 0x400026c4 cdc_acm_line_ctrl_set = 0x400026c4 + 0x400026d0 cdc_acm_line_ctrl_get = 0x400026d0 + 0x400026dc cdc_acm_poll_out = 0x400026dc + 0x400026e8 chip_usb_dw_did_persist = 0x400026e8 + 0x400026f4 chip_usb_dw_init = 0x400026f4 + 0x40002700 chip_usb_detach = 0x40002700 + 0x4000270c chip_usb_dw_prepare_persist = 0x4000270c + 0x40002718 chip_usb_get_persist_flags = 0x40002718 + 0x40002724 chip_usb_set_persist_flags = 0x40002724 + 0x40002730 cpio_start = 0x40002730 + 0x4000273c cpio_feed = 0x4000273c + 0x40002748 cpio_done = 0x40002748 + 0x40002754 cpio_destroy = 0x40002754 + 0x40002760 dfu_flash_init = 0x40002760 + 0x4000276c dfu_flash_erase = 0x4000276c + 0x40002778 dfu_flash_program = 0x40002778 + 0x40002784 dfu_flash_read = 0x40002784 + 0x40002790 dfu_flash_attach = 0x40002790 + 0x4000279c dfu_cpio_callback = 0x4000279c + 0x400027a8 dfu_updater_get_err = 0x400027a8 + 0x400027b4 dfu_updater_clear_err = 0x400027b4 + 0x400027c0 dfu_updater_enable = 0x400027c0 + 0x400027cc dfu_updater_begin = 0x400027cc + 0x400027d8 dfu_updater_feed = 0x400027d8 + 0x400027e4 dfu_updater_end = 0x400027e4 + 0x400027f0 dfu_updater_set_raw_addr = 0x400027f0 + 0x400027fc dfu_updater_flash_read = 0x400027fc + 0x40002808 usb_dc_prepare_persist = 0x40002808 + 0x40002814 usb_dw_isr_handler = 0x40002814 + 0x40002820 usb_dc_attach = 0x40002820 + 0x4000282c usb_dc_detach = 0x4000282c + 0x40002838 usb_dc_reset = 0x40002838 + 0x40002844 usb_dc_set_address = 0x40002844 + 0x40002850 usb_dc_ep_check_cap = 0x40002850 + 0x4000285c usb_dc_ep_configure = 0x4000285c + 0x40002868 usb_dc_ep_set_stall = 0x40002868 + 0x40002874 usb_dc_ep_clear_stall = 0x40002874 + 0x40002880 usb_dc_ep_halt = 0x40002880 + 0x4000288c usb_dc_ep_is_stalled = 0x4000288c + 0x40002898 usb_dc_ep_enable = 0x40002898 + 0x400028a4 usb_dc_ep_disable = 0x400028a4 + 0x400028b0 usb_dc_ep_flush = 0x400028b0 + 0x400028bc usb_dc_ep_write_would_block = 0x400028bc + 0x400028c8 usb_dc_ep_write = 0x400028c8 + 0x400028d4 usb_dc_ep_read_wait = 0x400028d4 + 0x400028e0 usb_dc_ep_read_continue = 0x400028e0 + 0x400028ec usb_dc_ep_read = 0x400028ec + 0x400028f8 usb_dc_ep_set_callback = 0x400028f8 + 0x40002904 usb_dc_set_status_callback = 0x40002904 + 0x40002910 usb_dc_ep_mps = 0x40002910 + 0x4000291c usb_dc_check_poll_for_interrupts = 0x4000291c + 0x40002928 mac_addr_to_serial_str_desc = 0x40002928 + 0x40002934 usb_set_current_descriptor = 0x40002934 + 0x40002940 usb_get_descriptor = 0x40002940 + 0x4000294c usb_dev_resume = 0x4000294c + 0x40002958 usb_dev_get_configuration = 0x40002958 + 0x40002964 usb_set_config = 0x40002964 + 0x40002970 usb_deconfig = 0x40002970 + 0x4000297c usb_enable = 0x4000297c + 0x40002988 usb_disable = 0x40002988 + 0x40002994 usb_write_would_block = 0x40002994 + 0x400029a0 usb_write = 0x400029a0 + 0x400029ac usb_read = 0x400029ac + 0x400029b8 usb_ep_set_stall = 0x400029b8 + 0x400029c4 usb_ep_clear_stall = 0x400029c4 + 0x400029d0 usb_ep_read_wait = 0x400029d0 + 0x400029dc usb_ep_read_continue = 0x400029dc + 0x400029e8 usb_transfer_ep_callback = 0x400029e8 + 0x400029f4 usb_transfer = 0x400029f4 + 0x40002a00 usb_cancel_transfer = 0x40002a00 + 0x40002a0c usb_transfer_sync = 0x40002a0c + 0x40002a18 usb_dfu_set_detach_cb = 0x40002a18 + 0x40002a24 dfu_class_handle_req = 0x40002a24 + 0x40002a30 dfu_status_cb = 0x40002a30 + 0x40002a3c dfu_custom_handle_req = 0x40002a3c + 0x40002a48 usb_dfu_init = 0x40002a48 + 0x40002a54 usb_dfu_force_detach = 0x40002a54 + 0x40002a60 usb_dev_deinit = 0x40002a60 + 0x40002a6c usb_dw_ctrl_deinit = 0x40002a6c + 0x3fceffac rom_usb_osglue = 0x3fceffac + 0x3fceffa8 bt_rf_coex_cfg_p = 0x3fceffa8 + 0x3fceffa4 bt_rf_coex_hooks_p = 0x3fceffa4 + 0x3fceffa0 btdm_env_p = 0x3fceffa0 + 0x3fceff9c g_rw_controller_task_handle = 0x3fceff9c + 0x3fceff98 g_rw_init_sem = 0x3fceff98 + 0x3fceff94 g_rw_schd_queue = 0x3fceff94 + 0x3fceff90 lld_init_env = 0x3fceff90 + 0x3fceff8c lld_rpa_renew_env = 0x3fceff8c + 0x3fceff88 lld_scan_env = 0x3fceff88 + 0x3fceff84 lld_scan_sync_env = 0x3fceff84 + 0x3fceff80 lld_test_env = 0x3fceff80 + 0x3fceff7c p_ble_util_buf_env = 0x3fceff7c + 0x3fceff78 p_lld_env = 0x3fceff78 + 0x3fceff74 p_llm_env = 0x3fceff74 + 0x3fceff70 r_h4tl_eif_p = 0x3fceff70 + 0x3fceff6c r_hli_funcs_p = 0x3fceff6c + 0x3fceff68 r_ip_funcs_p = 0x3fceff68 + 0x3fceff64 r_modules_funcs_p = 0x3fceff64 + 0x3fceff60 r_osi_funcs_p = 0x3fceff60 + 0x3fceff5c r_plf_funcs_p = 0x3fceff5c + 0x3fceff58 vhci_env_p = 0x3fceff58 + 0x3fceff54 aa_gen = 0x3fceff54 + 0x3fceff48 aes_env = 0x3fceff48 + 0x3fcefef8 bt_rf_coex_cfg_cb = 0x3fcefef8 + 0x3fcefef4 btdm_pwr_state = 0x3fcefef4 + 0x3fcefef0 btdm_slp_err = 0x3fcefef0 + 0x3fcefee8 ecc_env = 0x3fcefee8 + 0x3fcefee0 esp_handler = 0x3fcefee0 + 0x3fcefed8 esp_vendor_cmd = 0x3fcefed8 + 0x3fcefed4 g_adv_delay_dis = 0x3fcefed4 + 0x3fcefed0 g_conflict_elt = 0x3fcefed0 + 0x3fcefec0 g_eif_api = 0x3fcefec0 + 0x3fcefeb4 g_event_empty = 0x3fcefeb4 + 0x3fcefeaa g_llc_state = 0x3fcefeaa + 0x3fcefea9 g_llm_state = 0x3fcefea9 + 0x3fcefea7 g_max_evt_env = 0x3fcefea7 + 0x3fcefea6 g_misc_state = 0x3fcefea6 + 0x3fcefe8a g_rma_rule_db = 0x3fcefe8a + 0x3fcefe6e g_rtp_rule_db = 0x3fcefe6e + 0x3fcefe6d g_scan_forever = 0x3fcefe6d + 0x3fcefe6c g_time_msb = 0x3fcefe6c + 0x3fcefe44 h4tl_env = 0x3fcefe44 + 0x3fcefe21 hci_env = 0x3fcefe21 + 0x3fcefe20 hci_ext_host = 0x3fcefe20 + 0x3fcefe18 hci_fc_env = 0x3fcefe18 + 0x3fcefdec hci_tl_env = 0x3fcefdec + 0x3fcefdbc ke_env = 0x3fcefdbc + 0x3fcefd7c ke_event_env = 0x3fcefd7c + 0x3fcefd00 ke_task_env = 0x3fcefd00 + 0x3fcefcd8 llc_env = 0x3fcefcd8 + 0x3fcefcb0 lld_adv_env = 0x3fcefcb0 + 0x3fcefc88 lld_con_env = 0x3fcefc88 + 0x3fcefc80 lld_exp_sync_pos_tab = 0x3fcefc80 + 0x3fcefc58 lld_per_adv_env = 0x3fcefc58 + 0x3fcefc30 lld_sync_env = 0x3fcefc30 + 0x3fcefc24 llm_le_adv_flow_env = 0x3fcefc24 + 0x3fcefc20 rw_sleep_enable = 0x3fcefc20 + 0x3fcefc18 rwble_env = 0x3fcefc18 + 0x3fcefbfc rwip_env = 0x3fcefbfc + 0x3fcefbf0 rwip_param = 0x3fcefbf0 + 0x3fcefbec rwip_prog_delay = 0x3fcefbec + 0x3fcefbb4 rwip_rf = 0x3fcefbb4 + 0x3fcefbac sch_alarm_env = 0x3fcefbac + 0x3fcefb98 sch_arb_env = 0x3fcefb98 + 0x3fcefb90 sch_plan_env = 0x3fcefb90 + 0x3fcefa8c sch_prog_env = 0x3fcefa8c + 0x3fcefa2c sch_slice_env = 0x3fcefa2c + 0x3fcefa24 sch_slice_params = 0x3fcefa24 + 0x3fcefa1c timer_env = 0x3fcefa1c + 0x3fcefa18 unloaded_area = 0x3fcefa18 + 0x3fcefa14 vshci_state = 0x3fcefa14 + 0x3fcefa08 TASK_DESC_LLC = 0x3fcefa08 + 0x3fcef9fc TASK_DESC_LLM = 0x3fcef9fc + 0x3fcef9f0 TASK_DESC_VSHCI = 0x3fcef9f0 + 0x3fcef9e8 co_default_bdaddr = 0x3fcef9e8 + 0x3fcef9e4 dbg_assert_block = 0x3fcef9e4 + 0x3fcef9e0 g_bt_plf_log_level = 0x3fcef9e0 + 0x3fcef9bc hci_cmd_desc_tab_vs_esp = 0x3fcef9bc + 0x3fcef9a4 hci_command_handler_tab_esp = 0x3fcef9a4 + 0x3fcef9a0 privacy_en = 0x3fcef9a0 + 0x3fcef958 sdk_cfg_priv_opts = 0x3fcef958 + 0x3ff1ffdc BasePoint_x_256 = 0x3ff1ffdc + 0x3ff1ffbc BasePoint_y_256 = 0x3ff1ffbc + 0x3ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c + 0x3ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c + 0x3ff1ff5c DebugE256SecretKey = 0x3ff1ff5c + 0x3ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0 + 0x3ff1f79a LLM_AA_CT1 = 0x3ff1f79a + 0x3ff1f798 LLM_AA_CT2 = 0x3ff1f798 + 0x3ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790 + 0x3ff1f784 TASK_DESC_MISC = 0x3ff1f784 + 0x3ff1f766 adv_evt_prop2type = 0x3ff1f766 + 0x3ff1f761 adv_evt_type2prop = 0x3ff1f761 + 0x3ff1f751 aes_cmac_zero = 0x3ff1f751 + 0x3ff1f741 aes_k2_salt = 0x3ff1f741 + 0x3ff1f73c aes_k3_id64 = 0x3ff1f73c + 0x3ff1f72c aes_k3_salt = 0x3ff1f72c + 0x3ff1f728 aes_k4_id6 = 0x3ff1f728 + 0x3ff1f718 aes_k4_salt = 0x3ff1f718 + 0x3ff1f6ec bigHexP256 = 0x3ff1f6ec + 0x3ff1f6e2 byte_tx_time = 0x3ff1f6e2 + 0x3ff1f6dc co_null_bdaddr = 0x3ff1f6dc + 0x3ff1f6d7 co_phy_mask_to_rate = 0x3ff1f6d7 + 0x3ff1f6d2 co_phy_mask_to_value = 0x3ff1f6d2 + 0x3ff1f6ce co_phy_to_rate = 0x3ff1f6ce + 0x3ff1f6ca co_phy_value_to_mask = 0x3ff1f6ca + 0x3ff1f6c5 co_rate_to_byte_dur_us = 0x3ff1f6c5 + 0x3ff1f6c0 co_rate_to_phy = 0x3ff1f6c0 + 0x3ff1f6bc co_rate_to_phy_mask = 0x3ff1f6bc + 0x3ff1f6ac co_sca2ppm = 0x3ff1f6ac + 0x3ff1f680 coef_B = 0x3ff1f680 + 0x3ff1f678 connect_req_dur_tab = 0x3ff1f678 + 0x3ff1f5f4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5f4 + 0x3ff1f526 em_base_reg_lut = 0x3ff1f526 + 0x3ff1f51e fixed_tx_time = 0x3ff1f51e + 0x3ff1f518 h4tl_msgtype2hdrlen = 0x3ff1f518 + 0x3ff1f4e8 hci_cmd_desc_root_tab = 0x3ff1f4e8 + 0x3ff1f47c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f47c + 0x3ff1f44c hci_cmd_desc_tab_info_par = 0x3ff1f44c + 0x3ff1f0b0 hci_cmd_desc_tab_le = 0x3ff1f0b0 + 0x3ff1f098 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f098 + 0x3ff1f08c hci_cmd_desc_tab_stat_par = 0x3ff1f08c + 0x3ff1f050 hci_cmd_desc_tab_vs = 0x3ff1f050 + 0x3ff1f008 hci_evt_desc_tab = 0x3ff1f008 + 0x3ff1ef68 hci_evt_le_desc_tab = 0x3ff1ef68 + 0x3ff1ef60 hci_evt_le_desc_tab_esp = 0x3ff1ef60 + 0x3ff1ef57 hci_rsvd_evt_msk = 0x3ff1ef57 + 0x3ff1ef54 lld_aux_phy_to_rate = 0x3ff1ef54 + 0x3ff1ef4c lld_init_max_aux_dur_tab = 0x3ff1ef4c + 0x3ff1ef44 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef44 + 0x3ff1ef3c lld_scan_max_aux_dur_tab = 0x3ff1ef3c + 0x3ff1ef34 lld_sync_max_aux_dur_tab = 0x3ff1ef34 + 0x3ff1ef2c llm_local_le_feats = 0x3ff1ef2c + 0x3ff1ef24 llm_local_le_states = 0x3ff1ef24 + 0x3ff1eefc llm_local_supp_cmds = 0x3ff1eefc + 0x3ff1eedc maxSecretKey_256 = 0x3ff1eedc + 0x3ff1eed4 max_data_tx_time = 0x3ff1eed4 + 0x3ff1eec3 one_bits = 0x3ff1eec3 + 0x3ff1eebe rwip_coex_cfg = 0x3ff1eebe + 0x3ff1eea8 rwip_priority = 0x3ff1eea8 + 0x3ff1ee5c veryBigHexP256 = 0x3ff1ee5c + 0x40005250 esp_pp_rom_version_get = 0x40005250 + 0x4000525c RC_GetBlockAckTime = 0x4000525c + 0x40005268 ebuf_list_remove = 0x40005268 + 0x40005298 GetAccess = 0x40005298 + 0x400052a4 hal_mac_is_low_rate_enabled = 0x400052a4 + 0x400052b0 hal_mac_tx_get_blockack = 0x400052b0 + 0x400052c8 ic_get_trc = 0x400052c8 + 0x400052ec ic_interface_enabled = 0x400052ec + 0x400052f8 is_lmac_idle = 0x400052f8 + 0x40005310 lmacDiscardAgedMSDU = 0x40005310 + 0x40005334 lmacIsIdle = 0x40005334 + 0x40005340 lmacIsLongFrame = 0x40005340 + 0x40005358 lmacPostTxComplete = 0x40005358 + 0x40005364 lmacProcessAllTxTimeout = 0x40005364 + 0x40005370 lmacProcessCollisions = 0x40005370 + 0x4000537c lmacProcessRxSucData = 0x4000537c + 0x40005388 lmacReachLongLimit = 0x40005388 + 0x40005394 lmacReachShortLimit = 0x40005394 + 0x400053a0 lmacRecycleMPDU = 0x400053a0 + 0x400053ac lmacRxDone = 0x400053ac + 0x400053c4 lmacTxDone = 0x400053c4 + 0x400053dc mac_tx_set_duration = 0x400053dc + 0x400053f4 mac_tx_set_plcp0 = 0x400053f4 + 0x4000540c mac_tx_set_plcp2 = 0x4000540c + 0x40005424 pm_disable_dream_timer = 0x40005424 + 0x40005430 pm_disable_sleep_delay_timer = 0x40005430 + 0x40005448 pm_mac_wakeup = 0x40005448 + 0x40005454 pm_mac_sleep = 0x40005454 + 0x40005460 pm_enable_active_timer = 0x40005460 + 0x4000546c pm_enable_sleep_delay_timer = 0x4000546c + 0x40005478 pm_local_tsf_process = 0x40005478 + 0x40005484 //pm_set_beacon_filter = 0x40005484 + 0x4000549c pm_is_waked = 0x4000549c + 0x400054c0 pm_on_data_rx = 0x400054c0 + 0x400054cc pm_on_tbtt = 0x400054cc + 0x40005514 pm_sleep_for = 0x40005514 + 0x4000552c ppAMPDU2Normal = 0x4000552c + 0x40005544 ppCalFrameTimes = 0x40005544 + 0x40005550 ppCalSubFrameLength = 0x40005550 + 0x40005568 ppCheckTxAMPDUlength = 0x40005568 + 0x40005574 ppDequeueRxq_Locked = 0x40005574 + 0x40005580 ppDequeueTxQ = 0x40005580 + 0x4000558c ppEmptyDelimiterLength = 0x4000558c + 0x40005598 ppEnqueueRxq = 0x40005598 + 0x400055a4 ppEnqueueTxDone = 0x400055a4 + 0x400055b0 ppGetTxQFirstAvail_Locked = 0x400055b0 + 0x400055bc ppGetTxframe = 0x400055bc + 0x400055e0 ppProcessRxPktHdr = 0x400055e0 + 0x400055f8 ppRecordBarRRC = 0x400055f8 + 0x40005604 lmacRequestTxopQueue = 0x40005604 + 0x40005610 lmacReleaseTxopQueue = 0x40005610 + 0x4000561c ppRecycleAmpdu = 0x4000561c + 0x40005628 ppRecycleRxPkt = 0x40005628 + 0x40005634 ppResortTxAMPDU = 0x40005634 + 0x40005640 ppResumeTxAMPDU = 0x40005640 + 0x40005670 ppSearchTxQueue = 0x40005670 + 0x4000567c ppSearchTxframe = 0x4000567c + 0x40005688 ppSelectNextQueue = 0x40005688 + 0x40005694 ppSubFromAMPDU = 0x40005694 + 0x400056ac ppTxPkt = 0x400056ac + 0x400056b8 ppTxProtoProc = 0x400056b8 + 0x400056c4 ppTxqUpdateBitmap = 0x400056c4 + 0x400056dc pp_hdrsize = 0x400056dc + 0x400056e8 pp_post = 0x400056e8 + 0x400056f4 pp_process_hmac_waiting_txq = 0x400056f4 + 0x40005700 rcGetAmpduSched = 0x40005700 + 0x4000570c rcUpdateRxDone = 0x4000570c + 0x40005718 rc_get_trc = 0x40005718 + 0x40005724 rc_get_trc_by_index = 0x40005724 + 0x40005730 rcAmpduLowerRate = 0x40005730 + 0x4000573c rcampduuprate = 0x4000573c + 0x40005748 rcClearCurAMPDUSched = 0x40005748 + 0x40005754 rcClearCurSched = 0x40005754 + 0x40005760 rcClearCurStat = 0x40005760 + 0x40005778 rcLowerSched = 0x40005778 + 0x40005784 rcSetTxAmpduLimit = 0x40005784 + 0x4000579c rcUpdateAckSnr = 0x4000579c + 0x400057cc rcUpSched = 0x400057cc + 0x400057d8 rssi_margin = 0x400057d8 + 0x400057e4 rx11NRate2AMPDULimit = 0x400057e4 + 0x400057f0 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x400057f0 + 0x400057fc TRC_AMPDU_PER_UP_THRESHOLD = 0x400057fc + 0x40005808 trc_calc_duration = 0x40005808 + 0x40005814 trc_isTxAmpduOperational = 0x40005814 + 0x40005820 trc_onAmpduOp = 0x40005820 + 0x4000582c TRC_PER_IS_GOOD = 0x4000582c + 0x40005838 trc_SetTxAmpduState = 0x40005838 + 0x40005844 trc_tid_isTxAmpduOperational = 0x40005844 + 0x40005850 trcAmpduSetState = 0x40005850 + 0x4000585c wDevCheckBlockError = 0x4000585c + 0x40005874 wDev_DiscardFrame = 0x40005874 + 0x40005880 wDev_GetNoiseFloor = 0x40005880 + 0x4000588c wDev_IndicateAmpdu = 0x4000588c + 0x400058a4 wdev_bank_store = 0x400058a4 + 0x400058b0 wdev_bank_load = 0x400058b0 + 0x400058bc wdev_mac_reg_load = 0x400058bc + 0x400058c8 wdev_mac_reg_store = 0x400058c8 + 0x400058d4 wdev_mac_special_reg_load = 0x400058d4 + 0x400058e0 wdev_mac_special_reg_store = 0x400058e0 + 0x400058ec wdev_mac_wakeup = 0x400058ec + 0x400058f8 wdev_mac_sleep = 0x400058f8 + 0x40005904 hal_mac_is_dma_enable = 0x40005904 + 0x40005928 wdevProcessRxSucDataAll = 0x40005928 + 0x40005934 wdev_csi_len_align = 0x40005934 + 0x40005940 ppDequeueTxDone_Locked = 0x40005940 + 0x40005964 config_is_cache_tx_buf_enabled = 0x40005964 + 0x40005970 //ppMapWaitTxq = 0x40005970 + 0x4000597c ppProcessWaitingQueue = 0x4000597c + 0x40005988 ppDisableQueue = 0x40005988 + 0x40005994 pm_allow_tx = 0x40005994 + 0x400059a0 wdev_is_data_in_rxlist = 0x400059a0 + 0x400059ac ppProcTxCallback = 0x400059ac + 0x3ff1ee58 our_instances_ptr = 0x3ff1ee58 + 0x3fcef954 pTxRx = 0x3fcef954 + 0x3fcef950 lmacConfMib_ptr = 0x3fcef950 + 0x3fcef94c our_wait_eb = 0x3fcef94c + 0x3fcef948 our_tx_eb = 0x3fcef948 + 0x3fcef944 pp_wdev_funcs = 0x3fcef944 + 0x3fcef940 g_osi_funcs_p = 0x3fcef940 + 0x3fcef93c wDevCtrl_ptr = 0x3fcef93c + 0x3ff1ee54 g_wdev_last_desc_reset_ptr = 0x3ff1ee54 + 0x3fcef938 wDevMacSleep_ptr = 0x3fcef938 + 0x3fcef934 g_lmac_cnt_ptr = 0x3fcef934 + 0x3ff1ee50 our_controls_ptr = 0x3ff1ee50 + 0x3fcef930 pp_sig_cnt_ptr = 0x3fcef930 + 0x3fcef92c g_eb_list_desc_ptr = 0x3fcef92c + 0x3fcef928 s_fragment_ptr = 0x3fcef928 + 0x3fcef924 if_ctrl_ptr = 0x3fcef924 + 0x3fcef920 g_intr_lock_mux = 0x3fcef920 + 0x3fcef91c g_wifi_global_lock = 0x3fcef91c + 0x3fcef918 s_wifi_queue = 0x3fcef918 + 0x3fcef914 pp_task_hdl = 0x3fcef914 + 0x3fcef910 s_pp_task_create_sem = 0x3fcef910 + 0x3fcef90c s_pp_task_del_sem = 0x3fcef90c + 0x3fcef908 g_wifi_menuconfig_ptr = 0x3fcef908 + 0x3fcef904 xphyQueue = 0x3fcef904 + 0x3fcef900 ap_no_lr_ptr = 0x3fcef900 + 0x3fcef8fc rc11BSchedTbl_ptr = 0x3fcef8fc + 0x3fcef8f8 rc11NSchedTbl_ptr = 0x3fcef8f8 + 0x3fcef8f4 rcLoRaSchedTbl_ptr = 0x3fcef8f4 + 0x3fcef8f0 BasicOFDMSched_ptr = 0x3fcef8f0 + 0x3fcef8ec trc_ctl_ptr = 0x3fcef8ec + 0x3fcef8e8 g_pm_cnt_ptr = 0x3fcef8e8 + 0x3fcef8e4 g_pm_ptr = 0x3fcef8e4 + 0x3fcef8e0 g_pm_cfg_ptr = 0x3fcef8e0 + 0x3fcef8dc g_esp_mesh_quick_funcs_ptr = 0x3fcef8dc + 0x3fcef8d8 g_txop_queue_status_ptr = 0x3fcef8d8 + 0x3fcef8d4 g_mac_sleep_en_ptr = 0x3fcef8d4 + 0x3fcef8d0 g_mesh_is_root_ptr = 0x3fcef8d0 + 0x3fcef8cc g_mesh_topology_ptr = 0x3fcef8cc + 0x3fcef8c8 g_mesh_init_ps_type_ptr = 0x3fcef8c8 + 0x3fcef8c4 g_mesh_is_started_ptr = 0x3fcef8c4 + 0x3fcef8c0 g_config_func = 0x3fcef8c0 + 0x3fcef8bc g_net80211_tx_func = 0x3fcef8bc + 0x3fcef8b8 g_timer_func = 0x3fcef8b8 + 0x3fcef8b4 s_michael_mic_failure_cb = 0x3fcef8b4 + 0x3fcef8b0 wifi_sta_rx_probe_req = 0x3fcef8b0 + 0x3fcef8ac g_tx_done_cb_func = 0x3fcef8ac + 0x3fcef860 g_per_conn_trc = 0x3fcef860 + 0x3fcef85c s_encap_amsdu_func = 0x3fcef85c + 0x400059b8 esp_net80211_rom_version_get = 0x400059b8 + 0x400059c4 ampdu_dispatch = 0x400059c4 + 0x400059d0 ampdu_dispatch_all = 0x400059d0 + 0x400059dc ampdu_dispatch_as_many_as_possible = 0x400059dc + 0x400059e8 ampdu_dispatch_movement = 0x400059e8 + 0x400059f4 ampdu_dispatch_upto = 0x400059f4 + 0x40005a00 chm_is_at_home_channel = 0x40005a00 + 0x40005a0c cnx_node_is_existing = 0x40005a0c + 0x40005a18 cnx_node_search = 0x40005a18 + 0x40005a24 ic_ebuf_recycle_rx = 0x40005a24 + 0x40005a30 ic_ebuf_recycle_tx = 0x40005a30 + 0x40005a3c ic_reset_rx_ba = 0x40005a3c + 0x40005a48 ieee80211_align_eb = 0x40005a48 + 0x40005a60 ieee80211_ampdu_start_age_timer = 0x40005a60 + 0x40005a78 ieee80211_is_tx_allowed = 0x40005a78 + 0x40005a84 ieee80211_output_pending_eb = 0x40005a84 + 0x40005a9c ieee80211_set_tx_desc = 0x40005a9c + 0x40005ab4 wifi_get_macaddr = 0x40005ab4 + 0x40005ac0 wifi_rf_phy_disable = 0x40005ac0 + 0x40005acc wifi_rf_phy_enable = 0x40005acc + 0x40005ad8 ic_ebuf_alloc = 0x40005ad8 + 0x40005af0 ieee80211_copy_eb_header = 0x40005af0 + 0x40005afc ieee80211_recycle_cache_eb = 0x40005afc + 0x40005b08 ieee80211_search_node = 0x40005b08 + 0x40005b14 roundup2 = 0x40005b14 + 0x40005b20 ieee80211_crypto_encap = 0x40005b20 + 0x40005b44 ieee80211_set_tx_pti = 0x40005b44 + 0x40005b50 wifi_is_started = 0x40005b50 + 0x40005b5c ieee80211_gettid = 0x40005b5c + 0x3fcef858 net80211_funcs = 0x3fcef858 + 0x3fcef854 g_scan = 0x3fcef854 + 0x3fcef850 g_chm = 0x3fcef850 + 0x3fcef84c g_ic_ptr = 0x3fcef84c + 0x3fcef848 g_hmac_cnt_ptr = 0x3fcef848 + 0x3fcef844 g_tx_cacheq_ptr = 0x3fcef844 + 0x3fcef840 s_netstack_free = 0x3fcef840 + 0x3fcef83c mesh_rxcb = 0x3fcef83c + 0x3fcef838 sta_rxcb = 0x3fcef838 + 0x40005b68 esp_coex_rom_version_get = 0x40005b68 + 0x40005b74 coex_bt_release = 0x40005b74 + 0x40005b80 coex_bt_request = 0x40005b80 + 0x40005b8c coex_core_ble_conn_dyn_prio_get = 0x40005b8c + 0x40005ba4 coex_core_pti_get = 0x40005ba4 + 0x40005bb0 coex_core_release = 0x40005bb0 + 0x40005bbc coex_core_request = 0x40005bbc + 0x40005bc8 coex_core_status_get = 0x40005bc8 + 0x40005be0 coex_event_duration_get = 0x40005be0 + 0x40005bec coex_hw_timer_disable = 0x40005bec + 0x40005bf8 coex_hw_timer_enable = 0x40005bf8 + 0x40005c04 coex_hw_timer_set = 0x40005c04 + 0x40005c10 coex_schm_interval_set = 0x40005c10 + 0x40005c1c coex_schm_lock = 0x40005c1c + 0x40005c28 coex_schm_unlock = 0x40005c28 + 0x40005c40 coex_wifi_release = 0x40005c40 + 0x40005c4c esp_coex_ble_conn_dynamic_prio_get = 0x40005c4c + 0x3fcef834 coex_env_ptr = 0x3fcef834 + 0x3fcef830 coex_pti_tab_ptr = 0x3fcef830 + 0x3fcef82c coex_schm_env_ptr = 0x3fcef82c + 0x3fcef828 coexist_funcs = 0x3fcef828 + 0x3fcef824 g_coa_funcs_p = 0x3fcef824 + 0x3fcef820 g_coex_param_ptr = 0x3fcef820 + 0x40005c58 phy_get_romfuncs = 0x40005c58 + 0x40005c64 rom_abs_temp = 0x40005c64 + 0x40005c70 rom_bb_bss_cbw40_dig = 0x40005c70 + 0x40005c7c rom_bb_wdg_test_en = 0x40005c7c + 0x40005c88 rom_bb_wdt_get_status = 0x40005c88 + 0x40005c94 rom_bb_wdt_int_enable = 0x40005c94 + 0x40005ca0 rom_bb_wdt_rst_enable = 0x40005ca0 + 0x40005cac rom_bb_wdt_timeout_clear = 0x40005cac + 0x40005cb8 rom_cbw2040_cfg = 0x40005cb8 + 0x40005cc4 rom_check_noise_floor = 0x40005cc4 + 0x40005cd0 rom_chip_i2c_readReg = 0x40005cd0 + 0x40005cdc rom_chip_i2c_writeReg = 0x40005cdc + 0x40005ce8 rom_dc_iq_est = 0x40005ce8 + 0x40005cf4 rom_disable_agc = 0x40005cf4 + 0x40005d00 rom_en_pwdet = 0x40005d00 + 0x40005d0c rom_enable_agc = 0x40005d0c + 0x40005d18 rom_get_bbgain_db = 0x40005d18 + 0x40005d24 rom_get_data_sat = 0x40005d24 + 0x40005d30 rom_get_i2c_read_mask = 0x40005d30 + 0x40005d3c rom_get_pwctrl_correct = 0x40005d3c + 0x40005d48 rom_i2c_readReg = 0x40005d48 + 0x40005d54 rom_i2c_readReg_Mask = 0x40005d54 + 0x40005d60 rom_i2c_writeReg = 0x40005d60 + 0x40005d6c rom_i2c_writeReg_Mask = 0x40005d6c + 0x40005d78 rom_index_to_txbbgain = 0x40005d78 + 0x40005d84 rom_iq_est_disable = 0x40005d84 + 0x40005d90 rom_iq_est_enable = 0x40005d90 + 0x40005d9c rom_linear_to_db = 0x40005d9c + 0x40005da8 rom_loopback_mode_en = 0x40005da8 + 0x40005db4 rom_mhz2ieee = 0x40005db4 + 0x40005dc0 rom_noise_floor_auto_set = 0x40005dc0 + 0x40005dcc rom_pbus_debugmode = 0x40005dcc + 0x40005dd8 rom_pbus_force_mode = 0x40005dd8 + 0x40005de4 rom_pbus_force_test = 0x40005de4 + 0x40005df0 rom_pbus_rd = 0x40005df0 + 0x40005dfc rom_pbus_rd_addr = 0x40005dfc + 0x40005e08 rom_pbus_rd_shift = 0x40005e08 + 0x40005e14 rom_pbus_set_dco = 0x40005e14 + 0x40005e20 rom_pbus_set_rxgain = 0x40005e20 + 0x40005e2c rom_pbus_workmode = 0x40005e2c + 0x40005e38 rom_pbus_xpd_rx_off = 0x40005e38 + 0x40005e44 rom_pbus_xpd_rx_on = 0x40005e44 + 0x40005e50 rom_pbus_xpd_tx_off = 0x40005e50 + 0x40005e5c rom_pbus_xpd_tx_on = 0x40005e5c + 0x40005e68 rom_phy_byte_to_word = 0x40005e68 + 0x40005e74 rom_phy_disable_cca = 0x40005e74 + 0x40005e80 rom_phy_enable_cca = 0x40005e80 + 0x40005e8c rom_phy_get_noisefloor = 0x40005e8c + 0x40005e98 rom_phy_get_rx_freq = 0x40005e98 + 0x40005ea4 rom_phy_set_bbfreq_init = 0x40005ea4 + 0x40005eb0 rom_pow_usr = 0x40005eb0 + 0x40005ebc rom_pwdet_sar2_init = 0x40005ebc + 0x40005ec8 rom_read_hw_noisefloor = 0x40005ec8 + 0x40005ed4 rom_read_sar_dout = 0x40005ed4 + 0x40005ee0 rom_set_cal_rxdc = 0x40005ee0 + 0x40005eec rom_set_chan_cal_interp = 0x40005eec + 0x40005ef8 rom_set_loopback_gain = 0x40005ef8 + 0x40005f04 rom_set_noise_floor = 0x40005f04 + 0x40005f10 rom_set_rxclk_en = 0x40005f10 + 0x40005f1c rom_set_tx_dig_gain = 0x40005f1c + 0x40005f28 rom_set_txcap_reg = 0x40005f28 + 0x40005f34 rom_set_txclk_en = 0x40005f34 + 0x40005f40 rom_spur_cal = 0x40005f40 + 0x40005f4c rom_spur_reg_write_one_tone = 0x40005f4c + 0x40005f58 rom_target_power_add_backoff = 0x40005f58 + 0x40005f64 rom_tx_pwctrl_bg_init = 0x40005f64 + 0x40005f70 rom_txbbgain_to_index = 0x40005f70 + 0x40005f7c rom_wifi_11g_rate_chg = 0x40005f7c + 0x40005f88 rom_write_gain_mem = 0x40005f88 + 0x40005f94 chip728_phyrom_version = 0x40005f94 + 0x40005fa0 rom_disable_wifi_agc = 0x40005fa0 + 0x40005fac rom_enable_wifi_agc = 0x40005fac + 0x40005fb8 rom_bt_index_to_bb = 0x40005fb8 + 0x40005fc4 rom_bt_bb_to_index = 0x40005fc4 + 0x40005fd0 rom_spur_coef_cfg = 0x40005fd0 + 0x40005fdc rom_bb_bss_cbw40 = 0x40005fdc + 0x40005fe8 rom_set_cca = 0x40005fe8 + 0x40005ff4 rom_tx_paon_set = 0x40005ff4 + 0x40006000 rom_i2cmst_reg_init = 0x40006000 + 0x4000600c rom_iq_corr_enable = 0x4000600c + 0x40006018 rom_fe_reg_init = 0x40006018 + 0x40006024 rom_agc_reg_init = 0x40006024 + 0x40006030 rom_bb_reg_init = 0x40006030 + 0x4000603c rom_mac_enable_bb = 0x4000603c + 0x40006048 rom_bb_wdg_cfg = 0x40006048 + 0x40006054 rom_force_txon = 0x40006054 + 0x40006060 rom_fe_txrx_reset = 0x40006060 + 0x4000606c rom_set_rx_comp = 0x4000606c + 0x40006078 rom_set_pbus_reg = 0x40006078 + 0x40006084 rom_write_chan_freq = 0x40006084 + 0x40006090 rom_phy_xpd_rf = 0x40006090 + 0x4000609c rom_set_xpd_sar = 0x4000609c + 0x400060a8 rom_get_target_power_offset = 0x400060a8 + 0x400060b4 rom_write_txrate_power_offset = 0x400060b4 + 0x400060c0 rom_get_rate_fcc_index = 0x400060c0 + 0x400060cc rom_get_rate_target_power = 0x400060cc + 0x400060d8 rom_pkdet_vol_start = 0x400060d8 + 0x400060e4 rom_read_sar2_code = 0x400060e4 + 0x400060f0 rom_get_sar2_vol = 0x400060f0 + 0x400060fc rom_get_pll_vol = 0x400060fc + 0x40006108 rom_get_phy_target_power = 0x40006108 + 0x40006114 rom_temp_to_power = 0x40006114 + 0x40006120 rom_phy_track_pll_cap = 0x40006120 + 0x4000612c rom_phy_pwdet_always_en = 0x4000612c + 0x40006138 rom_phy_pwdet_onetime_en = 0x40006138 + 0x40006144 rom_get_i2c_mst0_mask = 0x40006144 + 0x40006150 rom_get_i2c_hostid = 0x40006150 + 0x4000615c rom_enter_critical_phy = 0x4000615c + 0x40006168 rom_exit_critical_phy = 0x40006168 + 0x40006174 rom_chip_i2c_readReg_org = 0x40006174 + 0x40006180 rom_i2c_paral_set_mst0 = 0x40006180 + 0x4000618c rom_i2c_paral_set_read = 0x4000618c + 0x40006198 rom_i2c_paral_read = 0x40006198 + 0x400061a4 rom_i2c_paral_write = 0x400061a4 + 0x400061b0 rom_i2c_paral_write_num = 0x400061b0 + 0x400061bc rom_i2c_paral_write_mask = 0x400061bc + 0x400061c8 rom_bb_bss_cbw40_ana = 0x400061c8 + 0x400061d4 rom_chan_to_freq = 0x400061d4 + 0x400061e0 rom_open_i2c_xpd = 0x400061e0 + 0x400061ec rom_dac_rate_set = 0x400061ec + 0x400061f8 rom_tsens_read_init = 0x400061f8 + 0x40006204 rom_tsens_code_read = 0x40006204 + 0x40006210 rom_tsens_index_to_dac = 0x40006210 + 0x4000621c rom_tsens_index_to_offset = 0x4000621c + 0x40006228 rom_tsens_dac_cal = 0x40006228 + 0x40006234 rom_code_to_temp = 0x40006234 + 0x40006240 rom_write_pll_cap_mem = 0x40006240 + 0x4000624c rom_pll_correct_dcap = 0x4000624c + 0x40006258 rom_phy_en_hw_set_freq = 0x40006258 + 0x40006264 rom_phy_dis_hw_set_freq = 0x40006264 + 0x40006270 rom_pll_vol_cal = 0x40006270 + 0x4000627c rom_wrtie_pll_cap = 0x4000627c + 0x40006288 rom_set_tx_gain_mem = 0x40006288 + 0x40006294 rom_bt_tx_dig_gain = 0x40006294 + 0x400062a0 rom_bt_get_tx_gain = 0x400062a0 + 0x400062ac rom_get_chan_target_power = 0x400062ac + 0x400062b8 rom_get_tx_gain_value = 0x400062b8 + 0x400062c4 rom_wifi_tx_dig_gain = 0x400062c4 + 0x400062d0 rom_wifi_get_tx_gain = 0x400062d0 + 0x400062dc rom_fe_i2c_reg_renew = 0x400062dc + 0x400062e8 rom_wifi_agc_sat_gain = 0x400062e8 + 0x400062f4 rom_i2c_master_reset = 0x400062f4 + 0x40006300 rom_bt_filter_reg = 0x40006300 + 0x4000630c rom_phy_bbpll_cal = 0x4000630c + 0x40006318 rom_i2c_sar2_init_code = 0x40006318 + 0x40006324 rom_phy_param_addr = 0x40006324 + 0x40006330 rom_phy_reg_init = 0x40006330 + 0x4000633c rom_set_chan_reg = 0x4000633c + 0x40006348 rom_phy_wakeup_init = 0x40006348 + 0x40006354 rom_phy_i2c_init1 = 0x40006354 + 0x40006360 rom_tsens_temp_read = 0x40006360 + 0x4000636c rom_bt_track_pll_cap = 0x4000636c + 0x40006378 rom_wifi_track_pll_cap = 0x40006378 + 0x40006384 rom_wifi_set_tx_gain = 0x40006384 + 0x40006390 rom_txpwr_cal_track = 0x40006390 + 0x4000639c rom_tx_pwctrl_background = 0x4000639c + 0x400063a8 rom_bt_set_tx_gain = 0x400063a8 + 0x400063b4 rom_noise_check_loop = 0x400063b4 + 0x400063c0 rom_phy_close_rf = 0x400063c0 + 0x400063cc rom_phy_xpd_tsens = 0x400063cc + 0x400063d8 rom_phy_freq_mem_backup = 0x400063d8 + 0x400063e4 rom_phy_ant_init = 0x400063e4 + 0x400063f0 rom_bt_track_tx_power = 0x400063f0 + 0x400063fc rom_wifi_track_tx_power = 0x400063fc + 0x40006408 rom_phy_dig_reg_backup = 0x40006408 + 0x40006414 chip728_phyrom_version_num = 0x40006414 + 0x40006420 rom_mac_tx_chan_offset = 0x40006420 + 0x4000642c rom_rx_gain_force = 0x4000642c + 0x3fcef81c phy_param_rom = 0x3fcef81c + 0x40001c98 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) + 0x40001b0c PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) + 0x40001b00 PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) + 0x40001b18 PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) + 0x40001a94 PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) + 0x40001aa0 PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x40001f74 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + 0x40001fa4 PROVIDE (esp_rom_efuse_get_flash_wp_gpio = ets_efuse_get_wp_pad) + [!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_usb_acm_init = Uart_Init_USB) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + 0x40000690 PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) + 0x40000648 PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) + 0x4000069c PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) + 0x40000660 PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) + 0x400006c0 PROVIDE (esp_rom_output_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_output_usb_acm_init = Uart_Init_USB) + 0x400006b4 PROVIDE (esp_rom_output_putc = ets_write_char_uart) + 0x40001c5c PROVIDE (esp_rom_md5_init = MD5Init) + 0x40001c68 PROVIDE (esp_rom_md5_update = MD5Update) + 0x40001c74 PROVIDE (esp_rom_md5_final = MD5Final) + 0x400006d8 PROVIDE (esp_rom_software_reset_system = software_reset) + 0x400006e4 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x400005d0 PROVIDE (esp_rom_printf = ets_printf) + 0x40000600 PROVIDE (esp_rom_delay_us = ets_delay_us) + [!provide] PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x4000057c PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x40001b54 PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x40001a40 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + 0x40001a4c PROVIDE (esp_rom_set_cpu_ticks_per_us = ets_update_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_attach = spi_flash_attach) + [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) + 0x40000a44 PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) + [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) + [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) + [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) + [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) + 0x40005d48 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x40005d54 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x40005d60 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x40005d6c PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x40002a78 bt_rf_coex_get_dft_cfg = 0x40002a78 + 0x40002a84 bt_rf_coex_hooks_p_set = 0x40002a84 + 0x40002a90 btdm_con_maxevtime_cal_impl = 0x40002a90 + 0x40002a9c btdm_controller_get_compile_version_impl = 0x40002a9c + 0x40002aa8 btdm_controller_rom_data_init = 0x40002aa8 + 0x40002ab4 btdm_dis_privacy_err_report_impl = 0x40002ab4 + 0x40002ac0 btdm_disable_adv_delay_impl = 0x40002ac0 + 0x40002acc btdm_enable_scan_continue_impl = 0x40002acc + 0x40002ad8 btdm_enable_scan_forever_impl = 0x40002ad8 + 0x40002ae4 btdm_get_power_state_impl = 0x40002ae4 + 0x40002af0 btdm_get_prevent_sleep_flag_impl = 0x40002af0 + 0x40002afc btdm_power_state_active_impl = 0x40002afc + 0x40002b08 btdm_switch_phy_coded_impl = 0x40002b08 + 0x40002b14 hci_acl_data_handler = 0x40002b14 + 0x40002b20 hci_disconnect_cmd_handler = 0x40002b20 + 0x40002b2c hci_le_con_upd_cmd_handler = 0x40002b2c + 0x40002b38 hci_le_ltk_req_neg_reply_cmd_handler = 0x40002b38 + 0x40002b44 hci_le_ltk_req_reply_cmd_handler = 0x40002b44 + 0x40002b50 hci_le_rd_chnl_map_cmd_handler = 0x40002b50 + 0x40002b5c hci_le_rd_phy_cmd_handler = 0x40002b5c + 0x40002b68 hci_le_rd_rem_feats_cmd_handler = 0x40002b68 + 0x40002b74 hci_le_rem_con_param_req_neg_reply_cmd_handler = 0x40002b74 + 0x40002b80 hci_le_rem_con_param_req_reply_cmd_handler = 0x40002b80 + 0x40002b8c hci_le_set_data_len_cmd_handler = 0x40002b8c + 0x40002b98 hci_le_set_phy_cmd_handler = 0x40002b98 + 0x40002ba4 hci_le_start_enc_cmd_handler = 0x40002ba4 + 0x40002bb0 hci_rd_auth_payl_to_cmd_handler = 0x40002bb0 + 0x40002bbc hci_rd_rem_ver_info_cmd_handler = 0x40002bbc + 0x40002bc8 hci_rd_rssi_cmd_handler = 0x40002bc8 + 0x40002bd4 hci_rd_tx_pwr_lvl_cmd_handler = 0x40002bd4 + 0x40002be0 hci_vs_set_pref_slave_evt_dur_cmd_handler = 0x40002be0 + 0x40002bec hci_vs_set_pref_slave_latency_cmd_handler = 0x40002bec + 0x40002bf8 hci_wr_auth_payl_to_cmd_handler = 0x40002bf8 + 0x40002c04 ll_channel_map_ind_handler = 0x40002c04 + 0x40002c10 ll_connection_param_req_handler = 0x40002c10 + 0x40002c1c ll_connection_param_rsp_handler = 0x40002c1c + 0x40002c28 ll_connection_update_ind_handler = 0x40002c28 + 0x40002c34 ll_enc_req_handler = 0x40002c34 + 0x40002c40 ll_enc_rsp_handler = 0x40002c40 + 0x40002c4c ll_feature_req_handler = 0x40002c4c + 0x40002c58 ll_feature_rsp_handler = 0x40002c58 + 0x40002c64 ll_length_req_handler = 0x40002c64 + 0x40002c70 ll_length_rsp_handler = 0x40002c70 + 0x40002c7c ll_min_used_channels_ind_handler = 0x40002c7c + 0x40002c88 ll_pause_enc_req_handler = 0x40002c88 + 0x40002c94 ll_pause_enc_rsp_handler = 0x40002c94 + 0x40002ca0 ll_phy_req_handler = 0x40002ca0 + 0x40002cac ll_phy_rsp_handler = 0x40002cac + 0x40002cb8 ll_phy_update_ind_handler = 0x40002cb8 + 0x40002cc4 ll_ping_req_handler = 0x40002cc4 + 0x40002cd0 ll_ping_rsp_handler = 0x40002cd0 + 0x40002cdc ll_slave_feature_req_handler = 0x40002cdc + 0x40002ce8 ll_start_enc_req_handler = 0x40002ce8 + 0x40002cf4 ll_start_enc_rsp_handler = 0x40002cf4 + 0x40002d00 ll_terminate_ind_handler = 0x40002d00 + 0x40002d0c ll_version_ind_handler = 0x40002d0c + 0x40002d18 llc_auth_payl_nearly_to_handler = 0x40002d18 + 0x40002d24 llc_auth_payl_real_to_handler = 0x40002d24 + 0x40002d30 llc_encrypt_ind_handler = 0x40002d30 + 0x40002d3c llc_hci_command_handler_wrapper = 0x40002d3c + 0x40002d48 llc_ll_connection_param_req_pdu_send = 0x40002d48 + 0x40002d54 llc_ll_connection_param_rsp_pdu_send = 0x40002d54 + 0x40002d60 llc_ll_connection_update_ind_pdu_send = 0x40002d60 + 0x40002d6c llc_ll_enc_req_pdu_send = 0x40002d6c + 0x40002d78 llc_ll_enc_rsp_pdu_send = 0x40002d78 + 0x40002d84 llc_ll_feature_req_pdu_send = 0x40002d84 + 0x40002d90 llc_ll_feature_rsp_pdu_send = 0x40002d90 + 0x40002d9c llc_ll_length_req_pdu_send = 0x40002d9c + 0x40002da8 llc_ll_length_rsp_pdu_send = 0x40002da8 + 0x40002db4 llc_ll_pause_enc_req_pdu_send = 0x40002db4 + 0x40002dc0 llc_ll_pause_enc_rsp_pdu_send = 0x40002dc0 + 0x40002dcc llc_ll_phy_req_pdu_send = 0x40002dcc + 0x40002dd8 llc_ll_phy_rsp_pdu_send = 0x40002dd8 + 0x40002de4 llc_ll_ping_req_pdu_send = 0x40002de4 + 0x40002df0 llc_ll_ping_rsp_pdu_send = 0x40002df0 + 0x40002dfc llc_ll_start_enc_req_pdu_send = 0x40002dfc + 0x40002e08 llc_ll_start_enc_rsp_pdu_send = 0x40002e08 + 0x40002e14 llc_ll_terminate_ind_pdu_send = 0x40002e14 + 0x40002e20 llc_ll_unknown_rsp_pdu_send = 0x40002e20 + 0x40002e2c llc_llcp_ch_map_update_ind_pdu_send = 0x40002e2c + 0x40002e38 llc_llcp_phy_upd_ind_pdu_send = 0x40002e38 + 0x40002e44 llc_llcp_version_ind_pdu_send = 0x40002e44 + 0x40002e50 llc_op_ch_map_upd_ind_handler = 0x40002e50 + 0x40002e5c llc_op_con_upd_ind_handler = 0x40002e5c + 0x40002e68 llc_op_disconnect_ind_handler = 0x40002e68 + 0x40002e74 llc_op_dl_upd_ind_handler = 0x40002e74 + 0x40002e80 llc_op_encrypt_ind_handler = 0x40002e80 + 0x40002e8c llc_op_feats_exch_ind_handler = 0x40002e8c + 0x40002e98 llc_op_le_ping_ind_handler = 0x40002e98 + 0x40002ea4 llc_op_phy_upd_ind_handler = 0x40002ea4 + 0x40002eb0 llc_op_ver_exch_ind_handler = 0x40002eb0 + 0x40002ebc llc_stopped_ind_handler = 0x40002ebc + 0x40000000 lld_acl_rx_ind_handler = 0x40002ec8 + 0x40002ed4 lld_acl_tx_cfm_handler = 0x40002ed4 + 0x40002ee0 lld_adv_end_ind_handler = 0x40002ee0 + 0x40000000 lld_adv_rep_ind_handler = 0x40002eec + 0x40002ef8 lld_ch_map_upd_cfm_handler = 0x40002ef8 + 0x40000000 lld_con_estab_ind_handler = 0x40002f04 + 0x40002f10 lld_con_evt_sd_evt_time_set = 0x40002f10 + 0x40002f1c lld_con_offset_upd_ind_handler = 0x40002f1c + 0x40002f28 lld_con_param_upd_cfm_handler = 0x40002f28 + 0x40002f34 lld_disc_ind_handler = 0x40002f34 + 0x40000000 lld_init_end_ind_handler = 0x40002f40 + 0x40002f4c lld_llcp_rx_ind_handler_wrapper = 0x40002f4c + 0x40002f58 lld_llcp_tx_cfm_handler = 0x40002f58 + 0x40002f64 lld_per_adv_end_ind_handler = 0x40002f64 + 0x40002f70 lld_per_adv_rep_ind_handler = 0x40002f70 + 0x40002f7c lld_per_adv_rx_end_ind_handler = 0x40002f7c + 0x40002f88 lld_phy_coded_500k_get = 0x40002f88 + 0x40002f94 lld_phy_upd_cfm_handler = 0x40002f94 + 0x40000000 lld_scan_end_ind_handler = 0x40002fa0 + 0x40002fac lld_scan_req_ind_handler = 0x40002fac + 0x40002fb8 lld_sync_start_req_handler = 0x40002fb8 + 0x40002fc4 lld_test_end_ind_handler = 0x40002fc4 + 0x40002fd0 lld_update_rxbuf_handler = 0x40002fd0 + 0x40002fdc llm_ch_map_update_ind_handler = 0x40002fdc + 0x40002fe8 llm_hci_command_handler_wrapper = 0x40002fe8 + 0x40000000 llm_scan_period_to_handler = 0x40002ff4 + 0x40003000 r_Add2SelfBigHex256 = 0x40003000 + 0x4000300c r_AddBigHex256 = 0x4000300c + 0x40003018 r_AddBigHexModP256 = 0x40003018 + 0x40003024 r_AddP256 = 0x40003024 + 0x40003030 r_AddPdiv2_256 = 0x40003030 + 0x4000303c r_GF_Jacobian_Point_Addition256 = 0x4000303c + 0x40003048 r_GF_Jacobian_Point_Double256 = 0x40003048 + 0x40003054 r_GF_Point_Jacobian_To_Affine256 = 0x40003054 + 0x40003060 r_MultiplyBigHexByUint32_256 = 0x40003060 + 0x4000306c r_MultiplyBigHexModP256 = 0x4000306c + 0x40003078 r_MultiplyByU16ModP256 = 0x40003078 + 0x40003084 r_SubtractBigHex256 = 0x40003084 + 0x40003090 r_SubtractBigHexMod256 = 0x40003090 + 0x4000309c r_SubtractBigHexUint32_256 = 0x4000309c + 0x400030a8 r_SubtractFromSelfBigHex256 = 0x400030a8 + 0x400030b4 r_SubtractFromSelfBigHexSign256 = 0x400030b4 + 0x400030c0 r_aes_alloc = 0x400030c0 + 0x400030cc r_aes_ccm_continue = 0x400030cc + 0x400030d8 r_aes_ccm_process_e = 0x400030d8 + 0x400030e4 r_aes_ccm_xor_128_lsb = 0x400030e4 + 0x400030f0 r_aes_ccm_xor_128_msb = 0x400030f0 + 0x400030fc r_aes_cmac_continue = 0x400030fc + 0x40003108 r_aes_cmac_start = 0x40003108 + 0x40003114 r_aes_k1_continue = 0x40003114 + 0x40003120 r_aes_k2_continue = 0x40003120 + 0x4000312c r_aes_k3_continue = 0x4000312c + 0x40003138 r_aes_k4_continue = 0x40003138 + 0x40003144 r_aes_shift_left_128 = 0x40003144 + 0x40003150 r_aes_start = 0x40003150 + 0x4000315c r_aes_xor_128 = 0x4000315c + 0x40003168 r_assert_err = 0x40003168 + 0x40003174 r_assert_param = 0x40003174 + 0x40003180 r_assert_warn = 0x40003180 + 0x4000318c r_bigHexInversion256 = 0x4000318c + 0x40003198 r_ble_sw_cca_check_isr = 0x40003198 + 0x400031a4 r_ble_util_buf_acl_tx_alloc = 0x400031a4 + 0x400031b0 r_ble_util_buf_acl_tx_elt_get = 0x400031b0 + 0x400031bc r_ble_util_buf_acl_tx_free = 0x400031bc + 0x400031c8 r_ble_util_buf_acl_tx_free_in_isr = 0x400031c8 + 0x400031d4 r_ble_util_buf_adv_tx_alloc = 0x400031d4 + 0x400031e0 r_ble_util_buf_adv_tx_free = 0x400031e0 + 0x400031ec r_ble_util_buf_adv_tx_free_in_isr = 0x400031ec + 0x400031f8 r_ble_util_buf_env_deinit = 0x400031f8 + 0x40003204 r_ble_util_buf_env_init = 0x40003204 + 0x40003210 r_ble_util_buf_get_rx_buf_nb = 0x40003210 + 0x4000321c r_ble_util_buf_get_rx_buf_size = 0x4000321c + 0x40003228 r_ble_util_buf_llcp_tx_alloc = 0x40003228 + 0x40003234 r_ble_util_buf_llcp_tx_free = 0x40003234 + 0x40003240 r_ble_util_buf_rx_alloc = 0x40003240 + 0x4000324c r_ble_util_buf_rx_alloc_in_isr = 0x4000324c + 0x40003258 r_ble_util_buf_rx_free = 0x40003258 + 0x40003264 r_ble_util_buf_rx_free_in_isr = 0x40003264 + 0x40003270 r_ble_util_buf_set_rx_buf_nb = 0x40003270 + 0x4000327c r_ble_util_buf_set_rx_buf_size = 0x4000327c + 0x40003288 r_ble_util_data_rx_buf_reset = 0x40003288 + 0x40003294 r_bt_bb_get_intr_mask = 0x40003294 + 0x400032a0 r_bt_bb_intr_clear = 0x400032a0 + 0x400032ac r_bt_bb_intr_mask_set = 0x400032ac + 0x400032b8 r_bt_bb_isr = 0x400032b8 + 0x400032c4 r_bt_rf_coex_cfg_set = 0x400032c4 + 0x400032d0 r_bt_rf_coex_conn_dynamic_pti_en_get = 0x400032d0 + 0x400032dc r_bt_rf_coex_conn_phy_coded_data_time_limit_en_get = 0x400032dc + 0x400032e8 r_bt_rf_coex_ext_adv_dynamic_pti_en_get = 0x400032e8 + 0x400032f4 r_bt_rf_coex_ext_scan_dynamic_pti_en_get = 0x400032f4 + 0x40003300 r_bt_rf_coex_legacy_adv_dynamic_pti_en_get = 0x40003300 + 0x4000330c r_bt_rf_coex_per_adv_dynamic_pti_en_get = 0x4000330c + 0x40003318 r_bt_rf_coex_pti_table_get = 0x40003318 + 0x40003324 r_bt_rf_coex_st_param_get = 0x40003324 + 0x40003330 r_bt_rf_coex_st_param_set = 0x40003330 + 0x4000333c r_bt_rf_coex_sync_scan_dynamic_pti_en_get = 0x4000333c + 0x40003348 r_bt_rma_apply_rule_cs_fmt = 0x40003348 + 0x40003354 r_bt_rma_apply_rule_cs_idx = 0x40003354 + 0x40003360 r_bt_rma_configure = 0x40003360 + 0x4000336c r_bt_rma_deregister_rule_cs_fmt = 0x4000336c + 0x40003378 r_bt_rma_deregister_rule_cs_idx = 0x40003378 + 0x40003384 r_bt_rma_get_ant_by_act = 0x40003384 + 0x40003390 r_bt_rma_init = 0x40003390 + 0x4000339c r_bt_rma_register_rule_cs_fmt = 0x4000339c + 0x400033a8 r_bt_rma_register_rule_cs_idx = 0x400033a8 + 0x400033b4 r_bt_rtp_apply_rule_cs_fmt = 0x400033b4 + 0x400033c0 r_bt_rtp_apply_rule_cs_idx = 0x400033c0 + 0x400033cc r_bt_rtp_deregister_rule_cs_fmt = 0x400033cc + 0x400033d8 r_bt_rtp_deregister_rule_cs_idx = 0x400033d8 + 0x400033e4 r_bt_rtp_get_txpwr_idx_by_act = 0x400033e4 + 0x400033f0 r_bt_rtp_init = 0x400033f0 + 0x400033fc r_bt_rtp_register_rule_cs_fmt = 0x400033fc + 0x40003408 r_bt_rtp_register_rule_cs_idx = 0x40003408 + 0x40003414 r_btdm_isr = 0x40003414 + 0x40003420 r_btdm_task_post = 0x40003420 + 0x4000342c r_btdm_task_post_from_isr = 0x4000342c + 0x40003438 r_btdm_task_recycle = 0x40003438 + 0x40003444 r_cali_phase_match_p = 0x40003444 + 0x40003450 r_cmp_abs_time = 0x40003450 + 0x4000345c r_cmp_dest_id = 0x4000345c + 0x40003468 r_cmp_timer_id = 0x40003468 + 0x40003474 r_co_bdaddr_compare = 0x40003474 + 0x40003480 r_co_ble_pkt_dur_in_us = 0x40003480 + 0x4000348c r_co_list_extract = 0x4000348c + 0x40003498 r_co_list_extract_after = 0x40003498 + 0x400034a4 r_co_list_extract_sublist = 0x400034a4 + 0x400034b0 r_co_list_find = 0x400034b0 + 0x400034bc r_co_list_init = 0x400034bc + 0x400034c8 r_co_list_insert_after = 0x400034c8 + 0x400034d4 r_co_list_insert_before = 0x400034d4 + 0x400034e0 r_co_list_merge = 0x400034e0 + 0x400034ec r_co_list_pool_init = 0x400034ec + 0x400034f8 r_co_list_pop_front = 0x400034f8 + 0x40003504 r_co_list_push_back = 0x40003504 + 0x40003510 r_co_list_push_back_sublist = 0x40003510 + 0x4000351c r_co_list_push_front = 0x4000351c + 0x40003528 r_co_list_size = 0x40003528 + 0x40003534 r_co_nb_good_le_channels = 0x40003534 + 0x40003540 r_co_util_pack = 0x40003540 + 0x4000354c r_co_util_read_array_size = 0x4000354c + 0x40003558 r_co_util_unpack = 0x40003558 + 0x40003564 r_dbg_env_deinit = 0x40003564 + 0x40003570 r_dbg_env_init = 0x40003570 + 0x4000357c r_dbg_platform_reset_complete = 0x4000357c + 0x40003588 r_dl_upd_proc_start = 0x40003588 + 0x40003594 r_dump_data = 0x40003594 + 0x400035a0 r_ecc_abort_key256_generation = 0x400035a0 + 0x400035ac r_ecc_gen_new_public_key = 0x400035ac + 0x400035b8 r_ecc_gen_new_secret_key = 0x400035b8 + 0x400035c4 r_ecc_generate_key256 = 0x400035c4 + 0x400035d0 r_ecc_get_debug_Keys = 0x400035d0 + 0x40000000 r_ecc_init = 0x400035dc + 0x400035e8 r_ecc_is_valid_point = 0x400035e8 + 0x400035f4 r_ecc_multiplication_event_handler = 0x400035f4 + 0x40003600 r_ecc_point_multiplication_win_256 = 0x40003600 + 0x4000360c r_emi_alloc_em_mapping_by_offset = 0x4000360c + 0x40003618 r_emi_base_reg_lut_show = 0x40003618 + 0x40003624 r_emi_em_base_reg_show = 0x40003624 + 0x40003630 r_emi_free_em_mapping_by_offset = 0x40003630 + 0x4000363c r_emi_get_em_mapping_idx_by_offset = 0x4000363c + 0x40003648 r_emi_get_mem_addr_by_offset = 0x40003648 + 0x40003654 r_emi_overwrite_em_mapping_by_offset = 0x40003654 + 0x40003660 r_esp_vendor_hci_command_handler = 0x40003660 + 0x4000366c r_get_stack_usage = 0x4000366c + 0x40003678 r_h4tl_acl_hdr_rx_evt_handler = 0x40003678 + 0x40003684 r_h4tl_cmd_hdr_rx_evt_handler = 0x40003684 + 0x40003690 r_h4tl_cmd_pld_rx_evt_handler = 0x40003690 + 0x4000369c r_h4tl_eif_io_event_post = 0x4000369c + 0x400036a8 r_h4tl_eif_register = 0x400036a8 + 0x400036b4 r_h4tl_init = 0x400036b4 + 0x400036c0 r_h4tl_out_of_sync = 0x400036c0 + 0x400036cc r_h4tl_out_of_sync_check = 0x400036cc + 0x400036d8 r_h4tl_read_hdr = 0x400036d8 + 0x400036e4 r_h4tl_read_next_out_of_sync = 0x400036e4 + 0x400036f0 r_h4tl_read_payl = 0x400036f0 + 0x400036fc r_h4tl_read_start = 0x400036fc + 0x40003708 r_h4tl_rx_acl_hdr_extract = 0x40003708 + 0x40003714 r_h4tl_rx_cmd_hdr_extract = 0x40003714 + 0x40003720 r_h4tl_rx_done = 0x40003720 + 0x4000372c r_h4tl_start = 0x4000372c + 0x40003738 r_h4tl_stop = 0x40003738 + 0x40003744 r_h4tl_tx_done = 0x40003744 + 0x40003750 r_h4tl_tx_evt_handler = 0x40003750 + 0x4000375c r_h4tl_write = 0x4000375c + 0x40003768 r_hci_acl_tx_data_alloc = 0x40003768 + 0x40003774 r_hci_acl_tx_data_received = 0x40003774 + 0x40003780 r_hci_basic_cmd_send_2_controller = 0x40003780 + 0x4000378c r_hci_ble_adv_report_filter_check = 0x4000378c + 0x40003798 r_hci_ble_adv_report_tx_check = 0x40003798 + 0x400037a4 r_hci_ble_conhdl_register = 0x400037a4 + 0x400037b0 r_hci_ble_conhdl_unregister = 0x400037b0 + 0x400037bc r_hci_build_acl_data = 0x400037bc + 0x400037c8 r_hci_build_cc_evt = 0x400037c8 + 0x400037d4 r_hci_build_cs_evt = 0x400037d4 + 0x400037e0 r_hci_build_evt = 0x400037e0 + 0x400037ec r_hci_build_le_evt = 0x400037ec + 0x400037f8 r_hci_cmd_get_max_param_size = 0x400037f8 + 0x40003804 r_hci_cmd_received = 0x40003804 + 0x40003810 r_hci_cmd_reject = 0x40003810 + 0x4000381c r_hci_evt_mask_check = 0x4000381c + 0x40003828 r_hci_evt_mask_set = 0x40003828 + 0x40003834 r_hci_fc_acl_buf_size_set = 0x40003834 + 0x40003840 r_hci_fc_acl_en = 0x40003840 + 0x4000384c r_hci_fc_acl_packet_sent = 0x4000384c + 0x40003858 r_hci_fc_check_host_available_nb_acl_packets = 0x40003858 + 0x40003864 r_hci_fc_host_nb_acl_pkts_complete = 0x40003864 + 0x40003870 r_hci_fc_init = 0x40003870 + 0x4000387c r_hci_look_for_cmd_desc = 0x4000387c + 0x40003888 r_hci_look_for_evt_desc = 0x40003888 + 0x40003894 r_hci_look_for_le_evt_desc = 0x40003894 + 0x400038a0 r_hci_look_for_le_evt_desc_esp = 0x400038a0 + 0x400038ac r_hci_pack_bytes = 0x400038ac + 0x400038b8 r_hci_register_vendor_desc_tab = 0x400038b8 + 0x400038c4 r_hci_send_2_controller = 0x400038c4 + 0x400038d0 r_hci_send_2_host = 0x400038d0 + 0x400038dc r_hci_tl_c2h_data_flow_on = 0x400038dc + 0x400038e8 r_hci_tl_cmd_hdr_rx_evt_handler = 0x400038e8 + 0x400038f4 r_hci_tl_cmd_pld_rx_evt_handler = 0x400038f4 + 0x40003900 r_hci_tl_get_pkt = 0x40003900 + 0x4000390c r_hci_tl_hci_pkt_handler = 0x4000390c + 0x40003918 r_hci_tl_hci_tx_done_evt_handler = 0x40003918 + 0x40003924 r_hci_tl_inc_nb_h2c_cmd_pkts = 0x40003924 + 0x40003930 r_hci_tl_save_pkt = 0x40003930 + 0x4000393c r_hci_tl_send = 0x4000393c + 0x40003948 r_hci_tx_done = 0x40003948 + 0x40003954 r_hci_tx_start = 0x40003954 + 0x40003960 r_hci_tx_trigger = 0x40003960 + 0x4000396c r_isValidSecretKey_256 = 0x4000396c + 0x40003978 r_ke_check_malloc = 0x40003978 + 0x40003984 r_ke_event_callback_set = 0x40003984 + 0x40003990 r_ke_event_clear = 0x40003990 + 0x4000399c r_ke_event_flush = 0x4000399c + 0x400039a8 r_ke_event_get = 0x400039a8 + 0x400039b4 r_ke_event_get_all = 0x400039b4 + 0x400039c0 r_ke_event_init = 0x400039c0 + 0x400039cc r_ke_event_schedule = 0x400039cc + 0x400039d8 r_ke_event_set = 0x400039d8 + 0x400039e4 r_ke_flush = 0x400039e4 + 0x400039f0 r_ke_free = 0x400039f0 + 0x400039fc r_ke_handler_search = 0x400039fc + 0x40003a08 r_ke_init = 0x40003a08 + 0x40003a14 r_ke_is_free = 0x40003a14 + 0x40003a20 r_ke_malloc = 0x40003a20 + 0x40003a2c r_ke_mem_init = 0x40003a2c + 0x40003a38 r_ke_mem_is_empty = 0x40003a38 + 0x40003a44 r_ke_mem_is_in_heap = 0x40003a44 + 0x40003a50 r_ke_msg_alloc = 0x40003a50 + 0x40003a5c r_ke_msg_dest_id_get = 0x40003a5c + 0x40003a68 r_ke_msg_discard = 0x40003a68 + 0x40003a74 r_ke_msg_forward = 0x40003a74 + 0x40003a80 r_ke_msg_forward_new_id = 0x40003a80 + 0x40003a8c r_ke_msg_free = 0x40003a8c + 0x40003a98 r_ke_msg_in_queue = 0x40003a98 + 0x40003aa4 r_ke_msg_save = 0x40003aa4 + 0x40003ab0 r_ke_msg_send = 0x40003ab0 + 0x40003abc r_ke_msg_send_basic = 0x40003abc + 0x40003ac8 r_ke_msg_src_id_get = 0x40003ac8 + 0x40003ad4 r_ke_queue_extract = 0x40003ad4 + 0x40003ae0 r_ke_queue_insert = 0x40003ae0 + 0x40003aec r_ke_sleep_check = 0x40003aec + 0x40003af8 r_ke_state_get = 0x40003af8 + 0x40003b04 r_ke_state_set = 0x40003b04 + 0x40003b10 r_ke_task_check = 0x40003b10 + 0x40003b1c r_ke_task_create = 0x40003b1c + 0x40003b28 r_ke_task_delete = 0x40003b28 + 0x40003b34 r_ke_task_handler_get = 0x40003b34 + 0x40003b40 r_ke_task_init = 0x40003b40 + 0x40003b4c r_ke_task_msg_flush = 0x40003b4c + 0x40003b58 r_ke_task_saved_update = 0x40003b58 + 0x40003b64 r_ke_task_schedule = 0x40003b64 + 0x40003b70 r_ke_time = 0x40003b70 + 0x40003b7c r_ke_time_cmp = 0x40003b7c + 0x40003b88 r_ke_time_past = 0x40003b88 + 0x40003b94 r_ke_timer_active = 0x40003b94 + 0x40003ba0 r_ke_timer_adjust_all = 0x40003ba0 + 0x40003bac r_ke_timer_clear = 0x40003bac + 0x40003bb8 r_ke_timer_init = 0x40003bb8 + 0x40003bc4 r_ke_timer_schedule = 0x40003bc4 + 0x40003bd0 r_ke_timer_set = 0x40003bd0 + 0x40003bdc r_led_init = 0x40003bdc + 0x40003be8 r_led_set_all = 0x40003be8 + 0x40003bf4 r_llc_aes_res_cb = 0x40003bf4 + 0x40003c00 r_llc_ch_map_up_proc_err_cb = 0x40003c00 + 0x40003c0c r_llc_cleanup = 0x40003c0c + 0x40003c18 r_llc_cmd_cmp_send = 0x40003c18 + 0x40003c24 r_llc_cmd_stat_send = 0x40003c24 + 0x40003c30 r_llc_con_move_cbk = 0x40003c30 + 0x40003c3c r_llc_con_plan_set_update = 0x40003c3c + 0x40003c48 r_llc_con_upd_param_in_range = 0x40003c48 + 0x40003c54 r_llc_disconnect = 0x40003c54 + 0x40003c60 r_llc_disconnect_end = 0x40003c60 + 0x40003c6c r_llc_disconnect_proc_continue = 0x40003c6c + 0x40003c78 r_llc_disconnect_proc_err_cb = 0x40003c78 + 0x40003c84 r_llc_dl_chg_check = 0x40003c84 + 0x40003c90 r_llc_dle_proc_err_cb = 0x40003c90 + 0x40003c9c r_llc_feats_exch_proc_err_cb = 0x40003c9c + 0x40003ca8 r_llc_hci_cmd_handler_tab_p_get = 0x40003ca8 + 0x40003cb4 r_llc_hci_command_handler = 0x40003cb4 + 0x40003cc0 r_llc_hci_con_param_req_evt_send = 0x40003cc0 + 0x40003ccc r_llc_hci_con_upd_info_send = 0x40003ccc + 0x40003cd8 r_llc_hci_disconnected_dis = 0x40003cd8 + 0x40003ce4 r_llc_hci_dl_upd_info_send = 0x40003ce4 + 0x40003cf0 r_llc_hci_enc_evt_send = 0x40003cf0 + 0x40003cfc r_llc_hci_feats_info_send = 0x40003cfc + 0x40003d08 r_llc_hci_le_phy_upd_cmp_evt_send = 0x40003d08 + 0x40003d14 r_llc_hci_ltk_request_evt_send = 0x40003d14 + 0x40003d20 r_llc_hci_nb_cmp_pkts_evt_send = 0x40003d20 + 0x40003d2c r_llc_hci_version_info_send = 0x40003d2c + 0x40003d38 r_llc_init_term_proc = 0x40003d38 + 0x40003d44 r_llc_iv_skd_rand_gen = 0x40003d44 + 0x40003d50 r_llc_le_ping_proc_continue = 0x40003d50 + 0x40003d5c r_llc_le_ping_proc_err_cb = 0x40003d5c + 0x40003d68 r_llc_le_ping_restart = 0x40003d68 + 0x40003d74 r_llc_le_ping_set = 0x40003d74 + 0x40003d80 r_llc_ll_pause_enc_rsp_ack_handler = 0x40003d80 + 0x40003d8c r_llc_ll_reject_ind_ack_handler = 0x40003d8c + 0x40003d98 r_llc_ll_reject_ind_pdu_send = 0x40003d98 + 0x40003da4 r_llc_ll_start_enc_rsp_ack_handler = 0x40003da4 + 0x40003db0 r_llc_ll_terminate_ind_ack = 0x40003db0 + 0x40003dbc r_llc_ll_unknown_ind_handler = 0x40003dbc + 0x40003dc8 r_llc_llcp_send = 0x40003dc8 + 0x40003dd4 r_llc_llcp_state_set = 0x40003dd4 + 0x40003de0 r_llc_llcp_trans_timer_set = 0x40003de0 + 0x40003dec r_llc_llcp_tx_check = 0x40003dec + 0x40003df8 r_llc_loc_ch_map_proc_continue = 0x40003df8 + 0x40003e04 r_llc_loc_con_upd_proc_continue = 0x40003e04 + 0x40003e10 r_llc_loc_con_upd_proc_err_cb = 0x40003e10 + 0x40003e1c r_llc_loc_dl_upd_proc_continue = 0x40003e1c + 0x40003e28 r_llc_loc_encrypt_proc_continue = 0x40003e28 + 0x40003e34 r_llc_loc_encrypt_proc_err_cb = 0x40003e34 + 0x40003e40 r_llc_loc_feats_exch_proc_continue = 0x40003e40 + 0x40003e4c r_llc_loc_phy_upd_proc_continue = 0x40003e4c + 0x40003e58 r_llc_loc_phy_upd_proc_err_cb = 0x40003e58 + 0x40003e64 r_llc_msg_handler_tab_p_get = 0x40003e64 + 0x40003e70 r_llc_pref_param_compute = 0x40003e70 + 0x40003e7c r_llc_proc_collision_check = 0x40003e7c + 0x40003e88 r_llc_proc_err_ind = 0x40003e88 + 0x40003e94 r_llc_proc_get = 0x40003e94 + 0x40003ea0 r_llc_proc_id_get = 0x40003ea0 + 0x40003eac r_llc_proc_reg = 0x40003eac + 0x40003eb8 r_llc_proc_state_get = 0x40003eb8 + 0x40003ec4 r_llc_proc_state_set = 0x40003ec4 + 0x40003ed0 r_llc_proc_timer_pause_set = 0x40003ed0 + 0x40003edc r_llc_proc_timer_set = 0x40003edc + 0x40003ee8 r_llc_proc_unreg = 0x40003ee8 + 0x40003ef4 r_llc_rem_ch_map_proc_continue = 0x40003ef4 + 0x40003f00 r_llc_rem_con_upd_proc_continue = 0x40003f00 + 0x40003f0c r_llc_rem_con_upd_proc_err_cb = 0x40003f0c + 0x40003f18 r_llc_rem_dl_upd_proc = 0x40003f18 + 0x40003f24 r_llc_rem_encrypt_proc_continue = 0x40003f24 + 0x40003f30 r_llc_rem_encrypt_proc_err_cb = 0x40003f30 + 0x40003f3c r_llc_rem_phy_upd_proc_continue = 0x40003f3c + 0x40003f48 r_llc_rem_phy_upd_proc_err_cb = 0x40003f48 + 0x40003f54 r_llc_role_get = 0x40003f54 + 0x40003f60 r_llc_sk_gen = 0x40003f60 + 0x40003f6c r_llc_start = 0x40003f6c + 0x40003f78 r_llc_stop = 0x40003f78 + 0x40003f84 r_llc_ver_exch_loc_proc_continue = 0x40003f84 + 0x40003f90 r_llc_ver_proc_err_cb = 0x40003f90 + 0x40003f9c r_llcp_pdu_handler_tab_p_get = 0x40003f9c + 0x40003fa8 r_lld_aa_gen = 0x40003fa8 + 0x40003fb4 r_lld_adv_adv_data_set = 0x40003fb4 + 0x40003fc0 r_lld_adv_adv_data_update = 0x40003fc0 + 0x40000000 r_lld_adv_aux_ch_idx_set = 0x40003fcc + 0x40000000 r_lld_adv_aux_evt_canceled_cbk = 0x40003fd8 + 0x40000000 r_lld_adv_aux_evt_start_cbk = 0x40003fe4 + 0x40003ff0 r_lld_adv_coex_check_ext_adv_synced = 0x40003ff0 + 0x40003ffc r_lld_adv_coex_env_reset = 0x40003ffc + 0x40004008 r_lld_adv_duration_update = 0x40004008 + 0x40004014 r_lld_adv_dynamic_pti_process = 0x40004014 + 0x40004020 r_lld_adv_end = 0x40004020 + 0x4000402c r_lld_adv_evt_canceled_cbk = 0x4000402c + 0x40004038 r_lld_adv_evt_start_cbk = 0x40004038 + 0x40000000 r_lld_adv_ext_chain_construct = 0x40004044 + 0x40004050 r_lld_adv_ext_pkt_prepare = 0x40004050 + 0x4000405c r_lld_adv_frm_cbk = 0x4000405c + 0x40004068 r_lld_adv_frm_isr = 0x40004068 + 0x40004074 r_lld_adv_frm_skip_isr = 0x40004074 + 0x40004080 r_lld_adv_init = 0x40004080 + 0x4000408c r_lld_adv_pkt_rx = 0x4000408c + 0x40004098 r_lld_adv_pkt_rx_connect_ind = 0x40004098 + 0x400040a4 r_lld_adv_pkt_rx_send_scan_req_evt = 0x400040a4 + 0x400040b0 r_lld_adv_rand_addr_update = 0x400040b0 + 0x400040bc r_lld_adv_restart = 0x400040bc + 0x400040c8 r_lld_adv_scan_rsp_data_set = 0x400040c8 + 0x400040d4 r_lld_adv_scan_rsp_data_update = 0x400040d4 + 0x400040e0 r_lld_adv_set_tx_power = 0x400040e0 + 0x400040ec r_lld_adv_start = 0x400040ec + 0x400040f8 r_lld_adv_stop = 0x400040f8 + 0x40000000 r_lld_adv_sync_info_set = 0x40004104 + 0x40004110 r_lld_adv_sync_info_update = 0x40004110 + 0x4000411c r_lld_calc_aux_rx = 0x4000411c + 0x40004128 r_lld_cca_alloc = 0x40004128 + 0x40004134 r_lld_cca_data_reset = 0x40004134 + 0x40004140 r_lld_cca_free = 0x40004140 + 0x4000414c r_lld_ch_assess_data_get = 0x4000414c + 0x40004158 r_lld_ch_idx_get = 0x40004158 + 0x40004164 r_lld_ch_map_set = 0x40004164 + 0x40004170 r_lld_channel_assess = 0x40004170 + 0x4000417c r_lld_con_activity_act_offset_compute = 0x4000417c + 0x40004188 r_lld_con_activity_offset_compute = 0x40004188 + 0x40004194 r_lld_con_ch_map_update = 0x40004194 + 0x400041a0 r_lld_con_cleanup = 0x400041a0 + 0x400041ac r_lld_con_current_tx_power_get = 0x400041ac + 0x400041b8 r_lld_con_data_flow_set = 0x400041b8 + 0x400041c4 r_lld_con_data_len_update = 0x400041c4 + 0x400041d0 r_lld_con_data_tx = 0x400041d0 + 0x400041dc r_lld_con_enc_key_load = 0x400041dc + 0x400041e8 r_lld_con_event_counter_get = 0x400041e8 + 0x400041f4 r_lld_con_evt_canceled_cbk = 0x400041f4 + 0x40004200 r_lld_con_evt_duration_min_get = 0x40004200 + 0x4000420c r_lld_con_evt_max_eff_time_cal = 0x4000420c + 0x40004218 r_lld_con_evt_sd_evt_time_get = 0x40004218 + 0x40004224 r_lld_con_evt_start_cbk = 0x40004224 + 0x40004230 r_lld_con_evt_time_update = 0x40004230 + 0x4000423c r_lld_con_free_all_tx_buf = 0x4000423c + 0x40004248 r_lld_con_frm_cbk = 0x40004248 + 0x40004254 r_lld_con_frm_isr = 0x40004254 + 0x40004260 r_lld_con_frm_skip_isr = 0x40004260 + 0x4000426c r_lld_con_init = 0x4000426c + 0x40004278 r_lld_con_llcp_tx = 0x40004278 + 0x40004284 r_lld_con_max_lat_calc = 0x40004284 + 0x40004290 r_lld_con_offset_get = 0x40004290 + 0x4000429c r_lld_con_param_update = 0x4000429c + 0x400042a8 r_lld_con_phys_update = 0x400042a8 + 0x400042b4 r_lld_con_pref_slave_evt_dur_set = 0x400042b4 + 0x400042c0 r_lld_con_pref_slave_latency_set = 0x400042c0 + 0x400042cc r_lld_con_rssi_get = 0x400042cc + 0x400042d8 r_lld_con_rx = 0x400042d8 + 0x400042e4 r_lld_con_rx_channel_assess = 0x400042e4 + 0x400042f0 r_lld_con_rx_enc = 0x400042f0 + 0x400042fc r_lld_con_rx_isr = 0x400042fc + 0x40004308 r_lld_con_rx_link_info_check = 0x40004308 + 0x40004314 r_lld_con_rx_llcp_check = 0x40004314 + 0x40004320 r_lld_con_rx_sync_time_update = 0x40004320 + 0x4000432c r_lld_con_sched = 0x4000432c + 0x40004338 r_lld_con_set_tx_power = 0x40004338 + 0x40004344 r_lld_con_start = 0x40004344 + 0x40004350 r_lld_con_stop = 0x40004350 + 0x4000435c r_lld_con_tx = 0x4000435c + 0x40004368 r_lld_con_tx_enc = 0x40004368 + 0x40004374 r_lld_con_tx_isr = 0x40004374 + 0x40004380 r_lld_con_tx_len_update = 0x40004380 + 0x4000438c r_lld_con_tx_len_update_for_intv = 0x4000438c + 0x40004398 r_lld_con_tx_len_update_for_rate = 0x40004398 + 0x400043a4 r_lld_con_tx_prog = 0x400043a4 + 0x400043b0 r_lld_conn_dynamic_pti_process = 0x400043b0 + 0x400043bc r_lld_continue_scan_rx_isr_end_process = 0x400043bc + 0x400043c8 r_lld_ext_scan_dynamic_pti_process = 0x400043c8 + 0x400043d4 r_lld_hw_cca_end_isr = 0x400043d4 + 0x400043e0 r_lld_hw_cca_evt_handler = 0x400043e0 + 0x400043ec r_lld_hw_cca_isr = 0x400043ec + 0x400043f8 r_lld_init_cal_anchor_point = 0x400043f8 + 0x40004404 r_lld_init_compute_winoffset = 0x40004404 + 0x40004410 r_lld_init_connect_req_pack = 0x40004410 + 0x4000441c r_lld_init_end = 0x4000441c + 0x40004428 r_lld_init_evt_canceled_cbk = 0x40004428 + 0x40004434 r_lld_init_evt_start_cbk = 0x40004434 + 0x40004440 r_lld_init_frm_cbk = 0x40004440 + 0x4000444c r_lld_init_frm_eof_isr = 0x4000444c + 0x40004458 r_lld_init_frm_skip_isr = 0x40004458 + 0x40000000 r_lld_init_init = 0x40004464 + 0x40004470 r_lld_init_process_pkt_rx = 0x40004470 + 0x40000000 r_lld_init_process_pkt_rx_adv_ext_ind = 0x4000447c + 0x40004488 r_lld_init_process_pkt_rx_adv_ind_or_direct_ind = 0x40004488 + 0x40000000 r_lld_init_process_pkt_rx_aux_connect_rsp = 0x40004494 + 0x400044a0 r_lld_init_process_pkt_tx = 0x400044a0 + 0x400044ac r_lld_init_process_pkt_tx_cal_con_timestamp = 0x400044ac + 0x400044b8 r_lld_init_sched = 0x400044b8 + 0x400044c4 r_lld_init_set_tx_power = 0x400044c4 + 0x400044d0 r_lld_init_start = 0x400044d0 + 0x400044dc r_lld_init_stop = 0x400044dc + 0x400044e8 r_lld_instant_proc_end = 0x400044e8 + 0x400044f4 r_lld_llcp_rx_ind_handler = 0x400044f4 + 0x40000000 r_lld_per_adv_ch_map_update = 0x40004500 + 0x4000450c r_lld_per_adv_chain_construct = 0x4000450c + 0x40004518 r_lld_per_adv_cleanup = 0x40004518 + 0x40004524 r_lld_per_adv_coex_env_reset = 0x40004524 + 0x40004530 r_lld_per_adv_data_set = 0x40004530 + 0x4000453c r_lld_per_adv_data_update = 0x4000453c + 0x40004548 r_lld_per_adv_dynamic_pti_process = 0x40004548 + 0x40004554 r_lld_per_adv_evt_canceled_cbk = 0x40004554 + 0x40004560 r_lld_per_adv_evt_start_cbk = 0x40004560 + 0x4000456c r_lld_per_adv_ext_pkt_prepare = 0x4000456c + 0x40004578 r_lld_per_adv_frm_cbk = 0x40004578 + 0x40004584 r_lld_per_adv_frm_isr = 0x40004584 + 0x40004590 r_lld_per_adv_frm_skip_isr = 0x40004590 + 0x40000000 r_lld_per_adv_init = 0x4000459c + 0x400045a8 r_lld_per_adv_init_info_get = 0x400045a8 + 0x400045b4 r_lld_per_adv_list_add = 0x400045b4 + 0x400045c0 r_lld_per_adv_list_rem = 0x400045c0 + 0x400045cc r_lld_per_adv_sched = 0x400045cc + 0x400045d8 r_lld_per_adv_set_tx_power = 0x400045d8 + 0x400045e4 r_lld_per_adv_start = 0x400045e4 + 0x400045f0 r_lld_per_adv_stop = 0x400045f0 + 0x400045fc r_lld_per_adv_sync_info_get = 0x400045fc + 0x40004608 r_lld_process_cca_data = 0x40004608 + 0x40004614 r_lld_ral_search = 0x40004614 + 0x40004620 r_lld_read_clock = 0x40004620 + 0x4000462c r_lld_res_list_add = 0x4000462c + 0x40004638 r_lld_res_list_clear = 0x40004638 + 0x40004644 r_lld_res_list_is_empty = 0x40004644 + 0x40004650 r_lld_res_list_local_rpa_get = 0x40004650 + 0x4000465c r_lld_res_list_peer_rpa_get = 0x4000465c + 0x40004668 r_lld_res_list_peer_update = 0x40004668 + 0x40004674 r_lld_res_list_priv_mode_update = 0x40004674 + 0x40004680 r_lld_res_list_rem = 0x40004680 + 0x4000468c r_lld_reset_reg = 0x4000468c + 0x40004698 r_lld_rpa_renew = 0x40004698 + 0x400046a4 r_lld_rpa_renew_evt_canceled_cbk = 0x400046a4 + 0x400046b0 r_lld_rpa_renew_evt_start_cbk = 0x400046b0 + 0x400046bc r_lld_rpa_renew_instant_cbk = 0x400046bc + 0x400046c8 r_lld_rxdesc_check = 0x400046c8 + 0x400046d4 r_lld_rxdesc_free = 0x400046d4 + 0x400046e0 r_lld_scan_create_sync = 0x400046e0 + 0x400046ec r_lld_scan_create_sync_cancel = 0x400046ec + 0x400046f8 r_lld_scan_end = 0x400046f8 + 0x40004704 r_lld_scan_evt_canceled_cbk = 0x40004704 + 0x40004710 r_lld_scan_evt_start_cbk = 0x40004710 + 0x4000471c r_lld_scan_frm_cbk = 0x4000471c + 0x40004728 r_lld_scan_frm_eof_isr = 0x40004728 + 0x40004734 r_lld_scan_frm_rx_isr = 0x40004734 + 0x40004740 r_lld_scan_frm_skip_isr = 0x40004740 + 0x40000000 r_lld_scan_init = 0x4000474c + 0x40004758 r_lld_scan_params_update = 0x40004758 + 0x40004764 r_lld_scan_process_pkt_rx = 0x40004764 + 0x40004770 r_lld_scan_process_pkt_rx_adv_rep = 0x40004770 + 0x4000477c r_lld_scan_process_pkt_rx_aux_adv_ind = 0x4000477c + 0x40004788 r_lld_scan_process_pkt_rx_aux_chain_ind = 0x40004788 + 0x40004794 r_lld_scan_process_pkt_rx_aux_scan_rsp = 0x40004794 + 0x40000000 r_lld_scan_process_pkt_rx_ext_adv = 0x400047a0 + 0x400047ac r_lld_scan_process_pkt_rx_ext_adv_ind = 0x400047ac + 0x400047b8 r_lld_scan_process_pkt_rx_legacy_adv = 0x400047b8 + 0x40000000 r_lld_scan_restart = 0x400047c4 + 0x400047d0 r_lld_scan_sched = 0x400047d0 + 0x400047dc r_lld_scan_set_tx_power = 0x400047dc + 0x400047e8 r_lld_scan_start = 0x400047e8 + 0x400047f4 r_lld_scan_stop = 0x400047f4 + 0x40004800 r_lld_scan_sync_accept = 0x40004800 + 0x4000480c r_lld_scan_sync_info_unpack = 0x4000480c + 0x40000000 r_lld_scan_trunc_ind = 0x40004818 + 0x40004824 r_lld_sw_cca_evt_handler = 0x40004824 + 0x40004830 r_lld_sw_cca_isr = 0x40004830 + 0x4000483c r_lld_sync_ch_map_update = 0x4000483c + 0x40004848 r_lld_sync_cleanup = 0x40004848 + 0x40004854 r_lld_sync_evt_canceled_cbk = 0x40004854 + 0x40004860 r_lld_sync_evt_start_cbk = 0x40004860 + 0x4000486c r_lld_sync_frm_cbk = 0x4000486c + 0x40004878 r_lld_sync_frm_eof_isr = 0x40004878 + 0x40004884 r_lld_sync_frm_rx_isr = 0x40004884 + 0x40004890 r_lld_sync_frm_skip_isr = 0x40004890 + 0x40000000 r_lld_sync_init = 0x4000489c + 0x400048a8 r_lld_sync_process_pkt_rx = 0x400048a8 + 0x400048b4 r_lld_sync_process_pkt_rx_aux_sync_ind = 0x400048b4 + 0x400048c0 r_lld_sync_process_pkt_rx_pkt_check = 0x400048c0 + 0x400048cc r_lld_sync_scan_dynamic_pti_process = 0x400048cc + 0x400048d8 r_lld_sync_sched = 0x400048d8 + 0x400048e4 r_lld_sync_start = 0x400048e4 + 0x400048f0 r_lld_sync_stop = 0x400048f0 + 0x400048fc r_lld_sync_trunc_ind = 0x400048fc + 0x40004908 r_lld_test_cleanup = 0x40004908 + 0x40004914 r_lld_test_evt_canceled_cbk = 0x40004914 + 0x40004920 r_lld_test_evt_start_cbk = 0x40004920 + 0x4000492c r_lld_test_freq2chnl = 0x4000492c + 0x40004938 r_lld_test_frm_cbk = 0x40004938 + 0x40004944 r_lld_test_frm_isr = 0x40004944 + 0x40000000 r_lld_test_init = 0x40004950 + 0x4000495c r_lld_test_rx_isr = 0x4000495c + 0x40004968 r_lld_test_set_tx_power = 0x40004968 + 0x40004974 r_lld_test_start = 0x40004974 + 0x40004980 r_lld_test_stop = 0x40004980 + 0x4000498c r_lld_update_rxbuf = 0x4000498c + 0x40004998 r_lld_update_rxbuf_isr = 0x40004998 + 0x400049a4 r_lld_white_list_add = 0x400049a4 + 0x400049b0 r_lld_white_list_rem = 0x400049b0 + 0x400049bc r_llm_activity_free_get = 0x400049bc + 0x400049c8 r_llm_activity_free_set = 0x400049c8 + 0x400049d4 r_llm_activity_syncing_get = 0x400049d4 + 0x400049e0 r_llm_adv_con_len_check = 0x400049e0 + 0x400049ec r_llm_adv_hdl_to_id = 0x400049ec + 0x400049f8 r_llm_adv_rep_flow_control_check = 0x400049f8 + 0x40004a04 r_llm_adv_rep_flow_control_update = 0x40004a04 + 0x40004a10 r_llm_adv_reports_list_check = 0x40004a10 + 0x40004a1c r_llm_adv_set_all_release = 0x40004a1c + 0x40004a28 r_llm_adv_set_dft_params = 0x40004a28 + 0x40004a34 r_llm_adv_set_release = 0x40004a34 + 0x40004a40 r_llm_aes_res_cb = 0x40004a40 + 0x40004a4c r_llm_ble_update_adv_flow_control = 0x40004a4c + 0x40004a58 r_llm_ch_map_update = 0x40004a58 + 0x40004a64 r_llm_cmd_cmp_send = 0x40004a64 + 0x40004a70 r_llm_cmd_stat_send = 0x40004a70 + 0x40004a7c r_llm_dev_list_empty_entry = 0x40004a7c + 0x40004a88 r_llm_dev_list_search = 0x40004a88 + 0x40004a94 r_llm_env_adv_dup_filt_deinit = 0x40004a94 + 0x40004aa0 r_llm_env_adv_dup_filt_init = 0x40004aa0 + 0x40004aac r_llm_init_ble_adv_report_flow_contol = 0x40004aac + 0x40004ab8 r_llm_is_dev_connected = 0x40004ab8 + 0x40004ac4 r_llm_is_dev_synced = 0x40004ac4 + 0x40004ad0 r_llm_is_non_con_act_ongoing_check = 0x40004ad0 + 0x40004adc r_llm_is_wl_accessible = 0x40004adc + 0x40004ae8 r_llm_le_evt_mask_check = 0x40004ae8 + 0x40004af4 r_llm_le_features_get = 0x40004af4 + 0x40004b00 r_llm_link_disc = 0x40004b00 + 0x40004b0c r_llm_master_ch_map_get = 0x40004b0c + 0x40004b18 r_llm_msg_handler_tab_p_get = 0x40004b18 + 0x40004b24 r_llm_no_activity = 0x40004b24 + 0x40004b30 r_llm_per_adv_slot_dur = 0x40004b30 + 0x40004b3c r_llm_plan_elt_get = 0x40004b3c + 0x40004b48 r_llm_rx_path_comp_get = 0x40004b48 + 0x40004b54 r_llm_scan_start = 0x40004b54 + 0x40004b60 r_llm_scan_sync_acad_attach = 0x40004b60 + 0x40004b6c r_llm_scan_sync_acad_detach = 0x40004b6c + 0x40004b78 r_llm_send_adv_lost_event_to_host = 0x40004b78 + 0x40004b84 r_llm_tx_path_comp_get = 0x40004b84 + 0x40004b90 r_misc_deinit = 0x40004b90 + 0x40004b9c r_misc_free_em_buf_in_isr = 0x40004b9c + 0x40004ba8 r_misc_init = 0x40004ba8 + 0x40004bb4 r_misc_msg_handler_tab_p_get = 0x40004bb4 + 0x40004bc0 r_notEqual256 = 0x40004bc0 + 0x40004bcc r_phy_upd_proc_start = 0x40004bcc + 0x40004bd8 r_platform_reset = 0x40004bd8 + 0x40004be4 r_register_esp_vendor_cmd_handler = 0x40004be4 + 0x40004bf0 r_rf_em_init = 0x40004bf0 + 0x40004bfc r_rf_force_agc_enable = 0x40004bfc + 0x40004c08 r_rf_reg_rd = 0x40004c08 + 0x40004c14 r_rf_reg_wr = 0x40004c14 + 0x40004c20 r_rf_reset = 0x40004c20 + 0x40004c2c r_rf_rssi_convert = 0x40004c2c + 0x40004c38 r_rf_rw_v9_le_disable = 0x40004c38 + 0x40004c44 r_rf_rw_v9_le_enable = 0x40004c44 + 0x40004c50 r_rf_sleep = 0x40004c50 + 0x40004c5c r_rf_txpwr_cs_get = 0x40004c5c + 0x40004c68 r_rf_txpwr_dbm_get = 0x40004c68 + 0x40004c74 r_rf_util_cs_fmt_convert = 0x40004c74 + 0x40004c80 r_rw_crypto_aes_ccm = 0x40004c80 + 0x40004c8c r_rw_crypto_aes_encrypt = 0x40004c8c + 0x40004c98 r_rw_crypto_aes_init = 0x40004c98 + 0x40004ca4 r_rw_crypto_aes_k1 = 0x40004ca4 + 0x40004cb0 r_rw_crypto_aes_k2 = 0x40004cb0 + 0x40004cbc r_rw_crypto_aes_k3 = 0x40004cbc + 0x40004cc8 r_rw_crypto_aes_k4 = 0x40004cc8 + 0x40004cd4 r_rw_crypto_aes_rand = 0x40004cd4 + 0x40004ce0 r_rw_crypto_aes_result_handler = 0x40004ce0 + 0x40004cec r_rw_crypto_aes_s1 = 0x40004cec + 0x40004cf8 r_rw_cryto_aes_cmac = 0x40004cf8 + 0x40004d04 r_rw_v9_init_em_radio_table = 0x40004d04 + 0x40004d10 r_rwble_isr = 0x40004d10 + 0x40004d1c r_rwble_sleep_enter = 0x40004d1c + 0x40004d28 r_rwble_sleep_wakeup_end = 0x40004d28 + 0x40004d34 r_rwbtdm_isr_wrapper = 0x40004d34 + 0x40004d40 r_rwip_active_check = 0x40004d40 + 0x40004d4c r_rwip_aes_encrypt = 0x40004d4c + 0x40004d58 r_rwip_assert = 0x40004d58 + 0x40000000 r_rwip_crypt_evt_handler = 0x40004d64 + 0x40004d70 r_rwip_crypt_isr_handler = 0x40004d70 + 0x40004d7c r_rwip_eif_get = 0x40004d7c + 0x40004d88 r_rwip_half_slot_2_lpcycles = 0x40004d88 + 0x40004d94 r_rwip_hus_2_lpcycles = 0x40004d94 + 0x40004da0 r_rwip_isr = 0x40004da0 + 0x40004dac r_rwip_lpcycles_2_hus = 0x40004dac + 0x40004db8 r_rwip_prevent_sleep_clear = 0x40004db8 + 0x40004dc4 r_rwip_prevent_sleep_set = 0x40004dc4 + 0x40004dd0 r_rwip_schedule = 0x40004dd0 + 0x40004ddc r_rwip_sleep = 0x40004ddc + 0x40004de8 r_rwip_sw_int_handler = 0x40004de8 + 0x40004df4 r_rwip_sw_int_req = 0x40004df4 + 0x40004e00 r_rwip_time_get = 0x40004e00 + 0x40004e0c r_rwip_timer_10ms_handler = 0x40004e0c + 0x40004e18 r_rwip_timer_10ms_set = 0x40004e18 + 0x40004e24 r_rwip_timer_hs_handler = 0x40004e24 + 0x40004e30 r_rwip_timer_hs_set = 0x40004e30 + 0x40004e3c r_rwip_timer_hus_handler = 0x40004e3c + 0x40004e48 r_rwip_timer_hus_set = 0x40004e48 + 0x40004e54 r_rwip_wakeup = 0x40004e54 + 0x40004e60 r_rwip_wakeup_end = 0x40004e60 + 0x40004e6c r_rwip_wlcoex_set = 0x40004e6c + 0x40004e78 r_sch_alarm_clear = 0x40004e78 + 0x40004e84 r_sch_alarm_init = 0x40004e84 + 0x40004e90 r_sch_alarm_prog = 0x40004e90 + 0x40004e9c r_sch_alarm_set = 0x40004e9c + 0x40004ea8 r_sch_alarm_timer_isr = 0x40004ea8 + 0x40004eb4 r_sch_arb_conflict_check = 0x40004eb4 + 0x40004ec0 r_sch_arb_elt_cancel = 0x40004ec0 + 0x40004ecc r_sch_arb_event_start_isr = 0x40004ecc + 0x40004ed8 r_sch_arb_init = 0x40004ed8 + 0x40004ee4 r_sch_arb_insert = 0x40004ee4 + 0x40004ef0 r_sch_arb_prog_timer = 0x40004ef0 + 0x40004efc r_sch_arb_remove = 0x40004efc + 0x40004f08 r_sch_arb_sw_isr = 0x40004f08 + 0x40004f14 r_sch_plan_chk = 0x40004f14 + 0x40004f20 r_sch_plan_clock_wrap_offset_update = 0x40004f20 + 0x40004f2c r_sch_plan_init = 0x40004f2c + 0x40004f38 r_sch_plan_interval_req = 0x40004f38 + 0x40004f44 r_sch_plan_offset_max_calc = 0x40004f44 + 0x40004f50 r_sch_plan_offset_req = 0x40004f50 + 0x40004f5c r_sch_plan_position_range_compute = 0x40004f5c + 0x40004f68 r_sch_plan_rem = 0x40004f68 + 0x40004f74 r_sch_plan_req = 0x40004f74 + 0x40004f80 r_sch_plan_set = 0x40004f80 + 0x40004f8c r_sch_prog_end_isr = 0x40004f8c + 0x40004f98 r_sch_prog_init = 0x40004f98 + 0x40004fa4 r_sch_prog_push = 0x40004fa4 + 0x40004fb0 r_sch_prog_rx_isr = 0x40004fb0 + 0x40004fbc r_sch_prog_skip_isr = 0x40004fbc + 0x40004fc8 r_sch_prog_tx_isr = 0x40004fc8 + 0x40004fd4 r_sch_slice_bg_add = 0x40004fd4 + 0x40004fe0 r_sch_slice_bg_remove = 0x40004fe0 + 0x40004fec r_sch_slice_compute = 0x40004fec + 0x40004ff8 r_sch_slice_fg_add = 0x40004ff8 + 0x40005004 r_sch_slice_fg_remove = 0x40005004 + 0x40005010 r_sch_slice_init = 0x40005010 + 0x4000501c r_sch_slice_per_add = 0x4000501c + 0x40005028 r_sch_slice_per_remove = 0x40005028 + 0x40005034 r_sdk_config_get_bt_sleep_enable = 0x40005034 + 0x40005040 r_sdk_config_get_hl_derived_opts = 0x40005040 + 0x4000504c r_sdk_config_get_opts = 0x4000504c + 0x40005058 r_sdk_config_get_priv_opts = 0x40005058 + 0x40005064 r_sdk_config_set_bt_sleep_enable = 0x40005064 + 0x40005070 r_sdk_config_set_hl_derived_opts = 0x40005070 + 0x4000507c r_sdk_config_set_opts = 0x4000507c + 0x40005088 r_specialModP256 = 0x40005088 + 0x40005094 r_unloaded_area_init = 0x40005094 + 0x400050a0 r_vhci_flow_off = 0x400050a0 + 0x400050ac r_vhci_flow_on = 0x400050ac + 0x400050b8 r_vhci_notify_host_send_available = 0x400050b8 + 0x400050c4 r_vhci_send_to_host = 0x400050c4 + 0x400050d0 r_vnd_hci_command_handler = 0x400050d0 + 0x400050dc r_vshci_init = 0x400050dc + 0x400050e8 vnd_hci_command_handler_wrapper = 0x400050e8 + 0x400050f4 r_lld_legacy_adv_dynamic_pti_get = 0x400050f4 + 0x40005100 r_lld_legacy_adv_dynamic_pti_process = 0x40005100 + 0x4000510c r_lld_ext_adv_dynamic_pti_get = 0x4000510c + 0x40005118 r_lld_ext_adv_dynamic_aux_pti_process = 0x40005118 + 0x40000000 r_lld_ext_adv_dynamic_pti_process = 0x40005124 + 0x40005130 r_lld_adv_ext_pkt_prepare_set = 0x40005130 + 0x4000513c r_lld_adv_ext_chain_none_construct = 0x4000513c + 0x40005148 r_lld_adv_ext_chain_connectable_construct = 0x40005148 + 0x40005154 r_lld_adv_ext_chain_scannable_construct = 0x40005154 + 0x40005160 r_lld_adv_pkt_rx_connect_post = 0x40005160 + 0x4000516c r_lld_adv_start_init_evt_param = 0x4000516c + 0x40005178 r_lld_adv_start_set_cs = 0x40005178 + 0x40005184 r_lld_adv_start_update_filter_policy = 0x40005184 + 0x40005190 r_lld_adv_start_schedule_asap = 0x40005190 + 0x4000519c r_lld_con_tx_prog_new_packet_coex = 0x4000519c + 0x400051a8 r_lld_con_tx_prog_new_packet = 0x400051a8 + 0x400051b4 r_lld_per_adv_dynamic_pti_get = 0x400051b4 + 0x400051c0 r_lld_per_adv_evt_start_chm_upd = 0x400051c0 + 0x400051cc r_lld_ext_scan_dynamic_pti_get = 0x400051cc + 0x400051d8 r_lld_scan_try_sched = 0x400051d8 + 0x400051e4 r_lld_sync_insert = 0x400051e4 + 0x400051f0 r_sch_prog_ble_push = 0x400051f0 + 0x400051fc r_sch_prog_bt_push = 0x400051fc + 0x40005208 r_lld_init_evt_end_type_set = 0x40005208 + 0x40005214 r_lld_init_evt_end_type_get = 0x40005214 + 0x40005220 r_lld_adv_direct_adv_use_rpa_addr_state_set = 0x40005220 + 0x4000522c r_lld_adv_direct_adv_use_rpa_addr_state_get = 0x4000522c + 0x40005238 r_lld_init_evt_end_type_check_state_set = 0x40005238 + 0x40005244 r_lld_init_evt_end_type_check_state_get = 0x40005244 + 0x40001c60 r_llc_loc_encrypt_proc_continue_hook = 0x40001c60 + 0x40001c64 r_llc_loc_phy_upd_proc_continue_hook = 0x40001c64 + 0x40001c68 r_llc_rem_phy_upd_proc_continue_hook = 0x40001c68 + 0x40001c6c r_lld_scan_frm_eof_isr_hook = 0x40001c6c + 0x40001c70 r_lld_scan_evt_start_cbk_hook = 0x40001c70 + 0x40001c78 r_lld_scan_process_pkt_rx_ext_adv_hook = 0x40001c78 + 0x40001c7c r_lld_scan_sched_hook = 0x40001c7c + 0x40001c84 r_lld_adv_evt_start_cbk_hook = 0x40001c84 + 0x40001c88 r_lld_adv_aux_evt_start_cbk_hook = 0x40001c88 + 0x40001c8c r_lld_adv_frm_isr_hook = 0x40001c8c + 0x40001c90 r_lld_adv_start_init_evt_param_hook = 0x40001c90 + 0x40001c94 r_lld_con_evt_canceled_cbk_hook = 0x40001c94 + 0x40001c98 r_lld_con_frm_isr_hook = 0x40001c98 + 0x40001c9c r_lld_con_tx_hook = 0x40001c9c + 0x40001ca0 r_lld_con_rx_hook = 0x40001ca0 + 0x40001ca4 r_lld_con_evt_start_cbk_hook = 0x40001ca4 + 0x40001cac r_lld_con_tx_prog_new_packet_hook = 0x40001cac + 0x40001cb0 r_lld_init_frm_eof_isr_hook = 0x40001cb0 + 0x40001cb4 r_lld_init_evt_start_cbk_hook = 0x40001cb4 + 0x40001cbc r_lld_init_sched_hook = 0x40001cbc + 0x40001cc0 r_lld_init_process_pkt_tx_hook = 0x40001cc0 + 0x40001cc4 r_lld_per_adv_evt_start_cbk_hook = 0x40001cc4 + 0x40001cc8 r_lld_per_adv_frm_isr_hook = 0x40001cc8 + 0x40001ccc r_lld_per_adv_start_hook = 0x40001ccc + 0x40001cd0 r_lld_sync_frm_eof_isr_hook = 0x40001cd0 + 0x40001cd4 r_lld_sync_evt_start_cbk_hook = 0x40001cd4 + 0x40001cd8 r_lld_sync_start_hook = 0x40001cd8 + 0x40001cdc r_lld_sync_process_pkt_rx_pkt_check_hook = 0x40001cdc + 0x40001ce0 r_sch_arb_insert_hook = 0x40001ce0 + 0x40001ce4 r_sch_plan_offset_req_hook = 0x40001ce4 + 0x4000216c __absvdi2 = 0x4000216c + 0x40002178 __absvsi2 = 0x40002178 + 0x40002184 __adddf3 = 0x40002184 + 0x40002190 __addsf3 = 0x40002190 + 0x4000219c __addvdi3 = 0x4000219c + 0x400021a8 __addvsi3 = 0x400021a8 + 0x400021b4 __ashldi3 = 0x400021b4 + 0x400021c0 __ashrdi3 = 0x400021c0 + 0x400021cc __bswapdi2 = 0x400021cc + 0x400021d8 __bswapsi2 = 0x400021d8 + 0x400021e4 __clear_cache = 0x400021e4 + 0x400021f0 __clrsbdi2 = 0x400021f0 + 0x400021fc __clrsbsi2 = 0x400021fc + 0x40002208 __clzdi2 = 0x40002208 + 0x40002214 __clzsi2 = 0x40002214 + 0x40002220 __cmpdi2 = 0x40002220 + 0x4000222c __ctzdi2 = 0x4000222c + 0x40002238 __ctzsi2 = 0x40002238 + 0x40002244 __divdc3 = 0x40002244 + 0x40002250 __divdf3 = 0x40002250 + 0x4000225c __divdi3 = 0x4000225c + 0x40002268 __divsc3 = 0x40002268 + 0x40002274 __divsf3 = 0x40002274 + 0x40002280 __divsi3 = 0x40002280 + 0x4000228c __eqdf2 = 0x4000228c + 0x40002298 __eqsf2 = 0x40002298 + 0x400022a4 __extendsfdf2 = 0x400022a4 + 0x400022b0 __ffsdi2 = 0x400022b0 + 0x400022bc __ffssi2 = 0x400022bc + 0x400022c8 __fixdfdi = 0x400022c8 + 0x400022d4 __fixdfsi = 0x400022d4 + 0x400022e0 __fixsfdi = 0x400022e0 + 0x400022ec __fixsfsi = 0x400022ec + 0x400022f8 __fixunsdfsi = 0x400022f8 + 0x40002304 __fixunssfdi = 0x40002304 + 0x40002310 __fixunssfsi = 0x40002310 + 0x4000231c __floatdidf = 0x4000231c + 0x40002328 __floatdisf = 0x40002328 + 0x40002334 __floatsidf = 0x40002334 + 0x40002340 __floatsisf = 0x40002340 + 0x4000234c __floatundidf = 0x4000234c + 0x40002358 __floatundisf = 0x40002358 + 0x40002364 __floatunsidf = 0x40002364 + 0x40002370 __floatunsisf = 0x40002370 + 0x4000237c __gcc_bcmp = 0x4000237c + 0x40002388 __gedf2 = 0x40002388 + 0x40002394 __gesf2 = 0x40002394 + 0x400023a0 __gtdf2 = 0x400023a0 + 0x400023ac __gtsf2 = 0x400023ac + 0x400023b8 __ledf2 = 0x400023b8 + 0x400023c4 __lesf2 = 0x400023c4 + 0x400023d0 __lshrdi3 = 0x400023d0 + 0x400023dc __ltdf2 = 0x400023dc + 0x400023e8 __ltsf2 = 0x400023e8 + 0x400023f4 __moddi3 = 0x400023f4 + 0x40002400 __modsi3 = 0x40002400 + 0x4000240c __muldc3 = 0x4000240c + 0x40002418 __muldf3 = 0x40002418 + 0x40002424 __muldi3 = 0x40002424 + 0x40002430 __mulsc3 = 0x40002430 + 0x4000243c __mulsf3 = 0x4000243c + 0x40002448 __mulsi3 = 0x40002448 + 0x40002454 __mulvdi3 = 0x40002454 + 0x40002460 __mulvsi3 = 0x40002460 + 0x4000246c __nedf2 = 0x4000246c + 0x40002478 __negdf2 = 0x40002478 + 0x40002484 __negdi2 = 0x40002484 + 0x40002490 __negsf2 = 0x40002490 + 0x4000249c __negvdi2 = 0x4000249c + 0x400024a8 __negvsi2 = 0x400024a8 + 0x400024b4 __nesf2 = 0x400024b4 + 0x400024c0 __paritysi2 = 0x400024c0 + 0x400024cc __popcountdi2 = 0x400024cc + 0x400024d8 __popcountsi2 = 0x400024d8 + 0x400024e4 __powidf2 = 0x400024e4 + 0x400024f0 __powisf2 = 0x400024f0 + 0x400024fc __subdf3 = 0x400024fc + 0x40002508 __subsf3 = 0x40002508 + 0x40002514 __subvdi3 = 0x40002514 + 0x40002520 __subvsi3 = 0x40002520 + 0x4000252c __truncdfsf2 = 0x4000252c + 0x40002538 __ucmpdi2 = 0x40002538 + 0x40002544 __udivdi3 = 0x40002544 + 0x40002550 __udivmoddi4 = 0x40002550 + 0x4000255c __udivsi3 = 0x4000255c + 0x40002568 __udiv_w_sdiv = 0x40002568 + 0x40002574 __umoddi3 = 0x40002574 + 0x40002580 __umodsi3 = 0x40002580 + 0x4000258c __unorddf2 = 0x4000258c + 0x40002598 __unordsf2 = 0x40002598 + 0x40000dbc PROVIDE (wdt_hal_init = 0x40000dbc) + 0x40000dc8 PROVIDE (wdt_hal_deinit = 0x40000dc8) + 0x40000dd4 PROVIDE (wdt_hal_config_stage = 0x40000dd4) + 0x40000de0 PROVIDE (wdt_hal_write_protect_disable = 0x40000de0) + 0x40000dec PROVIDE (wdt_hal_write_protect_enable = 0x40000dec) + 0x40000df8 PROVIDE (wdt_hal_enable = 0x40000df8) + 0x40000e04 PROVIDE (wdt_hal_disable = 0x40000e04) + 0x40000e10 PROVIDE (wdt_hal_handle_intr = 0x40000e10) + 0x40000e1c PROVIDE (wdt_hal_feed = 0x40000e1c) + 0x40000e28 PROVIDE (wdt_hal_set_flashboot_en = 0x40000e28) + 0x40000e34 PROVIDE (wdt_hal_is_enabled = 0x40000e34) + 0x40000570 _rom_chip_id = 0x40000570 + 0x40000574 _rom_eco_version = 0x40000574 + 0x40000000 f_hci_le_create_con_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_create_con_cancel_cmd_handler = 0x40000000 + 0x40000000 lld_init_end_ind_handler = 0x40000000 + 0x40000000 r_lld_init_init = 0x40000000 + 0x40000000 f_hci_le_set_ext_adv_param_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_set_adv_set_rand_addr_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_set_ext_adv_data_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_set_ext_scan_rsp_data_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_set_ext_adv_en_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_rd_max_adv_data_len_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_rd_nb_supp_adv_sets_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_rmv_adv_set_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_clear_adv_sets_cmd_handler = 0x40000000 + 0x40000000 r_lld_adv_sync_info_set = 0x40000000 + 0x40000000 r_lld_ext_adv_dynamic_pti_process = 0x40000000 + 0x40000000 r_lld_adv_ext_chain_construct = 0x40000000 + 0x40000000 r_lld_adv_aux_evt_canceled_cbk = 0x40000000 + 0x40000000 r_lld_adv_aux_evt_start_cbk = 0x40000000 + 0x40000000 r_lld_adv_aux_ch_idx_set = 0x40000000 + 0x40000000 f_hci_le_set_per_adv_param_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_set_per_adv_data_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_set_per_adv_en_cmd_handler = 0x40000000 + 0x40000000 r_lld_per_adv_ch_map_update = 0x40000000 + 0x40000000 r_lld_per_adv_init = 0x40000000 + 0x40000000 f_hci_le_add_dev_to_per_adv_list_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_rmv_dev_from_per_adv_list_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_clear_per_adv_list_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_rd_per_adv_list_size_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_set_ext_scan_param_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_set_ext_scan_en_cmd_handler = 0x40000000 + 0x40000000 r_lld_scan_process_pkt_rx_ext_adv = 0x40000000 + 0x40000000 r_lld_scan_trunc_ind = 0x40000000 + 0x40000000 f_hci_le_ext_create_con_cmd_handler = 0x40000000 + 0x40000000 r_lld_init_process_pkt_rx_adv_ext_ind = 0x40000000 + 0x40000000 r_lld_init_process_pkt_rx_aux_connect_rsp = 0x40000000 + 0x40000000 f_hci_le_per_adv_create_sync_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_per_adv_create_sync_cancel_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_per_adv_term_sync_cmd_handler = 0x40000000 + 0x40000000 f_lld_per_adv_rx_end_ind_handler_hack = 0x40000000 + 0x40000000 f_lld_sync_start_req_handler = 0x40000000 + 0x40000000 f_lld_per_adv_rep_ind_handler = 0x40000000 + 0x40000000 r_lld_sync_init = 0x40000000 + 0x40000000 f_llc_op_phy_upd_ind_handler = 0x40000000 + 0x40000000 f_ll_phy_req_handler = 0x40000000 + 0x40000000 f_ll_phy_rsp_handler = 0x40000000 + 0x40000000 f_ll_phy_update_ind_handler = 0x40000000 + 0x40000000 f_lld_phy_upd_cfm_handler = 0x40000000 + 0x40000000 f_hci_le_set_phy_cmd_handler = 0x40000000 + 0x40000000 llc_llcp_phy_update_ind_ack = 0x40000000 + 0x40000000 f_ll_pause_enc_req_handler = 0x40000000 + 0x40000000 f_ll_pause_enc_rsp_handler = 0x40000000 + 0x40000000 f_ll_enc_req_handler = 0x40000000 + 0x40000000 f_ll_enc_rsp_handler = 0x40000000 + 0x40000000 f_ll_start_enc_req_handler = 0x40000000 + 0x40000000 f_ll_start_enc_rsp_handler = 0x40000000 + 0x40000000 f_hci_le_start_enc_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_ltk_req_reply_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_ltk_req_neg_reply_cmd_handler = 0x40000000 + 0x40000000 f_llc_encrypt_ind_handler = 0x40000000 + 0x40000000 f_llc_op_encrypt_ind_handler = 0x40000000 + 0x40000000 f_hci_le_rd_local_p256_public_key_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_generate_dhkey_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_enc_cmd_handler = 0x40000000 + 0x40000000 r_rwip_crypt_evt_handler = 0x40000000 + 0x40000000 f_ll_ping_req_handler = 0x40000000 + 0x40000000 f_ll_ping_rsp_handler = 0x40000000 + 0x40000000 f_llc_op_le_ping_ind_handler = 0x40000000 + 0x40000000 f_llc_auth_payl_nearly_op_handler = 0x40000000 + 0x40000000 f_llc_auth_payl_real_to_handler = 0x40000000 + 0x40000000 f_llc_auth_payl_nearly_to_handler = 0x40000000 + 0x40000000 r_ecc_init = 0x40000000 + 0x40000000 f_hci_le_rx_test_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_tx_test_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_enh_rx_test_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_enh_tx_test_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_test_end_cmd_handler = 0x40000000 + 0x40000000 r_lld_test_init = 0x40000000 + 0x40000000 lld_acl_rx_ind_handler = 0x40000000 + 0x40000000 lld_con_estab_ind_handler = 0x40000000 + 0x40000000 lld_adv_rep_ind_handler = 0x40000000 + 0x40000000 llm_rpa_renew_to_handler = 0x40000000 + 0x40000000 lld_scan_end_ind_handler = 0x40000000 + 0x40000000 llm_scan_period_to_handler = 0x40000000 + 0x40000000 r_nvds_init = 0x40000000 + 0x40000000 f_nvds_get = 0x40000000 + 0x40000000 f_nvds_del = 0x40000000 + 0x40000000 f_nvds_put = 0x40000000 + 0x40000000 r_flash_init = 0x40000000 + 0x40000000 r_flash_env_init = 0x40000000 + 0x40000000 r_flash_env_deinit = 0x40000000 + 0x40000000 f_hci_vendor_ble_qa_test_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_set_scan_param_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_set_scan_en_cmd_handler = 0x40000000 + 0x40000000 f_llm_scan_period_to_handler_hack = 0x40000000 + 0x40000000 f_lld_adv_rep_ind_handler_hack = 0x40000000 + 0x40000000 r_lld_scan_init = 0x40000000 + 0x40000000 r_lld_scan_restart = 0x40000000 + 0x40000000 f_lld_scan_end_ind_handler_hack = 0x40000000 + 0x40000000 r_llm_env_adv_dup_filt_deinit_eco = 0x40000000 + 0x40000000 llm_exception_list_init = 0x40000000 + 0x40000000 llm_duplicate_list_init = 0x40000000 + 0x40000000 f_hci_vendor_ble_update_duplicate_exceptional_list_cmd_handler = 0x40000000 + 0x40000000 f_hci_vendor_ble_init_adv_flow_control_cmd_handler = 0x40000000 + 0x40000000 f_hci_vendor_ble_update_adv_report_flow_control_cmd_handler = 0x40000000 + 0x40000000 coex_schm_ble_scan_stop = 0x40000000 + 0x40000000 f_hci_le_set_ext_scan_param_cmd_handler = 0x40000000 + 0x40000000 f_hci_le_set_ext_scan_en_cmd_handler = 0x40000000 + 0x40000000 r_lld_scan_process_pkt_rx_ext_adv = 0x40000000 + 0x40000000 r_lld_scan_trunc_ind = 0x40000000 + 0x400011dc esp_rom_newlib_init_common_mutexes = 0x400011dc + 0x400011e8 memset = 0x400011e8 + 0x400011f4 memcpy = 0x400011f4 + 0x40001200 memmove = 0x40001200 + 0x4000120c memcmp = 0x4000120c + 0x40001218 strcpy = 0x40001218 + 0x40001224 strncpy = 0x40001224 + 0x40001230 strcmp = 0x40001230 + 0x4000123c strncmp = 0x4000123c + 0x40001248 strlen = 0x40001248 + 0x40001254 strstr = 0x40001254 + 0x40001260 bzero = 0x40001260 + 0x40001278 sbrk = 0x40001278 + 0x40001284 isalnum = 0x40001284 + 0x40001290 isalpha = 0x40001290 + 0x4000129c isascii = 0x4000129c + 0x400012a8 isblank = 0x400012a8 + 0x400012b4 iscntrl = 0x400012b4 + 0x400012c0 isdigit = 0x400012c0 + 0x400012cc islower = 0x400012cc + 0x400012d8 isgraph = 0x400012d8 + 0x400012e4 isprint = 0x400012e4 + 0x400012f0 ispunct = 0x400012f0 + 0x400012fc isspace = 0x400012fc + 0x40001308 isupper = 0x40001308 + 0x40001314 toupper = 0x40001314 + 0x40001320 tolower = 0x40001320 + 0x4000132c toascii = 0x4000132c + 0x40001338 memccpy = 0x40001338 + 0x40001344 memchr = 0x40001344 + 0x40001350 memrchr = 0x40001350 + 0x4000135c strcasecmp = 0x4000135c + 0x40001368 strcasestr = 0x40001368 + 0x40001374 strcat = 0x40001374 + 0x4000138c strchr = 0x4000138c + 0x40001398 strcspn = 0x40001398 + 0x400013a4 strcoll = 0x400013a4 + 0x400013b0 strlcat = 0x400013b0 + 0x400013bc strlcpy = 0x400013bc + 0x400013c8 strlwr = 0x400013c8 + 0x400013d4 strncasecmp = 0x400013d4 + 0x400013e0 strncat = 0x400013e0 + 0x400013f8 strnlen = 0x400013f8 + 0x40001404 strrchr = 0x40001404 + 0x40001410 strsep = 0x40001410 + 0x4000141c strspn = 0x4000141c + 0x40001428 strtok_r = 0x40001428 + 0x40001434 strupr = 0x40001434 + 0x40001440 longjmp = 0x40001440 + 0x4000144c setjmp = 0x4000144c + 0x40001458 abs = 0x40001458 + 0x40001464 div = 0x40001464 + 0x40001470 labs = 0x40001470 + 0x4000147c ldiv = 0x4000147c + 0x40001488 qsort = 0x40001488 + 0x40001494 rand_r = 0x40001494 + 0x400014b8 utoa = 0x400014b8 + 0x400014c4 itoa = 0x400014c4 + 0x3fceffd4 syscall_table_ptr = 0x3fceffd4 + 0x3fceffd0 _global_impure_ptr = 0x3fceffd0 + 0x40001380 strdup = 0x40001380 + 0x400013ec strndup = 0x400013ec + 0x400014a0 rand = 0x400014a0 + 0x400014ac srand = 0x400014ac + 0x400014d0 atoi = 0x400014d0 + 0x400014dc atol = 0x400014dc + 0x400014e8 strtol = 0x400014e8 + 0x400014f4 strtoul = 0x400014f4 + [!provide] PROVIDE (fflush = 0x40001500) + [!provide] PROVIDE (_fflush_r = 0x4000150c) + [!provide] PROVIDE (_fwalk = 0x40001518) + [!provide] PROVIDE (_fwalk_reent = 0x40001524) + [!provide] PROVIDE (__swbuf_r = 0x40001548) + 0x40001554 __swbuf = 0x40001554 + 0x40378000 _diram_i_start = 0x40378000 + 0x3fca3788 _heap_start = _heap_low_start + 0x40000000 _heap_end = 0x40000000 + 0x600fe000 _data_seg_org = ORIGIN (rtc_data_seg) + 0x00000001 ASSERT ((_flash_rodata_dummy_start == ORIGIN (default_rodata_seg)), .flash_rodata_dummy section must be placed at the beginning of the rodata segment.) + +.rtc.text 0x600fe000 0x0 + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_fast_start = ABSOLUTE (.) + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_text_start = ABSOLUTE (.) + 0x600fe000 _rtc_code_start = . + *(.rtc.entry.literal .rtc.entry.text) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + *(.rtc_text_end_test) + 0x600fe000 _rtc_code_end = . + 0x600fe000 . = ((_rtc_code_end - _rtc_code_start) == 0x0)?ALIGN (0x0):(0x10 + ALIGN (0x4)) + 0x600fe000 _rtc_text_end = ABSOLUTE (.) + +.rtc.force_fast + 0x600fe000 0x0 + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_force_fast_start = ABSOLUTE (.) + 0x600fe000 _coredump_rtc_fast_start = ABSOLUTE (.) + *(.rtc.fast.coredump .rtc.fast.coredump.*) + 0x600fe000 _coredump_rtc_fast_end = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x50000000 0x0 + 0x50000000 _rtc_data_start = ABSOLUTE (.) + 0x50000000 _coredump_rtc_start = ABSOLUTE (.) + *(.rtc.coredump .rtc.coredump.*) + 0x50000000 _coredump_rtc_end = 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 0x20 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_force_slow_start = ABSOLUTE (.) + *(.rtc.force_slow .rtc.force_slow.*) + .rtc.force_slow.3 + 0x50000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x50000020 . = ALIGN (0x4) + 0x50000020 _rtc_force_slow_end = ABSOLUTE (.) + +.rtc_reserved 0x600fffe8 0x18 + 0x600fffe8 . = ALIGN (0x4) + 0x600fffe8 _rtc_reserved_start = ABSOLUTE (.) + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + .rtc_timer_data_in_rtc_mem + 0x600fffe8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*) + 0x60100000 _rtc_reserved_end = ABSOLUTE (.) + 0x00000018 _rtc_reserved_length = (_rtc_reserved_end - _rtc_reserved_start) + 0x00000001 ASSERT ((_rtc_reserved_length <= LENGTH (rtc_reserved_seg)), RTC reserved segment data does not fit.) + 0x00000020 _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 0x40374000 0x404 + 0x40374000 _iram_start = ABSOLUTE (.) + 0x40374000 _vector_table = ABSOLUTE (.) + 0x00000000 . = 0x0 + *(.WindowVectors.text) + .WindowVectors.text + 0x40374000 0x16a esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40374000 _WindowOverflow4 + 0x40374040 _WindowUnderflow4 + 0x40374050 _xt_alloca_exc + 0x40374080 _WindowOverflow8 + 0x403740c0 _WindowUnderflow8 + 0x40374100 _WindowOverflow12 + 0x40374140 _WindowUnderflow12 + 0x00000180 . = 0x180 + *fill* 0x4037416a 0x16 + *(.Level2InterruptVector.text) + .Level2InterruptVector.text + 0x40374180 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40374180 _Level2Vector + 0x000001c0 . = 0x1c0 + *fill* 0x40374186 0x3a + *(.Level3InterruptVector.text) + .Level3InterruptVector.text + 0x403741c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x403741c0 _Level3Vector + 0x00000200 . = 0x200 + *fill* 0x403741c6 0x3a + *(.Level4InterruptVector.text) + .Level4InterruptVector.text + 0x40374200 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40374200 _Level4Vector + 0x00000240 . = 0x240 + *fill* 0x40374206 0x3a + *(.Level5InterruptVector.text) + .Level5InterruptVector.text + 0x40374240 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40374240 _Level5Vector + 0x00000280 . = 0x280 + *fill* 0x40374246 0x3a + *(.DebugExceptionVector.text) + .DebugExceptionVector.text + 0x40374280 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40374280 _DebugExceptionVector + 0x000002c0 . = 0x2c0 + *fill* 0x40374286 0x3a + *(.NMIExceptionVector.text) + .NMIExceptionVector.text + 0x403742c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x403742c0 _NMIExceptionVector + 0x00000300 . = 0x300 + *fill* 0x403742c6 0x3a + *(.KernelExceptionVector.text) + .KernelExceptionVector.text + 0x40374300 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40374300 _KernelExceptionVector + 0x00000340 . = 0x340 + *fill* 0x40374306 0x3a + *(.UserExceptionVector.text) + .UserExceptionVector.text + 0x40374340 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40374340 _UserExceptionVector + 0x000003c0 . = 0x3c0 + *fill* 0x40374346 0x7a + *(.DoubleExceptionVector.text) + .DoubleExceptionVector.text + 0x403743c0 0xe esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x11 (size before relaxing) + 0x403743c0 _DoubleExceptionVector + 0x00000400 . = 0x400 + *fill* 0x403743ce 0x32 + *(._invalid_pc_placeholder.text) + ._invalid_pc_placeholder.text + 0x40374400 0x3 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40374400 _invalid_pc_placeholder + *(.*Vector.literal) + *fill* 0x40374403 0x1 + .DoubleExceptionVector.literal + 0x40374404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .KernelExceptionVector.literal + 0x40374404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .UserExceptionVector.literal + 0x40374404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level2InterruptVector.literal + 0x40374404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level3InterruptVector.literal + 0x40374404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level4InterruptVector.literal + 0x40374404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level5InterruptVector.literal + 0x40374404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .NMIExceptionVector.literal + 0x40374404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + +.iram0.text 0x40374404 0x16447 + 0x40374404 _iram_text_start = ABSOLUTE (.) + *(.iram1 .iram1.*) + .iram1.0.literal + 0x40374404 0x34 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x38 (size before relaxing) + .iram1.1.literal + 0x40374438 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x10 (size before relaxing) + .iram1.6.literal + 0x40374440 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x8 (size before relaxing) + .iram1.7.literal + 0x40374440 0x4c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x68 (size before relaxing) + .iram1.literal + 0x4037448c 0x10 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x1c (size before relaxing) + .iram1.0.literal + 0x4037449c 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x4037449c 0x4 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x403744a0 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x403744a0 0x14 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x1c (size before relaxing) + .iram1.0.literal + 0x403744b4 0xc esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x403744c0 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x10 (size before relaxing) + .iram1.1.literal + 0x403744c4 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x403744c8 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.5.literal + 0x403744c8 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.literal + 0x403744cc 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x24 (size before relaxing) + .iram1.1.literal + 0x403744ec 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x40374504 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40374504 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x18 (size before relaxing) + .iram1.3.literal + 0x40374518 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x48 (size before relaxing) + .iram1.4.literal + 0x4037452c 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0xc (size before relaxing) + .iram1.literal + 0x4037452c 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x4037452c 0x2c esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x40 (size before relaxing) + .iram1.0.literal + 0x40374558 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x40374558 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.2.literal + 0x4037455c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x4037455c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x4037455c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x4037455c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x4037455c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x4037455c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x4037455c 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.9.literal + 0x40374560 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x40374564 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x40374568 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x28 (size before relaxing) + .iram1.4.literal + 0x4037457c 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x10 (size before relaxing) + .iram1.7.literal + 0x40374580 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.3.literal + 0x40374584 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x28 (size before relaxing) + .iram1.8.literal + 0x40374588 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.11.literal + 0x4037458c 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40374590 0x2c esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x44 (size before relaxing) + .iram1.2.literal + 0x403745bc 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x403745bc 0x10 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x20 (size before relaxing) + .iram1.3.literal + 0x403745cc 0x4 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x20 (size before relaxing) + .iram1.4.literal + 0x403745d0 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x403745d0 0xc esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x50 (size before relaxing) + .iram1.6.literal + 0x403745dc 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x403745dc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.2.literal + 0x403745e0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.3.literal + 0x403745e8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x14 (size before relaxing) + .iram1.4.literal + 0x403745f0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x403745f0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x403745f4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x34 (size before relaxing) + .iram1.5.literal + 0x40374600 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .iram1.8.literal + 0x40374600 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x40374600 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .iram1.9.literal + 0x40374604 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x40374604 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + .iram1.3.literal + 0x40374610 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x28 (size before relaxing) + .iram1.4.literal + 0x40374620 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x28 (size before relaxing) + .iram1.5.literal + 0x40374624 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x20 (size before relaxing) + .iram1.6.literal + 0x40374634 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .iram1.7.literal + 0x40374644 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40374644 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x38 (size before relaxing) + .iram1.4.literal + 0x40374668 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .iram1.0.literal + 0x4037466c 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + .iram1.16.literal + 0x40374670 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x4037467c 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x34 (size before relaxing) + .iram1.9.literal + 0x40374684 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x4037468c 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x24 (size before relaxing) + .iram1.5.literal + 0x40374694 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40374694 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40374694 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x40374694 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x40374694 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x40374694 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.12.literal + 0x40374694 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x40374694 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.14.literal + 0x40374694 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.15.literal + 0x40374694 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.17.literal + 0x40374694 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.18.literal + 0x4037469c 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.19.literal + 0x403746a0 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.20.literal + 0x403746a0 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.21.literal + 0x403746a0 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.22.literal + 0x403746a0 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x403746a0 0x4 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x403746a4 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.1.literal + 0x403746ac 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x403746ac 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x38 (size before relaxing) + .iram1.0.literal + 0x403746c0 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x403746c0 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x403746c0 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x403746c4 0xc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + 0x14 (size before relaxing) + .iram1.0.literal + 0x403746d0 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x403746d4 0x44 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0xa8 (size before relaxing) + .iram1.0.literal + 0x40374718 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x40374718 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x50 (size before relaxing) + .iram1.2.literal + 0x40374754 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x40374754 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.16.literal + 0x40374754 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x1c (size before relaxing) + .iram1.17.literal + 0x4037475c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x4037475c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x4037475c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x4037475c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x4037475c 0x1c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x3c (size before relaxing) + .iram1.6.literal + 0x40374778 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xc (size before relaxing) + .iram1.28.literal + 0x40374778 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40374778 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.0.literal + 0x4037477c 0xc esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + 0x14 (size before relaxing) + .iram1.6.literal + 0x40374788 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x40374788 0x30 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x5c (size before relaxing) + .iram1.7.literal + 0x403747b8 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x403747b8 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x403747bc 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40 (size before relaxing) + .iram1.5.literal + 0x403747cc 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x403747cc 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x403747cc 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x403747cc 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.2.literal + 0x403747d4 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.4.literal + 0x403747d8 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0xc (size before relaxing) + .iram1.5.literal + 0x403747dc 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x10 (size before relaxing) + .iram1.3.literal + 0x403747dc 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .iram1.8.literal + 0x403747e4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x403747ec 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x403747ec 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x403747ec 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x403747ec 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x403747ec 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x403747ec 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x403747ec 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x403747fc 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x4037480c 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x4037480c 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x4037480c 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x4037480c 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .iram1.literal + 0x4037480c 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x4037480c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40374814 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x48 (size before relaxing) + .iram1.8.literal + 0x40374850 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.0.literal + 0x40374854 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x40374854 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x40374854 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x40374854 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.16.literal + 0x40374854 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.15.literal + 0x40374858 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.14.literal + 0x40374858 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.11.literal + 0x40374858 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40374858 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40374858 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x40374858 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40374858 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40374860 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40374868 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .iram1.1.literal + 0x4037486c 0x18 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x34 (size before relaxing) + .iram1.2.literal + 0x40374884 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x34 (size before relaxing) + .iram1.3.literal + 0x40374888 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .iram1.7.literal + 0x40374888 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x4037488c 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18 (size before relaxing) + .iram1.8.literal + 0x4037489c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.5.literal + 0x4037489c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.9.literal + 0x4037489c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x403748a0 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18 (size before relaxing) + .iram1.2.literal + 0x403748a0 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x20 (size before relaxing) + .iram1.3.literal + 0x403748a0 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x14 (size before relaxing) + .iram1.4.literal + 0x403748a0 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x403748a0 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x403748a0 0x20 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x38 (size before relaxing) + .iram1.1.literal + 0x403748c0 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .iram1.6.literal + 0x403748c4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x403748c4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x403748c4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x403748c4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x403748c4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x403748c4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xc (size before relaxing) + .literal.adc_apb_periph_claim + 0x403748c4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x24 (size before relaxing) + .literal.adc_apb_periph_free + 0x403748d0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x3c (size before relaxing) + .literal.esp_cpu_stall + 0x403748dc 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_cpu_unstall + 0x403748f8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_clk_slowclk_cal_get + 0x403748fc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_slowclk_cal_set + 0x40374900 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x8 (size before relaxing) + .literal.esp_rtc_get_time_us + 0x40374900 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x38 (size before relaxing) + .literal.esp_ptr_executable + 0x40374908 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x20 (size before relaxing) + .literal.esp_ptr_byte_accessible + 0x40374918 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x10 (size before relaxing) + .literal.gdma_start + 0x40374918 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x40 (size before relaxing) + .literal.s_mspi_flash_set_core_clock + 0x40374928 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + 0x14 (size before relaxing) + .literal.s_mspi_psram_set_core_clock + 0x40374938 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + 0x14 (size before relaxing) + .literal.mspi_timing_config_set_flash_clock + 0x40374938 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + 0x20 (size before relaxing) + .literal.mspi_timing_config_set_psram_clock + 0x4037494c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + 0x1c (size before relaxing) + .literal.mspi_timing_enter_low_speed_mode + 0x40374954 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x8 (size before relaxing) + .literal.mspi_timing_enter_high_speed_mode + 0x40374954 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x4 (size before relaxing) + .literal.mspi_timing_change_speed_mode_cache_safe + 0x40374954 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x10 (size before relaxing) + .literal.spi_timing_get_flash_timing_param + 0x40374954 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x4 (size before relaxing) + .literal.mspi_timing_set_pin_drive_strength + 0x40374954 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x10 (size before relaxing) + .literal.periph_module_reset + 0x40374960 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x30 (size before relaxing) + .literal.periph_rcc_acquire_enter + 0x40374970 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_rcc_acquire_exit + 0x40374970 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_rcc_enter + 0x40374970 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_rcc_exit + 0x40374970 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.wifi_module_disable + 0x40374970 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x24 (size before relaxing) + .literal.wifi_module_enable + 0x40374970 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x24 (size before relaxing) + .literal.regi2c_ctrl_read_reg_mask + 0x40374970 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.regi2c_ctrl_write_reg + 0x40374978 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.regi2c_ctrl_write_reg_mask + 0x4037497c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.regi2c_enter_critical + 0x40374980 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.regi2c_exit_critical + 0x40374980 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.regi2c_saradc_disable + 0x40374980 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x2c (size before relaxing) + .literal.regi2c_saradc_enable + 0x40374994 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_bbpll_disable + 0x4037499c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_bbpll_enable + 0x403749a0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_8m + 0x403749a0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_configure + 0x403749ac 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x34 (size before relaxing) + .literal.rtc_clk_bbpll_add_consumer + 0x403749b4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_remove_consumer + 0x403749b8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_32k_enable + 0x403749b8 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .literal.rtc_clk_32k_enable_external + 0x403749dc 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_32k_disable_external + 0x403749e8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x403749ec 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8md256_enabled + 0x403749f8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x403749f8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x40374a08 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x40374a08 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x40374a10 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x40374a14 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x40374a20 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 + 0x40374a20 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x28 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x40374a28 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x40374a2c 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x54 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_xtal + 0x40374a50 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x48 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x40374a5c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x24 (size before relaxing) + .literal.rtc_clk_cpu_set_to_default_config + 0x40374a5c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_xtal + 0x40374a5c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_sleep_pu + 0x40374a5c 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_cal_internal + 0x40374a84 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x44 (size before relaxing) + .literal.rtc_clk_cal + 0x40374aa0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x24 (size before relaxing) + .literal.rtc_time_us_to_slowclk + 0x40374aac 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x24 (size before relaxing) + .literal.rtc_time_get + 0x40374ab8 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_freq_cal + 0x40374ac4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x8 (size before relaxing) + .literal.enable_timer_group0_for_calibration + 0x40374ac8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x1c (size before relaxing) + .literal.temp_sensor_get_raw_value + 0x40374ad8 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x44 (size before relaxing) + .literal.temperature_sensor_power_acquire + 0x40374af4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x54 (size before relaxing) + .literal.temperature_sensor_power_release + 0x40374b00 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x50 (size before relaxing) + .literal.esp_cache_get_alignment + 0x40374b10 0xc esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0x18 (size before relaxing) + .literal.esp_cache_suspend_ext_mem_cache + 0x40374b1c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_resume_ext_mem_cache + 0x40374b1c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_freeze_ext_mem_cache + 0x40374b1c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_unfreeze_ext_mem_cache + 0x40374b1c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_freeze_caches_disable_interrupts + 0x40374b1c 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x38 (size before relaxing) + .literal.esp_cache_unfreeze_caches_enable_interrupts + 0x40374b2c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x18 (size before relaxing) + .literal.phy_get_tsens_value + 0x40374b2c 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x4 (size before relaxing) + .literal.prvAcquireItemNoSplit + 0x40374b2c 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x20 (size before relaxing) + .literal.prvSendAcquireGeneric + 0x40374b40 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.prvReceiveGeneric + 0x40374b40 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x34 (size before relaxing) + .literal.xRingbufferSend + 0x40374b4c 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x1c (size before relaxing) + .literal.xRingbufferReceive + 0x40374b58 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x1c (size before relaxing) + .literal.vRingbufferReturnItem + 0x40374b64 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.xRingbufferGetCurFreeSize + 0x40374b6c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.vRingbufferGetInfo + 0x40374b70 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.Cache_Suspend_ICache + 0x40374b74 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Suspend_DCache + 0x40374b7c 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0xc (size before relaxing) + .literal.Cache_Freeze_ICache_Enable + 0x40374b80 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_Freeze_DCache_Enable + 0x40374b84 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0xc (size before relaxing) + .literal.esp_rom_opiflash_cache_mode_config + 0x40374b88 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x2c (size before relaxing) + .literal.esp_rom_install_uart_printf + 0x40374ba4 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .literal.esp_error_check_failed_print + 0x40374bb8 0x14 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x28 (size before relaxing) + .literal._esp_error_check_failed + 0x40374bcc 0x8 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x10 (size before relaxing) + .literal.esp_system_abort + 0x40374bd4 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x4 (size before relaxing) + .literal.esp_vApplicationTickHook + 0x40374bd4 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.panic_abort + 0x40374bd8 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .literal.esp_restart_noos + 0x40374be0 0x3c esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x8c (size before relaxing) + .literal.esp_system_reset_modules_on_exit + 0x40374c1c 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x20 (size before relaxing) + .literal.wifi_sta_receive + 0x40374c2c 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.wifi_transmit_wrap + 0x40374c34 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.prvCopyDataToQueue + 0x40374c38 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvCopyDataFromQueue + 0x40374c38 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.prvNotifyQueueSetContainer + 0x40374c38 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40 (size before relaxing) + .literal.xQueueGenericReset + 0x40374c50 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.prvInitialiseNewQueue + 0x40374c60 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.xQueueGenericCreateStatic + 0x40374c60 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x24 (size before relaxing) + .literal.xQueueGenericGetStaticBuffers + 0x40374c70 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGenericCreate + 0x40374c78 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGetMutexHolder + 0x40374c7c 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateCountingSemaphore + 0x40374c84 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x14 (size before relaxing) + .literal.xQueueGenericSend + 0x40374c8c 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x68 (size before relaxing) + .literal.prvInitialiseMutex + 0x40374c9c 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateMutex + 0x40374ca8 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueCreateMutexStatic + 0x40374ca8 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGiveMutexRecursive + 0x40374ca8 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGenericSendFromISR + 0x40374cb0 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.xQueueGiveFromISR + 0x40374cb4 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.xQueueReceive + 0x40374cc0 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x54 (size before relaxing) + .literal.xQueueSemaphoreTake + 0x40374ccc 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x60 (size before relaxing) + .literal.xQueueTakeMutexRecursive + 0x40374cd0 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueReceiveFromISR + 0x40374cd4 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.uxQueueMessagesWaiting + 0x40374ce4 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.vQueueDelete + 0x40374cf0 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.vPortTaskWrapper + 0x40374cf8 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x18 (size before relaxing) + .literal.vPortTLSPointersDelCb + 0x40374d00 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1c (size before relaxing) + .literal.vPortCleanUpCoprocArea + 0x40374d04 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.xPortStartScheduler + 0x40374d04 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.pxPortInitialiseStack + 0x40374d08 0x24 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x34 (size before relaxing) + .literal.xPortInIsrContext + 0x40374d2c 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.xPortEnterCriticalTimeout + 0x40374d30 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x58 (size before relaxing) + .literal.vPortExitCritical + 0x40374d5c 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40 (size before relaxing) + .literal.vPortYieldOtherCore + 0x40374d70 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.vApplicationStackOverflowHook + 0x40374d70 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.vPortTCBPreDeleteHook + 0x40374d7c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal 0x40374d7c 0x1c esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x94 (size before relaxing) + .literal.pvPortMalloc + 0x40374d98 0x4 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x8 (size before relaxing) + .literal.vPortFree + 0x40374d9c 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4 (size before relaxing) + .literal.xPortCheckValidTCBMem + 0x40374d9c 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x18 (size before relaxing) + .literal.xPortcheckValidStackMem + 0x40374da4 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x18 (size before relaxing) + .literal.vApplicationGetIdleTaskMemory + 0x40374da4 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x20 (size before relaxing) + .literal.vSystimerSetup + 0x40374db4 0x24 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x6c (size before relaxing) + .literal.vPortSetupTimer + 0x40374dd8 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x4 (size before relaxing) + .literal.xPortSysTickHandler + 0x40374dd8 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x10 (size before relaxing) + .literal.SysTickIsrHandler + 0x40374dd8 0x4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x10 (size before relaxing) + .literal.xEventGroupCreate + 0x40374ddc 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x1c (size before relaxing) + .literal.xEventGroupWaitBits + 0x40374de8 0x20 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x5c (size before relaxing) + .literal.xEventGroupClearBits + 0x40374e08 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x24 (size before relaxing) + .literal.xEventGroupSetBits + 0x40374e10 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x34 (size before relaxing) + .literal.vEventGroupDelete + 0x40374e18 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x34 (size before relaxing) + .literal.prvCheckTaskCanBeScheduledSMP + 0x40374e24 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvResetNextTaskUnblockTime + 0x40374e28 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvIsYieldRequiredSMP + 0x40374e30 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.prvSelectHighestPriorityTaskSMP + 0x40374e3c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.prvDeleteTCB + 0x40374e50 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvCheckTasksWaitingTermination + 0x40374e60 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvAddCurrentTaskToDelayedList + 0x40374e74 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvIdleTask + 0x40374e80 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvInitialiseNewTask + 0x40374e84 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.prvInitialiseTaskLists + 0x40374e90 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.prvAddNewTaskToReadyList + 0x40374e9c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.vTaskSuspendAll + 0x40374ea4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.xTaskGetTickCount + 0x40374ea4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetTickCountFromISR + 0x40374ea4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.xTaskIncrementTick + 0x40374ea4 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x70 (size before relaxing) + .literal.vTaskSwitchContext + 0x40374ec4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.vTaskPlaceOnEventList + 0x40374ec8 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.vTaskPlaceOnUnorderedEventList + 0x40374ed4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.xTaskRemoveFromEventList + 0x40374edc 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.vTaskRemoveFromUnorderedEventList + 0x40374ef0 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x44 (size before relaxing) + .literal.vTaskInternalSetTimeOutState + 0x40374f00 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskCheckForTimeOut + 0x40374f00 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskGetCurrentTaskHandle + 0x40374f14 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.uxTaskPriorityGet + 0x40374f14 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.vTaskPrioritySet + 0x40374f14 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vTaskSuspend + 0x40374f1c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.pcTaskGetName + 0x40374f24 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.pvTaskGetThreadLocalStoragePointer + 0x40374f30 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetSchedulerState + 0x40374f30 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .literal.vTaskDelete + 0x40374f30 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x60 (size before relaxing) + .literal.vTaskDelay + 0x40374f38 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskResumeAll + 0x40374f3c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.xTaskPriorityInherit + 0x40374f48 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskPriorityDisinherit + 0x40374f48 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vTaskPriorityDisinheritAfterTimeout + 0x40374f5c 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.uxTaskResetEventItemValue + 0x40374f6c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.pvTaskIncrementMutexHeldCount + 0x40374f6c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.ulTaskGenericNotifyTake + 0x40374f6c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.xTaskGenericNotify + 0x40374f78 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x58 (size before relaxing) + .literal.vTaskGenericNotifyGiveFromISR + 0x40374f9c 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.prvTakeKernelLock + 0x40374fac 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvReleaseKernelLock + 0x40374fac 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskIncrementTickOtherCores + 0x40374fac 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.xTaskCreatePinnedToCore + 0x40374fb8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.xTaskCreateStaticPinnedToCore + 0x40374fc0 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.prvCreateIdleTasks + 0x40374fd0 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.vTaskStartScheduler + 0x40374fdc 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskGetCoreID + 0x40374fec 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetIdleTaskHandleForCore + 0x40374fec 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskGetCurrentTaskHandleForCore + 0x40374ff8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x40374ffc 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.__getreent + 0x40374ffc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskGetSnapshot + 0x40375000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.s_cache_hal_init_ctx + 0x40375000 0xc esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_init + 0x4037500c 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x18 (size before relaxing) + .literal.cache_hal_disable + 0x40375014 0xc esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x20 (size before relaxing) + .literal.cache_hal_enable + 0x40375020 0x4 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x24 (size before relaxing) + .literal.cache_hal_suspend + 0x40375024 0x4 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x20 (size before relaxing) + .literal.cache_hal_resume + 0x40375028 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x24 (size before relaxing) + .literal.cache_hal_is_cache_enabled + 0x40375030 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_vaddr_to_cache_level_id + 0x40375038 0xc esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x14 (size before relaxing) + .literal.cache_hal_invalidate_addr + 0x40375044 0x4 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x8 (size before relaxing) + .literal.cache_hal_freeze + 0x40375048 0x4 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x20 (size before relaxing) + .literal.cache_hal_unfreeze + 0x4037504c 0xc esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x20 (size before relaxing) + .literal.cache_hal_get_cache_line_size + 0x40375058 0x1c esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x28 (size before relaxing) + .literal.gdma_ahb_hal_append + 0x40375074 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x8 (size before relaxing) + .literal.gdma_ahb_hal_start_with_desc + 0x40375074 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x8 (size before relaxing) + .literal.gdma_ahb_hal_stop + 0x40375074 0x4 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x8 (size before relaxing) + .literal.mmu_ll_check_entry_valid + 0x40375078 0x10 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x14 (size before relaxing) + .literal.mmu_ll_get_entry_target + 0x40375088 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x14 (size before relaxing) + .literal.mmu_ll_find_entry_id_based_on_map_value + 0x4037508c 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xc (size before relaxing) + .literal.mmu_ll_entry_id_to_paddr_base + 0x4037508c 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x14 (size before relaxing) + .literal.mmu_hal_paddr_to_vaddr + 0x40375090 0x18 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x24 (size before relaxing) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x403750a8 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x14 (size before relaxing) + .literal.mmu_hal_map_region + 0x403750a8 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40 (size before relaxing) + .literal.mmu_hal_unmap_region + 0x403750bc 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x28 (size before relaxing) + .literal.mmu_hal_vaddr_to_paddr + 0x403750c0 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_encrypt_ll_plaintext_save + 0x403750c8 0x10 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_encryption_hal_enable + 0x403750d8 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_disable + 0x403750e0 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_prepare + 0x403750e0 0xc esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_encryption_hal_done + 0x403750ec 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_destroy + 0x403750f4 0x4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.gpspi_flash_ll_set_read_mode + 0x403750f8 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x1c (size before relaxing) + .literal.gpspi_flash_ll_set_buffer_data + 0x403750fc 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x4 (size before relaxing) + .literal.gpspi_flash_ll_get_buffer_data + 0x403750fc 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_gpspi_device_config + 0x403750fc 0x8 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_gpspi_configure_host_io_mode + 0x40375104 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x28 (size before relaxing) + .literal.spi_flash_hal_gpspi_common_command + 0x40375108 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_gpspi_read + 0x40375108 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x10 (size before relaxing) + .literal.spimem_flash_ll_set_read_mode + 0x40375108 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spimem_flash_ll_get_source_freq_mhz + 0x4037510c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spimem_flash_ll_program_page + 0x4037510c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_configure_host_io_mode + 0x4037510c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x28 (size before relaxing) + .literal.spi_flash_hal_common_command + 0x4037510c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_hal_read + 0x4037510c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_hal_erase_chip + 0x4037510c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_erase_sector + 0x4037510c 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_erase_block + 0x40375110 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_program_page + 0x40375110 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_set_write_protect + 0x40375110 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_setup_read_suspend + 0x40375110 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_setup_auto_suspend_mode + 0x40375114 0x10 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_hal_setup_auto_resume_mode + 0x40375124 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_disable_auto_suspend_mode + 0x40375128 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_disable_auto_resume_mode + 0x40375128 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_device_config + 0x40375128 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x10 (size before relaxing) + .literal.systimer_hal_init + 0x40375128 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x8 (size before relaxing) + .literal.systimer_hal_get_counter_value + 0x4037512c 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x4 (size before relaxing) + .literal.systimer_hal_set_alarm_period + 0x4037512c 0x10 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x14 (size before relaxing) + .literal.systimer_hal_counter_value_advance + 0x4037513c 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x4 (size before relaxing) + .literal.systimer_hal_select_alarm_mode + 0x4037513c 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x8 (size before relaxing) + .literal.assert_valid_block + 0x4037513c 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_aligned_alloc_impl_offs + 0x40375140 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x14 (size before relaxing) + .literal.multi_heap_aligned_alloc_offs + 0x40375140 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_free_impl + 0x40375140 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_allocated_size_impl + 0x40375140 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_internal_lock + 0x40375140 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xc (size before relaxing) + .literal.multi_heap_internal_unlock + 0x40375140 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xc (size before relaxing) + .literal.multi_heap_malloc_impl + 0x40375140 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x14 (size before relaxing) + .literal.multi_heap_realloc_impl + 0x40375140 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2c (size before relaxing) + .literal.tlsf_free + 0x4037514c 0x58 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xa4 (size before relaxing) + .literal.tlsf_get_pool + 0x403751a4 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_malloc + 0x403751a4 0x38 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x9c (size before relaxing) + .literal.tlsf_memalign_offs + 0x403751dc 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0xd8 (size before relaxing) + .literal.tlsf_realloc + 0x403751e8 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0xd0 (size before relaxing) + .literal.esp_log_va + 0x403751f4 0x8 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log + 0x403751fc 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x8 (size before relaxing) + .literal.esp_log_impl_lock + 0x403751fc 0x4 esp-idf/log/liblog.a(log_lock.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_lock_timeout + 0x40375200 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_unlock + 0x40375200 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + 0xc (size before relaxing) + .literal.esp_log_early_timestamp + 0x40375200 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_timestamp + 0x40375200 0x4 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x1c (size before relaxing) + .literal.esp_log_write + 0x40375204 0x0 esp-idf/log/liblog.a(log_write.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_writev + 0x40375204 0x0 esp-idf/log/liblog.a(log_write.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_level_get_timeout + 0x40375204 0x4 esp-idf/log/liblog.a(tag_log_level.c.obj) + .literal.esp_log_util_set_cache_enabled_cb + 0x40375208 0x4 esp-idf/log/liblog.a(util.c.obj) + .literal.abort + 0x4037520c 0x10 esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x28 (size before relaxing) + .literal.ra_to_str + 0x4037521c 0x4 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x8 (size before relaxing) + .literal.__assert_func + 0x40375220 0x20 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x40 (size before relaxing) + .literal.esp_set_time_from_rtc + 0x40375240 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xc (size before relaxing) + .literal.esp_time_impl_get_boot_time + 0x40375244 0xc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_time_impl_set_boot_time + 0x40375250 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.malloc + 0x40375250 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.realloc + 0x40375250 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free 0x40375250 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.calloc + 0x40375250 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal._free_r + 0x40375254 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._realloc_r + 0x40375254 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._malloc_r + 0x40375254 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._calloc_r + 0x40375254 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.__atomic_fetch_add_8 + 0x40375254 0x4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + 0x1c (size before relaxing) + .literal.__atomic_fetch_sub_8 + 0x40375258 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + 0x1c (size before relaxing) + .literal.__atomic_fetch_or_8 + 0x40375258 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + 0x1c (size before relaxing) + .literal.__atomic_load_8 + 0x40375258 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + 0x1c (size before relaxing) + .literal.__atomic_store_8 + 0x40375258 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + 0x1c (size before relaxing) + .literal.check_chip_pointer_default + 0x40375258 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .literal.detect_spi_flash_chip + 0x4037525c 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .literal.esp_flash_erase_region + 0x40375268 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .literal.esp_flash_get_physical_size + 0x4037527c 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .literal.esp_flash_init_main + 0x4037527c 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x5c (size before relaxing) + .literal.esp_flash_read + 0x40375294 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x18 (size before relaxing) + .literal.esp_flash_read_encrypted + 0x40375294 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + .literal.esp_flash_write + 0x4037529c 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3c (size before relaxing) + .literal.esp_flash_write_encrypted + 0x403752a8 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4c (size before relaxing) + .literal.flash_end_flush_cache + 0x403752b8 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_needs_reset_check + 0x403752b8 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_set_erasing_flag + 0x403752bc 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .literal.spi_flash_brownout_need_reset + 0x403752c0 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_read_status_hs + 0x403752c0 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_erase_chip + 0x403752c0 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_set_write_protect + 0x403752c0 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_read_id_hs + 0x403752c0 0x8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x1c (size before relaxing) + .literal.memspi_host_flush_cache + 0x403752c8 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_erase_sector + 0x403752c8 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.memspi_host_erase_block + 0x403752d4 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.memspi_host_program_page + 0x403752d8 0x8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.memspi_host_init_pointers + 0x403752e0 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_chip_boya_probe + 0x403752ec 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_gd_detect_size + 0x403752ec 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_probe + 0x403752ec 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .literal.spi_flash_chip_gd_suspend_cmd_conf + 0x403752f0 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 + 0x403752f0 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 + 0x40375304 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 + 0x40375304 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 + 0x40375304 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 + 0x40375304 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 + 0x40375304 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_reset + 0x40375304 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 + 0x40375304 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 + 0x40375304 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 + 0x40375304 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 + 0x40375304 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 + 0x4037530c 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 + 0x40375310 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 + 0x40375310 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 + 0x40375310 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 + 0x40375310 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 + 0x40375310 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 + 0x40375310 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x40375310 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_chip_generic_write + 0x40375318 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 + 0x40375318 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_yield + 0x40375324 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 + 0x40375324 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 + 0x4037532c 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 + 0x4037532c 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 + 0x4037532c 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 + 0x4037532c 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 + 0x4037532c 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 + 0x4037532c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_probe + 0x4037532c 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 + 0x40375330 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 + 0x40375338 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 + 0x40375338 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_detect_size + 0x40375338 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_set_write_protect + 0x40375338 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_chip + 0x40375338 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_sector + 0x4037533c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_block + 0x40375340 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_page_program + 0x40375344 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_xmic_opi_config_host_io_mode + 0x40375348 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_mxic_opi_get_data_length_zoom + 0x40375350 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_read_id + 0x4037535c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_read_reg + 0x4037536c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_get_io_mode + 0x4037536c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_mxic_opi_get_write_protect + 0x40375370 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_write + 0x40375378 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_th_probe + 0x40375378 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_suspend_cmd_conf + 0x40375378 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 + 0x40375378 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 + 0x40375378 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 + 0x40375378 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 + 0x40375378 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 + 0x40375378 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 + 0x40375378 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_read + 0x40375378 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x1c (size before relaxing) + .literal.s_register_rom_function + 0x40375380 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .literal.s_set_pin_drive_capability + 0x40375388 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + 0xc (size before relaxing) + .literal.s_probe_mxic_chip + 0x4037538c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + 0x18 (size before relaxing) + .literal.s_mxic_set_required_regs + 0x40375394 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + 0x8 (size before relaxing) + .literal.s_set_flash_ouput_driver_strength + 0x40375398 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + 0x14 (size before relaxing) + .literal.s_set_flash_dtr_str_opi_mode + 0x403753a0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + 0xc (size before relaxing) + .literal.s_flash_init_mxic + 0x403753a0 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + 0x34 (size before relaxing) + .literal.esp_opiflash_init + 0x403753b4 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + 0x28 (size before relaxing) + .literal.delay_us + 0x403753c4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.get_buffer_malloc + 0x403753c4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .literal.main_flash_op_status + 0x403753c8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.main_flash_region_protected + 0x403753c8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.release_buffer_malloc + 0x403753d0 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 + 0x403753d0 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_os_yield + 0x403753dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .literal.delay_us + 0x403753dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .literal 0x403753dc 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + 0x4 (size before relaxing) + .literal 0x403753dc 0x4 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x2c (size before relaxing) + .iram1.0 0x403753e0 0x83 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x87 (size before relaxing) + 0x403753e0 call_start_cpu1 + *fill* 0x40375463 0x1 + .iram1.1 0x40375464 0x8c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x40375464 do_multicore_settings + .iram1.6 0x403754f0 0xb esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x11 (size before relaxing) + 0x403754f0 flash_init_state + *fill* 0x403754fb 0x1 + .iram1.7 0x403754fc 0xc6 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xce (size before relaxing) + 0x403754fc call_start_cpu0 + *fill* 0x403755c2 0x2 + .iram1 0x403755c4 0x8f esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x97 (size before relaxing) + 0x403755c4 xt_highint4 + 0x40375653 ld_include_highint_hdl + *fill* 0x40375653 0x1 + .iram1.0 0x40375654 0x1a esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x22 (size before relaxing) + *fill* 0x4037566e 0x2 + .iram1.1 0x40375670 0x1c esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x23 (size before relaxing) + *fill* 0x4037568c 0x0 + .iram1.0 0x4037568c 0x1f esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x2a (size before relaxing) + *fill* 0x403756ab 0x1 + .iram1.0 0x403756ac 0x72 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + *fill* 0x4037571e 0x2 + .iram1.0 0x40375720 0x2d esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x40375720 start_cpu_other_cores + *fill* 0x4037574d 0x3 + .iram1.0 0x40375750 0x20 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x28 (size before relaxing) + .iram1.1 0x40375770 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x40375770 panicHandler + *fill* 0x40375782 0x2 + .iram1.2 0x40375784 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x40375784 xt_unhandled_exception + *fill* 0x40375796 0x2 + .iram1.5 0x40375798 0xf esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x40375798 esp_ipc_isr_stall_abort + *fill* 0x403757a7 0x1 + .iram1 0x403757a8 0x63 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x403757a8 esp_ipc_isr_handler + *fill* 0x4037580b 0x1 + .iram1.1 0x4037580c 0x3b esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + *fill* 0x40375847 0x1 + .iram1.2 0x40375848 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.0 0x40375860 0x59 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x5d (size before relaxing) + 0x40375860 esp_backtrace_get_next_frame + *fill* 0x403758b9 0x3 + .iram1.3 0x403758bc 0x10a esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x116 (size before relaxing) + 0x403758bc esp_backtrace_print_from_frame + *fill* 0x403759c6 0x2 + .iram1.4 0x403759c8 0x28 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x2c (size before relaxing) + 0x403759c8 esp_backtrace_print + .iram1 0x403759f0 0x1d esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x403759f0 esp_backtrace_get_start + *fill* 0x40375a0d 0x3 + .iram1.2 0x40375a10 0xe7 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xfa (size before relaxing) + *fill* 0x40375af7 0x1 + .iram1.0 0x40375af8 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x40375af8 efuse_hal_chip_revision + .iram1.1 0x40375b10 0x25 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40375b10 efuse_hal_blk_version + *fill* 0x40375b35 0x3 + .iram1.2 0x40375b38 0x11 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40375b38 efuse_hal_get_disable_wafer_version_major + *fill* 0x40375b49 0x3 + .iram1.3 0x40375b4c 0x11 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40375b4c efuse_hal_get_chip_ver_pkg + *fill* 0x40375b5d 0x3 + .iram1.4 0x40375b60 0x11 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40375b60 efuse_hal_get_disable_blk_version_major + *fill* 0x40375b71 0x3 + .iram1.5 0x40375b74 0x28 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40375b74 efuse_hal_flash_encryption_enabled + .iram1.0 0x40375b9c 0x48 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40375b9c efuse_hal_get_major_chip_version + .iram1.1 0x40375be4 0x3f esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40375be4 efuse_hal_get_minor_chip_version + *fill* 0x40375c23 0x1 + .iram1.0 0x40375c24 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x40375c3a 0x2 + .iram1.9 0x40375c3c 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.1 0x40375c74 0x2b esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x2f (size before relaxing) + 0x40375c74 heap_caps_malloc + *fill* 0x40375c9f 0x1 + .iram1.2 0x40375ca0 0x67 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x76 (size before relaxing) + 0x40375ca0 heap_caps_malloc_default + *fill* 0x40375d07 0x1 + .iram1.4 0x40375d08 0x86 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x8a (size before relaxing) + 0x40375d08 heap_caps_malloc_prefer + *fill* 0x40375d8e 0x2 + .iram1.7 0x40375d90 0x2b esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x2f (size before relaxing) + 0x40375d90 heap_caps_realloc + *fill* 0x40375dbb 0x1 + .iram1.3 0x40375dbc 0x73 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x7e (size before relaxing) + 0x40375dbc heap_caps_realloc_default + *fill* 0x40375e2f 0x1 + .iram1.8 0x40375e30 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x32 (size before relaxing) + 0x40375e30 heap_caps_calloc + *fill* 0x40375e5e 0x2 + .iram1.11 0x40375e60 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x38 (size before relaxing) + 0x40375e60 heap_caps_aligned_alloc + .iram1.0 0x40375e90 0xba esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0xc6 (size before relaxing) + *fill* 0x40375f4a 0x2 + .iram1.2 0x40375f4c 0x20 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x23 (size before relaxing) + *fill* 0x40375f6c 0x0 + .iram1.1 0x40375f6c 0x4f esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x52 (size before relaxing) + 0x40375f6c heap_caps_free + *fill* 0x40375fbb 0x1 + .iram1.3 0x40375fbc 0xce esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0xd6 (size before relaxing) + 0x40375fbc heap_caps_aligned_alloc_base + *fill* 0x4037608a 0x2 + .iram1.4 0x4037608c 0x10 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x14 (size before relaxing) + 0x4037608c heap_caps_malloc_base + .iram1.5 0x4037609c 0x15c esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x16c (size before relaxing) + 0x4037609c heap_caps_realloc_base + .iram1.6 0x403761f8 0x30 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x34 (size before relaxing) + 0x403761f8 heap_caps_calloc_base + .iram1.0 0x40376228 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.2 0x4037624c 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x4037624c esp_clk_cpu_freq + *fill* 0x4037625d 0x3 + .iram1.3 0x40376260 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40376260 esp_clk_apb_freq + *fill* 0x40376289 0x3 + .iram1.4 0x4037628c 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x11 (size before relaxing) + 0x4037628c esp_clk_xtal_freq + *fill* 0x4037629a 0x2 + .iram1.0 0x4037629c 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + *fill* 0x403762d5 0x3 + .iram1.4 0x403762d8 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x8f (size before relaxing) + 0x403762d8 esp_intr_noniram_disable + *fill* 0x4037634c 0x0 + .iram1.5 0x4037634c 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x7f (size before relaxing) + 0x4037634c esp_intr_noniram_enable + *fill* 0x403763b0 0x0 + .iram1.8 0x403763b0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x403763b0 esp_intr_enable_source + *fill* 0x403763c0 0x0 + .iram1.2 0x403763c0 0xba esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xce (size before relaxing) + 0x403763c0 esp_intr_enable + *fill* 0x4037647a 0x2 + .iram1.9 0x4037647c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x4037647c esp_intr_disable_source + *fill* 0x4037648c 0x0 + .iram1.3 0x4037648c 0xf6 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x10e (size before relaxing) + 0x4037648c esp_intr_disable + *fill* 0x40376582 0x2 + .iram1.3 0x40376584 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x6f (size before relaxing) + 0x40376584 wifi_bt_common_module_enable + *fill* 0x403765e0 0x0 + .iram1.4 0x403765e0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x6b (size before relaxing) + 0x403765e0 wifi_bt_common_module_disable + *fill* 0x40376638 0x0 + .iram1.5 0x40376638 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x58 (size before relaxing) + .iram1.6 0x40376684 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x40376684 rtc_isr_noniram_disable + .iram1.7 0x403766b8 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x403766b8 rtc_isr_noniram_enable + *fill* 0x403766d7 0x1 + .iram1.1 0x403766d8 0xc0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0xc8 (size before relaxing) + .iram1.4 0x40376798 0x18 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40376798 xPortInterruptedFromISRContext + .iram1.0 0x403767b0 0x24 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x2f (size before relaxing) + *fill* 0x403767d4 0x0 + .iram1.16 0x403767d4 0x17 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x1a (size before relaxing) + *fill* 0x403767eb 0x1 + .iram1.4 0x403767ec 0xa5 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xb5 (size before relaxing) + *fill* 0x40376891 0x3 + .iram1.9 0x40376894 0x5e esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x6a (size before relaxing) + *fill* 0x403768f2 0x2 + .iram1.3 0x403768f4 0x37 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x47 (size before relaxing) + 0x403768f4 _lock_close_recursive + 0x403768f4 _lock_close + *fill* 0x4037692b 0x1 + .iram1.5 0x4037692c 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x4037692c _lock_acquire + *fill* 0x4037693a 0x2 + .iram1.6 0x4037693c 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x4037693c _lock_acquire_recursive + *fill* 0x4037694a 0x2 + .iram1.7 0x4037694c 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x4037694c _lock_try_acquire + .iram1.8 0x4037695c 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x4037695c _lock_try_acquire_recursive + .iram1.10 0x4037696c 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4037696c _lock_release + *fill* 0x4037697b 0x1 + .iram1.11 0x4037697c 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4037697c _lock_release_recursive + *fill* 0x4037698b 0x1 + .iram1.12 0x4037698c 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4037698c __retarget_lock_init + *fill* 0x4037699f 0x1 + .iram1.13 0x403769a0 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x403769a0 __retarget_lock_init_recursive + *fill* 0x403769b3 0x1 + .iram1.14 0x403769b4 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x403769b4 __retarget_lock_close + *fill* 0x403769c3 0x1 + .iram1.15 0x403769c4 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x403769c4 __retarget_lock_close_recursive + *fill* 0x403769d3 0x1 + .iram1.17 0x403769d4 0x20 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x27 (size before relaxing) + 0x403769d4 __retarget_lock_acquire + *fill* 0x403769f4 0x0 + .iram1.18 0x403769f4 0x20 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x27 (size before relaxing) + 0x403769f4 __retarget_lock_acquire_recursive + *fill* 0x40376a14 0x0 + .iram1.19 0x40376a14 0x25 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x29 (size before relaxing) + 0x40376a14 __retarget_lock_try_acquire + *fill* 0x40376a39 0x3 + .iram1.20 0x40376a3c 0x25 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x29 (size before relaxing) + 0x40376a3c __retarget_lock_try_acquire_recursive + *fill* 0x40376a61 0x3 + .iram1.21 0x40376a64 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x40376a64 __retarget_lock_release + *fill* 0x40376a77 0x1 + .iram1.22 0x40376a78 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x40376a78 __retarget_lock_release_recursive + *fill* 0x40376a8b 0x1 + .iram1.0 0x40376a8c 0x1b esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x40376a8c esp_system_get_time + *fill* 0x40376aa7 0x1 + .iram1.3 0x40376aa8 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + *fill* 0x40376ace 0x2 + .iram1.1 0x40376ad0 0x16 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x1a (size before relaxing) + 0x40376ad0 esp_timer_get_time + 0x40376ad0 esp_timer_impl_get_time + *fill* 0x40376ae6 0x2 + .iram1.2 0x40376ae8 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x87 (size before relaxing) + 0x40376ae8 esp_timer_impl_set_alarm_id + *fill* 0x40376b58 0x0 + .iram1.0 0x40376b58 0x8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0xb (size before relaxing) + 0x40376b58 phy_i2c_enter_critical + *fill* 0x40376b60 0x0 + .iram1.1 0x40376b60 0x8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0xb (size before relaxing) + 0x40376b60 phy_i2c_exit_critical + *fill* 0x40376b68 0x0 + .iram1.2 0x40376b68 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x40376b68 phy_set_tsens_power + .iram1.0 0x40376b90 0x6a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + *fill* 0x40376bfa 0x2 + .iram1.0 0x40376bfc 0x16 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x40376bfc xt_unhandled_interrupt + *fill* 0x40376c12 0x2 + .iram1 0x40376c14 0x5e2 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x5f6 (size before relaxing) + 0x40376c14 xt_debugexception + 0x40376ce8 _xt_user_exit + 0x4037711c _xt_medint2_exit + 0x403771cc _xt_medint3_exit + 0x403771e8 xt_highint5 + 0x403771f0 xt_nmi + *fill* 0x403771f6 0x2 + .iram1.0 0x403771f8 0xa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xd (size before relaxing) + 0x403771f8 esp_flash_encryption_enabled + *fill* 0x40377202 0x2 + .iram1.1 0x40377204 0x2d5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2dd (size before relaxing) + 0x40377204 bootloader_flash_execute_command_common + *fill* 0x403774d9 0x3 + .iram1.2 0x403774dc 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x403774dc bootloader_execute_flash_command + .iram1.4 0x403774fc 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2e (size before relaxing) + 0x403774fc bootloader_read_flash_id + *fill* 0x40377526 0x2 + .iram1.16 0x40377528 0x92 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x9a (size before relaxing) + 0x40377528 bootloader_flash_reset_chip + *fill* 0x403775ba 0x2 + .iram1.17 0x403775bc 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x403775bc bootloader_flash_is_octal_mode_enabled + .iram1.2 0x403775cc 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xb (size before relaxing) + *fill* 0x403775d4 0x0 + .iram1.4 0x403775d4 0xf esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x403775e3 0x1 + .iram1.3 0x403775e4 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xb (size before relaxing) + *fill* 0x403775ec 0x0 + .iram1.5 0x403775ec 0xec esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xfc (size before relaxing) + .iram1.6 0x403776d8 0x15 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x1d (size before relaxing) + *fill* 0x403776ed 0x3 + .iram1.28 0x403776f0 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x22 (size before relaxing) + *fill* 0x4037770a 0x2 + .iram1.1 0x4037770c 0x6d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4037770c esp_mmu_paddr_find_caps + *fill* 0x40377779 0x3 + .iram1.0 0x4037777c 0x6e esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + 0x4037777c esp_heap_adjust_alignment_to_hw + *fill* 0x403777ea 0x2 + .iram1.6 0x403777ec 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xb (size before relaxing) + 0x403777ec spi_flash_disable_cache + *fill* 0x403777f4 0x0 + .iram1.1 0x403777f4 0xcf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xe6 (size before relaxing) + 0x403777f4 spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x403778c3 0x1 + .iram1.7 0x403778c4 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xb (size before relaxing) + 0x403778c4 spi_flash_restore_cache + *fill* 0x403778cc 0x0 + .iram1.0 0x403778cc 0x46 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x52 (size before relaxing) + 0x403778cc spi_flash_op_block_func + *fill* 0x40377912 0x2 + .iram1.2 0x40377914 0x81 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x91 (size before relaxing) + 0x40377914 spi_flash_enable_interrupts_caches_and_other_cpu + *fill* 0x40377995 0x3 + .iram1.5 0x40377998 0xf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40377998 spi_flash_enable_cache + *fill* 0x403779a7 0x1 + .iram1.8 0x403779a8 0x11 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x403779a8 spi_flash_cache_enabled + *fill* 0x403779b9 0x3 + .iram1.0 0x403779bc 0x49 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x51 (size before relaxing) + *fill* 0x40377a05 0x3 + .iram1.1 0x40377a08 0x58 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x5c (size before relaxing) + 0x40377a08 spi_flash_check_and_flush_cache + .iram1.2 0x40377a60 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40377a60 spi_flash_guard_set + *fill* 0x40377a6a 0x2 + .iram1.4 0x40377a6c 0x15 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x19 (size before relaxing) + 0x40377a6c esp_mspi_pin_init + *fill* 0x40377a81 0x3 + .iram1.5 0x40377a84 0x20 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x27 (size before relaxing) + 0x40377a84 spi_flash_init_chip_state + *fill* 0x40377aa4 0x0 + .iram1.3 0x40377aa4 0x6c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x70 (size before relaxing) + .iram1.8 0x40377b10 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.0 0x40377b40 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x40377b48 0x0 + .iram1.5 0x40377b48 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x18 (size before relaxing) + .iram1.1 0x40377b5c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x40377b64 0x0 + .iram1.4 0x40377b64 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.1 0x40377b70 0x11 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + *fill* 0x40377b81 0x3 + .iram1.0 0x40377b84 0x11 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + *fill* 0x40377b95 0x3 + .iram1.1 0x40377b98 0x5a esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x66 (size before relaxing) + *fill* 0x40377bf2 0x2 + .iram1.2 0x40377bf4 0x54 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x5c (size before relaxing) + .iram1.3 0x40377c48 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40377c48 esp_crosscore_int_send_yield + *fill* 0x40377c57 0x1 + .iram1.6 0x40377c58 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40377c58 esp_crosscore_int_send_print_backtrace + *fill* 0x40377c67 0x1 + .iram1.7 0x40377c68 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40377c68 esp_crosscore_int_send_twdt_abort + *fill* 0x40377c77 0x1 + .iram1.0 0x40377c78 0x29 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x40377c78 esp_task_wdt_impl_timer_feed + *fill* 0x40377ca1 0x3 + .iram1 0x40377ca4 0x40 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x48 (size before relaxing) + 0x40377ca4 _xt_panic + .iram1.0 0x40377ce4 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x4c (size before relaxing) + 0x40377ce4 esp_random + .iram1.0 0x40377d2c 0xae esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + *fill* 0x40377dda 0x2 + .iram1.8 0x40377ddc 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40377dea 0x2 + .iram1.0 0x40377dec 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + 0x40377dec wifi_malloc + .iram1.1 0x40377df8 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x40377df8 wifi_realloc + *fill* 0x40377e09 0x3 + .iram1.2 0x40377e0c 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x40377e0c wifi_calloc + *fill* 0x40377e1d 0x3 + .iram1.3 0x40377e20 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40377e31 0x3 + .iram1.16 0x40377e34 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.15 0x40377e48 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.14 0x40377e5c 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.11 0x40377e70 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40377e82 0x2 + .iram1.7 0x40377e84 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40377e99 0x3 + .iram1.6 0x40377e9c 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .iram1.5 0x40377ea8 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40377eb9 0x3 + .iram1.0 0x40377ebc 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x22 (size before relaxing) + *fill* 0x40377eda 0x2 + .iram1.0 0x40377edc 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + 0x26 (size before relaxing) + *fill* 0x40377efe 0x2 + .iram1.2 0x40377f00 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + 0x7c (size before relaxing) + 0x40377f0c pm_get_null_max_tx_time + .iram1.3 0x40377f78 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x40377f7c wifi_gpio_debug + *fill* 0x40377f8f 0x1 + .iram1.36 0x40377f90 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x40377f94 wdev_process_tbtt + *fill* 0x40377fa3 0x1 + .iram1.37 0x40377fa4 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x13 (size before relaxing) + 0x40377fa4 wdev_process_tsf_timer + *fill* 0x40377fb3 0x1 + .iram1.38 0x40377fb4 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x13 (size before relaxing) + 0x40377fb4 wdev_process_beacon_filter + *fill* 0x40377fc3 0x1 + .iram1.39 0x40377fc4 0xb2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xd2 (size before relaxing) + 0x40377fd8 wDev_ProcessFiq + *fill* 0x40378076 0x2 + .iram1.41 0x40378078 0x9a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x9e (size before relaxing) + 0x4037809c wdev_record_rx_linked_list + *fill* 0x40378112 0x2 + .iram1.42 0x40378114 0x85 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x95 (size before relaxing) + 0x40378124 wdev_dump_rx_linked_list + *fill* 0x40378199 0x3 + .iram1.14 0x4037819c 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x403781a0 hal_mac_interrupt_get_event + *fill* 0x403781ad 0x3 + .iram1.15 0x403781b0 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x403781b4 hal_mac_interrupt_clr_event + *fill* 0x403781c1 0x3 + .iram1.17 0x403781c4 0x65 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x403781d0 hal_get_tsf_time + *fill* 0x40378229 0x3 + .iram1.2 0x4037822c 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x40378230 hal_pwr_interrupt_get_event + *fill* 0x4037823d 0x3 + .iram1.3 0x40378240 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x40378244 hal_pwr_interrupt_clr_event + *fill* 0x40378251 0x3 + .iram1.0 0x40378254 0x13 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x40378267 0x1 + .iram1.1 0x40378268 0x5a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x6e (size before relaxing) + 0x40378268 ets_timer_arm_us + 0x40378268 os_timer_arm_us + *fill* 0x403782c2 0x2 + .iram1.2 0x403782c4 0x62 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x76 (size before relaxing) + 0x403782c4 os_timer_arm + 0x403782c4 ets_timer_arm + *fill* 0x40378326 0x2 + .iram1.3 0x40378328 0x14 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x18 (size before relaxing) + 0x40378328 os_timer_disarm + 0x40378328 ets_timer_disarm + .iram1.7 0x4037833c 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x2c (size before relaxing) + .iram1.4 0x40378364 0x94 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.8 0x403783f8 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x26 (size before relaxing) + *fill* 0x40378417 0x1 + .iram1.5 0x40378418 0x61 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x65 (size before relaxing) + *fill* 0x40378479 0x3 + .iram1.9 0x4037847c 0x1e esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x22 (size before relaxing) + *fill* 0x4037849a 0x2 + .iram1.1 0x4037849c 0x61 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x71 (size before relaxing) + 0x4037849c esp_timer_start_once + *fill* 0x403784fd 0x3 + .iram1.2 0x40378500 0x81 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x95 (size before relaxing) + 0x40378500 esp_timer_start_periodic + *fill* 0x40378581 0x3 + .iram1.3 0x40378584 0x41 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4d (size before relaxing) + 0x40378584 esp_timer_stop + *fill* 0x403785c5 0x3 + .iram1.4 0x403785c8 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xb (size before relaxing) + 0x403785c8 esp_phy_common_clock_enable + *fill* 0x403785d0 0x0 + .iram1.5 0x403785d0 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xb (size before relaxing) + 0x403785d0 esp_phy_common_clock_disable + *fill* 0x403785d8 0x0 + .iram1.6 0x403785d8 0x74 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x83 (size before relaxing) + 0x403785d8 esp_wifi_power_domain_on + 0x403785d8 esp_wifi_bt_power_domain_on + *fill* 0x4037864c 0x0 + .iram1.1 0x4037864c 0xb esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4037864c phy_ant_need_update + *fill* 0x40378657 0x1 + .iram1.6 0x40378658 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40378658 esp_coex_common_malloc_internal_wrapper + *fill* 0x4037866a 0x2 + .iram1.3 0x4037866c 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xb (size before relaxing) + 0x4037866c esp_coex_common_task_yield_from_isr_wrapper + *fill* 0x40378674 0x0 + .iram1.4 0x40378674 0xa esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xe (size before relaxing) + 0x40378674 esp_coex_common_timer_disarm_wrapper + *fill* 0x4037867e 0x2 + .iram1.5 0x40378680 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40378680 esp_coex_common_timer_arm_us_wrapper + *fill* 0x40378692 0x2 + .iram1.1 0x40378694 0x22 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x26 (size before relaxing) + 0x40378694 esp_coex_common_int_disable_wrapper + *fill* 0x403786b6 0x2 + .iram1.2 0x403786b8 0x17 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x22 (size before relaxing) + 0x403786b8 esp_coex_common_int_restore_wrapper + *fill* 0x403786cf 0x1 + .iram1 0x403786d0 0x65 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x7d (size before relaxing) + 0x403786dc phy_wakeup_init + 0x40378710 phy_close_rf + 0x40378718 phy_xpd_tsens + *fill* 0x40378735 0x3 + .iram1 0x40378738 0x2d3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x323 (size before relaxing) + 0x40378860 ram_phy_wakeup_init + 0x403789b4 ram_phy_close_rf + *fill* 0x40378a0b 0x1 + .iram1 0x40378a0c 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x60 (size before relaxing) + 0x40378a10 wait_freq_set_busy + 0x40378a24 ram_phy_en_hw_set_freq + 0x40378a40 ram_phy_dis_hw_set_freq + .iram1 0x40378a60 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x40378a64 phy_freq_mem_backup + 0x40378a78 phy_dig_reg_backup + *fill* 0x40378a8a 0x2 + .iram1 0x40378a8c 0xdc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + 0xfc (size before relaxing) + 0x40378a94 ram_i2c_master_reset + .iram1 0x40378b68 0xda C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0xee (size before relaxing) + 0x40378b68 ram_wifi_tx_dig_gain + 0x40378bd4 ram_bt_set_tx_gain + *fill* 0x40378c42 0x2 + .iram1 0x40378c44 0xa87 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0xaff (size before relaxing) + 0x40378c70 rx_agc_reg_opt + 0x40378d1c rx_11b_opt + 0x40378e5c ram_set_pbus_reg + 0x40379188 ram_wifi_tx_dig_gain_reg + 0x40379538 ram_disable_wifi_agc + 0x4037957c ram_enable_wifi_agc + 0x403795c4 btbb_wifi_bb_cfg2 + 0x403795fc ram_fe_i2c_reg_renew + 0x403796a8 phy_wifi_enable_set + *fill* 0x403796cb 0x1 + .iram1 0x403796cc 0x3c6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0x432 (size before relaxing) + 0x403796e0 ram_set_txcap_reg + 0x4037979c ram_phy_i2c_init1 + 0x4037995c ram_get_i2c_hostid + 0x4037999c ram_chip_i2c_readReg + 0x403799f4 ram_chip_i2c_writeReg + 0x40379a5c phy_i2c_bbtop_wakeup + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x0 + *fill* 0x40379a92 0x2 + .iram1.1 0x40379a94 0x9 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x40379a94 esp_timer_impl_get_min_period_us + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x0 + *fill* 0x40379a9d 0x3 + .iram1.7 0x40379aa0 0x7 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40379aa0 esp_mspi_32bit_address_flash_feature_check + *fill* 0x40379aa7 0x0 + *fill* 0x40379aa7 0x0 + *fill* 0x40379aa7 0x0 + *fill* 0x40379aa7 0x0 + *fill* 0x40379aa7 0x0 + *fill* 0x40379aa7 0x0 + *fill* 0x40379aa7 0x0 + *fill* 0x40379aa7 0x0 + *fill* 0x40379aa7 0x0 + *fill* 0x40379aa7 0x0 + *fill* 0x40379aa7 0x1 + .iram1.4 0x40379aa8 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40379ab8 0x0 + .iram1.9 0x40379ab8 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40379abd 0x3 + .iram1.10 0x40379ac0 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40379ac5 0x3 + .iram1.12 0x40379ac8 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40379acd 0x3 + .iram1.13 0x40379ad0 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40379ad5 0x3 + .iram1.17 0x40379ad8 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40379adf 0x1 + .iram1.18 0x40379ae0 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40379ae7 0x1 + .iram1.19 0x40379ae8 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40379aef 0x1 + .iram1.20 0x40379af0 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40379af7 0x1 + .iram1.21 0x40379af8 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x0 + *fill* 0x40379afd 0x3 + .iram1.6 0x40379b00 0x11 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x0 + *fill* 0x40379b11 0x3 + .iram1.0 0x40379b14 0x7 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40379b14 esp_coex_common_env_is_chip_wrapper + *fill* 0x40379b1b 0x0 + *fill* 0x40379b1b 0x0 + *fill* 0x40379b1b 0x0 + *fill* 0x40379b1b 0x0 + *fill* 0x40379b1b 0x0 + *fill* 0x40379b1b 0x0 + *fill* 0x40379b1b 0x0 + *fill* 0x40379b1b 0x0 + *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*) + *libapp_trace.a:port_uart.*(.literal .literal.* .text .text.*) + *libclang_rt.builtins.a:_divsf3.*(.literal .literal.* .text .text.*) + *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_dma_rx_one_block_cb .text.rmt_dma_rx_one_block_cb) + *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_isr_handle_rx_threshold .text.rmt_isr_handle_rx_threshold) + *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_rx_default_isr .text.rmt_rx_default_isr) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_dma_tx_eof_cb .text.rmt_dma_tx_eof_cb) + *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_loop_end .text.rmt_isr_handle_tx_loop_end) + *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_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_apb_periph_claim .text.adc_apb_periph_claim) + *fill* 0x40379b1b 0x1 + .text.adc_apb_periph_claim + 0x40379b1c 0x5d esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x6c (size before relaxing) + 0x40379b1c adc_apb_periph_claim + *fill* 0x40379b79 0x0 + *libesp_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_apb_periph_free .text.adc_apb_periph_free) + *fill* 0x40379b79 0x3 + .text.adc_apb_periph_free + 0x40379b7c 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x7e (size before relaxing) + 0x40379b7c adc_apb_periph_free + *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) + *fill* 0x40379be2 0x2 + .text.esp_cpu_compare_and_set + 0x40379be4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40379be4 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 + 0x40379bf8 0x83 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40379bf8 esp_cpu_stall + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) + *fill* 0x40379c7b 0x1 + .text.esp_cpu_unstall + 0x40379c7c 0x55 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40379c7c esp_cpu_unstall + *fill* 0x40379cd1 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) + *fill* 0x40379cd1 0x3 + .text.esp_cpu_wait_for_intr + 0x40379cd4 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40379cd4 esp_cpu_wait_for_intr + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_private_lock .text.esp_clk_private_lock) + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_private_unlock .text.esp_clk_private_unlock) + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_slowclk_cal_get .text.esp_clk_slowclk_cal_get) + .text.esp_clk_slowclk_cal_get + 0x40379cdc 0xd esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40379cdc esp_clk_slowclk_cal_get + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_slowclk_cal_set .text.esp_clk_slowclk_cal_set) + *fill* 0x40379ce9 0x3 + .text.esp_clk_slowclk_cal_set + 0x40379cec 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x13 (size before relaxing) + 0x40379cec esp_clk_slowclk_cal_set + *fill* 0x40379cfc 0x0 + *libesp_hw_support.a:esp_clk.*(.literal.esp_rtc_get_time_us .text.esp_rtc_get_time_us) + *fill* 0x40379cfc 0x0 + .text.esp_rtc_get_time_us + 0x40379cfc 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xe7 (size before relaxing) + 0x40379cfc esp_rtc_get_time_us + *fill* 0x40379dc4 0x0 + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_enable_src .text.esp_clk_tree_enable_src) + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *fill* 0x40379dc4 0x0 + .text.esp_ptr_executable + 0x40379dc4 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x40379dc4 esp_ptr_executable + .text.esp_ptr_byte_accessible + 0x40379e1c 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x40379e1c esp_ptr_byte_accessible + *fill* 0x40379e4a 0x0 + *libesp_hw_support.a:gdma.*(.literal.gdma_append .text.gdma_append) + *libesp_hw_support.a:gdma.*(.literal.gdma_default_rx_isr .text.gdma_default_rx_isr) + *libesp_hw_support.a:gdma.*(.literal.gdma_default_tx_isr .text.gdma_default_tx_isr) + *libesp_hw_support.a:gdma.*(.literal.gdma_reset .text.gdma_reset) + *libesp_hw_support.a:gdma.*(.literal.gdma_start .text.gdma_start) + *fill* 0x40379e4a 0x2 + .text.gdma_start + 0x40379e4c 0x9f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0xb6 (size before relaxing) + 0x40379e4c gdma_start + *fill* 0x40379eeb 0x0 + *libesp_hw_support.a:gdma.*(.literal.gdma_stop .text.gdma_stop) + *libesp_hw_support.a:mspi_timing_by_mspi_delay.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:mspi_timing_config.*(.literal .literal.* .text .text.*) + *fill* 0x40379eeb 0x1 + .text.s_mspi_flash_set_core_clock + 0x40379eec 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .text.s_mspi_psram_set_core_clock + 0x40379f54 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .text.mspi_timing_config_set_flash_clock + 0x40379fbc 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + 0x86 (size before relaxing) + 0x40379fbc mspi_timing_config_set_flash_clock + *fill* 0x4037a03e 0x2 + .text.mspi_timing_config_set_psram_clock + 0x4037a040 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + 0x56 (size before relaxing) + 0x4037a040 mspi_timing_config_set_psram_clock + *fill* 0x4037a08e 0x0 + *fill* 0x4037a08e 0x0 + *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) + *fill* 0x4037a08e 0x2 + .text.mspi_timing_enter_low_speed_mode + 0x4037a090 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x20 (size before relaxing) + 0x4037a090 mspi_timing_enter_low_speed_mode + .text.mspi_timing_enter_high_speed_mode + 0x4037a0ac 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x4037a0ac mspi_timing_enter_high_speed_mode + *fill* 0x4037a0be 0x2 + .text.mspi_timing_change_speed_mode_cache_safe + 0x4037a0c0 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x2c (size before relaxing) + 0x4037a0c0 mspi_timing_change_speed_mode_cache_safe + .text.spi_timing_get_flash_timing_param + 0x4037a0e0 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x9 (size before relaxing) + 0x4037a0e0 spi_timing_get_flash_timing_param + *fill* 0x4037a0e6 0x2 + .text.mspi_timing_set_pin_drive_strength + 0x4037a0e8 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x4037a0e8 mspi_timing_set_pin_drive_strength + *fill* 0x4037a14b 0x1 + .text.mspi_timing_flash_tuning + 0x4037a14c 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x4037a14c mspi_timing_flash_tuning + *fill* 0x4037a151 0x0 + *fill* 0x4037a151 0x3 + .text.spi_flash_timing_is_tuned + 0x4037a154 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x4037a154 spi_flash_timing_is_tuned + *fill* 0x4037a15b 0x0 + *fill* 0x4037a15b 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) + *fill* 0x4037a15b 0x1 + .text.periph_module_reset + 0x4037a15c 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x63 (size before relaxing) + 0x4037a15c periph_module_reset + *fill* 0x4037a1ac 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_enter .text.periph_rcc_acquire_enter) + *fill* 0x4037a1ac 0x0 + .text.periph_rcc_acquire_enter + 0x4037a1ac 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x13 (size before relaxing) + 0x4037a1ac periph_rcc_acquire_enter + *fill* 0x4037a1bc 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_exit .text.periph_rcc_acquire_exit) + *fill* 0x4037a1bc 0x0 + .text.periph_rcc_acquire_exit + 0x4037a1bc 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4037a1bc periph_rcc_acquire_exit + *fill* 0x4037a1d4 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_enter .text.periph_rcc_enter) + .text.periph_rcc_enter + 0x4037a1d4 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x26 (size before relaxing) + 0x4037a1d4 periph_rcc_enter + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_exit .text.periph_rcc_exit) + *fill* 0x4037a1f3 0x1 + .text.periph_rcc_exit + 0x4037a1f4 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x23 (size before relaxing) + 0x4037a1f4 periph_rcc_exit + *fill* 0x4037a210 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) + *fill* 0x4037a210 0x0 + .text.wifi_module_disable + 0x4037a210 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x63 (size before relaxing) + 0x4037a210 wifi_module_disable + *fill* 0x4037a260 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_enable .text.wifi_module_enable) + *fill* 0x4037a260 0x0 + .text.wifi_module_enable + 0x4037a260 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x63 (size before relaxing) + 0x4037a260 wifi_module_enable + *fill* 0x4037a2b0 0x0 + *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* 0x4037a2b0 0x0 + .text.regi2c_ctrl_read_reg_mask + 0x4037a2b0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x67 (size before relaxing) + 0x4037a2b0 regi2c_ctrl_read_reg_mask + *fill* 0x4037a308 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg .text.regi2c_ctrl_write_reg) + *fill* 0x4037a308 0x0 + .text.regi2c_ctrl_write_reg + 0x4037a308 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x63 (size before relaxing) + 0x4037a308 regi2c_ctrl_write_reg + *fill* 0x4037a358 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg_mask .text.regi2c_ctrl_write_reg_mask) + *fill* 0x4037a358 0x0 + .text.regi2c_ctrl_write_reg_mask + 0x4037a358 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x6b (size before relaxing) + 0x4037a358 regi2c_ctrl_write_reg_mask + *fill* 0x4037a3b4 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_enter_critical .text.regi2c_enter_critical) + *fill* 0x4037a3b4 0x0 + .text.regi2c_enter_critical + 0x4037a3b4 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x2a (size before relaxing) + 0x4037a3b4 regi2c_enter_critical + *fill* 0x4037a3d3 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_exit_critical .text.regi2c_exit_critical) + *fill* 0x4037a3d3 0x1 + .text.regi2c_exit_critical + 0x4037a3d4 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x23 (size before relaxing) + 0x4037a3d4 regi2c_exit_critical + *fill* 0x4037a3f0 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_saradc_disable .text.regi2c_saradc_disable) + *fill* 0x4037a3f0 0x0 + .text.regi2c_saradc_disable + 0x4037a3f0 0x51 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x59 (size before relaxing) + 0x4037a3f0 regi2c_saradc_disable + *fill* 0x4037a441 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_saradc_enable .text.regi2c_saradc_enable) + *fill* 0x4037a441 0x3 + .text.regi2c_saradc_enable + 0x4037a444 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x44 (size before relaxing) + 0x4037a444 regi2c_saradc_enable + *fill* 0x4037a484 0x0 + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + .text.rtc_clk_bbpll_disable + 0x4037a484 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x4037a4a3 0x1 + .text.rtc_clk_bbpll_enable + 0x4037a4a4 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_8m + 0x4037a4bc 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x15 (size before relaxing) + *fill* 0x4037a4ce 0x2 + .text.rtc_clk_bbpll_configure + 0x4037a4d0 0x158 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x170 (size before relaxing) + .text.rtc_clk_bbpll_add_consumer + 0x4037a628 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4037a628 rtc_clk_bbpll_add_consumer + *fill* 0x4037a636 0x2 + .text.rtc_clk_bbpll_remove_consumer + 0x4037a638 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4037a638 rtc_clk_bbpll_remove_consumer + *fill* 0x4037a646 0x2 + .text.rtc_clk_32k_enable + 0x4037a648 0xed esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4037a648 rtc_clk_32k_enable + *fill* 0x4037a735 0x3 + .text.rtc_clk_32k_enable_external + 0x4037a738 0x53 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4037a738 rtc_clk_32k_enable_external + *fill* 0x4037a78b 0x1 + .text.rtc_clk_32k_disable_external + 0x4037a78c 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4037a78c rtc_clk_32k_disable_external + *fill* 0x4037a7da 0x2 + .text.rtc_clk_8m_enable + 0x4037a7dc 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4037a7dc rtc_clk_8m_enable + *fill* 0x4037a879 0x3 + .text.rtc_clk_8md256_enabled + 0x4037a87c 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4037a87c rtc_clk_8md256_enabled + *fill* 0x4037a895 0x3 + .text.rtc_clk_slow_src_set + 0x4037a898 0xfa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x102 (size before relaxing) + 0x4037a898 rtc_clk_slow_src_set + *fill* 0x4037a992 0x2 + .text.rtc_clk_slow_src_get + 0x4037a994 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4037a994 rtc_clk_slow_src_get + *fill* 0x4037a9be 0x2 + .text.rtc_clk_slow_freq_get_hz + 0x4037a9c0 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2a (size before relaxing) + 0x4037a9c0 rtc_clk_slow_freq_get_hz + *fill* 0x4037a9e6 0x2 + .text.rtc_clk_fast_src_set + 0x4037a9e8 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4a (size before relaxing) + 0x4037a9e8 rtc_clk_fast_src_set + *fill* 0x4037aa2f 0x1 + .text.rtc_clk_xtal_freq_get + 0x4037aa30 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x44 (size before relaxing) + 0x4037aa30 rtc_clk_xtal_freq_get + 0x4037aa30 rtc_get_xtal + .text.rtc_clk_cpu_freq_mhz_to_config + 0x4037aa70 0x67 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4037aa70 rtc_clk_cpu_freq_mhz_to_config + *fill* 0x4037aad7 0x1 + .text.rtc_clk_cpu_freq_get_config + 0x4037aad8 0x110 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x118 (size before relaxing) + 0x4037aad8 rtc_clk_cpu_freq_get_config + .text.rtc_clk_apb_freq_update + 0x4037abe8 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4037abe8 rtc_clk_apb_freq_update + *fill* 0x4037abf2 0x2 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x4037abf4 0x17e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x196 (size before relaxing) + *fill* 0x4037ad72 0x2 + .text.rtc_clk_cpu_freq_to_xtal + 0x4037ad74 0xbf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xcf (size before relaxing) + 0x4037ad74 rtc_clk_cpu_freq_to_xtal + *fill* 0x4037ae33 0x1 + .text.rtc_clk_cpu_freq_set_config + 0x4037ae34 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x6c (size before relaxing) + 0x4037ae34 rtc_clk_cpu_freq_set_config + .text.rtc_clk_cpu_set_to_default_config + 0x4037ae94 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x13 (size before relaxing) + 0x4037ae94 rtc_clk_cpu_set_to_default_config + *fill* 0x4037aea3 0x1 + .text.rtc_clk_cpu_freq_set_xtal + 0x4037aea4 0xb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x11 (size before relaxing) + 0x4037aea4 rtc_clk_cpu_freq_set_xtal + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 0x0 + *fill* 0x4037aeaf 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_get_default_config .text.rtc_sleep_get_default_config) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_init .text.rtc_sleep_init) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_low_init .text.rtc_sleep_low_init) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_pu .text.rtc_sleep_pu) + *fill* 0x4037aeaf 0x1 + .text.rtc_sleep_pu + 0x4037aeb0 0x1b0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x4037aeb0 rtc_sleep_pu + *fill* 0x4037b060 0x0 + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_start .text.rtc_sleep_start) + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + .text.rtc_clk_cal_internal + 0x4037b060 0x226 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x232 (size before relaxing) + 0x4037b060 rtc_clk_cal_internal + *fill* 0x4037b286 0x2 + .text.rtc_clk_cal + 0x4037b288 0xc5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xcd (size before relaxing) + 0x4037b288 rtc_clk_cal + *fill* 0x4037b34d 0x3 + .text.rtc_time_us_to_slowclk + 0x4037b350 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x8a (size before relaxing) + 0x4037b350 rtc_time_us_to_slowclk + *fill* 0x4037b3d6 0x2 + .text.rtc_time_get + 0x4037b3d8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x4037b3d8 rtc_time_get + .text.rtc_clk_freq_cal + 0x4037b400 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x4037b400 rtc_clk_freq_cal + 0x4037b400 rtc_clk_freq_to_period + *fill* 0x4037b41a 0x2 + .text.enable_timer_group0_for_calibration + 0x4037b41c 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x6e (size before relaxing) + *fill* 0x4037b486 0x0 + *fill* 0x4037b486 0x0 + *fill* 0x4037b486 0x0 + *fill* 0x4037b486 0x0 + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_power_disable) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temp_sensor_get_raw_value .text.temp_sensor_get_raw_value) + *fill* 0x4037b486 0x2 + .text.temp_sensor_get_raw_value + 0x4037b488 0x123 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x132 (size before relaxing) + 0x4037b488 temp_sensor_get_raw_value + *fill* 0x4037b5ab 0x0 + *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temperature_sensor_power_acquire .text.temperature_sensor_power_acquire) + *fill* 0x4037b5ab 0x1 + .text.temperature_sensor_power_acquire + 0x4037b5ac 0xd5 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0xec (size before relaxing) + 0x4037b5ac temperature_sensor_power_acquire + *fill* 0x4037b681 0x0 + *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temperature_sensor_power_release .text.temperature_sensor_power_release) + *fill* 0x4037b681 0x3 + .text.temperature_sensor_power_release + 0x4037b684 0xa9 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0xc4 (size before relaxing) + 0x4037b684 temperature_sensor_power_release + *libesp_hw_support.a:sleep_console.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:sleep_cpu.*(.literal.cpu_domain_pd_allowed .text.cpu_domain_pd_allowed) + *libesp_hw_support.a:sleep_cpu.*(.literal.sleep_enable_cpu_retention .text.sleep_enable_cpu_retention) + *libesp_hw_support.a:sleep_modem.*(.literal.modem_domain_pd_allowed .text.modem_domain_pd_allowed) + *libesp_hw_support.a:sleep_modem.*(.literal.periph_inform_out_light_sleep_overhead .text.periph_inform_out_light_sleep_overhead) + *libesp_hw_support.a:sleep_modem.*(.literal.sleep_modem_reject_triggers .text.sleep_modem_reject_triggers) + *libesp_hw_support.a:sleep_modes.*(.literal.esp_light_sleep_start .text.esp_light_sleep_start) + *libesp_hw_support.a:sleep_modes.*(.literal.esp_sleep_enable_timer_wakeup .text.esp_sleep_enable_timer_wakeup) + *libesp_hw_support.a:systimer.*(.literal .literal.* .text .text.*) + *fill* 0x4037b72d 0x3 + .text.systimer_ticks_to_us + 0x4037b730 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + 0x4037b730 systimer_ticks_to_us + *fill* 0x4037b741 0x3 + .text.systimer_us_to_ticks + 0x4037b744 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + 0x4037b744 systimer_us_to_ticks + *libesp_mm.a:esp_cache_msync.*(.literal .literal.* .text .text.*) + *fill* 0x4037b755 0x3 + .text.esp_cache_get_alignment + 0x4037b758 0x42 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0x4a (size before relaxing) + 0x4037b758 esp_cache_get_alignment + *fill* 0x4037b79a 0x0 + *libesp_mm.a:esp_cache_utils.*(.literal .literal.* .text .text.*) + *fill* 0x4037b79a 0x2 + .text.esp_cache_suspend_ext_mem_cache + 0x4037b79c 0xf esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4037b79c esp_cache_suspend_ext_mem_cache + *fill* 0x4037b7ab 0x1 + .text.esp_cache_resume_ext_mem_cache + 0x4037b7ac 0xf esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4037b7ac esp_cache_resume_ext_mem_cache + *fill* 0x4037b7bb 0x1 + .text.esp_cache_freeze_ext_mem_cache + 0x4037b7bc 0xf esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4037b7bc esp_cache_freeze_ext_mem_cache + *fill* 0x4037b7cb 0x1 + .text.esp_cache_unfreeze_ext_mem_cache + 0x4037b7cc 0xf esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4037b7cc esp_cache_unfreeze_ext_mem_cache + *fill* 0x4037b7db 0x1 + .text.esp_cache_freeze_caches_disable_interrupts + 0x4037b7dc 0x4e esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x5e (size before relaxing) + 0x4037b7dc esp_cache_freeze_caches_disable_interrupts + *fill* 0x4037b82a 0x2 + .text.esp_cache_unfreeze_caches_enable_interrupts + 0x4037b82c 0x20 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x2f (size before relaxing) + 0x4037b82c esp_cache_unfreeze_caches_enable_interrupts + *fill* 0x4037b84c 0x0 + *fill* 0x4037b84c 0x0 + *fill* 0x4037b84c 0x0 + *fill* 0x4037b84c 0x0 + *fill* 0x4037b84c 0x0 + *fill* 0x4037b84c 0x0 + *libesp_phy.a:phy_override.*(.literal.phy_get_tsens_value .text.phy_get_tsens_value) + *fill* 0x4037b84c 0x0 + .text.phy_get_tsens_value + 0x4037b84c 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x10 (size before relaxing) + 0x4037b84c phy_get_tsens_value + *fill* 0x4037b858 0x0 + *libesp_pm.a:pm_impl.*(.literal.esp_pm_impl_get_cpu_freq .text.esp_pm_impl_get_cpu_freq) + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + .text.prvAcquireItemNoSplit + 0x4037b858 0xa4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvSendAcquireGeneric + 0x4037b8fc 0xd6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xee (size before relaxing) + *fill* 0x4037b9d2 0x2 + .text.prvReceiveGeneric + 0x4037b9d4 0xf3 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x107 (size before relaxing) + *fill* 0x4037bac7 0x1 + .text.xRingbufferSend + 0x4037bac8 0x65 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x4037bac8 xRingbufferSend + *fill* 0x4037bb2d 0x3 + .text.xRingbufferReceive + 0x4037bb30 0x54 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x5c (size before relaxing) + 0x4037bb30 xRingbufferReceive + .text.vRingbufferReturnItem + 0x4037bb84 0x5c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x6e (size before relaxing) + 0x4037bb84 vRingbufferReturnItem + *fill* 0x4037bbe0 0x0 + .text.xRingbufferGetCurFreeSize + 0x4037bbe0 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x38 (size before relaxing) + 0x4037bbe0 xRingbufferGetCurFreeSize + .text.vRingbufferGetInfo + 0x4037bc10 0x63 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x6e (size before relaxing) + 0x4037bc10 vRingbufferGetInfo + *fill* 0x4037bc73 0x1 + .text.prvCheckItemAvail + 0x4037bc74 0x49 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x4037bcbd 0x0 + *fill* 0x4037bcbd 0x0 + *fill* 0x4037bcbd 0x0 + *fill* 0x4037bcbd 0x0 + *fill* 0x4037bcbd 0x0 + *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.*(.literal .literal.* .text .text.*) + *fill* 0x4037bcbd 0x3 + .text.Cache_Suspend_ICache + 0x4037bcc0 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037bcc0 Cache_Suspend_ICache + .text.Cache_Suspend_DCache + 0x4037bcdc 0x22 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037bcdc Cache_Suspend_DCache + *fill* 0x4037bcfe 0x2 + .text.Cache_Freeze_ICache_Enable + 0x4037bd00 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037bd00 Cache_Freeze_ICache_Enable + .text.Cache_Freeze_DCache_Enable + 0x4037bd1c 0x22 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037bd1c Cache_Freeze_DCache_Enable + *fill* 0x4037bd3e 0x0 + *fill* 0x4037bd3e 0x0 + *libesp_rom.a:esp_rom_cache_writeback_esp32s3.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_print.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *fill* 0x4037bd3e 0x2 + .text.esp_rom_opiflash_cache_mode_config + 0x4037bd40 0xec esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x4037bd40 esp_rom_opiflash_cache_mode_config + *fill* 0x4037be2c 0x0 + *libesp_rom.a:esp_rom_sys.*(.literal .literal.* .text .text.*) + .text.esp_rom_install_uart_printf + 0x4037be2c 0x22 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x4037be2c esp_rom_install_uart_printf + *libesp_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_wdt.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + *fill* 0x4037be4e 0x2 + .text.esp_error_check_failed_print + 0x4037be50 0x4b esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x4f (size before relaxing) + *fill* 0x4037be9b 0x1 + .text._esp_error_check_failed + 0x4037be9c 0x2a esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x32 (size before relaxing) + 0x4037be9c _esp_error_check_failed + *fill* 0x4037bec6 0x0 + *fill* 0x4037bec6 0x0 + *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) + *fill* 0x4037bec6 0x2 + .text.esp_system_abort + 0x4037bec8 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0xc (size before relaxing) + 0x4037bec8 esp_system_abort + *fill* 0x4037bed0 0x0 + *libesp_system.a:freertos_hooks.*(.literal.esp_vApplicationTickHook .text.esp_vApplicationTickHook) + .text.esp_vApplicationTickHook + 0x4037bed0 0x27 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x4037bed0 esp_vApplicationTickHook + *libesp_system.a:image_process.*(.literal .literal.* .text .text.*) + *libesp_system.a:panic.*(.literal.panic_abort .text.panic_abort) + *fill* 0x4037bef7 0x1 + .text.panic_abort + 0x4037bef8 0x16 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4037bef8 panic_abort + *fill* 0x4037bf0e 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* 0x4037bf0e 0x2 + .text.esp_restart_noos + 0x4037bf10 0x147 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x15b (size before relaxing) + 0x4037bf10 esp_restart_noos + *fill* 0x4037c057 0x0 + *libesp_system.a:system_internal.*(.literal.esp_system_reset_modules_on_exit .text.esp_system_reset_modules_on_exit) + *fill* 0x4037c057 0x1 + .text.esp_system_reset_modules_on_exit + 0x4037c058 0xc7 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x4037c058 esp_system_reset_modules_on_exit + *fill* 0x4037c11f 0x0 + *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* 0x4037c11f 0x1 + .text.__ubsan_include + 0x4037c120 0x5 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x4037c120 __ubsan_include + *libesp_timer.a:esp_timer_impl_common.*(.literal.esp_timer_impl_lock .text.esp_timer_impl_lock) + *libesp_timer.a:esp_timer_impl_common.*(.literal.esp_timer_impl_unlock .text.esp_timer_impl_unlock) + *libesp_timer.a:esp_timer_impl_systimer.*(.literal.esp_timer_impl_advance .text.esp_timer_impl_advance) + *libesp_timer.a:esp_timer_impl_systimer.*(.literal.esp_timer_impl_set .text.esp_timer_impl_set) + *libesp_wifi.a:esp_adapter.*(.literal.coex_pti_get_wrapper .text.coex_pti_get_wrapper) + *fill* 0x4037c125 0x3 + .text.coex_pti_get_wrapper + 0x4037c128 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *libesp_wifi.a:wifi_netif.*(.literal.wifi_sta_receive .text.wifi_sta_receive) + *fill* 0x4037c12f 0x1 + .text.wifi_sta_receive + 0x4037c130 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + *fill* 0x4037c14c 0x0 + *libesp_wifi.a:wifi_netif.*(.literal.wifi_transmit_wrap .text.wifi_transmit_wrap) + .text.wifi_transmit_wrap + 0x4037c14c 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .literal EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .literal.* EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .text EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .text.*) + .text.prvCopyDataToQueue + 0x4037c160 0x90 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvCopyDataFromQueue + 0x4037c1f0 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4037c213 0x1 + .text.prvNotifyQueueSetContainer + 0x4037c214 0x97 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xae (size before relaxing) + *fill* 0x4037c2ab 0x1 + .text.xQueueGenericReset + 0x4037c2ac 0xb3 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc7 (size before relaxing) + 0x4037c2ac xQueueGenericReset + *fill* 0x4037c35f 0x1 + .text.prvInitialiseNewQueue + 0x4037c360 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x23 (size before relaxing) + *fill* 0x4037c37f 0x1 + .text.xQueueGenericCreateStatic + 0x4037c380 0x8e esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x9a (size before relaxing) + 0x4037c380 xQueueGenericCreateStatic + *fill* 0x4037c40e 0x2 + .text.xQueueGenericGetStaticBuffers + 0x4037c410 0x43 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4037c410 xQueueGenericGetStaticBuffers + *fill* 0x4037c453 0x1 + .text.xQueueGenericCreate + 0x4037c454 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x5c (size before relaxing) + 0x4037c454 xQueueGenericCreate + .text.xQueueGetMutexHolder + 0x4037c4a8 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3a (size before relaxing) + 0x4037c4a8 xQueueGetMutexHolder + *fill* 0x4037c4de 0x2 + .text.xQueueCreateCountingSemaphore + 0x4037c4e0 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40 (size before relaxing) + 0x4037c4e0 xQueueCreateCountingSemaphore + .text.xQueueGenericSend + 0x4037c51c 0x13c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x16c (size before relaxing) + 0x4037c51c xQueueGenericSend + .text.prvInitialiseMutex + 0x4037c658 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateMutex + 0x4037c694 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1a (size before relaxing) + 0x4037c694 xQueueCreateMutex + *fill* 0x4037c6aa 0x2 + .text.xQueueCreateMutexStatic + 0x4037c6ac 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1e (size before relaxing) + 0x4037c6ac xQueueCreateMutexStatic + *fill* 0x4037c6c6 0x2 + .text.xQueueGiveMutexRecursive + 0x4037c6c8 0x3f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x47 (size before relaxing) + 0x4037c6c8 xQueueGiveMutexRecursive + *fill* 0x4037c707 0x1 + .text.xQueueGenericSendFromISR + 0x4037c708 0xdc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xec (size before relaxing) + 0x4037c708 xQueueGenericSendFromISR + .text.xQueueGiveFromISR + 0x4037c7e4 0xba esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc6 (size before relaxing) + 0x4037c7e4 xQueueGiveFromISR + *fill* 0x4037c89e 0x2 + .text.xQueueReceive + 0x4037c8a0 0xec esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x10c (size before relaxing) + 0x4037c8a0 xQueueReceive + .text.xQueueSemaphoreTake + 0x4037c98c 0x108 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x134 (size before relaxing) + 0x4037c98c xQueueSemaphoreTake + .text.xQueueTakeMutexRecursive + 0x4037ca94 0x42 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x46 (size before relaxing) + 0x4037ca94 xQueueTakeMutexRecursive + *fill* 0x4037cad6 0x2 + .text.xQueueReceiveFromISR + 0x4037cad8 0x88 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x90 (size before relaxing) + 0x4037cad8 xQueueReceiveFromISR + .text.uxQueueMessagesWaiting + 0x4037cb60 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + 0x4037cb60 uxQueueMessagesWaiting + .text.vQueueDelete + 0x4037cb8c 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x27 (size before relaxing) + 0x4037cb8c vQueueDelete + *fill* 0x4037cbb0 0x0 + .text.vPortTaskWrapper + 0x4037cbb0 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x32 (size before relaxing) + *fill* 0x4037cbd6 0x2 + .text.vPortTLSPointersDelCb + 0x4037cbd8 0x54 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x58 (size before relaxing) + .text.vPortCleanUpCoprocArea + 0x4037cc2c 0x1b esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x4037cc47 0x1 + .text.xPortStartScheduler + 0x4037cc48 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x34 (size before relaxing) + 0x4037cc48 xPortStartScheduler + .text.pxPortInitialiseStack + 0x4037cc70 0x99 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x9d (size before relaxing) + 0x4037cc70 pxPortInitialiseStack + *fill* 0x4037cd09 0x3 + .text.xPortInIsrContext + 0x4037cd0c 0x22 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4037cd0c xPortInIsrContext + *fill* 0x4037cd2e 0x2 + .text.xPortEnterCriticalTimeout + 0x4037cd30 0x150 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x15c (size before relaxing) + 0x4037cd30 xPortEnterCriticalTimeout + .text.vPortExitCritical + 0x4037ce80 0x9b esp-idf/freertos/libfreertos.a(port.c.obj) + 0x9e (size before relaxing) + 0x4037ce80 vPortExitCritical + *fill* 0x4037cf1b 0x1 + .text.vPortYieldOtherCore + 0x4037cf1c 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x4037cf1c vPortYieldOtherCore + *fill* 0x4037cf26 0x2 + .text.vApplicationStackOverflowHook + 0x4037cf28 0x3d esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4037cf28 vApplicationStackOverflowHook + *fill* 0x4037cf65 0x3 + .text.vPortTCBPreDeleteHook + 0x4037cf68 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x16 (size before relaxing) + 0x4037cf68 vPortTCBPreDeleteHook + *fill* 0x4037cf7a 0x2 + .text 0x4037cf7c 0x216 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x226 (size before relaxing) + 0x4037cf7c _frxt_setup_switch + 0x4037cf94 _frxt_int_enter + 0x4037cfd8 _frxt_int_exit + 0x4037d028 _frxt_dispatch + 0x4037d08c vPortYield + 0x4037d0f0 vPortYieldFromInt + 0x4037d124 _frxt_task_coproc_state + 0x4037d164 _frxt_coproc_exc_hook + *fill* 0x4037d192 0x2 + .text.pvPortMalloc + 0x4037d194 0x12 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4037d194 pvPortMalloc + *fill* 0x4037d1a6 0x2 + .text.vPortFree + 0x4037d1a8 0xa esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0xe (size before relaxing) + 0x4037d1a8 vPortFree + *fill* 0x4037d1b2 0x2 + .text.xPortCheckValidTCBMem + 0x4037d1b4 0x59 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4037d1b4 xPortCheckValidTCBMem + *fill* 0x4037d20d 0x3 + .text.xPortcheckValidStackMem + 0x4037d210 0x58 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4037d210 xPortcheckValidStackMem + .text.vApplicationGetIdleTaskMemory + 0x4037d268 0x3d esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x4b (size before relaxing) + 0x4037d268 vApplicationGetIdleTaskMemory + *fill* 0x4037d2a5 0x3 + .text.vSystimerSetup + 0x4037d2a8 0x14f esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x172 (size before relaxing) + 0x4037d2a8 vSystimerSetup + *fill* 0x4037d3f7 0x1 + .text.vPortSetupTimer + 0x4037d3f8 0x8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0xb (size before relaxing) + 0x4037d3f8 vPortSetupTimer + *fill* 0x4037d400 0x0 + .text.xPortSysTickHandler + 0x4037d400 0x27 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x2f (size before relaxing) + 0x4037d400 xPortSysTickHandler + *fill* 0x4037d427 0x1 + .text.SysTickIsrHandler + 0x4037d428 0x81 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x4037d428 SysTickIsrHandler + *fill* 0x4037d4a9 0x3 + .text.xEventGroupCreate + 0x4037d4ac 0x38 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x40 (size before relaxing) + 0x4037d4ac xEventGroupCreate + .text.xEventGroupWaitBits + 0x4037d4e4 0x102 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x11a (size before relaxing) + 0x4037d4e4 xEventGroupWaitBits + *fill* 0x4037d5e6 0x2 + .text.xEventGroupClearBits + 0x4037d5e8 0x4e esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x52 (size before relaxing) + 0x4037d5e8 xEventGroupClearBits + *fill* 0x4037d636 0x2 + .text.xEventGroupSetBits + 0x4037d638 0x9a esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0xae (size before relaxing) + 0x4037d638 xEventGroupSetBits + *fill* 0x4037d6d2 0x2 + .text.vEventGroupDelete + 0x4037d6d4 0x68 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x7f (size before relaxing) + 0x4037d6d4 vEventGroupDelete + *fill* 0x4037d73c 0x0 + .text.prvGetDisinheritPriorityAfterTimeout + 0x4037d73c 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x0 + *fill* 0x4037d75a 0x2 + .text.vListInitialise + 0x4037d75c 0x24 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4037d75c vListInitialise + .text.vListInitialiseItem + 0x4037d780 0xc esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4037d780 vListInitialiseItem + .text.vListInsertEnd + 0x4037d78c 0x39 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4037d78c vListInsertEnd + *fill* 0x4037d7c5 0x3 + .text.vListInsert + 0x4037d7c8 0x5c esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4037d7c8 vListInsert + .text.uxListRemove + 0x4037d824 0x52 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4037d824 uxListRemove + *fill* 0x4037d876 0x2 + .text.prvTestWaitCondition + 0x4037d878 0x1e esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *libfreertos.a:tasks.*(.literal.__getreent .literal.eTaskGetState .literal.pcTaskGetName .literal.prvAddCurrentTaskToDelayedList .literal.prvAddNewTaskToReadyList .literal.prvCheckTaskCanBeScheduledSMP .literal.prvCheckTasksWaitingTermination .literal.prvCreateIdleTasks .literal.prvDeleteTCB .literal.prvIdleTask .literal.prvInitialiseNewTask .literal.prvInitialiseTaskLists .literal.prvIsYieldRequiredSMP .literal.prvReleaseKernelLock .literal.prvResetNextTaskUnblockTime .literal.prvSelectHighestPriorityTaskSMP .literal.prvTakeKernelLock .literal.prvTaskIsTaskSuspended .literal.prvTaskPriorityRaise .literal.prvTaskPriorityRestore .literal.pvTaskGetCurrentTCBForCore .literal.pvTaskGetThreadLocalStoragePointer .literal.pvTaskIncrementMutexHeldCount .literal.pxTaskGetStackStart .literal.ulTaskGenericNotifyTake .literal.ulTaskGenericNotifyValueClear .literal.uxTaskGetNumberOfTasks .literal.uxTaskGetStackHighWaterMark .literal.uxTaskGetStackHighWaterMark2 .literal.uxTaskPriorityGet .literal.uxTaskPriorityGetFromISR .literal.uxTaskResetEventItemValue .literal.vTaskDelay .literal.vTaskDelete .literal.vTaskEndScheduler .literal.vTaskGenericNotifyGiveFromISR .literal.vTaskGetSnapshot .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.vTaskSwitchContext .literal.xTaskAbortDelay .literal.xTaskCatchUpTicks .literal.xTaskCheckForTimeOut .literal.xTaskCreatePinnedToCore .literal.xTaskCreateStaticPinnedToCore .literal.xTaskDelayUntil .literal.xTaskGenericNotify .literal.xTaskGenericNotifyFromISR .literal.xTaskGenericNotifyStateClear .literal.xTaskGenericNotifyWait .literal.xTaskGetCoreID .literal.xTaskGetCurrentTaskHandle .literal.xTaskGetCurrentTaskHandleForCore .literal.xTaskGetHandle .literal.xTaskGetIdleTaskHandle .literal.xTaskGetIdleTaskHandleForCore .literal.xTaskGetSchedulerState .literal.xTaskGetStaticBuffers .literal.xTaskGetTickCount .literal.xTaskGetTickCountFromISR .literal.xTaskIncrementTick .literal.xTaskIncrementTickOtherCores .literal.xTaskPriorityDisinherit .literal.xTaskPriorityInherit .literal.xTaskRemoveFromEventList .literal.xTaskResumeAll .literal.xTaskResumeFromISR .text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTaskCanBeScheduledSMP .text.prvCheckTasksWaitingTermination .text.prvCreateIdleTasks .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask .text.prvInitialiseTaskLists .text.prvIsYieldRequiredSMP .text.prvReleaseKernelLock .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvSelectHighestPriorityTaskSMP .text.prvTakeKernelLock .text.prvTaskCheckFreeStackSpace .text.prvTaskIsTaskSuspended .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetSnapshot .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.vTaskSwitchContext .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetSchedulerState .text.xTaskGetStaticBuffers .text.xTaskGetTickCount .text.xTaskGetTickCountFromISR .text.xTaskIncrementTick .text.xTaskIncrementTickOtherCores .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) + *fill* 0x4037d896 0x2 + .text.prvCheckTaskCanBeScheduledSMP + 0x4037d898 0x46 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4037d8de 0x2 + .text.prvResetNextTaskUnblockTime + 0x4037d8e0 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvIsYieldRequiredSMP + 0x4037d91c 0x99 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9d (size before relaxing) + *fill* 0x4037d9b5 0x3 + .text.prvSelectHighestPriorityTaskSMP + 0x4037d9b8 0x1e7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1ea (size before relaxing) + *fill* 0x4037db9f 0x1 + .text.prvDeleteTCB + 0x4037dba0 0x48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + *fill* 0x4037dbe8 0x0 + .text.prvCheckTasksWaitingTermination + 0x4037dbe8 0x96 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9e (size before relaxing) + *fill* 0x4037dc7e 0x2 + .text.prvAddCurrentTaskToDelayedList + 0x4037dc80 0x11a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x11e (size before relaxing) + *fill* 0x4037dd9a 0x2 + .text.prvIdleTask + 0x4037dd9c 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + *fill* 0x4037ddab 0x1 + .text.prvInitialiseNewTask + 0x4037ddac 0xa2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xaa (size before relaxing) + *fill* 0x4037de4e 0x2 + .text.prvInitialiseTaskLists + 0x4037de50 0x67 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x77 (size before relaxing) + *fill* 0x4037deb7 0x1 + .text.prvAddNewTaskToReadyList + 0x4037deb8 0x1a4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1b3 (size before relaxing) + *fill* 0x4037e05c 0x0 + .text.vTaskSuspendAll + 0x4037e05c 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x32 (size before relaxing) + 0x4037e05c vTaskSuspendAll + *fill* 0x4037e08a 0x2 + .text.xTaskGetTickCount + 0x4037e08c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4037e08c xTaskGetTickCount + *fill* 0x4037e099 0x3 + .text.xTaskGetTickCountFromISR + 0x4037e09c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x22 (size before relaxing) + 0x4037e09c xTaskGetTickCountFromISR + *fill* 0x4037e0ba 0x2 + .text.xTaskIncrementTick + 0x4037e0bc 0x2c8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2db (size before relaxing) + 0x4037e0bc xTaskIncrementTick + *fill* 0x4037e384 0x0 + .text.vTaskSwitchContext + 0x4037e384 0xa8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xbb (size before relaxing) + 0x4037e384 vTaskSwitchContext + *fill* 0x4037e42c 0x0 + .text.vTaskPlaceOnEventList + 0x4037e42c 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + 0x4037e42c vTaskPlaceOnEventList + *fill* 0x4037e473 0x1 + .text.vTaskPlaceOnUnorderedEventList + 0x4037e474 0x9b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa7 (size before relaxing) + 0x4037e474 vTaskPlaceOnUnorderedEventList + *fill* 0x4037e50f 0x1 + .text.xTaskRemoveFromEventList + 0x4037e510 0x1fc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x213 (size before relaxing) + 0x4037e510 xTaskRemoveFromEventList + *fill* 0x4037e70c 0x0 + .text.vTaskRemoveFromUnorderedEventList + 0x4037e70c 0x1b2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1be (size before relaxing) + 0x4037e70c vTaskRemoveFromUnorderedEventList + *fill* 0x4037e8be 0x2 + .text.vTaskInternalSetTimeOutState + 0x4037e8c0 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4037e8c0 vTaskInternalSetTimeOutState + *fill* 0x4037e8d9 0x3 + .text.xTaskCheckForTimeOut + 0x4037e8dc 0xb7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc2 (size before relaxing) + 0x4037e8dc xTaskCheckForTimeOut + *fill* 0x4037e993 0x1 + .text.xTaskGetCurrentTaskHandle + 0x4037e994 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4037e994 xTaskGetCurrentTaskHandle + *fill* 0x4037e9b3 0x1 + .text.uxTaskPriorityGet + 0x4037e9b4 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x26 (size before relaxing) + 0x4037e9b4 uxTaskPriorityGet + *fill* 0x4037e9d3 0x1 + .text.vTaskPrioritySet + 0x4037e9d4 0x157 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x16f (size before relaxing) + 0x4037e9d4 vTaskPrioritySet + *fill* 0x4037eb2b 0x1 + .text.vTaskSuspend + 0x4037eb2c 0x124 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x130 (size before relaxing) + 0x4037eb2c vTaskSuspend + .text.pcTaskGetName + 0x4037ec50 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x29 (size before relaxing) + 0x4037ec50 pcTaskGetName + *fill* 0x4037ec72 0x2 + .text.pvTaskGetThreadLocalStoragePointer + 0x4037ec74 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + 0x4037ec74 pvTaskGetThreadLocalStoragePointer + .text.xTaskGetSchedulerState + 0x4037ec90 0x37 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4037ec90 xTaskGetSchedulerState + *fill* 0x4037ecc7 0x1 + .text.vTaskDelete + 0x4037ecc8 0xf4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x117 (size before relaxing) + 0x4037ecc8 vTaskDelete + *fill* 0x4037edbc 0x0 + .text.vTaskDelay + 0x4037edbc 0x3b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4f (size before relaxing) + 0x4037edbc vTaskDelay + *fill* 0x4037edf7 0x1 + .text.xTaskResumeAll + 0x4037edf8 0x1f0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1ff (size before relaxing) + 0x4037edf8 xTaskResumeAll + *fill* 0x4037efe8 0x0 + .text.xTaskPriorityInherit + 0x4037efe8 0x10f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x11a (size before relaxing) + 0x4037efe8 xTaskPriorityInherit + *fill* 0x4037f0f7 0x1 + .text.xTaskPriorityDisinherit + 0x4037f0f8 0xe8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xf7 (size before relaxing) + 0x4037f0f8 xTaskPriorityDisinherit + *fill* 0x4037f1e0 0x0 + .text.vTaskPriorityDisinheritAfterTimeout + 0x4037f1e0 0xf8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xff (size before relaxing) + 0x4037f1e0 vTaskPriorityDisinheritAfterTimeout + *fill* 0x4037f2d8 0x0 + .text.uxTaskResetEventItemValue + 0x4037f2d8 0x42 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x46 (size before relaxing) + 0x4037f2d8 uxTaskResetEventItemValue + *fill* 0x4037f31a 0x2 + .text.pvTaskIncrementMutexHeldCount + 0x4037f31c 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4a (size before relaxing) + 0x4037f31c pvTaskIncrementMutexHeldCount + *fill* 0x4037f363 0x1 + .text.ulTaskGenericNotifyTake + 0x4037f364 0xf2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x106 (size before relaxing) + 0x4037f364 ulTaskGenericNotifyTake + *fill* 0x4037f456 0x2 + .text.xTaskGenericNotify + 0x4037f458 0x1d3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1e6 (size before relaxing) + 0x4037f458 xTaskGenericNotify + *fill* 0x4037f62b 0x1 + .text.vTaskGenericNotifyGiveFromISR + 0x4037f62c 0x1a3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1b3 (size before relaxing) + 0x4037f62c vTaskGenericNotifyGiveFromISR + *fill* 0x4037f7cf 0x1 + .text.prvTakeKernelLock + 0x4037f7d0 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + 0x4037f7d0 prvTakeKernelLock + *fill* 0x4037f7dd 0x3 + .text.prvReleaseKernelLock + 0x4037f7e0 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xe (size before relaxing) + 0x4037f7e0 prvReleaseKernelLock + *fill* 0x4037f7eb 0x1 + .text.xTaskIncrementTickOtherCores + 0x4037f7ec 0x7a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x7e (size before relaxing) + 0x4037f7ec xTaskIncrementTickOtherCores + *fill* 0x4037f866 0x2 + .text.xTaskCreatePinnedToCore + 0x4037f868 0x94 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa4 (size before relaxing) + 0x4037f868 xTaskCreatePinnedToCore + .text.xTaskCreateStaticPinnedToCore + 0x4037f8fc 0xe4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xf8 (size before relaxing) + 0x4037f8fc xTaskCreateStaticPinnedToCore + .text.prvCreateIdleTasks + 0x4037f9e0 0x8b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8f (size before relaxing) + *fill* 0x4037fa6b 0x1 + .text.vTaskStartScheduler + 0x4037fa6c 0x61 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x74 (size before relaxing) + 0x4037fa6c vTaskStartScheduler + *fill* 0x4037facd 0x3 + .text.xTaskGetCoreID + 0x4037fad0 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13 (size before relaxing) + 0x4037fad0 xTaskGetCoreID + *fill* 0x4037fae0 0x0 + .text.xTaskGetIdleTaskHandleForCore + 0x4037fae0 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + 0x4037fae0 xTaskGetIdleTaskHandleForCore + .text.xTaskGetCurrentTaskHandleForCore + 0x4037fb14 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4037fb14 xTaskGetCurrentTaskHandleForCore + *fill* 0x4037fb3b 0x1 + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x4037fb3c 0x33 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x37 (size before relaxing) + 0x4037fb3c vTaskSetThreadLocalStoragePointerAndDelCallback + *fill* 0x4037fb6f 0x1 + .text.__getreent + 0x4037fb70 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4037fb70 __getreent + *fill* 0x4037fb86 0x2 + .text.vTaskGetSnapshot + 0x4037fb88 0x25 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x29 (size before relaxing) + 0x4037fb88 vTaskGetSnapshot + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x0 + *fill* 0x4037fbad 0x3 + .text.xTimerCreateTimerTask + 0x4037fbb0 0x7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4037fbb0 xTimerCreateTimerTask + *fill* 0x4037fbb7 0x0 + *fill* 0x4037fbb7 0x0 + *fill* 0x4037fbb7 0x0 + *fill* 0x4037fbb7 0x0 + *fill* 0x4037fbb7 0x0 + *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal.*(.literal .literal.* .text .text.*) + *fill* 0x4037fbb7 0x1 + .text.s_cache_hal_init_ctx + 0x4037fbb8 0x66 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x4037fbb8 s_cache_hal_init_ctx + *fill* 0x4037fc1e 0x2 + .text.cache_hal_init + 0x4037fc20 0x98 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x4037fc20 cache_hal_init + .text.cache_hal_disable + 0x4037fcb8 0x3b esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x3f (size before relaxing) + 0x4037fcb8 cache_hal_disable + *fill* 0x4037fcf3 0x1 + .text.cache_hal_enable + 0x4037fcf4 0x6a esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x4037fcf4 cache_hal_enable + *fill* 0x4037fd5e 0x2 + .text.cache_hal_suspend + 0x4037fd60 0x35 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x3f (size before relaxing) + 0x4037fd60 cache_hal_suspend + *fill* 0x4037fd95 0x3 + .text.cache_hal_resume + 0x4037fd98 0x6a esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x4037fd98 cache_hal_resume + *fill* 0x4037fe02 0x2 + .text.cache_hal_is_cache_enabled + 0x4037fe04 0x4e esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x4037fe04 cache_hal_is_cache_enabled + *fill* 0x4037fe52 0x2 + .text.cache_hal_vaddr_to_cache_level_id + 0x4037fe54 0x6e esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x4037fe54 cache_hal_vaddr_to_cache_level_id + *fill* 0x4037fec2 0x2 + .text.cache_hal_invalidate_addr + 0x4037fec4 0x26 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x2a (size before relaxing) + 0x4037fec4 cache_hal_invalidate_addr + *fill* 0x4037feea 0x2 + .text.cache_hal_freeze + 0x4037feec 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x46 (size before relaxing) + 0x4037feec cache_hal_freeze + *fill* 0x4037ff26 0x2 + .text.cache_hal_unfreeze + 0x4037ff28 0x3e esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x4037ff28 cache_hal_unfreeze + *fill* 0x4037ff66 0x2 + .text.cache_hal_get_cache_line_size + 0x4037ff68 0x4b esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x4e (size before relaxing) + 0x4037ff68 cache_hal_get_cache_line_size + *fill* 0x4037ffb3 0x0 + *fill* 0x4037ffb3 0x0 + *fill* 0x4037ffb3 0x0 + *fill* 0x4037ffb3 0x0 + *fill* 0x4037ffb3 0x0 + *fill* 0x4037ffb3 0x0 + *fill* 0x4037ffb3 0x0 + *fill* 0x4037ffb3 0x0 + *fill* 0x4037ffb3 0x0 + *fill* 0x4037ffb3 0x0 + *fill* 0x4037ffb3 0x0 + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_append .text.gdma_ahb_hal_append) + *fill* 0x4037ffb3 0x1 + .text.gdma_ahb_hal_append + 0x4037ffb4 0x45 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x4037ffb4 gdma_ahb_hal_append + *fill* 0x4037fff9 0x0 + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_clear_intr .text.gdma_ahb_hal_clear_intr) + *fill* 0x4037fff9 0x3 + .text.gdma_ahb_hal_clear_intr + 0x4037fffc 0x2a esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x4037fffc gdma_ahb_hal_clear_intr + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_get_eof_desc_addr .text.gdma_ahb_hal_get_eof_desc_addr) + *fill* 0x40380026 0x2 + .text.gdma_ahb_hal_get_eof_desc_addr + 0x40380028 0x46 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x40380028 gdma_ahb_hal_get_eof_desc_addr + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_read_intr_status .text.gdma_ahb_hal_read_intr_status) + *fill* 0x4038006e 0x2 + .text.gdma_ahb_hal_read_intr_status + 0x40380070 0x54 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x40380070 gdma_ahb_hal_read_intr_status + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_reset .text.gdma_ahb_hal_reset) + .text.gdma_ahb_hal_reset + 0x403800c4 0x6c esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x403800c4 gdma_ahb_hal_reset + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_start_with_desc .text.gdma_ahb_hal_start_with_desc) + .text.gdma_ahb_hal_start_with_desc + 0x40380130 0x8c esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x40380130 gdma_ahb_hal_start_with_desc + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_stop .text.gdma_ahb_hal_stop) + .text.gdma_ahb_hal_stop + 0x403801bc 0x45 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x403801bc gdma_ahb_hal_stop + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_append .text.gdma_hal_append) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_clear_intr .text.gdma_hal_clear_intr) + *fill* 0x40380201 0x3 + .text.gdma_hal_clear_intr + 0x40380204 0x12 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + 0x40380204 gdma_hal_clear_intr + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_get_eof_desc_addr .text.gdma_hal_get_eof_desc_addr) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_read_intr_status .text.gdma_hal_read_intr_status) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_reset .text.gdma_hal_reset) + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_start_with_desc .text.gdma_hal_start_with_desc) + *fill* 0x40380216 0x2 + .text.gdma_hal_start_with_desc + 0x40380218 0x12 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + 0x40380218 gdma_hal_start_with_desc + *libhal.a:gdma_hal_top.*(.literal.gdma_hal_stop .text.gdma_hal_stop) + *libhal.a:gpio_hal.*(.literal.gpio_hal_isolate_in_sleep .text.gpio_hal_isolate_in_sleep) + *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) + *fill* 0x4038022a 0x2 + .text.mmu_ll_check_entry_valid + 0x4038022c 0x33 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x4038025f 0x1 + .text.mmu_ll_get_entry_target + 0x40380260 0x31 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x40380291 0x3 + .text.mmu_ll_find_entry_id_based_on_map_value + 0x40380294 0x3c esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40 (size before relaxing) + .text.mmu_ll_entry_id_to_paddr_base + 0x403802d0 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_paddr_to_vaddr + 0x40380300 0x58 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x60 (size before relaxing) + 0x40380300 mmu_hal_paddr_to_vaddr + .text.mmu_hal_check_valid_ext_vaddr_region + 0x40380358 0x57 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40380358 mmu_hal_check_valid_ext_vaddr_region + *fill* 0x403803af 0x1 + .text.mmu_hal_map_region + 0x403803b0 0xbb esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xcb (size before relaxing) + 0x403803b0 mmu_hal_map_region + *fill* 0x4038046b 0x1 + .text.mmu_hal_unmap_region + 0x4038046c 0x65 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x6d (size before relaxing) + 0x4038046c mmu_hal_unmap_region + *fill* 0x403804d1 0x3 + .text.mmu_hal_vaddr_to_paddr + 0x403804d4 0x54 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x64 (size before relaxing) + 0x403804d4 mmu_hal_vaddr_to_paddr + *fill* 0x40380528 0x0 + *fill* 0x40380528 0x0 + *fill* 0x40380528 0x0 + .text.mmu_hal_pages_to_bytes + 0x40380528 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40380528 mmu_hal_pages_to_bytes + *fill* 0x40380530 0x0 + *fill* 0x40380530 0x0 + *fill* 0x40380530 0x0 + *libhal.a:rtc_cntl_hal.*(.literal.rtc_cntl_hal_enable_cpu_retention .text.rtc_cntl_hal_enable_cpu_retention) + *libhal.a:rtc_cntl_hal.*(.literal.rtc_cntl_hal_enable_tagmem_retention .text.rtc_cntl_hal_enable_tagmem_retention) + *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + .text.spi_flash_encrypt_ll_plaintext_save + 0x40380530 0x2e esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x32 (size before relaxing) + *fill* 0x4038055e 0x2 + .text.spi_flash_encryption_hal_enable + 0x40380560 0x21 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x40380560 spi_flash_encryption_hal_enable + *fill* 0x40380581 0x3 + .text.spi_flash_encryption_hal_disable + 0x40380584 0x17 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x40380584 spi_flash_encryption_hal_disable + *fill* 0x4038059b 0x1 + .text.spi_flash_encryption_hal_prepare + 0x4038059c 0x2c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x30 (size before relaxing) + 0x4038059c spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x403805c8 0x25 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x403805c8 spi_flash_encryption_hal_done + *fill* 0x403805ed 0x3 + .text.spi_flash_encryption_hal_destroy + 0x403805f0 0xf esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x403805f0 spi_flash_encryption_hal_destroy + *fill* 0x403805ff 0x0 + *fill* 0x403805ff 0x0 + *fill* 0x403805ff 0x0 + *fill* 0x403805ff 0x0 + *fill* 0x403805ff 0x1 + .text.spi_flash_encryption_hal_check + 0x40380600 0xe esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x40380600 spi_flash_encryption_hal_check + *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) + *fill* 0x4038060e 0x2 + .text.gpspi_flash_ll_set_read_mode + 0x40380610 0x120 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .text.gpspi_flash_ll_set_buffer_data + 0x40380730 0x3d esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + *fill* 0x4038076d 0x3 + .text.gpspi_flash_ll_get_buffer_data + 0x40380770 0x57 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + *fill* 0x403807c7 0x1 + .text.spi_flash_hal_gpspi_device_config + 0x403807c8 0x144 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x403807c8 spi_flash_hal_gpspi_device_config + .text.spi_flash_hal_gpspi_configure_host_io_mode + 0x4038090c 0x186 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x18a (size before relaxing) + 0x4038090c spi_flash_hal_gpspi_configure_host_io_mode + *fill* 0x40380a92 0x2 + .text.spi_flash_hal_gpspi_common_command + 0x40380a94 0x164 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x170 (size before relaxing) + 0x40380a94 spi_flash_hal_gpspi_common_command + .text.spi_flash_hal_gpspi_read + 0x40380bf8 0xc6 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40380bf8 spi_flash_hal_gpspi_read + *fill* 0x40380cbe 0x0 + *fill* 0x40380cbe 0x0 + *fill* 0x40380cbe 0x2 + .text.spi_flash_hal_gpspi_poll_cmd_done + 0x40380cc0 0xf esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40380cc0 spi_flash_hal_gpspi_poll_cmd_done + *fill* 0x40380ccf 0x0 + *fill* 0x40380ccf 0x0 + *fill* 0x40380ccf 0x1 + .text.spi_flash_hal_gpspi_supports_direct_write + 0x40380cd0 0x7 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40380cd0 spi_flash_hal_gpspi_supports_direct_write + *fill* 0x40380cd7 0x1 + .text.spi_flash_hal_gpspi_supports_direct_read + 0x40380cd8 0x7 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40380cd8 spi_flash_hal_gpspi_supports_direct_read + *fill* 0x40380cdf 0x1 + .text.spi_flash_hal_gpspi_check_status + 0x40380ce0 0x17 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x40380ce0 spi_flash_hal_gpspi_check_status + *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x40380cf7 0x1 + .text.spimem_flash_ll_set_read_mode + 0x40380cf8 0x177 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *fill* 0x40380e6f 0x1 + .text.spimem_flash_ll_get_source_freq_mhz + 0x40380e70 0x3d esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *fill* 0x40380ead 0x3 + .text.spimem_flash_ll_program_page + 0x40380eb0 0x5d esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *fill* 0x40380f0d 0x3 + .text.spi_flash_hal_configure_host_io_mode + 0x40380f10 0x1dc esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x1e0 (size before relaxing) + 0x40380f10 spi_flash_hal_configure_host_io_mode + .text.spi_flash_hal_common_command + 0x403810ec 0x1ad esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x403810ec spi_flash_hal_common_command + *fill* 0x40381299 0x3 + .text.spi_flash_hal_read + 0x4038129c 0xcd esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4038129c spi_flash_hal_read + *fill* 0x40381369 0x3 + .text.spi_flash_hal_erase_chip + 0x4038136c 0x26 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4038136c spi_flash_hal_erase_chip + *fill* 0x40381392 0x2 + .text.spi_flash_hal_erase_sector + 0x40381394 0x6e esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40381394 spi_flash_hal_erase_sector + *fill* 0x40381402 0x2 + .text.spi_flash_hal_erase_block + 0x40381404 0x66 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40381404 spi_flash_hal_erase_block + *fill* 0x4038146a 0x2 + .text.spi_flash_hal_program_page + 0x4038146c 0x5e esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x62 (size before relaxing) + 0x4038146c spi_flash_hal_program_page + *fill* 0x403814ca 0x2 + .text.spi_flash_hal_set_write_protect + 0x403814cc 0x3c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x403814cc spi_flash_hal_set_write_protect + .text.spi_flash_hal_setup_read_suspend + 0x40381508 0x74 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40381508 spi_flash_hal_setup_read_suspend + .text.spi_flash_hal_setup_auto_suspend_mode + 0x4038157c 0x1d3 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x1d7 (size before relaxing) + 0x4038157c spi_flash_hal_setup_auto_suspend_mode + *fill* 0x4038174f 0x1 + .text.spi_flash_hal_setup_auto_resume_mode + 0x40381750 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40381750 spi_flash_hal_setup_auto_resume_mode + .text.spi_flash_hal_disable_auto_suspend_mode + 0x40381768 0x86 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40381768 spi_flash_hal_disable_auto_suspend_mode + *fill* 0x403817ee 0x2 + .text.spi_flash_hal_disable_auto_resume_mode + 0x403817f0 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x403817f0 spi_flash_hal_disable_auto_resume_mode + .text.spi_flash_hal_device_config + 0x40381808 0xfd esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x105 (size before relaxing) + 0x40381808 spi_flash_hal_device_config + *fill* 0x40381905 0x0 + *fill* 0x40381905 0x0 + *fill* 0x40381905 0x0 + *fill* 0x40381905 0x3 + .text.spi_flash_hal_poll_cmd_done + 0x40381908 0xf esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40381908 spi_flash_hal_poll_cmd_done + *fill* 0x40381917 0x0 + *fill* 0x40381917 0x0 + *fill* 0x40381917 0x0 + *fill* 0x40381917 0x0 + *fill* 0x40381917 0x0 + *fill* 0x40381917 0x0 + *fill* 0x40381917 0x1 + .text.spi_flash_hal_check_status + 0x40381918 0x20 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40381918 spi_flash_hal_check_status + *fill* 0x40381938 0x0 + *fill* 0x40381938 0x0 + *fill* 0x40381938 0x0 + .text.spi_flash_hal_resume + 0x40381938 0x22 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x40381938 spi_flash_hal_resume + *fill* 0x4038195a 0x2 + .text.spi_flash_hal_suspend + 0x4038195c 0x22 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4038195c spi_flash_hal_suspend + *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:systimer_hal.*(.literal .literal.* .text .text.*) + *fill* 0x4038197e 0x2 + .text.systimer_hal_init + 0x40381980 0x1a esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x40381980 systimer_hal_init + *fill* 0x4038199a 0x2 + .text.systimer_hal_get_counter_value + 0x4038199c 0x4d esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x4038199c systimer_hal_get_counter_value + *fill* 0x403819e9 0x3 + .text.systimer_hal_set_alarm_period + 0x403819ec 0x82 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x86 (size before relaxing) + 0x403819ec systimer_hal_set_alarm_period + *fill* 0x40381a6e 0x2 + .text.systimer_hal_counter_value_advance + 0x40381a70 0x54 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x58 (size before relaxing) + 0x40381a70 systimer_hal_counter_value_advance + .text.systimer_hal_select_alarm_mode + 0x40381ac4 0x3f esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x40381ac4 systimer_hal_select_alarm_mode + *fill* 0x40381b03 0x0 + *fill* 0x40381b03 0x1 + .text.systimer_hal_set_tick_rate_ops + 0x40381b04 0xd esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x40381b04 systimer_hal_set_tick_rate_ops + *fill* 0x40381b11 0x0 + *fill* 0x40381b11 0x3 + .text.systimer_hal_set_alarm_target + 0x40381b14 0x6f esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x40381b14 systimer_hal_set_alarm_target + *fill* 0x40381b83 0x0 + *fill* 0x40381b83 0x1 + .text.systimer_hal_enable_alarm_int + 0x40381b84 0x1e esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x40381b84 systimer_hal_enable_alarm_int + *fill* 0x40381ba2 0x2 + .text.systimer_hal_enable_counter + 0x40381ba4 0x22 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x40381ba4 systimer_hal_enable_counter + *fill* 0x40381bc6 0x0 + *fill* 0x40381bc6 0x2 + .text.systimer_hal_connect_alarm_counter + 0x40381bc8 0x21 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x40381bc8 systimer_hal_connect_alarm_counter + *fill* 0x40381be9 0x3 + .text.systimer_hal_counter_can_stall_by_cpu + 0x40381bec 0x4f esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x40381bec systimer_hal_counter_can_stall_by_cpu + *libhal.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) + *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) + *fill* 0x40381c3b 0x1 + .text.assert_valid_block + 0x40381c3c 0x28 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x30 (size before relaxing) + *fill* 0x40381c64 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 + 0x40381c64 0x5e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x6e (size before relaxing) + 0x40381c64 multi_heap_aligned_alloc_impl_offs + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) + *fill* 0x40381cc2 0x2 + .text.multi_heap_aligned_alloc_offs + 0x40381cc4 0x15 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x40381cc4 multi_heap_aligned_alloc_offs + *fill* 0x40381cd9 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_free_impl .text.multi_heap_free_impl) + *fill* 0x40381cd9 0x3 + .text.multi_heap_free_impl + 0x40381cdc 0x46 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x56 (size before relaxing) + 0x40381cdc multi_heap_free_impl + 0x40381cdc multi_heap_aligned_free + 0x40381cdc multi_heap_free + *fill* 0x40381d22 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) + *fill* 0x40381d22 0x2 + .text.multi_heap_get_allocated_size_impl + 0x40381d24 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + 0x40381d24 multi_heap_get_allocated_size_impl + 0x40381d24 multi_heap_get_allocated_size + *fill* 0x40381d30 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 + 0x40381d30 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x28 (size before relaxing) + 0x40381d30 multi_heap_internal_lock + *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock) + .text.multi_heap_internal_unlock + 0x40381d54 0x1f esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x26 (size before relaxing) + 0x40381d54 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* 0x40381d73 0x1 + .text.multi_heap_malloc_impl + 0x40381d74 0x50 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x60 (size before relaxing) + 0x40381d74 multi_heap_malloc + 0x40381d74 multi_heap_malloc_impl + *fill* 0x40381dc4 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl) + .text.multi_heap_realloc_impl + 0x40381dc4 0x6f esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x83 (size before relaxing) + 0x40381dc4 multi_heap_realloc + 0x40381dc4 multi_heap_realloc_impl + *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock) + *fill* 0x40381e33 0x1 + .text.multi_heap_set_lock + 0x40381e34 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x40381e34 multi_heap_set_lock + *libheap.a:tlsf.*(.literal.tlsf_alloc_overhead .text.tlsf_alloc_overhead) + *fill* 0x40381e3b 0x1 + .text.tlsf_alloc_overhead + 0x40381e3c 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x40381e3c tlsf_alloc_overhead + *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size) + *fill* 0x40381e43 0x1 + .text.tlsf_block_size + 0x40381e44 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x40381e44 tlsf_block_size + *libheap.a:tlsf.*(.literal.tlsf_free .text.tlsf_free) + *fill* 0x40381e5a 0x2 + .text.tlsf_free + 0x40381e5c 0x3e2 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x406 (size before relaxing) + 0x40381e5c tlsf_free + *fill* 0x4038223e 0x0 + *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool) + *fill* 0x4038223e 0x2 + .text.tlsf_get_pool + 0x40382240 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + 0x40382240 tlsf_get_pool + *fill* 0x4038224c 0x0 + *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc) + .text.tlsf_malloc + 0x4038224c 0x3ce esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3f6 (size before relaxing) + 0x4038224c tlsf_malloc + *libheap.a:tlsf.*(.literal.tlsf_memalign .text.tlsf_memalign) + *libheap.a:tlsf.*(.literal.tlsf_memalign_offs .text.tlsf_memalign_offs) + *fill* 0x4038261a 0x2 + .text.tlsf_memalign_offs + 0x4038261c 0x64f esp-idf/heap/libheap.a(tlsf.c.obj) + 0x68f (size before relaxing) + 0x4038261c tlsf_memalign_offs + *fill* 0x40382c6b 0x0 + *libheap.a:tlsf.*(.literal.tlsf_realloc .text.tlsf_realloc) + *fill* 0x40382c6b 0x1 + .text.tlsf_realloc + 0x40382c6c 0x53a esp-idf/heap/libheap.a(tlsf.c.obj) + 0x56e (size before relaxing) + 0x40382c6c tlsf_realloc + *fill* 0x403831a6 0x0 + *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size) + *fill* 0x403831a6 0x2 + .text.tlsf_size + 0x403831a8 0xe esp-idf/heap/libheap.a(tlsf.c.obj) + 0x403831a8 tlsf_size + *liblog.a:log.*(.literal .literal.* .text .text.*) + *fill* 0x403831b6 0x2 + .text.esp_log_va + 0x403831b8 0x2c esp-idf/log/liblog.a(log.c.obj) + 0x403831b8 esp_log_va + .text.esp_log 0x403831e4 0x40 esp-idf/log/liblog.a(log.c.obj) + 0x403831e4 esp_log + *fill* 0x40383224 0x0 + *liblog.a:log_format_text.*(.literal .literal.* .text .text.*) + *liblog.a:log_lock.*(.literal .literal.* .text .text.*) + .text.esp_log_impl_lock + 0x40383224 0x27 esp-idf/log/liblog.a(log_lock.c.obj) + 0x32 (size before relaxing) + 0x40383224 esp_log_impl_lock + *fill* 0x4038324b 0x1 + .text.esp_log_impl_lock_timeout + 0x4038324c 0x38 esp-idf/log/liblog.a(log_lock.c.obj) + 0x40 (size before relaxing) + 0x4038324c esp_log_impl_lock_timeout + .text.esp_log_impl_unlock + 0x40383284 0x1b esp-idf/log/liblog.a(log_lock.c.obj) + 0x1f (size before relaxing) + 0x40383284 esp_log_impl_unlock + *fill* 0x4038329f 0x0 + *liblog.a:log_print.*(.literal .literal.* .text .text.*) + *liblog.a:log_timestamp.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *fill* 0x4038329f 0x1 + .text.esp_log_early_timestamp + 0x403832a0 0x1d esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x403832a0 esp_log_early_timestamp + *fill* 0x403832bd 0x0 + *liblog.a:log_timestamp.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *fill* 0x403832bd 0x3 + .text.esp_log_timestamp + 0x403832c0 0x48 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x57 (size before relaxing) + 0x403832c0 esp_log_timestamp + *fill* 0x40383308 0x0 + *liblog.a:log_timestamp_common.*(.literal .literal.* .text .text.*) + *liblog.a:log_write.*(.literal.esp_log_write .text.esp_log_write) + *fill* 0x40383308 0x0 + .text.esp_log_write + 0x40383308 0x22 esp-idf/log/liblog.a(log_write.c.obj) + 0x26 (size before relaxing) + 0x40383308 esp_log_write + *fill* 0x4038332a 0x0 + *liblog.a:log_write.*(.literal.esp_log_writev .text.esp_log_writev) + *fill* 0x4038332a 0x2 + .text.esp_log_writev + 0x4038332c 0x1a esp-idf/log/liblog.a(log_write.c.obj) + 0x1e (size before relaxing) + 0x4038332c esp_log_writev + *fill* 0x40383346 0x0 + *liblog.a:tag_log_level.*(.literal.esp_log_level_get_timeout .text.esp_log_level_get_timeout) + *fill* 0x40383346 0x2 + .text.esp_log_level_get_timeout + 0x40383348 0x11 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x40383348 esp_log_level_get_timeout + *fill* 0x40383359 0x0 + *liblog.a:util.*(.literal .literal.* .text .text.*) + *fill* 0x40383359 0x3 + .text.esp_log_util_set_cache_enabled_cb + 0x4038335c 0xa esp-idf/log/liblog.a(util.c.obj) + 0x4038335c esp_log_util_set_cache_enabled_cb + *fill* 0x40383366 0x0 + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *fill* 0x40383366 0x2 + .wifi0iram.20 0x40383368 0x49c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x4bc (size before relaxing) + 0x403833b4 ieee80211_encap_esfbuf + .wifi0iram.8 0x40383804 0x27a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x296 (size before relaxing) + 0x40383858 ieee80211_output_process + *fill* 0x40383a7e 0x2 + .wifi0iram.54 0x40383a80 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x40383a84 wifi_softap_cur_max_ap_bss_num + *fill* 0x40383a96 0x0 + *fill* 0x40383a96 0x0 + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *fill* 0x40383a96 0x2 + .wifirxiram.46 + 0x40383a98 0x230 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x244 (size before relaxing) + 0x40383ad0 ieee80211_ampdu_reorder + .wifirxiram.55 + 0x40383cc8 0x52e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x566 (size before relaxing) + 0x40383d14 sta_input + *fill* 0x403841f6 0x2 + .wifirxiram.61 + 0x403841f8 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x20 (size before relaxing) + 0x403841f8 sta_rx_cb + *fill* 0x40384210 0x0 + *fill* 0x40384210 0x0 + *libnet80211.a:(.wifislprxiram .wifislprxiram.*) + .wifislprxiram.112 + 0x40384210 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x52 (size before relaxing) + 0x40384210 sta_reset_beacon_timeout + *libnewlib.a:abort.*(.literal .literal.* .text .text.*) + *fill* 0x4038425a 0x2 + .text.abort 0x4038425c 0x8c esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x90 (size before relaxing) + 0x4038425c abort + *fill* 0x403842e8 0x0 + *libnewlib.a:assert.*(.literal .literal.* .text .text.*) + .text.ra_to_str + 0x403842e8 0x2f esp-idf/newlib/libnewlib.a(assert.c.obj) + *fill* 0x40384317 0x1 + .text.__assert_func + 0x40384318 0xe8 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0xf8 (size before relaxing) + 0x40384318 __assert_func + *fill* 0x40384400 0x0 + .text.esp_libc_include_assert_impl + 0x40384400 0x5 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x40384400 esp_libc_include_assert_impl + *libnewlib.a:esp_time_impl.*(.literal.esp_set_time_from_rtc .text.esp_set_time_from_rtc) + *fill* 0x40384405 0x3 + .text.esp_set_time_from_rtc + 0x40384408 0x24 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x28 (size before relaxing) + 0x40384408 esp_set_time_from_rtc + *fill* 0x4038442c 0x0 + *libnewlib.a:esp_time_impl.*(.literal.esp_time_impl_get_boot_time .text.esp_time_impl_get_boot_time) + .text.esp_time_impl_get_boot_time + 0x4038442c 0x23 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x4038442c esp_time_impl_get_boot_time + *libnewlib.a:esp_time_impl.*(.literal.esp_time_impl_set_boot_time .text.esp_time_impl_set_boot_time) + *fill* 0x4038444f 0x1 + .text.esp_time_impl_set_boot_time + 0x40384450 0x23 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x40384450 esp_time_impl_set_boot_time + *fill* 0x40384473 0x0 + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + *fill* 0x40384473 0x1 + .text.malloc 0x40384474 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x40384474 valloc + 0x40384474 malloc + 0x40384474 pvalloc + .text.realloc 0x40384480 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40384480 realloc + *fill* 0x40384491 0x3 + .text.free 0x40384494 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x40384494 cfree + 0x40384494 free + *fill* 0x4038449e 0x2 + .text.calloc 0x403844a0 0x2c esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x30 (size before relaxing) + 0x403844a0 calloc + .text._free_r 0x403844cc 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x403844cc _free_r + *fill* 0x403844d6 0x2 + .text._realloc_r + 0x403844d8 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x403844d8 _realloc_r + *fill* 0x403844e9 0x3 + .text._malloc_r + 0x403844ec 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x403844ec _malloc_r + .text._calloc_r + 0x403844f8 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x403844f8 _calloc_r + *fill* 0x40384509 0x0 + *fill* 0x40384509 0x0 + *fill* 0x40384509 0x0 + *fill* 0x40384509 0x0 + *fill* 0x40384509 0x0 + *fill* 0x40384509 0x3 + .text.esp_libc_include_heap_impl + 0x4038450c 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4038450c esp_libc_include_heap_impl + *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) + *fill* 0x40384511 0x3 + .text.__atomic_fetch_add_8 + 0x40384514 0x58 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + 0x67 (size before relaxing) + 0x40384514 __atomic_fetch_add_8 + *fill* 0x4038456c 0x0 + .text.__atomic_fetch_sub_8 + 0x4038456c 0x5c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + 0x6b (size before relaxing) + 0x4038456c __atomic_fetch_sub_8 + *fill* 0x403845c8 0x0 + .text.__atomic_fetch_or_8 + 0x403845c8 0x54 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + 0x63 (size before relaxing) + 0x403845c8 __atomic_fetch_or_8 + *fill* 0x4038461c 0x0 + .text.__atomic_load_8 + 0x4038461c 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + 0x4f (size before relaxing) + 0x4038461c __atomic_load_8 + *fill* 0x4038465c 0x0 + .text.__atomic_store_8 + 0x4038465c 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + 0x57 (size before relaxing) + 0x4038465c __atomic_store_8 + *fill* 0x403846a4 0x0 + *fill* 0x403846a4 0x0 + *fill* 0x403846a4 0x0 + *fill* 0x403846a4 0x0 + *fill* 0x403846a4 0x0 + *libpp.a:(.wifi0iram .wifi0iram.*) + *fill* 0x403846a4 0x0 + .wifi0iram.21 0x403846a4 0x13a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x142 (size before relaxing) + 0x403846b0 pp_coex_tx_request + *fill* 0x403847de 0x2 + .wifi0iram.64 0x403847e0 0x14a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x156 (size before relaxing) + 0x403847f4 ppMapTxQueue + *fill* 0x4038492a 0x2 + .wifi0iram.67 0x4038492c 0x129 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x131 (size before relaxing) + 0x40384940 ppProcTxSecFrame + *fill* 0x40384a55 0x3 + .wifi0iram.40 0x40384a58 0x2a5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x2c5 (size before relaxing) + 0x40384a78 ppCalTxAMPDULength + *fill* 0x40384cfd 0x3 + .wifi0iram.22 0x40384d00 0x17a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x192 (size before relaxing) + 0x40384d2c ppProcessTxQ + *fill* 0x40384e7a 0x2 + .wifi0iram.8 0x40384e7c 0x204 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x220 (size before relaxing) + 0x40384ed4 ppTask + .wifi0iram.73 0x40385080 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x88 (size before relaxing) + 0x40385088 ppProcessLifeTime + .wifi0iram.40 0x403850f8 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x56 (size before relaxing) + 0x403850f8 lmacMSDUAged + *fill* 0x40385142 0x2 + .wifi0iram.56 0x40385144 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x4e (size before relaxing) + 0x40385144 lmacAdjustTimestamp + *fill* 0x40385186 0x2 + .wifi0iram.57 0x40385188 0x20b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x23b (size before relaxing) + 0x403851c4 lmacTxFrame + *fill* 0x40385393 0x1 + .wifi0iram.24 0x40385394 0x29a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x2da (size before relaxing) + 0x403853c8 lmacEndFrameExchangeSequence + *fill* 0x4038562e 0x2 + .wifi0iram.7 0x40385630 0x77 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x7f (size before relaxing) + 0x40385638 rcUpdateTxDone + *fill* 0x403856a7 0x1 + .wifi0iram.9 0x403856a8 0x2aa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x2c2 (size before relaxing) + 0x403856d8 rcUpdateTxDoneAmpdu2 + *fill* 0x40385952 0x2 + .wifi0iram.10 0x40385954 0xd8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0xdc (size before relaxing) + 0x40385970 rcGetSched + .wifi0iram.3 0x40385a2c 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x40385a30 hal_mac_tx_config_timeout + *fill* 0x40385a5b 0x1 + .wifi0iram.4 0x40385a5c 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x62 (size before relaxing) + 0x40385a64 hal_mac_tx_config_edca + *fill* 0x40385aba 0x2 + .wifi0iram.5 0x40385abc 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x40385ac0 hal_mac_txq_enable + *fill* 0x40385ae3 0x1 + .wifi0iram.8 0x40385ae4 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x11 (size before relaxing) + 0x40385ae4 hal_random + *fill* 0x40385af1 0x3 + .wifi0iram.19 0x40385af4 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x4a (size before relaxing) + 0x40385afc hal_mac_deinit + *fill* 0x40385b36 0x2 + .wifi0iram.2 0x40385b38 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x40385b3c hal_mac_tx_is_cbw40 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *fill* 0x40385b5e 0x0 + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *libpp.a:(.wifirxiram .wifirxiram.*) + *fill* 0x40385b5e 0x2 + .wifirxiram.50 + 0x40385b60 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x80 (size before relaxing) + 0x40385b74 pm_rx_data_process + .wifirxiram.25 + 0x40385bd8 0x3b2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x3f2 (size before relaxing) + 0x40385c08 ppRxFragmentProc + *fill* 0x40385f8a 0x2 + .wifirxiram.8 0x40385f8c 0xef C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x103 (size before relaxing) + 0x40385f98 esf_buf_recycle + *fill* 0x4038607b 0x1 + .wifirxiram.2 0x4038607c 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x40386080 hal_clear_rx_beacon_pti + *fill* 0x40386097 0x1 + .wifirxiram.3 0x40386098 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + 0x28 (size before relaxing) + 0x4038609c hal_mac_rx_get_last_dscr + .wifirxiram.4 0x403860bc 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + 0x403860c0 hal_mac_rx_is_dscr_reload + .wifirxiram.5 0x403860d0 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + 0x1b (size before relaxing) + 0x403860d0 hal_mac_rx_set_dscr_reload + *fill* 0x403860e7 0x1 + .wifirxiram.51 + 0x403860e8 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x403860e8 pm_hmac_rx_data_process + *fill* 0x403860ed 0x0 + *fill* 0x403860ed 0x3 + .wifirxiram.27 + 0x403860f0 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x403860f0 is_fragmented_pkt + *fill* 0x40386116 0x0 + *fill* 0x40386116 0x0 + *fill* 0x40386116 0x0 + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *fill* 0x40386116 0x2 + .wifislprxiram.24 + 0x40386118 0xa5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xb1 (size before relaxing) + 0x40386124 pm_get_tbtt_count + *fill* 0x403861bd 0x3 + .wifislprxiram.25 + 0x403861c0 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x20 (size before relaxing) + 0x403861c0 pm_save_tbtt_info + .wifislprxiram.26 + 0x403861dc 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x29 (size before relaxing) + 0x403861e0 pm_beacon_miss_exceeded_wakeup_disabled + *fill* 0x40386201 0x3 + .wifislprxiram.27 + 0x40386204 0x59 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x5d (size before relaxing) + 0x40386208 pm_beacon_monitor_tbtt_allowed + *fill* 0x4038625d 0x3 + .wifislprxiram.28 + 0x40386260 0xda C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xe6 (size before relaxing) + 0x40386274 pm_beacon_monitor_tbtt_start + *fill* 0x4038633a 0x2 + .wifislprxiram.29 + 0x4038633c 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x40386348 pm_beacon_monitor_tbtt_stop + *fill* 0x40386366 0x2 + .wifislprxiram.31 + 0x40386368 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x3d (size before relaxing) + 0x40386368 pm_disable_beacon_monitor_timer + *fill* 0x4038639d 0x3 + .wifislprxiram.32 + 0x403863a0 0x147 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x15b (size before relaxing) + 0x403863b8 pm_dream + *fill* 0x403864e7 0x1 + .wifislprxiram.33 + 0x403864e8 0x1b6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x1e2 (size before relaxing) + 0x403864f4 pm_sleep + *fill* 0x4038669e 0x2 + .wifislprxiram.36 + 0x403866a0 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x52 (size before relaxing) + 0x403866a0 pm_check_state + *fill* 0x403866e2 0x2 + .wifislprxiram.41 + 0x403866e4 0xae C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xc2 (size before relaxing) + 0x403866e8 pm_keep_alive + *fill* 0x40386792 0x2 + .wifislprxiram.42 + 0x40386794 0x1b2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x1d6 (size before relaxing) + 0x403867ac pm_process_tim + *fill* 0x40386946 0x2 + .wifislprxiram.48 + 0x40386948 0xa0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xbc (size before relaxing) + 0x40386948 pm_rx_beacon_process + .wifislprxiram.5 + 0x403869e8 0xca C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xda (size before relaxing) + 0x403869f4 pm_scale_listen_interval + *fill* 0x40386ab2 0x2 + .wifislprxiram.9 + 0x40386ab4 0x222 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x262 (size before relaxing) + 0x40386adc pm_parse_beacon + *fill* 0x40386cd6 0x2 + .wifislprxiram.55 + 0x40386cd8 0x117 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x14b (size before relaxing) + 0x40386cec pm_on_beacon_rx + *fill* 0x40386def 0x1 + .wifislprxiram.65 + 0x40386df0 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x42 (size before relaxing) + 0x40386df4 pm_set_beacon_duration + *fill* 0x40386e26 0x2 + .wifislprxiram.30 + 0x40386e28 0x126 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x142 (size before relaxing) + 0x40386e2c pm_enable_beacon_monitor_timer + *fill* 0x40386f4e 0x2 + .wifislprxiram.47 + 0x40386f50 0x14d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x181 (size before relaxing) + 0x40386f70 pm_tbtt_process + *fill* 0x4038709d 0x3 + .wifislprxiram.44 + 0x403870a0 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x12 (size before relaxing) + 0x403870a0 pm_beacon_monitor_tbtt_timeout_process + *fill* 0x403870ae 0x2 + .wifislprxiram.53 + 0x403870b0 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x14 (size before relaxing) + 0x403870b0 pm_on_tsf_timer + .wifislprxiram.43 + 0x403870c0 0x6e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x7e (size before relaxing) + 0x403870c4 pm_beacon_monitor_timeout_process + *fill* 0x4038712e 0x2 + .wifislprxiram.10 + 0x40387130 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40387130 ic_mac_init + *fill* 0x4038713d 0x3 + .wifislprxiram.11 + 0x40387140 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40387140 ic_mac_deinit + *fill* 0x4038714d 0x3 + .wifislprxiram.23 + 0x40387150 0xed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xf9 (size before relaxing) + 0x40387160 ppRxProtoProc + *fill* 0x4038723d 0x3 + .wifislprxiram.28 + 0x40387240 0x10d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x12d (size before relaxing) + 0x4038724c ppRxPkt + *fill* 0x4038734d 0x3 + .wifislprxiram.6 + 0x40387350 0x12a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x142 (size before relaxing) + 0x4038735c esf_buf_alloc + *fill* 0x4038747a 0x2 + .wifislprxiram.4 + 0x4038747c 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + 0x24 (size before relaxing) + 0x4038747c pm_coex_schm_overall_period_get + .wifislprxiram.5 + 0x4038749c 0x87 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + 0x97 (size before relaxing) + 0x403874a4 pm_coex_pwr_update + *fill* 0x40387523 0x1 + .wifislprxiram.22 + 0x40387524 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x40387528 wDev_record_ftm_data + .wifislprxiram.46 + 0x4038754c 0x138 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x174 (size before relaxing) + 0x40387564 wDev_AppendRxBlocks + .wifislprxiram.17 + 0x40387684 0x23e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x276 (size before relaxing) + 0x40387694 wDev_IndicateFrame + *fill* 0x403878c2 0x2 + .wifislprxiram.23 + 0x403878c4 0x314 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x348 (size before relaxing) + 0x403878e0 wDev_ProcessRxSucData + .wifislprxiram.11 + 0x40387bd8 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x11 (size before relaxing) + 0x40387bd8 hal_mac_rx_read_rxdscrnext + *fill* 0x40387be5 0x3 + .wifislprxiram.12 + 0x40387be8 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x11 (size before relaxing) + 0x40387be8 hal_mac_rx_set_base + *fill* 0x40387bf5 0x3 + .wifislprxiram.18 + 0x40387bf8 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x3b (size before relaxing) + 0x40387bfc hal_mac_init + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *fill* 0x40387c2f 0x0 + *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* 0x40387c2f 0x1 + .text.check_chip_pointer_default + 0x40387c30 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x40387c52 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.detect_spi_flash_chip .text.detect_spi_flash_chip) + *fill* 0x40387c52 0x2 + .text.detect_spi_flash_chip + 0x40387c54 0x8e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x92 (size before relaxing) + *fill* 0x40387ce2 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_chip_driver_initialized .text.esp_flash_chip_driver_initialized) + *fill* 0x40387ce2 0x2 + .text.esp_flash_chip_driver_initialized + 0x40387ce4 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40387ce4 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 + 0x40387cf4 0x216 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x21e (size before relaxing) + 0x40387cf4 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* 0x40387f0a 0x2 + .text.esp_flash_get_physical_size + 0x40387f0c 0x6e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40387f0c esp_flash_get_physical_size + *fill* 0x40387f7a 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* 0x40387f7a 0x2 + .text.esp_flash_init_main + 0x40387f7c 0x16e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x186 (size before relaxing) + 0x40387f7c esp_flash_init_main + *fill* 0x403880ea 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read .text.esp_flash_read) + *fill* 0x403880ea 0x2 + .text.esp_flash_read + 0x403880ec 0x12e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x403880ec esp_flash_read + *fill* 0x4038821a 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read_encrypted .text.esp_flash_read_encrypted) + *fill* 0x4038821a 0x2 + .text.esp_flash_read_encrypted + 0x4038821c 0x6a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4038821c esp_flash_read_encrypted + *fill* 0x40388286 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* 0x40388286 0x2 + .text.esp_flash_write + 0x40388288 0x18b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x18f (size before relaxing) + 0x40388288 esp_flash_write + *fill* 0x40388413 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_write_encrypted .text.esp_flash_write_encrypted) + *fill* 0x40388413 0x1 + .text.esp_flash_write_encrypted + 0x40388414 0x236 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x23a (size before relaxing) + 0x40388414 esp_flash_write_encrypted + *fill* 0x4038864a 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.flash_end_flush_cache .text.flash_end_flush_cache) + *fill* 0x4038864a 0x2 + .text.flash_end_flush_cache + 0x4038864c 0x46 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x40388692 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* 0x40388692 0x2 + .text.spiflash_end_default + 0x40388694 0x1a 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* 0x403886ae 0x2 + .text.spiflash_start_default + 0x403886b0 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + .text.spi_flash_needs_reset_check + 0x403886d4 0x18 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x403886d4 spi_flash_needs_reset_check + .text.spi_flash_set_erasing_flag + 0x403886ec 0xb esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x403886ec spi_flash_set_erasing_flag + *fill* 0x403886f7 0x1 + .text.spi_flash_brownout_need_reset + 0x403886f8 0x21 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x403886f8 spi_flash_brownout_need_reset + *fill* 0x40388719 0x0 + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + *fill* 0x40388719 0x3 + .text.memspi_host_read_status_hs + 0x4038871c 0x37 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4038871c memspi_host_read_status_hs + *fill* 0x40388753 0x1 + .text.memspi_host_erase_chip + 0x40388754 0x23 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40388754 memspi_host_erase_chip + *fill* 0x40388777 0x1 + .text.memspi_host_set_write_protect + 0x40388778 0x2d esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40388778 memspi_host_set_write_protect + *fill* 0x403887a5 0x3 + .text.memspi_host_read_id_hs + 0x403887a8 0x82 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x86 (size before relaxing) + 0x403887a8 memspi_host_read_id_hs + *fill* 0x4038882a 0x2 + .text.memspi_host_flush_cache + 0x4038882c 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4038882c memspi_host_flush_cache + *fill* 0x40388845 0x3 + .text.memspi_host_erase_sector + 0x40388848 0x3e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x42 (size before relaxing) + 0x40388848 memspi_host_erase_sector + *fill* 0x40388886 0x2 + .text.memspi_host_erase_block + 0x40388888 0x3e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x42 (size before relaxing) + 0x40388888 memspi_host_erase_block + *fill* 0x403888c6 0x2 + .text.memspi_host_program_page + 0x403888c8 0x44 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x47 (size before relaxing) + 0x403888c8 memspi_host_program_page + *fill* 0x4038890c 0x0 + .text.memspi_host_init_pointers + 0x4038890c 0x6a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4038890c memspi_host_init_pointers + *fill* 0x40388976 0x0 + *fill* 0x40388976 0x0 + *fill* 0x40388976 0x0 + *fill* 0x40388976 0x2 + .text.memspi_host_write_data_slicer + 0x40388978 0x33 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40388978 memspi_host_write_data_slicer + *fill* 0x403889ab 0x1 + .text.memspi_host_read_data_slicer + 0x403889ac 0x2a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x403889ac memspi_host_read_data_slicer + *fill* 0x403889d6 0x0 + *fill* 0x403889d6 0x0 + *fill* 0x403889d6 0x0 + *fill* 0x403889d6 0x0 + *fill* 0x403889d6 0x0 + *fill* 0x403889d6 0x0 + *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + *fill* 0x403889d6 0x2 + .text.spi_flash_chip_boya_probe + 0x403889d8 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x403889d8 spi_flash_chip_boya_probe + *fill* 0x40388a01 0x0 + *fill* 0x40388a01 0x3 + .text.spi_flash_chip_boya_get_caps + 0x40388a04 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x40388a04 spi_flash_chip_boya_get_caps + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *fill* 0x40388a0b 0x1 + .text.spi_flash_chip_gd_detect_size + 0x40388a0c 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40388a0c spi_flash_chip_gd_detect_size + *fill* 0x40388a41 0x3 + .text.spi_flash_chip_gd_probe + 0x40388a44 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40388a44 spi_flash_chip_gd_probe + *fill* 0x40388a85 0x3 + .text.spi_flash_chip_gd_suspend_cmd_conf + 0x40388a88 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40388a88 spi_flash_chip_gd_suspend_cmd_conf + *fill* 0x40388abe 0x2 + .text.spi_flash_chip_gd_set_io_mode + 0x40388ac0 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x44 (size before relaxing) + 0x40388ac0 spi_flash_chip_gd_set_io_mode + .text.spi_flash_chip_gd_get_io_mode + 0x40388b00 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40388b00 spi_flash_chip_gd_get_io_mode + *fill* 0x40388b1e 0x2 + .text.spi_flash_chip_gd_get_caps + 0x40388b20 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40388b20 spi_flash_chip_gd_get_caps + *fill* 0x40388b39 0x0 + *fill* 0x40388b39 0x0 + *fill* 0x40388b39 0x0 + *fill* 0x40388b39 0x0 + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + *fill* 0x40388b39 0x3 + .text.spi_flash_chip_generic_detect_size + 0x40388b3c 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40388b3c spi_flash_chip_generic_detect_size + *fill* 0x40388b7d 0x3 + .text.spi_flash_command_generic_program_4B + 0x40388b80 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_command_generic_erase_sector_4B + 0x40388bb4 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_command_generic_erase_block_4B + 0x40388be4 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_chip_generic_reset + 0x40388c14 0x55 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40388c14 spi_flash_chip_generic_reset + *fill* 0x40388c69 0x3 + .text.spi_flash_chip_generic_erase_sector + 0x40388c6c 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xa6 (size before relaxing) + 0x40388c6c spi_flash_chip_generic_erase_sector + *fill* 0x40388d0e 0x2 + .text.spi_flash_chip_generic_erase_block + 0x40388d10 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40388d10 spi_flash_chip_generic_erase_block + *fill* 0x40388db2 0x2 + .text.spi_flash_chip_generic_page_program + 0x40388db4 0x86 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8a (size before relaxing) + 0x40388db4 spi_flash_chip_generic_page_program + *fill* 0x40388e3a 0x2 + .text.spi_flash_chip_generic_config_host_io_mode + 0x40388e3c 0x159 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40388e3c spi_flash_chip_generic_config_host_io_mode + *fill* 0x40388f95 0x3 + .text.spi_flash_chip_generic_write_encrypted + 0x40388f98 0xce esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40388f98 spi_flash_chip_generic_write_encrypted + *fill* 0x40389066 0x2 + .text.spi_flash_chip_generic_get_caps + 0x40389068 0x6d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40389068 spi_flash_chip_generic_get_caps + *fill* 0x403890d5 0x3 + .text.spi_flash_common_read_qe_sr + 0x403890d8 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x4038910a 0x2 + .text.spi_flash_common_write_qe_sr + 0x4038910c 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x4038913a 0x2 + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x4038913c 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3c (size before relaxing) + 0x4038913c spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x40389174 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40389174 spi_flash_common_write_status_16b_wrsr + *fill* 0x40389189 0x3 + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x4038918c 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4038918c spi_flash_chip_generic_suspend_cmd_conf + *fill* 0x403891c2 0x2 + .text.spi_flash_chip_generic_read + 0x403891c4 0xbe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc2 (size before relaxing) + 0x403891c4 spi_flash_chip_generic_read + *fill* 0x40389282 0x2 + .text.spi_flash_chip_generic_write + 0x40389284 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40389284 spi_flash_chip_generic_write + .text.spi_flash_chip_generic_get_write_protect + 0x40389324 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3b (size before relaxing) + 0x40389324 spi_flash_chip_generic_get_write_protect + *fill* 0x4038935c 0x0 + .text.spi_flash_chip_generic_yield + 0x4038935c 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4038935c spi_flash_chip_generic_yield + *fill* 0x403893a2 0x2 + .text.spi_flash_chip_generic_read_unique_id + 0x403893a4 0x80 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x84 (size before relaxing) + 0x403893a4 spi_flash_chip_generic_read_unique_id + .text.spi_flash_common_read_status_8b_rdsr2 + 0x40389424 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40389424 spi_flash_common_read_status_8b_rdsr2 + *fill* 0x40389439 0x3 + .text.spi_flash_chip_generic_get_io_mode + 0x4038943c 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4038943c spi_flash_chip_generic_get_io_mode + *fill* 0x4038945a 0x2 + .text.spi_flash_common_read_status_8b_rdsr + 0x4038945c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4038945c spi_flash_common_read_status_8b_rdsr + *fill* 0x40389471 0x3 + .text.spi_flash_common_write_status_8b_wrsr + 0x40389474 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40389474 spi_flash_common_write_status_8b_wrsr + *fill* 0x40389489 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x4038948c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4038948c spi_flash_common_write_status_8b_wrsr2 + *fill* 0x403894a1 0x3 + .text.spi_flash_chip_generic_set_io_mode + 0x403894a4 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x403894a4 spi_flash_chip_generic_set_io_mode + *fill* 0x403894bc 0x0 + *fill* 0x403894bc 0x0 + .text.spi_flash_chip_generic_probe + 0x403894bc 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x403894bc spi_flash_chip_generic_probe + *fill* 0x403894c3 0x0 + *fill* 0x403894c3 0x1 + .text.spi_flash_chip_generic_erase_chip + 0x403894c4 0x8e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x403894c4 spi_flash_chip_generic_erase_chip + *fill* 0x40389552 0x0 + *fill* 0x40389552 0x0 + *fill* 0x40389552 0x0 + *fill* 0x40389552 0x2 + .text.spi_flash_chip_generic_set_write_protect + 0x40389554 0x4f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40389554 spi_flash_chip_generic_set_write_protect + *fill* 0x403895a3 0x1 + .text.spi_flash_chip_generic_read_reg + 0x403895a4 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x403895a4 spi_flash_chip_generic_read_reg + *fill* 0x403895b6 0x2 + .text.spi_flash_chip_generic_wait_idle + 0x403895b8 0x96 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x403895b8 spi_flash_chip_generic_wait_idle + *fill* 0x4038964e 0x0 + *fill* 0x4038964e 0x0 + *fill* 0x4038964e 0x0 + *fill* 0x4038964e 0x0 + *fill* 0x4038964e 0x0 + *fill* 0x4038964e 0x0 + *fill* 0x4038964e 0x0 + *fill* 0x4038964e 0x0 + *fill* 0x4038964e 0x0 + *fill* 0x4038964e 0x0 + *fill* 0x4038964e 0x2 + .text.spi_flash_chip_generic_read_unique_id_none + 0x40389650 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40389650 spi_flash_chip_generic_read_unique_id_none + *fill* 0x40389658 0x0 + *fill* 0x40389658 0x0 + *fill* 0x40389658 0x0 + *fill* 0x40389658 0x0 + *fill* 0x40389658 0x0 + .text.spi_flash_common_set_io_mode + 0x40389658 0x9a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40389658 spi_flash_common_set_io_mode + *fill* 0x403896f2 0x0 + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + *fill* 0x403896f2 0x2 + .text.spi_flash_chip_issi_probe + 0x403896f4 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x403896f4 spi_flash_chip_issi_probe + *fill* 0x4038971d 0x3 + .text.spi_flash_chip_issi_set_io_mode + 0x40389720 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x40389720 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x40389734 0x1f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x40389734 spi_flash_chip_issi_get_io_mode + *fill* 0x40389753 0x1 + .text.spi_flash_chip_issi_get_caps + 0x40389754 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x40389754 spi_flash_chip_issi_get_caps + *fill* 0x4038975b 0x0 + *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *fill* 0x4038975b 0x1 + .text.spi_flash_chip_mxic_detect_size + 0x4038975c 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x4038975c spi_flash_chip_mxic_detect_size + *fill* 0x4038979d 0x3 + .text.spi_flash_chip_mxic_probe + 0x403897a0 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x403897a0 spi_flash_chip_mxic_probe + *fill* 0x403897c5 0x0 + *fill* 0x403897c5 0x3 + .text.spi_flash_chip_mxic_get_caps + 0x403897c8 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x403897c8 spi_flash_chip_mxic_get_caps + *libspi_flash.a:spi_flash_chip_mxic_opi.*(.literal .literal.* .text .text.*) + *fill* 0x403897cf 0x1 + .text.spi_flash_chip_mxic_opi_detect_size + 0x403897d0 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x403897d0 spi_flash_chip_mxic_opi_detect_size + *fill* 0x40389805 0x3 + .text.spi_flash_chip_mxic_opi_set_write_protect + 0x40389808 0x72 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x40389808 spi_flash_chip_mxic_opi_set_write_protect + *fill* 0x4038987a 0x2 + .text.spi_flash_chip_mxic_opi_erase_chip + 0x4038987c 0x8a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x4038987c spi_flash_chip_mxic_opi_erase_chip + *fill* 0x40389906 0x2 + .text.spi_flash_chip_mxic_opi_erase_sector + 0x40389908 0x89 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x40389908 spi_flash_chip_mxic_opi_erase_sector + *fill* 0x40389991 0x3 + .text.spi_flash_chip_mxic_opi_erase_block + 0x40389994 0x89 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x40389994 spi_flash_chip_mxic_opi_erase_block + *fill* 0x40389a1d 0x3 + .text.spi_flash_chip_mxic_opi_page_program + 0x40389a20 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x40389a20 spi_flash_chip_mxic_opi_page_program + .text.spi_flash_chip_xmic_opi_config_host_io_mode + 0x40389aa8 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x40389aa8 spi_flash_chip_xmic_opi_config_host_io_mode + *fill* 0x40389ada 0x2 + .text.spi_flash_chip_mxic_opi_get_data_length_zoom + 0x40389adc 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + *fill* 0x40389b06 0x2 + .text.spi_flash_chip_mxic_opi_read_id + 0x40389b08 0xc1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0xcd (size before relaxing) + 0x40389b08 spi_flash_chip_mxic_opi_read_id + *fill* 0x40389bc9 0x3 + .text.spi_flash_chip_mxic_opi_read_reg + 0x40389bcc 0x4b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x4f (size before relaxing) + 0x40389bcc spi_flash_chip_mxic_opi_read_reg + *fill* 0x40389c17 0x1 + .text.spi_flash_chip_mxic_opi_get_io_mode + 0x40389c18 0x74 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x78 (size before relaxing) + 0x40389c18 spi_flash_chip_mxic_opi_get_io_mode + .text.spi_flash_chip_mxic_opi_get_write_protect + 0x40389c8c 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x3b (size before relaxing) + 0x40389c8c spi_flash_chip_mxic_opi_get_write_protect + *fill* 0x40389cc4 0x0 + .text.spi_flash_chip_mxic_opi_write + 0x40389cc4 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x40389cc4 spi_flash_chip_mxic_opi_write + *fill* 0x40389d64 0x0 + .text.spi_flash_chip_mxic_opi_probe + 0x40389d64 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x40389d64 spi_flash_chip_mxic_opi_probe + *fill* 0x40389d89 0x0 + *fill* 0x40389d89 0x3 + .text.spi_flash_chip_mxic_opi_get_caps + 0x40389d8c 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x40389d8c spi_flash_chip_mxic_opi_get_caps + *fill* 0x40389d93 0x0 + *fill* 0x40389d93 0x0 + *fill* 0x40389d93 0x0 + *fill* 0x40389d93 0x0 + *fill* 0x40389d93 0x1 + .text.spi_flash_chip_xmic_opi_set_io_mode + 0x40389d94 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x40389d94 spi_flash_chip_xmic_opi_set_io_mode + *fill* 0x40389d9b 0x0 + *fill* 0x40389d9b 0x0 + *fill* 0x40389d9b 0x0 + *fill* 0x40389d9b 0x0 + *fill* 0x40389d9b 0x0 + *fill* 0x40389d9b 0x0 + *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) + *fill* 0x40389d9b 0x1 + .text.spi_flash_chip_th_probe + 0x40389d9c 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + 0x40389d9c spi_flash_chip_th_probe + *fill* 0x40389dc5 0x3 + .text.spi_flash_chip_th_get_caps + 0x40389dc8 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + 0x40389dc8 spi_flash_chip_th_get_caps + *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *fill* 0x40389dcf 0x1 + .text.spi_flash_chip_winbond_suspend_cmd_conf + 0x40389dd0 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x40389dd0 spi_flash_chip_winbond_suspend_cmd_conf + *fill* 0x40389e06 0x2 + .text.spi_flash_command_winbond_program_4B + 0x40389e08 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x40389e52 0x2 + .text.spi_flash_chip_winbond_page_program + 0x40389e54 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x70 (size before relaxing) + 0x40389e54 spi_flash_chip_winbond_page_program + .text.spi_flash_command_winbond_erase_sector_4B + 0x40389ebc 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x40389f02 0x2 + .text.spi_flash_chip_winbond_erase_sector + 0x40389f04 0xa6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x40389f04 spi_flash_chip_winbond_erase_sector + *fill* 0x40389faa 0x2 + .text.spi_flash_command_erase_block_4B + 0x40389fac 0x49 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x40389ff5 0x3 + .text.spi_flash_chip_winbond_erase_block + 0x40389ff8 0xa6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x40389ff8 spi_flash_chip_winbond_erase_block + *fill* 0x4038a09e 0x2 + .text.spi_flash_chip_winbond_read + 0x4038a0a0 0xbe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xc2 (size before relaxing) + 0x4038a0a0 spi_flash_chip_winbond_read + *fill* 0x4038a15e 0x2 + .text.spi_flash_chip_winbond_probe + 0x4038a160 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4038a160 spi_flash_chip_winbond_probe + *fill* 0x4038a176 0x2 + .text.spi_flash_chip_winbond_get_caps + 0x4038a178 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4038a178 spi_flash_chip_winbond_get_caps + *fill* 0x4038a191 0x0 + *fill* 0x4038a191 0x0 + *fill* 0x4038a191 0x0 + *fill* 0x4038a191 0x0 + *fill* 0x4038a191 0x0 + *fill* 0x4038a191 0x0 + *fill* 0x4038a191 0x0 + *libspi_flash.a:spi_flash_hpm_enable.*(.literal .literal.* .text .text.*) + *fill* 0x4038a191 0x3 + .text.spi_flash_enable_high_performance_mode + 0x4038a194 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x4038a194 spi_flash_enable_high_performance_mode + *libspi_flash.a:spi_flash_oct_flash_init.*(.literal .literal.* .text .text.*) + *fill* 0x4038a19b 0x1 + .text.s_register_rom_function + 0x4038a19c 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + *fill* 0x4038a1a9 0x3 + .text.s_set_pin_drive_capability + 0x4038a1ac 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + *fill* 0x4038a1d6 0x2 + .text.s_probe_mxic_chip + 0x4038a1d8 0x49 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + 0x4d (size before relaxing) + *fill* 0x4038a221 0x3 + .text.s_mxic_set_required_regs + 0x4038a224 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + *fill* 0x4038a242 0x2 + .text.s_set_flash_ouput_driver_strength + 0x4038a244 0xa8 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .text.s_set_flash_dtr_str_opi_mode + 0x4038a2ec 0x3a esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + *fill* 0x4038a326 0x2 + .text.s_flash_init_mxic + 0x4038a328 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + 0x6c (size before relaxing) + .text.esp_opiflash_init + 0x4038a388 0x64 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + 0x68 (size before relaxing) + 0x4038a388 esp_opiflash_init + *fill* 0x4038a3ec 0x0 + *fill* 0x4038a3ec 0x0 + *fill* 0x4038a3ec 0x0 + *fill* 0x4038a3ec 0x0 + *fill* 0x4038a3ec 0x0 + *fill* 0x4038a3ec 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.delay_us .text.delay_us) + .text.delay_us + 0x4038a3ec 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.get_buffer_malloc .text.get_buffer_malloc) + .text.get_buffer_malloc + 0x4038a3fc 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4a (size before relaxing) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_op_status .text.main_flash_op_status) + *fill* 0x4038a442 0x2 + .text.main_flash_op_status + 0x4038a444 0xb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x4038a44f 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_region_protected .text.main_flash_region_protected) + *fill* 0x4038a44f 0x1 + .text.main_flash_region_protected + 0x4038a450 0x31 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x4038a481 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.release_buffer_malloc .text.release_buffer_malloc) + *fill* 0x4038a481 0x3 + .text.release_buffer_malloc + 0x4038a484 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x4038a48e 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* 0x4038a48e 0x2 + .text.spi_flash_os_check_yield + 0x4038a490 0x33 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x4038a4c3 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi_flash_os_yield .text.spi_flash_os_yield) + *fill* 0x4038a4c3 0x1 + .text.spi_flash_os_yield + 0x4038a4c4 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x20 (size before relaxing) + *fill* 0x4038a4dc 0x0 + *libspi_flash.a:spi_flash_os_func_noos.*(.literal.delay_us .text.delay_us) + .text.delay_us + 0x4038a4dc 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 0x4038a4ec 0x137 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + 0x4038a4ec xthal_spill_registers_into_stack_nw + 0x4038a4ec xthal_window_spill_nw + 0x4038a600 xthal_window_spill + *fill* 0x4038a623 0x1 + .text 0x4038a624 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + 0x4038a624 xthal_restore_extra_nw + *fill* 0x4038a653 0x1 + .text 0x4038a654 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + 0x4038a654 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* 0x4038a683 0x1 + .text 0x4038a684 0x192 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x1a2 (size before relaxing) + 0x4038a684 _xt_context_save + 0x4038a728 _xt_context_restore + 0x4038a76c _xt_coproc_init + 0x4038a784 _xt_coproc_release + 0x4038a7c8 _xt_coproc_savecs + 0x4038a7f0 _xt_coproc_restorecs + *fill* 0x4038a816 0x0 + *fill* 0x4038a816 0x2 + .text 0x4038a818 0x33 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x4038a818 xt_ints_on + 0x4038a830 xt_ints_off + +.dram0.dummy 0x3fc88000 0x12900 + 0x3fc9a900 . = (ORIGIN (dram0_0_seg) + MAX ((_iram_end - _diram_i_start), 0x0)) + *fill* 0x3fc88000 0x12900 + +.dram0.data 0x3fc9a900 0x4a24 + 0x3fc9a900 _data_start = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(.data .data.*) + .data.ESP_EFUSE_USER_DATA_MAC_CUSTOM + 0x3fc9a900 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3fc9a900 ESP_EFUSE_USER_DATA_MAC_CUSTOM + .data.ESP_EFUSE_MAC + 0x3fc9a908 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3fc9a908 ESP_EFUSE_MAC + .data.s_apb_backup_dma_mutex + 0x3fc9a924 0x8 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .data.s_panic_uart + 0x3fc9a92c 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.rtc_wdt_ctx + 0x3fc9a930 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.esp_ipc_isr_end_fl + 0x3fc9a938 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3fc9a938 esp_ipc_isr_end_fl + .data 0x3fc9a93c 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .data.hooks_spinlock + 0x3fc9a94c 0x8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data._putc1 0x3fc9a954 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x3fc9a954 _putc1 + .data.esp_log_vprint_func + 0x3fc9a958 0x4 esp-idf/log/liblog.a(log_write.c.obj) + 0x3fc9a958 esp_log_vprint_func + .data.esp_log_default_level + 0x3fc9a95c 0x4 esp-idf/log/liblog.a(log_level.c.obj) + 0x3fc9a95c esp_log_default_level + .data.malloc_alwaysinternal_limit + 0x3fc9a960 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.first_call$0 + 0x3fc9a964 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *fill* 0x3fc9a965 0x3 + .data.s_esp_rtc_time_lock + 0x3fc9a968 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data.spinlock + 0x3fc9a970 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data.periph_spinlock + 0x3fc9a978 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data.rtc_spinlock + 0x3fc9a980 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x3fc9a980 rtc_spinlock + .data.g_rtc_dbias_pvt_non_240m + 0x3fc9a988 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3fc9a988 g_rtc_dbias_pvt_non_240m + .data.g_dig_dbias_pvt_non_240m + 0x3fc9a98c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3fc9a98c g_dig_dbias_pvt_non_240m + .data.g_rtc_dbias_pvt_240m + 0x3fc9a990 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3fc9a990 g_rtc_dbias_pvt_240m + .data.g_dig_dbias_pvt_240m + 0x3fc9a994 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3fc9a994 g_dig_dbias_pvt_240m + .data.s_memp_cfg + 0x3fc9a998 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .data.mux 0x3fc9a9b0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data.spinlock_rtc_deep_sleep + 0x3fc9a9b8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.s_config + 0x3fc9a9c0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.xKernelLock + 0x3fc9aa30 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.lock_init_spinlock + 0x3fc9aa38 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data.s_stub_table + 0x3fc9aa40 0x9c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data.s_keys_lock + 0x3fc9aadc 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x3fc9aae4 0x4 + .data.timestamp_id + 0x3fc9aae8 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x3fc9aae8 timestamp_id + .data.s_time_update_lock + 0x3fc9aaf8 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x3fc9aaf8 s_time_update_lock + .data.s_registered_select_lock + 0x3fc9ab00 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .data.s_context + 0x3fc9ab08 0x78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .data.uart_selectlock + 0x3fc9ab80 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .data.uart_context + 0x3fc9ab88 0xa8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .data.s_registered_select_lock + 0x3fc9ac30 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .data.s_ctx 0x3fc9ac38 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .data.s_fd_table + 0x3fc9ac68 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data.global_hooks + 0x3fc9ad28 0xc esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x3fc9ad34 0x4 + .data 0x3fc9ad38 0x400 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x3fc9ad38 _xt_interrupt_table + 0x3fc9af38 _xt_exception_table + *fill* 0x3fc9b138 0x8 + .data 0x3fc9b140 0x24 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x3fc9b140 _xt_coproc_owner_sa + 0x3fc9b160 _xt_coproc_owner_sa_lock + *fill* 0x3fc9b164 0x4 + .data.gpio_context + 0x3fc9b168 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .data._gpio_hal + 0x3fc9b188 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .data.s_spinlock + 0x3fc9b18c 0x8 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .data.s_flash_op_cpu + 0x3fc9b194 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data.rom_func$0 + 0x3fc9b198 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .data.registered_chip_funcs + 0x3fc9b1cc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .data.esp_flash_registered_chips + 0x3fc9b1d4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x3fc9b1d4 esp_flash_registered_chips + .data.default_registered_chips + 0x3fc9b1d8 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data.reason_spinlock + 0x3fc9b1fc 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data.spinlock + 0x3fc9b204 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data.s_mac_table + 0x3fc9b20c 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x3fc9b244 0x4 + .data.s_reserved_pin_mask + 0x3fc9b248 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .data.s_tsens_idx + 0x3fc9b250 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + *fill* 0x3fc9b251 0x3 + .data.s_record_max + 0x3fc9b254 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .data.s_record_min + 0x3fc9b258 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .data.s_spinlock + 0x3fc9b25c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .data.s_atomic_lock + 0x3fc9b264 0x8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .data.tcp_port + 0x3fc9b26c 0x2 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data.udp_port + 0x3fc9b26e 0x2 esp-idf/lwip/liblwip.a(udp.c.obj) + .data.retrans_timer + 0x3fc9b270 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3fc9b270 retrans_timer + .data.reachable_time + 0x3fc9b274 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3fc9b274 reachable_time + .data.g_wifi_osi_funcs + 0x3fc9b278 0x1e0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x3fc9b278 g_wifi_osi_funcs + .data.mbedtls_free_func + 0x3fc9b458 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.mbedtls_calloc_func + 0x3fc9b45c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.s_esp_ds_hmac_key_id + 0x3fc9b460 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .data.s_raw_seq$0 + 0x3fc9b464 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .data.TmpSTAAPCloseAP + 0x3fc9b466 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x3fc9b466 TmpSTAAPCloseAP + .data.g_mesh_self_organized + 0x3fc9b467 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x3fc9b467 g_mesh_self_organized + .data.ieee80211_11a_table + 0x3fc9b468 0xd4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .data.g_phy_cap_rx_stbc + 0x3fc9b53c 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x3fc9b53c g_phy_cap_rx_stbc + *fill* 0x3fc9b53d 0x3 + .data.g_wifi_nvs + 0x3fc9b540 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x3fc9b540 g_wifi_nvs + .data.s_ap_igtk_active_idx + 0x3fc9b544 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .data.s_sta_igtk_active_idx + 0x3fc9b546 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .data.g_timer_info + 0x3fc9b548 0xd8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x3fc9b548 g_timer_info + .data.gcmp 0x3fc9b620 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + 0x3fc9b620 gcmp + .data.WIFI_MESH_EVENT + 0x3fc9b638 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x3fc9b638 WIFI_MESH_EVENT + .data.g_wifi_event_mask + 0x3fc9b63c 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x3fc9b63c g_wifi_event_mask + .data.s_wifi_init_state + 0x3fc9b640 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.join_deny_flag + 0x3fc9b644 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + *fill* 0x3fc9b645 0x3 + .data.g_dynamic_cs + 0x3fc9b648 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x3fc9b648 g_dynamic_cs + .data.send_deauth + 0x3fc9b654 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x3fc9b654 send_deauth + *fill* 0x3fc9b655 0x3 + .data.sms4 0x3fc9b658 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + 0x3fc9b658 sms4 + .data.ccmp 0x3fc9b670 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x3fc9b670 ccmp + .data.public_recv_action + 0x3fc9b688 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.sa_query_recv_action + 0x3fc9b710 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.vendor_recv_action + 0x3fc9b718 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.ht_recv_action + 0x3fc9b71c 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.ba_recv_action + 0x3fc9b720 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.public_send_action + 0x3fc9b72c 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.sa_query_send_action + 0x3fc9b7b4 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.vendor_send_action + 0x3fc9b7bc 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.ht_send_action + 0x3fc9b7c0 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.ba_send_action + 0x3fc9b7c4 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.tkip 0x3fc9b7d0 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + 0x3fc9b7d0 tkip + .data.g_scan_chan_list + 0x3fc9b7e8 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + *fill* 0x3fc9b7f6 0x2 + .data.wep 0x3fc9b7f8 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + 0x3fc9b7f8 wep + .data.g_pm_cfg + 0x3fc9b810 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x3fc9b810 g_pm_cfg + .data.TxRxCxt 0x3fc9b858 0x3c0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x3fc9b858 TxRxCxt + .data.g_eb_list_desc + 0x3fc9bc18 0xdc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x3fc9bc18 g_eb_list_desc + .data.lmacConfMib + 0x3fc9bcf4 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x3fc9bcf4 lmacConfMib + .data.g_txop_queue_status + 0x3fc9bd24 0x3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x3fc9bd24 g_txop_queue_status + .data.rc11BSchedTbl + 0x3fc9bd27 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x3fc9bd27 rc11BSchedTbl + .data.rcP2P11GSchedTbl + 0x3fc9bd6f 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x3fc9bd6f rcP2P11GSchedTbl + .data.rc11GSchedTbl + 0x3fc9bdcf 0x9c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x3fc9bdcf rc11GSchedTbl + .data.rcP2P11NSchedTbl + 0x3fc9be6b 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x3fc9be6b rcP2P11NSchedTbl + .data.rc11NSchedTbl + 0x3fc9bee3 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x3fc9bee3 rc11NSchedTbl + .data.rcLoRaSchedTbl + 0x3fc9bf8b 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x3fc9bf8b rcLoRaSchedTbl + .data.BasicOFDMSched + 0x3fc9bfa3 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x3fc9bfa3 BasicOFDMSched + *fill* 0x3fc9bfaf 0x1 + .data.trc_ctl 0x3fc9bfb0 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x3fc9bfb0 trc_ctl + .data.BcnInterval + 0x3fc9bfcc 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3fc9bfcc BcnInterval + .data.wDevCtrl + 0x3fc9bfd0 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3fc9bfd0 wDevCtrl + .data.g_pp_timer_info + 0x3fc9c008 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x3fc9c008 g_pp_timer_info + .data.s_platform + 0x3fc9c080 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .data.s_timer_lock + 0x3fc9c090 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data._g_esp_netif_netstack_default_wifi_sta + 0x3fc9c098 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x3fc9c098 _g_esp_netif_netstack_default_wifi_sta + .data.g_allowed_groups + 0x3fc9c09c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x3fc9c09c g_allowed_groups + .data.g_espnow_user_oui + 0x3fc9c0a4 0x3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + 0x3fc9c0a4 g_espnow_user_oui + *fill* 0x3fc9c0a7 0x1 + .data.gdma_ahb_hal_priv_data + 0x3fc9c0a8 0x4 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .data._ZN10__cxxabiv119__terminate_handlerE + 0x3fc9c0ac 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + 0x3fc9c0ac __cxxabiv1::__terminate_handler + .data.phy_param + 0x3fc9c0b0 0x2dc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x3fc9c0b0 phy_param + .data 0x3fc9c38c 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + 0x3fc9c38c environ + .data 0x3fc9c390 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + 0x3fc9c390 __sglue + .data 0x3fc9c39c 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + 0x3fc9c39c __global_locale_ptr + .data 0x3fc9c3a0 0xf4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + 0x3fc9c3a0 _impure_ptr + 0x3fc9c3a4 _impure_data + *(.dram1 .dram1.*) + .dram1.0 0x3fc9c494 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .dram1.1 0x3fc9c49c 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.0 0x3fc9c544 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.4 0x3fc9c5ec 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.3 0x3fc9c5f4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.2 0x3fc9c5f8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.1 0x3fc9c5fc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.0 0x3fc9c600 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.2 0x3fc9c604 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + *fill* 0x3fc9c62f 0x1 + .dram1.0 0x3fc9c630 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .dram1.0 0x3fc9c634 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .dram1.0 0x3fc9c638 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3fc9c638 FreeRTOS_openocd_params + *fill* 0x3fc9c646 0xa + .dram1.3 0x3fc9c650 0xc00 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3fc9c650 port_IntStack + .dram1.2 0x3fc9d250 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3fc9d250 offset_xCoreID + .dram1.1 0x3fc9d254 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3fc9d254 offset_cpsa + .dram1.0 0x3fc9d258 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3fc9d258 offset_pxEndOfStack + .dram1.0 0x3fc9d25c 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.0 0x3fc9d260 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x3fc9d260 g_flash_guard_default_ops + .dram1.13 0x3fc9d268 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3fc9d283 0x1 + .dram1.11 0x3fc9d284 0x21 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3fc9d2a5 0x3 + .dram1.9 0x3fc9d2a8 0x3b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3fc9d2e3 0x1 + .dram1.7 0x3fc9d2e4 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3fc9d322 0x2 + .dram1.5 0x3fc9d324 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3fc9d33f 0x1 + .dram1.2 0x3fc9d340 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3fc9d340 rom_spiflash_api_funcs + .dram1.1 0x3fc9d344 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.0 0x3fc9d354 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3fc9d35e 0x2 + .dram1.2 0x3fc9d360 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.1 0x3fc9d380 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.7 0x3fc9d3b0 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.6 0x3fc9d3d8 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.2 0x3fc9d3e8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x3fc9d3e8 esp_flash_noos_functions + .dram1.5 0x3fc9d410 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3fc9d410 spi_flash_chip_generic_timeout + .dram1.4 0x3fc9d424 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.3 0x3fc9d43c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3fc9d43c rom_flash_chip_dummy_hpm + .dram1.2 0x3fc9d440 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3fc9d440 rom_flash_chip_dummy + .dram1.1 0x3fc9d444 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3fc9d44a 0x2 + .dram1.0 0x3fc9d44c 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3fc9d452 0x2 + .dram1.0 0x3fc9d454 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .dram1.1 0x3fc9d4ac 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3fc9d4c5 0x3 + .dram1.1 0x3fc9d4c8 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .dram1.0 0x3fc9d4d4 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .dram1.4 0x3fc9d4e0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .dram1.3 0x3fc9d4f0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .dram1.2 0x3fc9d500 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .dram1.1 0x3fc9d50c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .dram1.4 0x3fc9d518 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x3fc9d518 g_mesh_is_root + *fill* 0x3fc9d519 0x3 + .dram1.3 0x3fc9d51c 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x3fc9d51c g_mesh_init_ps_type + .dram1.2 0x3fc9d520 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x3fc9d520 g_mesh_is_started + .dram1.2 0x3fc9d521 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3fc9d521 g_sta_connected_flag + *fill* 0x3fc9d522 0x2 + .dram1.3 0x3fc9d524 0xa0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x3fc9d524 bars + .dram1.2 0x3fc9d5c4 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x3fc9d5c4 pp_sig_cnt + *fill* 0x3fc9d5e5 0x3 + .dram1.2 0x3fc9d5e8 0x90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x3fc9d5e8 eb_txdesc_space + .dram1.2 0x3fc9d678 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .dram1.40 0x3fc9d67c 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3fc9d67c s_record_list + .dram1.2 0x3fc9d700 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .dram1.19 0x3fc9d704 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x3fc9d704 ptr_beacon_offset_funcs + .dram1.0 0x3fc9d708 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .dram1.0 0x3fc9d710 0x1 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x3fc9d711 _coredump_dram_start = ABSOLUTE (.) + *(.dram2.coredump .dram2.coredump.*) + 0x3fc9d711 _coredump_dram_end = ABSOLUTE (.) + *libapp_trace.a:app_trace.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libapp_trace.a:app_trace_util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libapp_trace.a:port_uart.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libclang_rt.builtins.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:clk_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_by_mspi_delay.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_config.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.s_mspi_flash_set_core_clock.str1.4 + 0x3fc9d711 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .rodata.mspi_timing_config_set_flash_clock.str1.4 + 0x3fc9d711 0x61 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + *fill* 0x3fc9d711 0x3 + .rodata.__func__$0 + 0x3fc9d714 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + *fill* 0x3fc9d737 0x1 + .rodata.__func__$1 + 0x3fc9d738 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + *fill* 0x3fc9d756 0x2 + .rodata.__func__$2 + 0x3fc9d758 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3fc9d77b 0x1 + .rodata 0x3fc9d77c 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.rtc_clk_cpu_freq_to_8m.str1.4 + 0x3fc9d7a0 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_slow_src_set.str1.4 + 0x3fc9d7a0 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_xtal_freq_get.str1.4 + 0x3fc9d7a0 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x3fc9d7a0 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_to_xtal.str1.4 + 0x3fc9d7a0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.__func__$2 + 0x3fc9d7a0 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x3fc9d7b7 0x1 + .rodata.__func__$1 + 0x3fc9d7b8 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x3fc9d7cf 0x1 + .rodata.__func__$0 + 0x3fc9d7d0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *libesp_hw_support.a:sleep_console.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:esp_cache_msync.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.esp_cache_aligned_malloc_internal.str1.4 + 0x3fc9d7e8 0x5b esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$0 + 0x3fc9d7e8 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.*) + .rodata.esp_cache_freeze_caches_disable_interrupts.str1.4 + 0x3fc9d800 0x56 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .rodata.__func__$0 + 0x3fc9d800 0x2b esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_cache_writeback_esp32s3.*(.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_rom.a:esp_rom_systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_wdt.*(.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 + 0x3fc9d82b 0x5c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed.str1.4 + 0x3fc9d82b 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + *libesp_system.a:image_process.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcc.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:cache_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3fc9d82b 0x1 + .rodata.cache_hal_disable.str1.4 + 0x3fc9d82c 0x936 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x54 (size before relaxing) + .rodata.cache_hal_get_cache_line_size.str1.4 + 0x3fc9e162 0x5f esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x3fc9e162 0x2 + .rodata.__func__$0 + 0x3fc9e164 0x17 esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x3fc9e17b 0x1 + .rodata.__func__$1 + 0x3fc9e17c 0x1e esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x3fc9e19a 0x2 + .rodata.__func__$2 + 0x3fc9e19c 0x13 esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x3fc9e1af 0x1 + .rodata.__func__$3 + 0x3fc9e1b0 0x11 esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x3fc9e1c1 0x3 + .rodata.__func__$6 + 0x3fc9e1c4 0x11 esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x3fc9e1d5 0x3 + .rodata.__func__$7 + 0x3fc9e1d8 0x12 esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x3fc9e1ea 0x2 + .rodata.__func__$8 + 0x3fc9e1ec 0x11 esp-idf/hal/libhal.a(cache_hal.c.obj) + *fill* 0x3fc9e1fd 0x3 + .rodata.__func__$9 + 0x3fc9e200 0x12 esp-idf/hal/libhal.a(cache_hal.c.obj) + *libhal.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.mmu_ll_check_entry_valid.str1.4 + 0x3fc9e212 0x51 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_paddr_to_vaddr.str1.4 + 0x3fc9e212 0x52 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_map_region.str1.4 + 0x3fc9e212 0xd5 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_vaddr_to_paddr.str1.4 + 0x3fc9e212 0x5f esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3fc9e212 0x2 + .rodata.__func__$0 + 0x3fc9e214 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3fc9e22b 0x1 + .rodata.__func__$1 + 0x3fc9e22c 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3fc9e24a 0x2 + .rodata.__func__$2 + 0x3fc9e24c 0x18 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$3 + 0x3fc9e264 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3fc9e27d 0x3 + .rodata.__func__$4 + 0x3fc9e280 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3fc9e297 0x1 + .rodata.__func__$5 + 0x3fc9e298 0x15 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3fc9e2ad 0x3 + .rodata.__func__$7 + 0x3fc9e2b0 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_encrypt_ll_plaintext_save.str1.4 + 0x3fc9e2c3 0x81 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + *fill* 0x3fc9e2c3 0x1 + .rodata.__func__$0 + 0x3fc9e2c4 0x24 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + *libhal.a:spi_flash_hal_gpspi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:systimer_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.systimer_hal_set_alarm_period.str1.4 + 0x3fc9e2e8 0x4a esp-idf/hal/libhal.a(systimer_hal.c.obj) + .rodata.__func__$0 + 0x3fc9e2e8 0x1d esp-idf/hal/libhal.a(systimer_hal.c.obj) + *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.*) + *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.abort.str1.4 + 0x3fc9e305 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) + *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.__assert_func.str1.4 + 0x3fc9e305 0x36 esp-idf/newlib/libnewlib.a(assert.c.obj) + *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.str1.1 + 0x3fc9e305 0x7c0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x51 (size before relaxing) + *fill* 0x3fc9eac5 0x1 + .rodata 0x3fc9eac6 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .rodata.str1.1 + 0x3fc9eaea 0x522 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + *fill* 0x3fc9eaea 0x2 + .rodata 0x3fc9eaec 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .rodata.set_pbus_mem + 0x3fc9eb44 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .rodata.freq_i2c_write_set + 0x3fc9eb6c 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .rodata.freq_get_i2c_data + 0x3fc9eb90 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .rodata.str1.1 + 0x3fc9ebb8 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .rodata.str1.1 + 0x3fc9ebb8 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .rodata 0x3fc9ebb8 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .rodata 0x3fc9ec10 0xb8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .rodata.str1.1 + 0x3fc9ecc8 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .rodata.str1.1 + 0x3fc9ecc8 0x163 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .rodata 0x3fc9ecc8 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .rodata.dco_gain_coarse$4311 + 0x3fc9ece2 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .rodata.str1.1 + 0x3fc9ece8 0x75 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .rodata.CSWTCH$87 + 0x3fc9ece8 0x3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libsoc.a:temperature_sensor_periph.*(.rodata.temperature_sensor_attributes .sdata2.temperature_sensor_attributes .srodata.temperature_sensor_attributes) + *fill* 0x3fc9eceb 0x1 + .rodata.temperature_sensor_attributes + 0x3fc9ecec 0x64 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + 0x3fc9ecec temperature_sensor_attributes + *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 + 0x3fc9ed50 0x1a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_erase_sector.str1.4 + 0x3fc9ed50 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_program_page.str1.4 + 0x3fc9ed50 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$0 + 0x3fc9ed50 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x3fc9ed69 0x3 + .rodata.__func__$1 + 0x3fc9ed6c 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$2 + 0x3fc9ed84 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x3fc9ed9d 0x3 + .rodata.TAG 0x3fc9eda0 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x3fc9eda7 0x1 + .rodata.esp_flash_gpspi_host + 0x3fc9eda8 0x58 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.*) + .rodata.esp_flash_chip_boya + 0x3fc9ee00 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x3fc9ee00 esp_flash_chip_boya + .rodata.chip_name + 0x3fc9ee7c 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3fc9ee81 0x3 + .rodata.esp_flash_chip_gd + 0x3fc9ee84 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x3fc9ee84 esp_flash_chip_gd + .rodata.chip_name + 0x3fc9ef00 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 + 0x3fc9ef03 0x39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x3fc9ef03 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read_unique_id.str1.4 + 0x3fc9ef03 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3fc9ef03 0x1 + .rodata.__func__$0 + 0x3fc9ef04 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3fc9ef2d 0x3 + .rodata.esp_flash_chip_generic + 0x3fc9ef30 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3fc9ef30 esp_flash_chip_generic + .rodata.chip_name + 0x3fc9efac 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x3fc9efb4 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* 0x3fc9efc1 0x3 + .rodata.esp_flash_chip_issi + 0x3fc9efc4 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x3fc9efc4 esp_flash_chip_issi + .rodata.chip_name + 0x3fc9f040 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* 0x3fc9f045 0x3 + .rodata.esp_flash_chip_mxic + 0x3fc9f048 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x3fc9f048 esp_flash_chip_mxic + .rodata.chip_name + 0x3fc9f0c4 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + *libspi_flash.a:spi_flash_chip_mxic_opi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_mxic_opi_get_data_length_zoom.str1.4 + 0x3fc9f0c9 0x79 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .rodata.spi_flash_chip_mxic_opi_read_id.str1.4 + 0x3fc9f0c9 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .rodata.spi_flash_chip_mxic_opi_get_write_protect.str1.4 + 0x3fc9f0c9 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + *fill* 0x3fc9f0c9 0x3 + .rodata.__func__$0 + 0x3fc9f0cc 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + *fill* 0x3fc9f0f6 0x2 + .rodata.__func__$1 + 0x3fc9f0f8 0x2d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + *fill* 0x3fc9f125 0x3 + .rodata.esp_flash_chip_mxic_opi + 0x3fc9f128 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x3fc9f128 esp_flash_chip_mxic_opi + .rodata.chip_name + 0x3fc9f1a4 0xb esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3fc9f1af 0x1 + .rodata.esp_flash_chip_th + 0x3fc9f1b0 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + 0x3fc9f1b0 esp_flash_chip_th + .rodata.chip_name + 0x3fc9f22c 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_winbond_read.str1.4 + 0x3fc9f22f 0x39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x3fc9f22f 0x1 + .rodata.esp_flash_chip_winbond + 0x3fc9f230 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x3fc9f230 esp_flash_chip_winbond + .rodata.chip_name + 0x3fc9f2ac 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .rodata.TAG 0x3fc9f2b4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *libspi_flash.a:spi_flash_hpm_enable.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_oct_flash_init.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.s_probe_mxic_chip.str1.4 + 0x3fc9f2bc 0x4b esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .rodata.esp_opiflash_init.str1.4 + 0x3fc9f2bc 0x61 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .rodata.opiflash_cmd_def_mxic$1 + 0x3fc9f2bc 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .rodata.opi_flash_func_mxic + 0x3fc9f318 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + 0x3fc9f324 _data_end = ABSOLUTE (.) + +.noinit 0x3fc9f324 0x0 + 0x3fc9f324 . = ALIGN (0x4) + 0x3fc9f324 _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x3fc9f324 . = ALIGN (0x4) + 0x3fc9f324 _noinit_end = ABSOLUTE (.) + +.dram0.bss 0x3fc9f328 0x4460 + 0x3fc9f328 . = ALIGN (0x8) + 0x3fc9f328 _bss_start = ABSOLUTE (.) + *(.bss .bss.*) + .bss.app_elf_sha256_str + 0x3fc9f328 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x3fc9f328 app_elf_sha256_str + *fill* 0x3fc9f332 0x2 + .bss.s_burn_counter + 0x3fc9f334 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.shutdown_handlers + 0x3fc9f338 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss.s_resume_cores + 0x3fc9f34c 0x1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3fc9f34d 0x3 + .bss.s_cpu_inited + 0x3fc9f350 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3fc9f352 0x2 + .bss.s_cpu_up 0x3fc9f354 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3fc9f356 0x2 + .bss.cache_err_cpu_id + 0x3fc9f358 0x4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .bss.acs_fault_addr + 0x3fc9f35c 0x4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .bss.access_error_intr_status + 0x3fc9f360 0x4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .bss.int_wdt_cpu1_ticked + 0x3fc9f364 0x1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x3fc9f364 int_wdt_cpu1_ticked + *fill* 0x3fc9f365 0x3 + .bss.iwdt_context + 0x3fc9f368 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss.s_usbserial_timeout + 0x3fc9f370 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss.g_panic_abort_details + 0x3fc9f374 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3fc9f374 g_panic_abort_details + .bss.g_panic_abort + 0x3fc9f378 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3fc9f378 g_panic_abort + .bss.s_system_full_inited + 0x3fc9f379 0x1 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x3fc9f37a 0x2 + .bss.s_system_inited + 0x3fc9f37c 0x2 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x3fc9f37e 0x2 + .bss.g_startup_time + 0x3fc9f380 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3fc9f380 g_startup_time + .bss.g_exc_frames + 0x3fc9f388 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x3fc9f388 g_exc_frames + .bss.s_stall_state + 0x3fc9f390 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.esp_ipc_func_arg + 0x3fc9f394 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3fc9f394 esp_ipc_func_arg + .bss.esp_ipc_func + 0x3fc9f398 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3fc9f398 esp_ipc_func + .bss.esp_ipc_isr_start_fl + 0x3fc9f39c 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3fc9f39c esp_ipc_isr_start_fl + .bss.s_no_block_func_arg + 0x3fc9f3a0 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_no_block_func_and_arg_are_ready + 0x3fc9f3a8 0x2 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x3fc9f3aa 0x2 + .bss.s_no_block_func + 0x3fc9f3ac 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_wait_for + 0x3fc9f3b4 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func_arg + 0x3fc9f3bc 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func 0x3fc9f3c4 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_ack + 0x3fc9f3cc 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_mutex + 0x3fc9f3d4 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_task_handle + 0x3fc9f3dc 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.tick_cb 0x3fc9f3e4 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.idle_cb 0x3fc9f424 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.ctx 0x3fc9f464 0x4 esp-idf/hal/libhal.a(cache_hal.c.obj) + .bss.base$0 0x3fc9f468 0x4 esp-idf/log/liblog.a(log_timestamp.c.obj) + .bss.esp_log_cache_enabled + 0x3fc9f46c 0x4 esp-idf/log/liblog.a(util.c.obj) + .bss.s_log_tags + 0x3fc9f470 0x4 esp-idf/log/liblog.a(log_linked_list.c.obj) + .bss.s_log_cache_misses + 0x3fc9f474 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_cache_entry_count + 0x3fc9f478 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_cache_max_generation + 0x3fc9f47c 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_cache + 0x3fc9f480 0xf8 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_mutex + 0x3fc9f578 0x4 esp-idf/log/liblog.a(log_lock.c.obj) + .bss.alloc_failed_callback + 0x3fc9f57c 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss.registered_heaps + 0x3fc9f580 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x3fc9f580 registered_heaps + .bss.non_iram_int_disabled_flag + 0x3fc9f584 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3fc9f586 0x2 + .bss.non_iram_int_disabled + 0x3fc9f588 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.non_iram_int_mask + 0x3fc9f590 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.vector_desc_head + 0x3fc9f598 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.ref_counts + 0x3fc9f59c 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x3fc9f5c5 0x3 + .bss.s_rtc_isr_handle + 0x3fc9f5c8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss.s_brownout_callback + 0x3fc9f5cc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .bss.s_bbpll_digi_consumers_ref_count + 0x3fc9f5d0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_apb_freq + 0x3fc9f5d4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_cur_pll_freq + 0x3fc9f5d8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_sar_power_on_cnt + 0x3fc9f5dc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss.s_i2c_saradc_enable_cnt + 0x3fc9f5e0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss.s_dslp_phy_cb + 0x3fc9f5e4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_calibrated_freq + 0x3fc9f5f0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss.s_other_cpu_startup_done + 0x3fc9f5f8 0x1 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x3fc9f5f9 0x3 + .bss.uxSchedulerSuspended + 0x3fc9f5fc 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xIdleTaskHandle + 0x3fc9f604 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNextTaskUnblockTime + 0x3fc9f60c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTaskNumber + 0x3fc9f610 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNumOfOverflows + 0x3fc9f614 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xYieldPending + 0x3fc9f618 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendedTicks + 0x3fc9f620 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSchedulerRunning + 0x3fc9f624 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTopReadyPriority + 0x3fc9f628 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTickCount + 0x3fc9f62c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxCurrentNumberOfTasks + 0x3fc9f630 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x3fc9f634 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxDeletedTasksWaitingCleanUp + 0x3fc9f648 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x3fc9f64c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x3fc9f660 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxOverflowDelayedTaskList + 0x3fc9f688 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxDelayedTaskList + 0x3fc9f68c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x3fc9f690 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x3fc9f6a4 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxReadyTasksLists + 0x3fc9f6b8 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxCurrentTCBs + 0x3fc9f8ac 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3fc9f8ac pxCurrentTCBs + .bss.port_switch_flag + 0x3fc9f8b4 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3fc9f8b4 port_switch_flag + .bss.port_uxOldInterruptState + 0x3fc9f8bc 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3fc9f8bc port_uxOldInterruptState + .bss.port_uxCriticalNesting + 0x3fc9f8c4 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3fc9f8c4 port_uxCriticalNesting + .bss.port_interruptNesting + 0x3fc9f8cc 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3fc9f8cc port_interruptNesting + .bss.port_xSchedulerRunning + 0x3fc9f8d4 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3fc9f8d4 port_xSchedulerRunning + .bss.systimer_hal$1 + 0x3fc9f8dc 0xc esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss.s_handled_systicks + 0x3fc9f8e8 0x8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss.s_common_recursive_mutex + 0x3fc9f8f0 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x3fc9f8f0 __lock___env_recursive_mutex + 0x3fc9f8f0 __lock___sfp_recursive_mutex + 0x3fc9f8f0 __lock___atexit_recursive_mutex + 0x3fc9f8f0 __lock___malloc_recursive_mutex + 0x3fc9f8f0 __lock___sinit_recursive_mutex + .bss.s_common_mutex + 0x3fc9f944 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x3fc9f944 __lock___arc4random_mutex + 0x3fc9f944 __lock___dd_hash_mutex + 0x3fc9f944 __lock___at_quick_exit_mutex + 0x3fc9f944 __lock___tz_mutex + .bss.s_time_lock + 0x3fc9f998 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + *fill* 0x3fc9f99c 0x4 + .bss.s_adjtime_total_correction_us + 0x3fc9f9a0 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_adjtime_start_us + 0x3fc9f9a8 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_boot_time_lock + 0x3fc9f9b0 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + *fill* 0x3fc9f9b4 0x4 + .bss.s_microseconds_offset + 0x3fc9f9b8 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x3fc9f9b8 s_microseconds_offset + .bss.s_keys 0x3fc9f9c0 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x3fc9f9c0 s_keys + *fill* 0x3fc9f9c4 0x4 + .bss.s_correction_us + 0x3fc9f9c8 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss.systimer_hal + 0x3fc9f9d0 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss.s_alarm_handler + 0x3fc9f9dc 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss.s_timer_interrupt_handle + 0x3fc9f9e0 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss.s_uart_select_count + 0x3fc9f9e4 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .bss.s_registered_select_num + 0x3fc9f9f0 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .bss.s_registered_selects + 0x3fc9f9f4 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .bss.p_uart_obj + 0x3fc9f9f8 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .bss.s_wifi_tsens_xpd_flag + 0x3fc9fa04 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss.s_wifi_pwdet_xpd_flag + 0x3fc9fa05 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + *fill* 0x3fc9fa06 0x2 + .bss.remaining_allowed_no_sof_ticks + 0x3fc9fa08 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .bss.s_usb_serial_jtag_conn_status + 0x3fc9fa0c 0x1 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + *fill* 0x3fc9fa0d 0x3 + .bss.s_registered_select_num + 0x3fc9fa10 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .bss.s_registered_selects + 0x3fc9fa14 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .bss.p_usb_serial_jtag_obj + 0x3fc9fa18 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .bss.s_open_count + 0x3fc9fa1c 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .bss.vfs_console + 0x3fc9fa20 0x8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .bss.primary_vfs + 0x3fc9fa28 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .bss.secondary_vfs + 0x3fc9fa2c 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .bss.s_fd_table_lock + 0x3fc9fa30 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs_count + 0x3fc9fa34 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs 0x3fc9fa38 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.g_fds 0x3fc9fa58 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .bss.s_periodic_task_started + 0x3fc9fa5c 0x1 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + *fill* 0x3fc9fa5d 0x3 + .bss.s_periodic_topic + 0x3fc9fa60 0x80 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .bss.s_rpc_resp_topic + 0x3fc9fae0 0x80 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .bss.s_rpc_req_topic + 0x3fc9fb60 0x80 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .bss.s_client 0x3fc9fbe0 0x4 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .bss._efs 0x3fc9fbe4 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .bss.global_error + 0x3fc9fbe8 0x8 esp-idf/json/libjson.a(cJSON.c.obj) + .bss.curr_partition$2 + 0x3fc9fbf0 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_last_handle + 0x3fc9fbf4 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_entries_head + 0x3fc9fbf8 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_partition_list_lock + 0x3fc9fbfc 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.s_partition_list + 0x3fc9fc00 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.map 0x3fc9fc04 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss.s_bootloader_partition_offset + 0x3fc9fc08 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss.s_mmu_ctx + 0x3fc9fc0c 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss.flash_erasing + 0x3fc9fc3c 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.flash_brownout_needs_reset + 0x3fc9fc3d 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.s_flash_op_complete + 0x3fc9fc3e 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_can_start + 0x3fc9fc3f 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_mutex + 0x3fc9fc40 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_cache_state + 0x3fc9fc44 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_guard_ops + 0x3fc9fc4c 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss.esp_flash_default_chip + 0x3fc9fc50 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x3fc9fc50 esp_flash_default_chip + .bss.s_chip_func + 0x3fc9fc54 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .bss.s_chip_id + 0x3fc9fc58 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .bss.reason 0x3fc9fc5c 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss.p_twdt_obj + 0x3fc9fc64 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss.g_twdt_isr + 0x3fc9fc68 0x1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x3fc9fc68 g_twdt_isr + *fill* 0x3fc9fc69 0x3 + .bss.init_context + 0x3fc9fc6c 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss.s_crypto_sha_aes_lock + 0x3fc9fc78 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .bss.s_crypto_mpi_lock + 0x3fc9fc7c 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .bss.s_crypto_hmac_lock + 0x3fc9fc80 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .bss.s_crypto_ds_lock + 0x3fc9fc84 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .bss.last_ccount$1 + 0x3fc9fc88 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + *fill* 0x3fc9fc8c 0x4 + .bss.timer1 0x3fc9fc90 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .bss.s_first_temp_read + 0x3fc9fc98 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + *fill* 0x3fc9fc99 0x3 + .bss.s_temperature_sensor_power_cnt + 0x3fc9fc9c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .bss.s_adc_digi_ctrlr_cnt + 0x3fc9fca0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .bss.s_default_loop + 0x3fc9fca4 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss._ZL13s_nvs_handles + 0x3fc9fca8 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZN14NVSHandleEntry17s_nvs_next_handleE + 0x3fc9fcb4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x3fc9fcb4 NVSHandleEntry::s_nvs_next_handle + .bss._ZN3nvs19NVSPartitionManager8instanceE + 0x3fc9fcb8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x3fc9fcb8 nvs::NVSPartitionManager::instance + .bss._ZN3nvs4Lock10mSemaphoreE + 0x3fc9fcbc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x3fc9fcbc nvs::Lock::mSemaphore + .bss.select_cb_list + 0x3fc9fcc0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.select_cb_ctr + 0x3fc9fcc4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.sockets 0x3fc9fcc8 0xc8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv6_multicast_memberships + 0x3fc9fd90 0x118 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv4_multicast_memberships + 0x3fc9fea8 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.tcpip_mbox + 0x3fc9ff20 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done_arg + 0x3fc9ff24 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done + 0x3fc9ff28 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.ip_data 0x3fc9ff2c 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x3fc9ff2c ip_data + .bss.num_tcp_pcb + 0x3fc9ff70 0x4 esp-idf/lwip/liblwip.a(memp.c.obj) + .bss.loop_netif + 0x3fc9ff74 0x104 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss.netif_num + 0x3fca0078 0x1 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3fca0079 0x3 + .bss.netif_default + 0x3fca007c 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3fca007c netif_default + .bss.netif_list + 0x3fca0080 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3fca0080 netif_list + .bss.ext_callback + 0x3fca0084 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss.pbuf_free_ooseq_pending + 0x3fca0088 0x1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3fca0088 pbuf_free_ooseq_pending + *fill* 0x3fca0089 0x3 + .bss.raw_pcbs 0x3fca008c 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss.tcp_timer_ctr + 0x3fca0090 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss.tcp_timer + 0x3fca0091 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss.tcp_active_pcbs_changed + 0x3fca0092 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3fca0092 tcp_active_pcbs_changed + *fill* 0x3fca0093 0x1 + .bss.tcp_tw_pcbs + 0x3fca0094 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3fca0094 tcp_tw_pcbs + .bss.tcp_active_pcbs + 0x3fca0098 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3fca0098 tcp_active_pcbs + .bss.tcp_listen_pcbs + 0x3fca009c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3fca009c tcp_listen_pcbs + .bss.tcp_bound_pcbs + 0x3fca00a0 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3fca00a0 tcp_bound_pcbs + .bss.tcp_ticks + 0x3fca00a4 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3fca00a4 tcp_ticks + .bss.tcp_input_pcb + 0x3fca00a8 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x3fca00a8 tcp_input_pcb + .bss.recv_data + 0x3fca00ac 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_flags + 0x3fca00b0 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.flags 0x3fca00b1 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcplen 0x3fca00b2 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_acked + 0x3fca00b4 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3fca00b6 0x2 + .bss.ackno 0x3fca00b8 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.seqno 0x3fca00bc 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcp_optidx + 0x3fca00c0 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3fca00c2 0x2 + .bss.tcphdr_opt2 + 0x3fca00c4 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_opt1len + 0x3fca00c8 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_optlen + 0x3fca00ca 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr 0x3fca00cc 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.inseg 0x3fca00d0 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcpip_tcp_timer_active + 0x3fca00e0 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.current_timeout_due_time + 0x3fca00e4 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.next_timeout + 0x3fca00e8 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.udp_pcbs 0x3fca00ec 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3fca00ec udp_pcbs + .bss.xid$13 0x3fca00f0 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.dhcp_pcb_refcount + 0x3fca00f4 0x1 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3fca00f5 0x3 + .bss.dhcp_pcb 0x3fca00f8 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.dhcp_rx_options_given + 0x3fca00fc 0xb esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3fca0107 0x1 + .bss.dhcp_rx_options_val + 0x3fca0108 0x2c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.etharp_cached_entry + 0x3fca0134 0x1 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3fca0135 0x3 + .bss.arp_table + 0x3fca0138 0xf0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss.is_tmr_start + 0x3fca0228 0x1 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x3fca0229 0x3 + .bss.allrouters + 0x3fca022c 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.allsystems + 0x3fca0230 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.ip4_default_multicast_netif + 0x3fca0234 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss.ip_id 0x3fca0238 0x2 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x3fca023a 0x2 + .bss.identification$1 + 0x3fca023c 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss.is_tmr_start + 0x3fca0240 0x1 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss.last_router$1 + 0x3fca0241 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3fca0242 0x2 + .bss.nd6_ra_buffer + 0x3fca0244 0x20 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_tmr_rs_reduction + 0x3fca0264 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3fca0265 0x3 + .bss.multicast_address + 0x3fca0268 0x14 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_cached_destination_index + 0x3fca027c 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_queue_size + 0x3fca027d 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3fca027e 0x2 + .bss.default_router_list + 0x3fca0280 0x24 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3fca0280 default_router_list + .bss.prefix_list + 0x3fca02a4 0x8c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3fca02a4 prefix_list + .bss.destination_cache + 0x3fca0330 0x1e0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3fca0330 destination_cache + .bss.neighbor_cache + 0x3fca0510 0xdc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3fca0510 neighbor_cache + .bss.base_time + 0x3fca05ec 0x4 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss.input 0x3fca05f0 0x40 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss.lwip_task$1 + 0x3fca0630 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.sys_thread_sem_key + 0x3fca0634 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.g_lwip_protect_mutex + 0x3fca0638 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.dns_servers + 0x3fca063c 0x48 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_requests + 0x3fca0684 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_table + 0x3fca06b4 0x4a0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_seqno + 0x3fca0b54 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_last_pcb_idx + 0x3fca0b55 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x3fca0b56 0x2 + .bss.dns_pcbs 0x3fca0b58 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.s_is_tmr_start + 0x3fca0b68 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x3fca0b69 0x3 + .bss.s_esp_netif_counter + 0x3fca0b6c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss.s_head 0x3fca0b70 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x3fca0b70 s_head + .bss.api_lock_sem + 0x3fca0b74 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.api_sync_sem + 0x3fca0b78 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.netif_callback + 0x3fca0b7c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.s_is_last_default_esp_netif_overridden + 0x3fca0b84 0x1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x3fca0b85 0x3 + .bss.s_last_default_esp_netif + 0x3fca0b88 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.s_wifi_inited + 0x3fca0b8c 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .bss.wifi_default_handlers_set + 0x3fca0b8d 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x3fca0b8e 0x2 + .bss.s_wifi_netifs + 0x3fca0b90 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss.s_wifi_netifs + 0x3fca0b9c 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_rxcbs + 0x3fca0ba8 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_thread_sem_key$0 + 0x3fca0bb4 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss.s_wifi_thread_sem_key_init$1 + 0x3fca0bb8 0x1 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x3fca0bb9 0x3 + .bss.global_cacert + 0x3fca0bbc 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .bss.supported_init + 0x3fca0bc0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss.supported_ciphersuites + 0x3fca0bc4 0xec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss.init_done$1 + 0x3fca0cb0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.ecp_supported_grp_id + 0x3fca0cb4 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.mul_count + 0x3fca0ce8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.dbl_count + 0x3fca0cec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.add_count + 0x3fca0cf0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.s_timeout_ms + 0x3fca0cf4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .bss.s_ds_lock + 0x3fca0cf8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .bss.s_ds_data + 0x3fca0cfc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .bss.op_sem_buf$1 + 0x3fca0d00 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .bss.op_complete_sem + 0x3fca0d54 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .bss.op_sem_buf$2 + 0x3fca0d58 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .bss.op_complete_sem + 0x3fca0dac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .bss.tx_channel + 0x3fca0db0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .bss.rx_channel + 0x3fca0db4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .bss.s_netstack_ref + 0x3fca0db8 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x3fca0db8 s_netstack_ref + .bss.s_tx_cacheq + 0x3fca0dbc 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x3fca0dbc s_tx_cacheq + .bss.len_dh_ie + 0x3fca0dc4 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x3fca0dc4 len_dh_ie + *fill* 0x3fca0dc5 0x3 + .bss.g_sa_query_mac_list + 0x3fca0dc8 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x3fca0dc8 g_sa_query_mac_list + .bss.g_deauth_mac_list + 0x3fca0dd4 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x3fca0dd4 g_deauth_mac_list + .bss.g_beacon_eb_allocated + 0x3fca0de0 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + *fill* 0x3fca0de1 0x3 + .bss.ap_rxcb 0x3fca0de4 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x3fca0de4 ap_rxcb + .bss.tim_offset + 0x3fca0de8 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + *fill* 0x3fca0de9 0x3 + .bss.BcnIntvl 0x3fca0dec 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss.g_beacon_idx + 0x3fca0df0 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x3fca0df0 g_beacon_idx + *fill* 0x3fca0df1 0x3 + .bss.g_beacon_eb + 0x3fca0df4 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x3fca0df4 g_beacon_eb + .bss.g_beacon_dtim_send_mc + 0x3fca0dfc 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss.beacon_send_start_flag + 0x3fca0dfd 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + *fill* 0x3fca0dfe 0x2 + .bss.beacon_timer + 0x3fca0e00 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss.esp_mesh_quick_funcs + 0x3fca0e14 0xb0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x3fca0e14 esp_mesh_quick_funcs + .bss.g_mesh_topology + 0x3fca0ec4 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x3fca0ec4 g_mesh_topology + .bss.gChmCxt 0x3fca0ec8 0x250 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x3fca0ec8 gChmCxt + .bss.g_offchan_ctx + 0x3fca1118 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + 0x3fca1118 g_offchan_ctx + .bss.g_hmac_cnt + 0x3fca112c 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + 0x3fca112c g_hmac_cnt + .bss.tokens$1 0x3fca116c 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .bss.g_wifi_nvs_cfg + 0x3fca1170 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .bss.s_wifi_nvs + 0x3fca1174 0x51c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x3fca1174 s_wifi_nvs + .bss.s_ap_igtk + 0x3fca1690 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .bss.s_sta_igtk + 0x3fca16e0 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .bss.overwrite_save_ap_id$0 + 0x3fca1730 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x3fca1731 0x7 + .bss.g_wifi_menuconfig + 0x3fca1738 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x3fca1738 g_wifi_menuconfig + .bss.mac_list_lock + 0x3fca17a0 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x3fca17a0 mac_list_lock + .bss.s_wifi_task_hdl + 0x3fca17a4 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x3fca17a4 s_wifi_task_hdl + .bss.s_wps_start + 0x3fca17a8 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .bss.s_wpa2_start + 0x3fca17a9 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .bss.g_mac_sleep_en + 0x3fca17aa 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x3fca17aa g_mac_sleep_en + .bss.offchan_tx_progress_in + 0x3fca17ab 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x3fca17ab offchan_tx_progress_in + .bss.ftm_resp_ctx + 0x3fca17ac 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + 0x3fca17ac ftm_resp_ctx + .bss.s_wifi_api_lock + 0x3fca17b8 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x3fca17b8 s_wifi_api_lock + .bss.s_net80211_data_init + 0x3fca17bc 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.s_wifi_stop_in_progress + 0x3fca17bd 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x3fca17bd s_wifi_stop_in_progress + .bss.is_connected_sync + 0x3fca17be 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .bss.ap_no_lr 0x3fca17bf 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3fca17bf ap_no_lr + .bss.reconnect_flag + 0x3fca17c0 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3fca17c0 reconnect_flag + .bss.g_rssi_threshold_failure + 0x3fca17c1 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3fca17c1 g_rssi_threshold_failure + .bss.g_authmode_threshold_failure + 0x3fca17c2 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3fca17c2 g_authmode_threshold_failure + .bss.g_authmode_incompatible + 0x3fca17c3 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3fca17c3 g_authmode_incompatible + .bss.g_in_blacklist_flag + 0x3fca17c4 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3fca17c4 g_in_blacklist_flag + *fill* 0x3fca17c5 0x1 + .bss.s_sta_last_start_txseq + 0x3fca17c6 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .bss.g_cnxMgr 0x3fca17c8 0xf28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3fca17c8 g_cnxMgr + .bss.g_cnx_probe_rc_list_cb + 0x3fca26f0 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3fca26f0 g_cnx_probe_rc_list_cb + .bss.cnx_csa_timer + 0x3fca26f4 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .bss.s_csa_timer_bss + 0x3fca2708 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .bss.sta_con_timer + 0x3fca270c 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3fca270c sta_con_timer + .bss.avs_rx_content + 0x3fca2720 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .bss.get_key_cb + 0x3fca2724 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_cb 0x3fca2728 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .bss.sta_csa_timer + 0x3fca272c 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x3fca272c sta_csa_timer + .bss.s_eapol_txdone_cb + 0x3fca2740 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x3fca2740 s_eapol_txdone_cb + .bss.send_wake_null_timer + 0x3fca2744 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .bss.rssi_index + 0x3fca2758 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x3fca2758 rssi_index + *fill* 0x3fca2759 0x3 + .bss.rssi_saved + 0x3fca275c 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x3fca275c rssi_saved + .bss.in_rssi_adjust + 0x3fca2764 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x3fca2764 in_rssi_adjust + .bss.g_wifi_improve_contention_ability + 0x3fca2765 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x3fca2765 g_wifi_improve_contention_ability + *fill* 0x3fca2766 0x2 + .bss.g_ic 0x3fca2768 0x2b0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x3fca2768 g_ic + .bss.wpa_crypto_funcs + 0x3fca2a18 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x3fca2a18 wpa_crypto_funcs + .bss.s_ch$0 0x3fca2a44 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + *fill* 0x3fca2a46 0x2 + .bss.s_owe_scan_flag + 0x3fca2a48 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .bss.connect_scan_flag + 0x3fca2a4c 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x3fca2a4c connect_scan_flag + *fill* 0x3fca2a4d 0x1 + .bss.scannum 0x3fca2a4e 0x2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x3fca2a4e scannum + .bss.app_scan_params + 0x3fca2a50 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x3fca2a50 app_scan_params + .bss.gScanStruct + 0x3fca2a60 0x11c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x3fca2a60 gScanStruct + .bss.g_offchan_ready_ctx + 0x3fca2b7c 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .bss.g_offchan_ready_cb + 0x3fca2b80 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .bss.g_pm_tx_null_func + 0x3fca2b84 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .bss.g_pm 0x3fca2b88 0x220 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x3fca2b88 g_pm + .bss.s_is_6m 0x3fca2da8 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x3fca2da8 s_is_6m + .bss.if_ctrl 0x3fca2da9 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x3fca2da9 if_ctrl + *fill* 0x3fca2dd1 0x7 + .bss.s_fragment + 0x3fca2dd8 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x3fca2dd8 s_fragment + .bss.is_easy_fragment + 0x3fca2de8 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + *fill* 0x3fca2de9 0x3 + .bss.eb_space 0x3fca2dec 0xc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x3fca2dec eb_space + .bss.s_fix_rate + 0x3fca2eac 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x3fca2eac s_fix_rate + .bss.s_fix_rate_mask + 0x3fca2eb4 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x3fca2eb4 s_fix_rate_mask + .bss.g_pm_cnt 0x3fca2eb8 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x3fca2eb8 g_pm_cnt + .bss.g_lmac_cnt + 0x3fca2f00 0xc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x3fca2f00 g_lmac_cnt + .bss.BcnSendTick + 0x3fca2fc0 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3fca2fc0 BcnSendTick + .bss.wDevMacSleep + 0x3fca2fc4 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3fca2fc4 wDevMacSleep + .bss.g_wdev_csi_rx_ctx + 0x3fca3038 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3fca3038 g_wdev_csi_rx_ctx + .bss.g_wdev_csi_rx + 0x3fca303c 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3fca303c g_wdev_csi_rx + .bss.g_wdev_set_t1t4_cb + 0x3fca3040 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3fca3040 g_wdev_set_t1t4_cb + .bss.g_wdev_record_t2t3_cb + 0x3fca3044 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3fca3044 g_wdev_record_t2t3_cb + .bss.g_wdev_record_t1t4_cb + 0x3fca3048 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3fca3048 g_wdev_record_t1t4_cb + *fill* 0x3fca304c 0x4 + .bss.s_tbttstart + 0x3fca3050 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x3fca3050 s_tbttstart + .bss.s_timer_post + 0x3fca3058 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .bss.s_timer_task + 0x3fca305c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_timers 0x3fca3060 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_phy_modem_init_ref + 0x3fca3064 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3fca3065 0x3 + .bss.s_phy_digital_regs_mem + 0x3fca3068 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_is_phy_reg_stored + 0x3fca306c 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_is_phy_calibrated + 0x3fca306d 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3fca306e 0x2 + .bss.s_phy_access_lock + 0x3fca3070 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_phy_ant_config + 0x3fca3074 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + *fill* 0x3fca3084 0x4 + .bss.s_wifi_prev_timestamp + 0x3fca3088 0x8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss.phy_track_pll_timer + 0x3fca3090 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss.s_phy_modem_flag + 0x3fca3094 0x2 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss.g_wpa_config_changed + 0x3fca3096 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3fca3096 g_wpa_config_changed + *fill* 0x3fca3097 0x1 + .bss.wpa_cb 0x3fca3098 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3fca3098 wpa_cb + .bss.wifi_funcs + 0x3fca309c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3fca309c wifi_funcs + .bss.g_wpa_pmk_caching_disabled + 0x3fca30a0 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3fca30a0 g_wpa_pmk_caching_disabled + *fill* 0x3fca30a1 0x7 + .bss.g_wpa_supp + 0x3fca30a8 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x3fca30a8 g_wpa_supp + .bss.s_wps_sm_cb + 0x3fca3150 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.g_wpa3_hostap_auth_api_lock + 0x3fca3154 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x3fca3154 g_wpa3_hostap_auth_api_lock + .bss.g_wpa3_hostap_evt_queue + 0x3fca3158 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_wpa3_hostap_task_hdl + 0x3fca315c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_confirm + 0x3fca3160 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_commit + 0x3fca3164 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_token + 0x3fca3168 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_data + 0x3fca316c 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_pt 0x3fca31ec 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.global_hapd + 0x3fca31f0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x3fca31f0 global_hapd + .bss.eloop 0x3fca31f4 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss.eloop_data_lock + 0x3fca3218 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss.s_sm_valid_bitmap + 0x3fca321c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.s_sm_table + 0x3fca3220 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.assoc_ie_buf + 0x3fca3260 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3fca3260 assoc_ie_buf + .bss.gWpaSm 0x3fca3290 0x33c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3fca3290 gWpaSm + .bss.gEapSm 0x3fca35cc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.g_misc_nvs_init + 0x3fca35d0 0x1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + *fill* 0x3fca35d1 0x3 + .bss.g_log_level + 0x3fca35d4 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0x3fca35d4 g_log_level + .bss.g_misc_nvs + 0x3fca35d8 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0x3fca35d8 g_misc_nvs + .bss._ZN12_GLOBAL__N_113__new_handlerE + 0x3fca35dc 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .bss._ZL4init 0x3fca35e0 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .bss._ZN17__eh_globals_init7_S_initE + 0x3fca35e4 0x1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + 0x3fca35e4 __eh_globals_init::_S_init + *fill* 0x3fca35e5 0x3 + .bss._ZN12_GLOBAL__N_110eh_globalsE + 0x3fca35e8 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .bss.g_phyFuns + 0x3fca35f0 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x3fca35f0 g_phyFuns + .bss 0x3fca35f4 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + .bss 0x3fca35f8 0x13c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + 0x3fca35f8 __sf + 0x3fca3730 __stdio_exit_handler + *(.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) + COMMON 0x3fca3734 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x3fca3734 chip7_phy_init_ctrl + COMMON 0x3fca375e 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x3fca375e phy_version_str + 0x3fca3788 . = ALIGN (0x8) + *fill* 0x3fca3786 0x2 + 0x3fca3788 _bss_end = ABSOLUTE (.) + 0x00000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + +.flash.text 0x42000020 0xad356 + 0x42000020 _stext = . + 0x42000020 _instruction_reserved_start = ABSOLUTE (.) + 0x42000020 _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_oct_flash_init.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *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.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:esp_time_impl.* *libnewlib.a:assert.* *libnewlib.a:abort.* *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:timer_hal.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:rtc_cntl_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_timer.a:esp_timer_impl_common.* *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_wdt.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_pm.a:pm_impl.* *libesp_phy.a:phy_override.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sar_periph_ctrl.* *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:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *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.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.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_oct_flash_init.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *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.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:esp_time_impl.* *libnewlib.a:assert.* *libnewlib.a:abort.* *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:timer_hal.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:rtc_cntl_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_timer.a:esp_timer_impl_common.* *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_wdt.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_pm.a:pm_impl.* *libesp_phy.a:phy_override.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sar_periph_ctrl.* *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:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *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.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.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_oct_flash_init.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *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.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:esp_time_impl.* *libnewlib.a:assert.* *libnewlib.a:abort.* *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:timer_hal.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:rtc_cntl_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_timer.a:esp_timer_impl_common.* *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_wdt.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_pm.a:pm_impl.* *libesp_phy.a:phy_override.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sar_periph_ctrl.* *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:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *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.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.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_oct_flash_init.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *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.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:esp_time_impl.* *libnewlib.a:assert.* *libnewlib.a:abort.* *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:timer_hal.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:rtc_cntl_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_timer.a:esp_timer_impl_common.* *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_wdt.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_pm.a:pm_impl.* *libesp_phy.a:phy_override.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sar_periph_ctrl.* *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:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *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.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text.*) + .literal.esp_app_format_init_elf_sha256 + 0x42000020 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.esp_app_get_elf_sha256 + 0x42000028 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 + 0x4200002c 0x3c 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 + 0x42000068 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 + 0x42000068 0x24 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x40 (size before relaxing) + .literal.__esp_system_init_fn_init_efuse + 0x4200008c 0x10 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x18 (size before relaxing) + .literal.esp_efuse_read_field_blob + 0x4200009c 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x18 (size before relaxing) + .literal.esp_efuse_check_errors + 0x420000b0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_utility_process + 0x420000b4 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x40 (size before relaxing) + .literal.esp_efuse_utility_read_reg + 0x420000e0 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x1c (size before relaxing) + .literal.esp_efuse_utility_fill_buff + 0x420000f0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x8 (size before relaxing) + .literal.esp_efuse_utility_count_once + 0x420000f4 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xc (size before relaxing) + .literal.esp_register_shutdown_handler + 0x420000f8 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_unregister_shutdown_handler + 0x420000fc 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x4 (size before relaxing) + .literal.esp_restart + 0x420000fc 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0xc (size before relaxing) + .literal.__esp_system_init_fn_init_show_cpu_freq + 0x42000104 0x10 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x24 (size before relaxing) + .literal.__esp_system_init_fn_init_brownout + 0x42000114 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x4 (size before relaxing) + .literal.__esp_system_init_fn_init_newlib_time + 0x42000114 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x4 (size before relaxing) + .literal.__esp_system_init_fn_init_flash + 0x42000114 0x18 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x24 (size before relaxing) + .literal.__esp_system_init_fn_init_apb_dma + 0x4200012c 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 + 0x4200012c 0x10 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .literal.core_intr_matrix_clear + 0x4200013c 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.sys_rtc_init + 0x42000140 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x4 (size before relaxing) + .literal.start_other_core + 0x42000140 0x28 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x40 (size before relaxing) + .literal.system_early_init + 0x42000168 0x5c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xd0 (size before relaxing) + .literal.startup_resume_other_cores + 0x420001c4 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.mspi_init + 0x420001c8 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x10 (size before relaxing) + .literal.select_rtc_slow_clk + 0x420001d0 0x24 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x38 (size before relaxing) + .literal.esp_rtc_init + 0x420001f4 0x14 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .literal.esp_clk_init + 0x42000208 0x38 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x78 (size before relaxing) + .literal.esp_perip_clk_init + 0x42000240 0x38 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x40 (size before relaxing) + .literal.esp_cache_err_get_panic_info + 0x42000278 0x14 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x18 (size before relaxing) + .literal.esp_cache_err_acs_save_and_clr + 0x4200028c 0x20 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x24 (size before relaxing) + .literal.esp_cache_err_int_init + 0x420002ac 0x24 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x38 (size before relaxing) + .literal.esp_cache_err_get_cpuid + 0x420002d0 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x4 (size before relaxing) + .literal.esp_apb_backup_dma_lock_init + 0x420002d0 0xc esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .literal.esp_int_wdt_init + 0x420002dc 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x40 (size before relaxing) + .literal.esp_int_wdt_cpu_init + 0x4200030c 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x14 (size before relaxing) + .literal.do_global_ctors + 0x42000314 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .literal.do_system_init_fn + 0x4200031c 0x14 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x24 (size before relaxing) + .literal.do_core_init + 0x42000330 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x4 (size before relaxing) + .literal.do_secondary_init + 0x42000330 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .literal.start_cpu0_default + 0x42000330 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x14 (size before relaxing) + .literal.frame_to_panic_info + 0x42000338 0xc esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x14 (size before relaxing) + .literal.panic_handler + 0x42000344 0x38 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x60 (size before relaxing) + .literal.print_state_for_core + 0x4200037c 0xc esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x14 (size before relaxing) + .literal.print_state + 0x42000388 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + .literal.panic_restart + 0x42000388 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x4 (size before relaxing) + .literal.esp_ipc_isr_init + 0x42000388 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x8 (size before relaxing) + .literal.esp_ipc_isr_port_init + 0x4200038c 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0xc (size before relaxing) + .literal.print_debug_exception_details + 0x4200038c 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x40 (size before relaxing) + .literal.print_illegal_instruction_details + 0x420003ac 0x18 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x34 (size before relaxing) + .literal.print_cache_err_details + 0x420003c4 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x34 (size before relaxing) + .literal.panic_print_registers + 0x420003d4 0x30 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x84 (size before relaxing) + .literal.panic_arch_fill_info + 0x42000404 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.panic_soc_fill_info + 0x42000414 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x14 (size before relaxing) + .literal.panic_print_backtrace + 0x42000424 0x4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.esp_ipc_call_and_wait + 0x42000428 0x34 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x40 (size before relaxing) + .literal.esp_ipc_init + 0x4200045c 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x38 (size before relaxing) + .literal.esp_ipc_call_blocking + 0x42000484 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x4 (size before relaxing) + .literal.esp_ipc_call_nonblocking + 0x42000484 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x28 (size before relaxing) + .literal.esp_err_to_name + 0x4200049c 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.uart_hal_rxfifo_rst + 0x420004a4 0x8 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.esp_log_set_default_level + 0x420004ac 0x0 esp-idf/log/liblog.a(log_level.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_is_tag_loggable + 0x420004ac 0x4 esp-idf/log/liblog.a(log_level.c.obj) + .literal.set_log_level + 0x420004b0 0x8 esp-idf/log/liblog.a(log_linked_list.c.obj) + .literal.add_to_list + 0x420004b8 0x8 esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_linked_list_set_level + 0x420004c0 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x8 (size before relaxing) + .literal.esp_log_linked_list_get_level + 0x420004c0 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x8 (size before relaxing) + .literal.esp_log_linked_list_clean + 0x420004c0 0x4 esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x8 (size before relaxing) + .literal.fix_cache_generation_overflow + 0x420004c4 0xc esp-idf/log/liblog.a(log_binary_heap.c.obj) + .literal.heap_swap + 0x420004d0 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x4 (size before relaxing) + .literal.heap_bubble_down + 0x420004d0 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x8 (size before relaxing) + .literal.esp_log_cache_set_level + 0x420004d0 0xc esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x1c (size before relaxing) + .literal.esp_log_cache_get_level + 0x420004dc 0xc esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x2c (size before relaxing) + .literal.esp_log_cache_clean + 0x420004e8 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0xc (size before relaxing) + .literal.esp_log_cache_add + 0x420004e8 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_get_free_size + 0x420004e8 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_info + 0x420004f4 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x10 (size before relaxing) + .literal.heap_caps_get_largest_free_block + 0x420004f8 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x4 (size before relaxing) + .literal.heap_caps_aligned_calloc + 0x420004f8 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x8 (size before relaxing) + .literal.sorted_add_to_registered_heaps + 0x420004fc 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x4 (size before relaxing) + .literal.register_heap + 0x420004fc 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_enable_nonos_stack_heaps + 0x42000510 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_init + 0x42000514 0x3c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x90 (size before relaxing) + .literal.__esp_system_init_fn_init_heap + 0x42000550 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x4 (size before relaxing) + .literal.s_get_num_reserved_regions + 0x42000550 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .literal.s_prepare_reserved_regions + 0x42000558 0x28 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x48 (size before relaxing) + .literal.soc_get_available_memory_region_max_count + 0x42000580 0x4 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x8 (size before relaxing) + .literal.soc_get_available_memory_regions + 0x42000584 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x20 (size before relaxing) + .literal.insert_vector_desc + 0x4200058c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.find_desc_for_int + 0x42000590 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.get_desc_for_int + 0x42000590 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + .literal.find_desc_for_source + 0x4200059c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.is_vect_desc_usable + 0x420005a8 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.get_available_int + 0x420005b4 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 + 0x420005b8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_alloc_intrstatus_bind + 0x420005d0 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x9c (size before relaxing) + .literal.esp_intr_alloc_intrstatus + 0x42000610 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.esp_intr_alloc + 0x42000610 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.intr_free_for_current_cpu + 0x42000610 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x38 (size before relaxing) + .literal.esp_intr_free + 0x4200061c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.intr_free_for_other_cpu + 0x42000624 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.s_rtc_isr_noniram_hook + 0x42000624 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.s_rtc_isr_noniram_hook_relieve + 0x42000628 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x4 (size before relaxing) + .literal.rtc_isr_ensure_installed + 0x42000628 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x28 (size before relaxing) + .literal.rtc_isr_register + 0x42000644 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x24 (size before relaxing) + .literal.esp_sleep_config_gpio_isolate + 0x4200064c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x7c (size before relaxing) + .literal.esp_sleep_enable_gpio_switch + 0x42000664 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x3c (size before relaxing) + .literal.__esp_system_init_fn_esp_sleep_startup_init + 0x42000670 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x8 (size before relaxing) + .literal.esp_deep_sleep_wakeup_io_reset + 0x42000670 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_brownout_init + 0x42000680 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x14 (size before relaxing) + .literal.esp_chip_info + 0x42000688 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_icache_set_pms_area_0 + 0x42000688 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_icache_set_pms_area_1 + 0x42000690 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_prepare_iram0_split_line_regval + 0x42000694 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x10 (size before relaxing) + .literal.memprot_ll_set_iram0_split_line + 0x4200069c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0xc (size before relaxing) + .literal.memprot_ll_iram0_set_pms_area_0 + 0x420006a4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x4 (size before relaxing) + .literal.memprot_ll_iram0_set_pms_area_1 + 0x420006a4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x4 (size before relaxing) + .literal.memprot_ll_iram0_set_pms_area_2 + 0x420006a4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x4 (size before relaxing) + .literal.memprot_ll_iram0_set_pms_area_3 + 0x420006a4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_iram0_get_monitor_lock + 0x420006a8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_iram0_set_monitor_en + 0x420006b0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_iram0_get_monitor_en + 0x420006b8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_iram0_set_monitor_intrclr + 0x420006b8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_iram0_reset_monitor_intrclr + 0x420006b8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_get_pif_constraint_lock + 0x420006b8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_set_rtcfast_split_line + 0x420006c0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x14 (size before relaxing) + .literal.memprot_ll_rtcfast_set_pms_area + 0x420006cc 0xc esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_rtcfast_get_pms_area + 0x420006d8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_rtcfast_get_monitor_lock + 0x420006d8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_rtcfast_set_monitor_en + 0x420006e0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_rtcfast_get_monitor_en + 0x420006e8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_rtcfast_set_monitor_intrclr + 0x420006e8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_rtcfast_reset_monitor_intrclr + 0x420006e8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_prepare_dram0_split_line_regval + 0x420006e8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x14 (size before relaxing) + .literal.memprot_ll_set_dram0_split_line + 0x420006ec 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0xc (size before relaxing) + .literal.memprot_ll_dram0_set_pms_area_0 + 0x420006f0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_dram0_set_pms_area_1 + 0x420006f4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x4 (size before relaxing) + .literal.memprot_ll_dram0_set_pms_area_2 + 0x420006f4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x4 (size before relaxing) + .literal.memprot_ll_dram0_set_pms_area_3 + 0x420006f4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x4 (size before relaxing) + .literal.memprot_ll_dram0_get_monitor_lock + 0x420006f4 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_dram0_set_monitor_en + 0x420006fc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.memprot_ll_dram0_get_monitor_en + 0x42000704 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_dram0_set_monitor_intrclr + 0x42000704 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.memprot_ll_dram0_reset_monitor_intrclr + 0x42000704 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.esp_mprot_cpuid_valid + 0x42000704 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_memprot_iram0_get_def_split_addr + 0x4200070c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_memprot_dram0_get_def_split_addr + 0x42000710 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8 (size before relaxing) + .literal.esp_memprot_rtcfast_get_min_split_addr + 0x42000710 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_set_intr_matrix + 0x42000714 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x24 (size before relaxing) + .literal.esp_mprot_set_split_addr + 0x42000718 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x50 (size before relaxing) + .literal.esp_mprot_get_default_main_split_addr + 0x42000730 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x10 (size before relaxing) + .literal.esp_mprot_set_split_addr_lock + 0x42000730 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x18 (size before relaxing) + .literal.esp_mprot_get_split_addr_lock + 0x42000734 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x14 (size before relaxing) + .literal.esp_mprot_set_pms_lock + 0x42000734 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x1c (size before relaxing) + .literal.esp_mprot_get_pms_lock + 0x4200073c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x18 (size before relaxing) + .literal.esp_mprot_set_pms_area + 0x4200073c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x44 (size before relaxing) + .literal.esp_mprot_get_pms_area + 0x4200073c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x28 (size before relaxing) + .literal.esp_mprot_set_monitor_lock + 0x4200073c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x2c (size before relaxing) + .literal.esp_mprot_get_monitor_lock + 0x4200073c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x20 (size before relaxing) + .literal.esp_mprot_set_monitor_en + 0x4200073c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x20 (size before relaxing) + .literal.esp_mprot_get_monitor_en + 0x4200073c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x20 (size before relaxing) + .literal.esp_mprot_monitor_clear_intr + 0x4200073c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x38 (size before relaxing) + .literal.esp_mprot_is_conf_locked_any + 0x4200073c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x34 (size before relaxing) + .literal.esp_mprot_set_prot + 0x4200073c 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x220 (size before relaxing) + .literal.esp_mprot_ll_err_to_esp_err + 0x42000794 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .literal.esp_cpu_intr_get_desc + 0x420007a8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x14 (size before relaxing) + .literal.clk_tree_rtc_slow_calibration + 0x420007b8 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 + 0x420007c8 0xc 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 + 0x420007d4 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 + 0x420007d4 0x4 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 + 0x420007d8 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 + 0x420007dc 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x20 (size before relaxing) + .literal.__esp_system_init_fn_init_libc + 0x420007ec 0x0 esp-idf/newlib/libnewlib.a(init.c.obj) + 0x4 (size before relaxing) + .literal.__esp_system_init_fn_init_libc_stdio + 0x420007ec 0x4 esp-idf/newlib/libnewlib.a(init.c.obj) + 0x8 (size before relaxing) + .literal.esp_libc_newlib_locks_init + 0x420007f0 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .literal.esp_libc_locks_init + 0x420007f8 0x18 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x2c (size before relaxing) + .literal.adjust_boot_time + 0x42000810 0x14 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x18 (size before relaxing) + .literal.get_adjusted_boot_time + 0x42000824 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.adjtime_corr_stop + 0x42000830 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .literal._gettimeofday_r + 0x42000830 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .literal._times_r + 0x42000834 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .literal.settimeofday + 0x42000838 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.usleep + 0x42000838 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x1c (size before relaxing) + .literal.sleep + 0x42000840 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .literal.clock_gettime + 0x42000840 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x1c (size before relaxing) + .literal.esp_libc_time_init + 0x42000844 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.fstat + 0x42000848 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x8 (size before relaxing) + .literal.syscall_not_implemented_aborts + 0x4200084c 0x0 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + 0x4 (size before relaxing) + .literal.esp_reent_init + 0x4200084c 0x4 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x8 (size before relaxing) + .literal.esp_cleanup_r + 0x42000850 0x4 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x10 (size before relaxing) + .literal.raise_r_stub + 0x42000854 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_libc_init + 0x42000854 0x18 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x2c (size before relaxing) + .literal.esp_libc_init_global_stdio + 0x4200086c 0x10 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x24 (size before relaxing) + .literal.getrandom + 0x4200087c 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) + 0x8 (size before relaxing) + .literal.find_key + 0x4200087c 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x10 (size before relaxing) + .literal.pthread_cleanup_thread_specific_data_callback + 0x42000884 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x1c (size before relaxing) + .literal.pthread_key_create + 0x42000890 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x14 (size before relaxing) + .literal.pthread_getspecific + 0x42000890 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_setspecific + 0x42000898 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x20 (size before relaxing) + .literal.esp_timer_early_init + 0x420008a4 0x4 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 + 0x420008a8 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_timer_impl_init_system_time + 0x420008a8 0x14 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x28 (size before relaxing) + .literal.uart_get_avail_data_len + 0x420008bc 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_tx_char + 0x420008c0 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x4 (size before relaxing) + .literal.uart_rx_char + 0x420008c0 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x4 (size before relaxing) + .literal.uart_read_char + 0x420008c0 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x4 (size before relaxing) + .literal.unregister_select + 0x420008c0 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c (size before relaxing) + .literal.uart_end_select + 0x420008d4 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x20 (size before relaxing) + .literal.register_select + 0x420008d8 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c (size before relaxing) + .literal.uart_start_select + 0x420008d8 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x40 (size before relaxing) + .literal.select_notif_callback_isr + 0x420008dc 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x20 (size before relaxing) + .literal.uart_tcflush + 0x420008dc 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x10 (size before relaxing) + .literal.uart_tcdrain + 0x420008dc 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0xc (size before relaxing) + .literal.uart_tcgetattr + 0x420008dc 0x4c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x8c (size before relaxing) + .literal.uart_tcsetattr + 0x42000928 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x9c (size before relaxing) + .literal.uart_access + 0x42000928 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x20 (size before relaxing) + .literal.uart_open + 0x42000934 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x10 (size before relaxing) + .literal.uart_fcntl + 0x42000938 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c (size before relaxing) + .literal.uart_fstat + 0x42000948 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x18 (size before relaxing) + .literal.uart_close + 0x42000950 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x10 (size before relaxing) + .literal.uart_return_char + 0x42000954 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x14 (size before relaxing) + .literal.uart_fsync + 0x4200095c 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x20 (size before relaxing) + .literal.uart_read + 0x42000968 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x40 (size before relaxing) + .literal.uart_write + 0x42000970 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_uart_get_vfs + 0x42000974 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_vfs_dev_register + 0x42000978 0x14 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 + 0x4200098c 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x4 (size before relaxing) + .literal.uart_pattern_queue_update + 0x4200098c 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_reenable_intr_mask + 0x42000990 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_set_word_length + 0x420009a0 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_get_word_length + 0x420009ac 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_set_stop_bits + 0x420009b4 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_get_stop_bits + 0x420009c0 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_set_parity + 0x420009c8 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_get_parity + 0x420009d0 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_set_baudrate + 0x420009d8 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x50 (size before relaxing) + .literal.uart_get_baudrate + 0x420009f0 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x38 (size before relaxing) + .literal.uart_wait_tx_done + 0x420009fc 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x6c (size before relaxing) + .literal.uart_get_buffered_data_len + 0x42000a10 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_flush_input + 0x42000a14 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x74 (size before relaxing) + .literal.uart_is_driver_installed + 0x42000a28 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_set_select_notif_callback + 0x42000a28 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_get_selectlock + 0x42000a28 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.__esp_system_init_fn_usb_serial_jtag_conn_status_init + 0x42000a2c 0x14 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .literal.usb_serial_jtag_open + 0x42000a40 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .literal.usb_serial_jtag_rx_char_no_driver + 0x42000a44 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .literal.usb_serial_jtag_read_char + 0x42000a48 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x4 (size before relaxing) + .literal.usb_serial_jtag_wait_tx_done_no_driver + 0x42000a48 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x14 (size before relaxing) + .literal.usb_serial_jtag_tx_char_no_driver + 0x42000a4c 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x14 (size before relaxing) + .literal.unregister_select + 0x42000a4c 0xc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x20 (size before relaxing) + .literal.usb_serial_jtag_end_select + 0x42000a58 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x8 (size before relaxing) + .literal.register_select + 0x42000a58 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x24 (size before relaxing) + .literal.usb_serial_jtag_start_select + 0x42000a5c 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x20 (size before relaxing) + .literal.select_notif_callback_isr + 0x42000a5c 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x20 (size before relaxing) + .literal.usb_serial_jtag_tcflush + 0x42000a5c 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x4 (size before relaxing) + .literal.usb_serial_jtag_fcntl + 0x42000a5c 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0xc (size before relaxing) + .literal.usb_serial_jtag_tcgetattr + 0x42000a5c 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x10 (size before relaxing) + .literal.usb_serial_jtag_fstat + 0x42000a5c 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x8 (size before relaxing) + .literal.usb_serial_jtag_fsync + 0x42000a5c 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x14 (size before relaxing) + .literal.usb_serial_jtag_tcdrain + 0x42000a60 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x4 (size before relaxing) + .literal.usb_serial_jtag_tcsetattr + 0x42000a60 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x10 (size before relaxing) + .literal.usb_serial_jtag_write + 0x42000a60 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x10 (size before relaxing) + .literal.usb_serial_jtag_return_char + 0x42000a60 0xc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x14 (size before relaxing) + .literal.usb_serial_jtag_read + 0x42000a6c 0x10 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x48 (size before relaxing) + .literal.__esp_system_init_fn_init_vfs_usj_sec + 0x42000a7c 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_usb_serial_jtag_get_vfs + 0x42000a84 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x4 (size before relaxing) + .literal.usb_serial_jtag_is_driver_installed + 0x42000a84 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_set_select_notif_callback + 0x42000a88 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + 0x8 (size before relaxing) + .literal.usb_serial_jtag_get_read_bytes_available + 0x42000a88 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + 0xc (size before relaxing) + .literal.usb_serial_jtag_write_ready + 0x42000a8c 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + 0x8 (size before relaxing) + .literal.console_start_select + 0x42000a90 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .literal.console_end_select + 0x42000a94 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4 (size before relaxing) + .literal.console_open + 0x42000a94 0x14 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x18 (size before relaxing) + .literal.console_write + 0x42000aa8 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fstat + 0x42000aac 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_close + 0x42000aac 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x14 (size before relaxing) + .literal.console_read + 0x42000ab0 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_fcntl + 0x42000ab4 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_fsync + 0x42000ab8 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_access + 0x42000ab8 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_tcsetattr + 0x42000ab8 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_tcgetattr + 0x42000ab8 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_tcdrain + 0x42000ab8 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_tcflush + 0x42000ab8 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_dev_console_register + 0x42000ab8 0x8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_console_register + 0x42000ac0 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x14 (size before relaxing) + .literal.__esp_system_init_fn_init_vfs_console + 0x42000ac4 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4 (size before relaxing) + .literal.esp_get_free_index + 0x42000ac4 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.set_global_fd_sets + 0x42000ac8 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.free_proxy_members + 0x42000ad0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_duplicate_fs_ops + 0x42000ad0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x2c (size before relaxing) + .literal.esp_vfs_free_fs_ops + 0x42000ad0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_register_fs_common + 0x42000ad0 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x24 (size before relaxing) + .literal.esp_minify_vfs + 0x42000adc 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x28 (size before relaxing) + .literal.esp_vfs_make_fs_ops + 0x42000ae8 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.translate_path + 0x42000ae8 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_register_fs + 0x42000af8 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_register_common + 0x42000af8 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_register_fd_range + 0x42000af8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x28 (size before relaxing) + .literal.get_vfs_for_index + 0x42000afc 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.get_vfs_for_fd + 0x42000afc 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.call_end_selects + 0x42000afc 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4 (size before relaxing) + .literal.get_vfs_for_path + 0x42000afc 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_open + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + .literal.esp_vfs_write + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_lseek + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_read + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_close + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x18 (size before relaxing) + .literal.esp_vfs_fstat + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_fcntl_r + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_fsync + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_stat + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_link + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_unlink + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_rename + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_access + 0x42000b00 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_select + 0x42000b00 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x98 (size before relaxing) + .literal.esp_vfs_select_triggered + 0x42000b10 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_select_triggered_isr + 0x42000b10 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.tcgetattr + 0x42000b14 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.tcsetattr + 0x42000b14 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.tcdrain + 0x42000b14 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.tcflush + 0x42000b14 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.vfs_null_get_empty_fd + 0x42000b14 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .literal.vfs_null_fsync + 0x42000b18 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x4 (size before relaxing) + .literal.vfs_null_ioctl + 0x42000b18 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_null_fcntl + 0x42000b18 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_null_close + 0x42000b18 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x4 (size before relaxing) + .literal.vfs_null_open + 0x42000b18 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x1c (size before relaxing) + .literal.vfs_null_pwrite + 0x42000b1c 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_null_pread + 0x42000b1c 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_null_read + 0x42000b1c 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_null_lseek + 0x42000b1c 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0xc (size before relaxing) + .literal.vfs_null_write + 0x42000b1c 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_null_stat + 0x42000b1c 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_null_fstat + 0x42000b20 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_null_register + 0x42000b20 0x8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0xc (size before relaxing) + .literal.__esp_system_init_fn_init_vfs_nullfs + 0x42000b28 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x4 (size before relaxing) + .literal.app_main + 0x42000b28 0x0 esp-idf/main/libmain.a(main.c.obj) + 0xc (size before relaxing) + .literal.wifi_event_handler + 0x42000b28 0x14 esp-idf/main/libmain.a(wifi_init.c.obj) + 0x2c (size before relaxing) + .literal.wifi_init + 0x42000b3c 0x5c esp-idf/main/libmain.a(wifi_init.c.obj) + 0xc8 (size before relaxing) + .literal.fs_init + 0x42000b98 0x10 esp-idf/main/libmain.a(fs_init.c.obj) + 0x2c (size before relaxing) + .literal.periodic_publish_task + 0x42000ba8 0x14 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x24 (size before relaxing) + .literal.reboot_task + 0x42000bbc 0x4 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x18 (size before relaxing) + .literal.build_rpc_topics + 0x42000bc0 0x28 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x5c (size before relaxing) + .literal.mqtt_send_response + 0x42000be8 0x8 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x28 (size before relaxing) + .literal.send_job_status + 0x42000bf0 0x10 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x24 (size before relaxing) + .literal.mqtt_event_handler + 0x42000c00 0x5c esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x138 (size before relaxing) + .literal.mqtt_manager_init + 0x42000c5c 0x18 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x48 (size before relaxing) + .literal.esp_spiffs_get_empty + 0x42000c74 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.spiffs_res_to_errno + 0x42000c78 0x34 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.spiffs_mode_conv + 0x42000cac 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.esp_spiffs_by_label + 0x42000cb0 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_spiffs_rmdir + 0x42000cb0 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x4 (size before relaxing) + .literal.vfs_spiffs_mkdir + 0x42000cb0 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x4 (size before relaxing) + .literal.vfs_spiffs_link + 0x42000cb0 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x4 (size before relaxing) + .literal.vfs_spiffs_telldir + 0x42000cb0 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x10 (size before relaxing) + .literal.esp_spiffs_free + 0x42000cbc 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x1c (size before relaxing) + .literal.esp_spiffs_init + 0x42000cbc 0x70 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x160 (size before relaxing) + .literal.vfs_spiffs_get_mtime + 0x42000d2c 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x4 (size before relaxing) + .literal.vfs_spiffs_update_mtime_value + 0x42000d2c 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x18 (size before relaxing) + .literal.vfs_spiffs_utime + 0x42000d30 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x28 (size before relaxing) + .literal.vfs_spiffs_ftruncate + 0x42000d38 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_spiffs_truncate + 0x42000d38 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x30 (size before relaxing) + .literal.vfs_spiffs_close + 0x42000d3c 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_spiffs_closedir + 0x42000d3c 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x28 (size before relaxing) + .literal.vfs_spiffs_seekdir + 0x42000d40 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x44 (size before relaxing) + .literal.vfs_spiffs_readdir_r + 0x42000d48 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x38 (size before relaxing) + .literal.vfs_spiffs_readdir + 0x42000d50 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x18 (size before relaxing) + .literal.vfs_spiffs_opendir + 0x42000d54 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x34 (size before relaxing) + .literal.vfs_spiffs_rename + 0x42000d60 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x2c (size before relaxing) + .literal.vfs_spiffs_unlink + 0x42000d6c 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x24 (size before relaxing) + .literal.vfs_spiffs_stat + 0x42000d70 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x3c (size before relaxing) + .literal.vfs_spiffs_fsync + 0x42000d78 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_spiffs_fstat + 0x42000d78 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x30 (size before relaxing) + .literal.vfs_spiffs_update_mtime + 0x42000d80 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x1c (size before relaxing) + .literal.vfs_spiffs_open + 0x42000d80 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x2c (size before relaxing) + .literal.vfs_spiffs_read + 0x42000d84 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_spiffs_lseek + 0x42000d84 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_spiffs_write + 0x42000d84 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.esp_spiffs_info + 0x42000d84 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_spiffs_register + 0x42000d84 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x2c (size before relaxing) + .literal.spiffs_api_lock + 0x42000d94 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x4 (size before relaxing) + .literal.spiffs_api_unlock + 0x42000d94 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x4 (size before relaxing) + .literal.spiffs_api_read + 0x42000d94 0x8 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_api_write + 0x42000d9c 0x4 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_api_erase + 0x42000da0 0x4 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_api_check + 0x42000da4 0xc esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x18 (size before relaxing) + .literal.spiffs_hydro_write + 0x42000db0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_fflush_cache + 0x42000db0 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_hydro_read + 0x42000db4 0x10 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x48 (size before relaxing) + .literal.spiffs_stat_pix + 0x42000dc4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_read_dir_v + 0x42000dc4 0xc esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x14 (size before relaxing) + .literal.SPIFFS_format + 0x42000dd0 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x20 (size before relaxing) + .literal.SPIFFS_mount + 0x42000dd4 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x30 (size before relaxing) + .literal.SPIFFS_unmount + 0x42000ddc 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x14 (size before relaxing) + .literal.SPIFFS_open + 0x42000ddc 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x78 (size before relaxing) + .literal.SPIFFS_read + 0x42000ddc 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x8 (size before relaxing) + .literal.SPIFFS_write + 0x42000ddc 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x60 (size before relaxing) + .literal.SPIFFS_lseek + 0x42000de0 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x3c (size before relaxing) + .literal.SPIFFS_remove + 0x42000de8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x48 (size before relaxing) + .literal.SPIFFS_ftruncate + 0x42000de8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x34 (size before relaxing) + .literal.SPIFFS_stat + 0x42000de8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x28 (size before relaxing) + .literal.SPIFFS_fstat + 0x42000de8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x24 (size before relaxing) + .literal.SPIFFS_fflush + 0x42000de8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x1c (size before relaxing) + .literal.SPIFFS_close + 0x42000de8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x24 (size before relaxing) + .literal.SPIFFS_rename + 0x42000de8 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x5c (size before relaxing) + .literal.SPIFFS_update_meta + 0x42000dec 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x3c (size before relaxing) + .literal.SPIFFS_fupdate_meta + 0x42000dec 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x2c (size before relaxing) + .literal.SPIFFS_opendir + 0x42000dec 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xc (size before relaxing) + .literal.SPIFFS_readdir + 0x42000dec 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x18 (size before relaxing) + .literal.SPIFFS_closedir + 0x42000df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xc (size before relaxing) + .literal.SPIFFS_info + 0x42000df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_obj_lu_scan_v + 0x42000df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_update_ix_map + 0x42000df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x4 (size before relaxing) + .literal.spiffs_hash + 0x42000df4 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .literal.spiffs_obj_lu_find_id_and_span_v + 0x42000df8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_page_data_check + 0x42000df8 0x1c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x28 (size before relaxing) + .literal.spiffs_page_index_check + 0x42000e14 0x14 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x28 (size before relaxing) + .literal.spiffs_object_find_object_index_header_by_name_v + 0x42000e28 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_obj_lu_find_free_obj_id_compact_v + 0x42000e28 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_obj_lu_find_free_obj_id_bitmap_v + 0x42000e28 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_phys_cpy + 0x42000e2c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_obj_lu_find_entry_visitor + 0x42000e2c 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_erase_block + 0x42000e34 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0xc (size before relaxing) + .literal.spiffs_obj_lu_scan + 0x42000e34 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x24 (size before relaxing) + .literal.spiffs_obj_lu_find_id + 0x42000e3c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0xc (size before relaxing) + .literal.spiffs_obj_lu_find_free + 0x42000e3c 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_obj_lu_find_id_and_span + 0x42000e40 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_page_allocate_data + 0x42000e44 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_page_delete + 0x42000e44 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_page_move + 0x42000e44 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x18 (size before relaxing) + .literal.spiffs_cb_object_event + 0x42000e44 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0xc (size before relaxing) + .literal.spiffs_object_create + 0x42000e44 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x24 (size before relaxing) + .literal.spiffs_object_update_index_hdr + 0x42000e44 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x2c (size before relaxing) + .literal.spiffs_object_open_by_page + 0x42000e44 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x1c (size before relaxing) + .literal.spiffs_object_append + 0x42000e44 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x84 (size before relaxing) + .literal.spiffs_object_modify + 0x42000e44 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x6c (size before relaxing) + .literal.spiffs_object_find_object_index_header_by_name + 0x42000e44 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_object_truncate + 0x42000e48 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x84 (size before relaxing) + .literal.spiffs_object_read + 0x42000e48 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x30 (size before relaxing) + .literal.spiffs_obj_lu_find_free_obj_id + 0x42000e48 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x24 (size before relaxing) + .literal.spiffs_fd_find_new + 0x42000e50 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_fd_return + 0x42000e58 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_fd_get + 0x42000e5c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_fd_temporal_cache_rehash + 0x42000e5c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_cache_page_remove_oldest + 0x42000e5c 0x4 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .literal.spiffs_cache_drop_page + 0x42000e60 0x4 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_phys_rd + 0x42000e64 0x4 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_phys_wr + 0x42000e68 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0xc (size before relaxing) + .literal.spiffs_cache_page_allocate_by_fd + 0x42000e68 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_cache_fd_release + 0x42000e68 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x4 (size before relaxing) + .literal.spiffs_cache_init + 0x42000e68 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0xc (size before relaxing) + .literal.spiffs_gc_erase_block + 0x42000e68 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_gc_quick + 0x42000e68 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_gc_erase_page_stats + 0x42000e68 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_gc_find_candidate + 0x42000e68 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_gc_clean + 0x42000e68 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x6c (size before relaxing) + .literal.spiffs_gc_check + 0x42000e68 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x14 (size before relaxing) + .literal.create_string + 0x42000e68 0x10 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x20 (size before relaxing) + .literal.esp_mqtt_check_cfg_conflict + 0x42000e78 0x18 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x44 (size before relaxing) + .literal.create_client_data + 0x42000e90 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x40 (size before relaxing) + .literal.run_event_loop + 0x42000e98 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x14 (size before relaxing) + .literal.esp_mqtt_dispatch_event + 0x42000ea0 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0xc (size before relaxing) + .literal.mqtt_delete_expired_messages + 0x42000ea8 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0xc (size before relaxing) + .literal.esp_mqtt_client_create_transport + 0x42000eac 0x1c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x9c (size before relaxing) + .literal.esp_mqtt_dispatch_event_with_msgid + 0x42000ec8 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x8 (size before relaxing) + .literal.esp_mqtt_client_dispatch_transport_error + 0x42000ecc 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x10 (size before relaxing) + .literal.esp_mqtt_handle_transport_read_error + 0x42000ed4 0xc esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x28 (size before relaxing) + .literal.esp_mqtt_abort_connection + 0x42000ee0 0xc esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x14 (size before relaxing) + .literal.esp_mqtt_write + 0x42000eec 0xc esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x2c (size before relaxing) + .literal.mqtt_message_receive + 0x42000ef8 0x14 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x54 (size before relaxing) + .literal.esp_mqtt_connect + 0x42000f0c 0x24 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x84 (size before relaxing) + .literal.send_disconnect_msg + 0x42000f30 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x24 (size before relaxing) + .literal.deliver_suback + 0x42000f38 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x18 (size before relaxing) + .literal.deliver_publish + 0x42000f40 0x14 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x38 (size before relaxing) + .literal.remove_initiator_message + 0x42000f54 0x0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x4 (size before relaxing) + .literal.mqtt_process_receive + 0x42000f54 0x20 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0xb8 (size before relaxing) + .literal.mqtt_resend_pubrel + 0x42000f74 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x2c (size before relaxing) + .literal.mqtt_resend_queued + 0x42000f7c 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x20 (size before relaxing) + .literal.esp_mqtt_client_ping + 0x42000f80 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x24 (size before relaxing) + .literal.process_keepalive + 0x42000f88 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x30 (size before relaxing) + .literal.esp_mqtt_task + 0x42000f90 0x3c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x12c (size before relaxing) + .literal.mqtt_enqueue + 0x42000fcc 0x0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0xc (size before relaxing) + .literal.make_publish + 0x42000fcc 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x14 (size before relaxing) + .literal.mqtt_client_enqueue_publish + 0x42000fd0 0x0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0xc (size before relaxing) + .literal.esp_mqtt_set_if_config + 0x42000fd0 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x8 (size before relaxing) + .literal.esp_mqtt_destroy_config + 0x42000fd4 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x50 (size before relaxing) + .literal.esp_mqtt_client_set_uri + 0x42000fd8 0x20 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x80 (size before relaxing) + .literal.esp_mqtt_set_config + 0x42000ff8 0x10 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x168 (size before relaxing) + .literal.esp_mqtt_client_start + 0x42001008 0x10 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x44 (size before relaxing) + .literal.esp_mqtt_client_stop + 0x42001018 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x48 (size before relaxing) + .literal.esp_mqtt_client_destroy + 0x42001020 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x20 (size before relaxing) + .literal.esp_mqtt_client_init + 0x42001024 0x8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x40 (size before relaxing) + .literal.esp_mqtt_client_subscribe_multiple + 0x4200102c 0xc esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x5c (size before relaxing) + .literal.esp_mqtt_client_subscribe_single + 0x42001038 0x0 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x4 (size before relaxing) + .literal.esp_mqtt_client_publish + 0x42001038 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x54 (size before relaxing) + .literal.esp_mqtt_client_register_event + 0x4200103c 0x4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x8 (size before relaxing) + .literal.fini_message + 0x42001040 0x4 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .literal.append_string + 0x42001044 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x4 (size before relaxing) + .literal.append_message_id + 0x42001044 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x8 (size before relaxing) + .literal.mqtt_msg_connect + 0x42001044 0x10 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x68 (size before relaxing) + .literal.mqtt_msg_publish + 0x42001054 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x2c (size before relaxing) + .literal.mqtt_msg_puback + 0x42001054 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x10 (size before relaxing) + .literal.mqtt_msg_pubrec + 0x42001054 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x10 (size before relaxing) + .literal.mqtt_msg_pubrel + 0x42001054 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x10 (size before relaxing) + .literal.mqtt_msg_pubcomp + 0x42001054 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x10 (size before relaxing) + .literal.mqtt_msg_subscribe + 0x42001054 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x24 (size before relaxing) + .literal.mqtt_msg_pingreq + 0x42001054 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x8 (size before relaxing) + .literal.mqtt_msg_disconnect + 0x42001054 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x8 (size before relaxing) + .literal.mqtt_has_valid_msg_hdr + 0x42001054 0x4 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .literal.mqtt_msg_buffer_init + 0x42001058 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x8 (size before relaxing) + .literal.mqtt_msg_buffer_destroy + 0x42001058 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x4 (size before relaxing) + .literal.outbox_init + 0x42001058 0x14 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x30 (size before relaxing) + .literal.outbox_enqueue + 0x4200106c 0x8 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x3c (size before relaxing) + .literal.outbox_delete_item + 0x42001074 0x4 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0xc (size before relaxing) + .literal.outbox_delete + 0x42001078 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0xc (size before relaxing) + .literal.outbox_set_pending + 0x42001078 0x4 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .literal.outbox_set_tick + 0x4200107c 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x4 (size before relaxing) + .literal.outbox_delete_expired + 0x4200107c 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0xc (size before relaxing) + .literal.outbox_get_size + 0x4200107c 0x4 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .literal.outbox_delete_all_items + 0x42001080 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0xc (size before relaxing) + .literal.outbox_destroy + 0x42001080 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0xc (size before relaxing) + .literal.platform_create_id_string + 0x42001080 0x18 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + 0x28 (size before relaxing) + .literal.platform_random + 0x42001098 0x4 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .literal.platform_tick_get_ms + 0x4200109c 0x4 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + 0x8 (size before relaxing) + .literal.fota_manager_apply + 0x420010a0 0x44 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + 0xf0 (size before relaxing) + .literal.ftp_connect_control + 0x420010e4 0x18 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + 0x54 (size before relaxing) + .literal.ftp_recv_line + 0x420010fc 0x0 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + 0x4 (size before relaxing) + .literal.ftp_send_cmd + 0x420010fc 0x4 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + 0xc (size before relaxing) + .literal.ftp_manager_download + 0x42001100 0x4c esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + 0x140 (size before relaxing) + .literal.rpc_job_parse + 0x4200114c 0x24 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + 0x58 (size before relaxing) + .literal.case_insensitive_strcmp + 0x42001170 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.utf16_literal_to_utf8 + 0x42001174 0x14 esp-idf/json/libjson.a(cJSON.c.obj) + 0x1c (size before relaxing) + .literal.parse_string + 0x42001188 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x4 (size before relaxing) + .literal.cJSON_New_Item + 0x42001188 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x4 (size before relaxing) + .literal.skip_utf8_bom + 0x42001188 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + 0x8 (size before relaxing) + .literal.parse_number + 0x4200118c 0x2c esp-idf/json/libjson.a(cJSON.c.obj) + 0x34 (size before relaxing) + .literal.get_object_item + 0x420011b8 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x8 (size before relaxing) + .literal.cJSON_Delete + 0x420011b8 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .literal.parse_object + 0x420011bc 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + 0x24 (size before relaxing) + .literal.parse_value + 0x420011c0 0xc esp-idf/json/libjson.a(cJSON.c.obj) + 0x28 (size before relaxing) + .literal.parse_array + 0x420011cc 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x18 (size before relaxing) + .literal.cJSON_ParseWithLengthOpts + 0x420011cc 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + 0x24 (size before relaxing) + .literal.cJSON_ParseWithOpts + 0x420011d0 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x8 (size before relaxing) + .literal.cJSON_Parse + 0x420011d0 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x4 (size before relaxing) + .literal.cJSON_GetObjectItem + 0x420011d0 0x0 esp-idf/json/libjson.a(cJSON.c.obj) + 0x4 (size before relaxing) + .literal.gpio_sleep_input_enable + 0x420011d0 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x28 (size before relaxing) + .literal.gpio_sleep_input_disable + 0x420011e4 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x28 (size before relaxing) + .literal.gpio_sleep_output_enable + 0x420011e8 0x8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x28 (size before relaxing) + .literal.gpio_sleep_output_disable + 0x420011f0 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x28 (size before relaxing) + .literal.gpio_sleep_pulldown_en + 0x420011f4 0x8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_sleep_pullup_en + 0x420011fc 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_sleep_pulldown_dis + 0x42001200 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_sleep_pullup_dis + 0x42001204 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_sleep_set_direction + 0x42001208 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_sleep_set_pull_mode + 0x4200120c 0xc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x5c (size before relaxing) + .literal.gpio_sleep_sel_en + 0x42001218 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_sleep_sel_dis + 0x4200121c 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.get_ota_ops_entry + 0x42001220 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_init_entry + 0x42001224 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0xc (size before relaxing) + .literal.image_validate + 0x42001228 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x8 (size before relaxing) + .literal.ota_verify_partition + 0x4200122c 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x1c (size before relaxing) + .literal.read_otadata + 0x42001230 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x30 (size before relaxing) + .literal.rewrite_ota_seq + 0x4200123c 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0xc (size before relaxing) + .literal.esp_ota_get_running_partition + 0x4200123c 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x38 (size before relaxing) + .literal.esp_ota_begin + 0x42001254 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x24 (size before relaxing) + .literal.esp_ota_write + 0x42001264 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x60 (size before relaxing) + .literal.esp_ota_end + 0x4200127c 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x34 (size before relaxing) + .literal.esp_ota_get_app_partition_count + 0x42001284 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x14 (size before relaxing) + .literal.esp_rewrite_ota_data + 0x4200128c 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x1c (size before relaxing) + .literal.esp_ota_set_boot_partition + 0x42001290 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x14 (size before relaxing) + .literal.esp_ota_get_next_update_partition + 0x42001290 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x1c (size before relaxing) + .literal.is_partition_encrypted + 0x42001298 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.load_partitions + 0x42001298 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x64 (size before relaxing) + .literal.ensure_partitions_loaded + 0x420012bc 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x24 (size before relaxing) + .literal.iterator_create + 0x420012c4 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x8 (size before relaxing) + .literal.esp_partition_iterator_release + 0x420012c4 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_next + 0x420012c4 0xc esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x28 (size before relaxing) + .literal.esp_partition_find + 0x420012d0 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_get + 0x420012d0 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x10 (size before relaxing) + .literal.esp_partition_find_first + 0x420012d8 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_verify + 0x420012d8 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x24 (size before relaxing) + .literal.esp_partition_copy + 0x420012e0 0x10 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x58 (size before relaxing) + .literal.esp_partition_write + 0x420012f0 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x1c (size before relaxing) + .literal.esp_partition_read_raw + 0x42001304 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_write_raw + 0x4200130c 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_erase_range + 0x42001310 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_mmap + 0x42001318 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x18 (size before relaxing) + .literal.esp_partition_munmap + 0x4200131c 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_read + 0x4200131c 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x24 (size before relaxing) + .literal.esp_partition_is_flash_region_writable + 0x42001320 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_main_flash_region_safe + 0x42001320 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x8 (size before relaxing) + .literal.esp_partition_get_main_flash_sector_size + 0x42001324 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_common_check_chip_revision_validity + 0x42001324 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_common_ota_select_crc + 0x42001330 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_valid + 0x42001334 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_common_check_efuse_blk_validity + 0x42001338 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_common_check_chip_validity + 0x42001348 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x18 (size before relaxing) + .literal.bootloader_common_get_active_otadata + 0x4200134c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0xc (size before relaxing) + .literal.bootloader_init_mem + 0x42001350 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_mmap_get_free_pages + 0x42001350 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_mmap + 0x42001350 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x28 (size before relaxing) + .literal.bootloader_munmap + 0x42001360 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_flash_read + 0x42001360 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xc (size before relaxing) + .literal.bootloader_flash_update_id + 0x42001364 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.esp_partition_table_verify + 0x42001368 0x18 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x5c (size before relaxing) + .literal.is_bootloader + 0x42001380 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.should_map + 0x42001384 0xc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_segment_header + 0x42001390 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x28 (size before relaxing) + .literal.process_appended_hash_and_sig + 0x420013a0 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x18 (size before relaxing) + .literal.process_checksum + 0x420013a4 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x20 (size before relaxing) + .literal.verify_image_header + 0x420013a8 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x28 (size before relaxing) + .literal.process_image_header + 0x420013b0 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + .literal.should_load + 0x420013b4 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x18 (size before relaxing) + .literal.process_segment_data + 0x420013bc 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x30 (size before relaxing) + .literal.process_segment + 0x420013c0 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x60 (size before relaxing) + .literal.process_segments + 0x420013dc 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x18 (size before relaxing) + .literal.verify_simple_hash + 0x420013e0 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x30 (size before relaxing) + .literal.image_load + 0x420013f0 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x28 (size before relaxing) + .literal.esp_image_bootloader_offset_set + 0x420013f0 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + .literal.esp_image_verify + 0x420013f4 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_sha256_start + 0x420013f4 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0xc (size before relaxing) + .literal.bootloader_sha256_data + 0x420013f4 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x1c (size before relaxing) + .literal.bootloader_sha256_finish + 0x42001404 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x24 (size before relaxing) + .literal.s_get_bus_mask + 0x42001408 0x1c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x20 (size before relaxing) + .literal.s_reserve_irom_region + 0x42001424 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x24 (size before relaxing) + .literal.s_reserve_drom_region + 0x42001430 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x24 (size before relaxing) + .literal.esp_mmu_map_init + 0x42001438 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x30 (size before relaxing) + .literal.esp_mmu_map_get_max_consecutive_free_block_size + 0x4200144c 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x28 (size before relaxing) + .literal.esp_mmu_map + 0x42001460 0x3c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xc0 (size before relaxing) + .literal.esp_mmu_unmap + 0x4200149c 0x10 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x48 (size before relaxing) + .literal.esp_mmu_vaddr_to_paddr + 0x420014ac 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x34 (size before relaxing) + .literal.spi_flash_init_lock + 0x420014c0 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_op_lock + 0x420014d0 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_op_unlock + 0x420014d0 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_mmap + 0x420014d0 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_munmap + 0x420014d0 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_mmap_get_free_pages + 0x420014dc 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_cache2phys + 0x420014dc 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .literal.esp_mspi_get_io + 0x420014dc 0x18 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x20 (size before relaxing) + .literal.esp_mspi_pin_reserve + 0x420014f4 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0xc (size before relaxing) + .literal.spimem_flash_ll_get_source_freq_mhz + 0x420014f4 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x8 (size before relaxing) + .literal.s_esp_flash_choose_correct_mode + 0x420014f8 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x20 (size before relaxing) + .literal.esp_flash_init_default_chip + 0x42001508 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x6c (size before relaxing) + .literal.esp_flash_app_init + 0x42001534 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x14 (size before relaxing) + .literal.esp_crosscore_int_init + 0x42001540 0x1c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x30 (size before relaxing) + .literal.find_entry_and_check_all_reset + 0x4200155c 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.find_entry_from_task_handle_and_check_all_reset + 0x42001560 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.task_wdt_timer_feed + 0x42001560 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x8 (size before relaxing) + .literal.add_entry + 0x42001564 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x5c (size before relaxing) + .literal.get_task_affinity + 0x4200157c 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.task_wdt_timeout_abort + 0x4200157c 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x58 (size before relaxing) + .literal.task_wdt_timeout_handling + 0x420015a4 0xc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.esp_task_wdt_add + 0x420015b0 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x20 (size before relaxing) + .literal.subscribe_idle + 0x420015b8 0x20 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x34 (size before relaxing) + .literal.esp_task_wdt_init + 0x420015d8 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .literal.esp_task_wdt_reset + 0x420015ec 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.idle_hook_cb + 0x420015f4 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.esp_task_wdt_print_triggered_tasks + 0x420015f4 0x20 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.task_wdt_isr + 0x42001614 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x64 (size before relaxing) + .literal.esp_task_wdt_impl_timer_allocate + 0x4200162c 0x10 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x40 (size before relaxing) + .literal.esp_task_wdt_impl_timeout_triggered + 0x4200163c 0x4 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .literal.esp_task_wdt_impl_timer_restart + 0x42001640 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x10 (size before relaxing) + .literal.esp_rom_efuse_get_opiconfig + 0x42001640 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + 0xc (size before relaxing) + .literal.gpspi_flash_ll_calculate_clock_reg + 0x42001648 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.spimem_flash_ll_calculate_clock_reg + 0x42001648 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.extra_dummy_under_timing_tuning + 0x42001648 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.get_flash_clock_divider + 0x42001648 0x10 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_cal_clock + 0x42001658 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_hal_init + 0x42001658 0x10 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x28 (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x42001668 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_supports_direct_read + 0x42001668 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.clk_hal_lp_slow_get_freq_hz + 0x42001668 0x10 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x20 (size before relaxing) + .literal.clk_hal_xtal_get_freq_mhz + 0x42001678 0xc esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x14 (size before relaxing) + .literal.clk_hal_soc_root_get_freq_mhz + 0x42001684 0xc esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x18 (size before relaxing) + .literal.clk_hal_cpu_get_freq_hz + 0x42001690 0x8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x20 (size before relaxing) + .literal.clk_hal_ahb_get_freq_hz + 0x42001698 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0xc (size before relaxing) + .literal.clk_hal_apb_get_freq_hz + 0x42001698 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x4 (size before relaxing) + .literal.brownout_ll_set_threshold + 0x42001698 0x4 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .literal.brownout_hal_config + 0x4200169c 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x30 (size before relaxing) + .literal.esp_crypto_sha_aes_lock_acquire + 0x420016bc 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.esp_crypto_hmac_lock_acquire + 0x420016c0 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0xc (size before relaxing) + .literal.esp_crypto_sha_aes_lock_release + 0x420016c4 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.esp_crypto_hmac_lock_release + 0x420016c4 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0xc (size before relaxing) + .literal.esp_crypto_mpi_lock_acquire + 0x420016c4 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.esp_crypto_ds_lock_acquire + 0x420016c8 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x10 (size before relaxing) + .literal.esp_crypto_mpi_lock_release + 0x420016cc 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.esp_crypto_ds_lock_release + 0x420016cc 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x10 (size before relaxing) + .literal.esp_crypto_aes_enable_periph_clk + 0x420016cc 0x8 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + 0xc (size before relaxing) + .literal.esp_crypto_sha_enable_periph_clk + 0x420016d4 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + 0xc (size before relaxing) + .literal.esp_crypto_mpi_enable_periph_clk + 0x420016d4 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + 0x10 (size before relaxing) + .literal.esp_crypto_hmac_enable_periph_clk + 0x420016d8 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + 0xc (size before relaxing) + .literal.esp_crypto_ds_enable_periph_clk + 0x420016d8 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + 0xc (size before relaxing) + .literal.esp_cpu_configure_region_protection + 0x420016d8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x10 (size before relaxing) + .literal.esp_fill_random + 0x420016e0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x18 (size before relaxing) + .literal.get_idx + 0x420016ec 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x14 (size before relaxing) + .literal.generate_mac + 0x420016f8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x20 (size before relaxing) + .literal.get_efuse_factory_mac + 0x420016fc 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x1c (size before relaxing) + .literal.get_efuse_mac_custom + 0x4200170c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x30 (size before relaxing) + .literal.get_mac_addr_from_mac_table + 0x42001718 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x20 (size before relaxing) + .literal.esp_efuse_mac_get_default + 0x4200171c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x4 (size before relaxing) + .literal.esp_read_mac + 0x4200171c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x44 (size before relaxing) + .literal.esp_gpio_reserve + 0x42001728 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .literal._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_ET_SA_SA_T0_ + 0x42001730 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x42001734 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZ9nvs_closeEUlRS1_E_ET_S6_S6_T0_ + 0x4200173c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x42001740 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal._ZZL24close_handles_and_deinitPKcENKUlR14NVSHandleEntryE_clES2_ + 0x42001744 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_St18input_iterator_tag + 0x42001748 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_ + 0x42001748 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal.nvs_flash_init_partition + 0x42001748 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x2c (size before relaxing) + .literal.nvs_flash_init + 0x4200175c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_erase_key + 0x42001760 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_commit + 0x42001760 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_set_blob + 0x42001760 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_get_blob + 0x42001760 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZL24close_handles_and_deinitPKc + 0x42001760 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + .literal.nvs_flash_erase_partition + 0x42001764 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x20 (size before relaxing) + .literal.nvs_flash_erase + 0x42001764 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_close + 0x42001764 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x20 (size before relaxing) + .literal.nvs_open_from_partition + 0x42001768 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x24 (size before relaxing) + .literal.nvs_open + 0x42001770 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal._Z7nvs_setIaEimPKcT_ + 0x42001770 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_i8 + 0x42001774 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIhEimPKcT_ + 0x42001774 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_u8 + 0x42001778 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setItEimPKcT_ + 0x42001778 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_u16 + 0x4200177c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setImEimPKcT_ + 0x4200177c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_u32 + 0x42001780 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIaEimPKcPT_ + 0x42001780 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_i8 + 0x42001784 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIhEimPKcPT_ + 0x42001784 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_u8 + 0x42001788 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getItEimPKcPT_ + 0x42001788 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_u16 + 0x4200178c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getImEimPKcPT_ + 0x4200178c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_u32 + 0x42001790 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x42001790 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4PageC2Ev + 0x42001790 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page6Header14calculateCrc32Ev + 0x42001794 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page10initializeEv + 0x42001794 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZNK3nvs4Page12getSeqNumberERm + 0x42001794 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page12setSeqNumberEm + 0x42001798 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page5eraseEv + 0x4200179c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page11markFreeingEv + 0x4200179c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page8markFullEv + 0x420017a0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNK3nvs4Page18getVarDataTailroomEv + 0x420017a0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x420017a4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x420017a8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page9copyItemsERS0_ + 0x420017a8 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x420017b0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page14writeEntryDataEPKhj + 0x420017b0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x420017b0 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4c (size before relaxing) + .literal._ZN3nvs4Page17eraseEntryAndSpanEj + 0x420017bc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x420017c0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x420017c4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x420017c8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x420017c8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page15mLoadEntryTableEv + 0x420017c8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x40 (size before relaxing) + .literal._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x420017c8 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x24 (size before relaxing) + .literal._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x420017d0 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_ + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x420017d0 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_St18input_iterator_tag + 0x420017d0 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_ + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x420017d0 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_St18input_iterator_tag + 0x420017d0 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_ + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_EEET_SG_SG_T0_St18input_iterator_tag + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_ET_SC_SC_T0_ + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Item6getKeyEPcj + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x18 (size before relaxing) + .literal._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage14eraseNamespaceEh + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x420017d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x420017d0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE + 0x420017d4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x420017d8 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_ + 0x420017d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x420017d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x420017d8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage15clearNamespacesEv + 0x420017dc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7StorageD2Ev + 0x420017dc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage4initEmm + 0x420017dc 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x38 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x420017e4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x420017e8 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x3c (size before relaxing) + .literal._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x420017f0 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x5c (size before relaxing) + .literal._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x420017fc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x24 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple6commitEv + 0x420017fc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD2Ev + 0x420017fc 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD0Ev + 0x42001804 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x42001804 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x42001808 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x42001808 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x42001808 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x42001808 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x42001808 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x42001808 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t + 0x42001808 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x42001808 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple9erase_allEv + 0x42001808 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x42001808 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs12NVSPartitionD5Ev + 0x42001808 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs12NVSPartition8read_rawEjPvj + 0x42001810 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition4readEjPvj + 0x42001810 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x42001810 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition5writeEjPKvj + 0x42001810 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition11erase_rangeEjj + 0x42001810 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x42001810 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs19NVSPartitionManagerD5Ev + 0x42001810 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKcENKUlRNS_7StorageEE_clES4_ + 0x42001814 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_St18input_iterator_tag + 0x42001814 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_ + 0x42001814 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7StorageC5EPNS_9PartitionE + 0x42001814 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x42001814 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x42001818 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x42001818 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x42001820 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x18 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x42001824 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x42001828 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x4200182c 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x20 (size before relaxing) + .literal._ZNK3nvs4Item14calculateCrc32Ev + 0x42001834 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x42001834 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs4Item14calculateCrc32EPKhj + 0x42001834 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4 (size before relaxing) + .literal._ZNK3nvs4Item22checkHeaderConsistencyEh + 0x42001834 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs4LockC2Ev + 0x4200183c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4LockD2Ev + 0x42001840 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x42001840 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList5clearEv + 0x42001840 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashListD2Ev + 0x42001844 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList5eraseEj + 0x42001844 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x42001844 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x10 (size before relaxing) + .literal._ZZN3nvs11PageManager4loadEPNS_9PartitionEmmENKUlRKNS_4PageEE_clES5_ + 0x4200184c 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_St18input_iterator_tag + 0x4200184c 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_ + 0x4200184c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x4200184c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs11PageManager12activatePageEv + 0x42001850 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs11PageManager14requestNewPageEv + 0x42001854 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x42001854 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x42001858 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x6c (size before relaxing) + .literal._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + 0x4200185c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x10 (size before relaxing) + .literal.create_addrinfo + 0x42001860 0x10 esp-idf/lwip/liblwip.a(netdb.c.obj) + 0x2c (size before relaxing) + .literal.lwip_freeaddrinfo + 0x42001870 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) + 0x4 (size before relaxing) + .literal.lwip_getaddrinfo + 0x42001870 0x8 esp-idf/lwip/liblwip.a(netdb.c.obj) + 0x2c (size before relaxing) + .literal.tryget_socket_unconn_nouse + 0x42001878 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.free_socket_locked + 0x4200187c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.sock_inc_used_locked + 0x42001888 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.tryget_socket_unconn_locked + 0x42001894 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.lwip_sockopt_to_ipopt + 0x42001894 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.sock_inc_used + 0x420018a0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.tryget_socket_unconn + 0x420018a4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.alloc_socket + 0x420018a4 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x24 (size before relaxing) + .literal.lwip_select_inc_sockets_used_set + 0x420018ac 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_select_inc_sockets_used + 0x420018ac 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_link_select_cb + 0x420018ac 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_unlink_select_cb + 0x420018b4 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.sockaddr_to_ipaddr_port + 0x420018c0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_sock_make_addr + 0x420018cc 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .literal.lwip_recv_tcp_from + 0x420018dc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.free_socket_free_elements + 0x420018dc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.free_socket + 0x420018dc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.done_socket + 0x420018dc 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.tryget_socket + 0x420018e0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.get_socket + 0x420018e0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.lwip_selscan + 0x420018e0 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x24 (size before relaxing) + .literal.lwip_select_dec_sockets_used + 0x420018e8 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x18 (size before relaxing) + .literal.lwip_socket_register_membership + 0x420018f0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_socket_unregister_membership + 0x420018f4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_socket_register_mld6_membership + 0x420018f4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_socket_unregister_mld6_membership + 0x420018f8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_socket_drop_registered_memberships + 0x420018f8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_socket_drop_registered_mld6_memberships + 0x420018f8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_recv_tcp + 0x420018f8 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x54 (size before relaxing) + .literal.lwip_recvfrom_udp_raw + 0x42001910 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.select_check_waiters + 0x42001918 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.event_callback + 0x4200191c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x38 (size before relaxing) + .literal.lwip_getsockopt_impl + 0x42001928 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xcc (size before relaxing) + .literal.lwip_getsockopt_callback + 0x4200193c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_setsockopt_impl + 0x42001948 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x138 (size before relaxing) + .literal.lwip_setsockopt_callback + 0x42001974 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_close + 0x4200197c 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .literal.lwip_connect + 0x42001984 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x48 (size before relaxing) + .literal.lwip_recvfrom + 0x42001984 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .literal.lwip_read + 0x4200198c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_recv + 0x4200198c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_sendto + 0x4200198c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x50 (size before relaxing) + .literal.lwip_send + 0x4200198c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.lwip_socket + 0x4200198c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2c (size before relaxing) + .literal.lwip_write + 0x42001990 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_select + 0x42001990 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xa0 (size before relaxing) + .literal.lwip_shutdown + 0x420019a0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_getsockopt + 0x420019a0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .literal.lwip_setsockopt + 0x420019a4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .literal.lwip_ioctl + 0x420019a8 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_fcntl + 0x420019ac 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_inet_pton + 0x420019b0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.tcpip_timeouts_mbox_fetch + 0x420019b0 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_thread_handle_msg + 0x420019b0 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x24 (size before relaxing) + .literal.tcpip_thread + 0x420019bc 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x28 (size before relaxing) + .literal.tcpip_inpkt + 0x420019cc 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_input + 0x420019d4 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x10 (size before relaxing) + .literal.tcpip_callback + 0x420019dc 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x1c (size before relaxing) + .literal.tcpip_try_callback + 0x420019e0 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_send_msg_wait_sem + 0x420019e4 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x24 (size before relaxing) + .literal.tcpip_api_call + 0x420019ec 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_init + 0x420019f0 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x34 (size before relaxing) + .literal.lwip_init + 0x42001a00 0xc esp-idf/lwip/liblwip.a(init.c.obj) + 0x24 (size before relaxing) + .literal.ipaddr_aton + 0x42001a0c 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x8 (size before relaxing) + .literal.ip_input + 0x42001a0c 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x8 (size before relaxing) + .literal.mem_malloc + 0x42001a0c 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x1c (size before relaxing) + .literal.mem_free + 0x42001a18 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x1c (size before relaxing) + .literal.mem_calloc + 0x42001a24 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x4 (size before relaxing) + .literal.do_memp_malloc_pool + 0x42001a24 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x28 (size before relaxing) + .literal.do_memp_free_pool + 0x42001a38 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x24 (size before relaxing) + .literal.memp_malloc + 0x42001a40 0x4 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x8 (size before relaxing) + .literal.memp_free + 0x42001a44 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x8 (size before relaxing) + .literal.netif_loopif_init + 0x42001a44 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_do_set_netmask + 0x42001a58 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_do_set_gw + 0x42001a60 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_do_ip_addr_changed + 0x42001a64 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_issue_reports + 0x42001a64 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_do_set_ipaddr + 0x42001a6c 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x20 (size before relaxing) + .literal.netif_poll + 0x42001a70 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x40 (size before relaxing) + .literal.netif_set_default + 0x42001a84 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_loop_output + 0x42001a88 0x18 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4c (size before relaxing) + .literal.netif_loop_output_ipv6 + 0x42001aa0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_loop_output_ipv4 + 0x42001aa0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_get_ip6_addr_match + 0x42001aa0 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_get_by_index + 0x42001aac 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_find + 0x42001ab0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x8 (size before relaxing) + .literal.netif_add_ext_callback + 0x42001ab0 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_remove_ext_callback + 0x42001ac0 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_invoke_ext_callback + 0x42001ac8 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x14 (size before relaxing) + .literal.netif_set_addr + 0x42001ad0 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_add + 0x42001ad4 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x40 (size before relaxing) + .literal.netif_set_up + 0x42001af0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_set_down + 0x42001af0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_remove + 0x42001af0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .literal.netif_set_link_up + 0x42001af0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_init + 0x42001af0 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x20 (size before relaxing) + .literal.netif_set_link_down + 0x42001afc 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x8 (size before relaxing) + .literal.netif_ip6_addr_set_parts + 0x42001afc 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x2c (size before relaxing) + .literal.netif_ip6_addr_set + 0x42001b08 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_ip6_addr_set_state + 0x42001b14 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x28 (size before relaxing) + .literal.pbuf_add_header_impl + 0x42001b18 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_pool_is_empty + 0x42001b24 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_free_ooseq + 0x42001b2c 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_free_ooseq_callback + 0x42001b30 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_alloc_reference + 0x42001b30 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_alloced_custom + 0x42001b3c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_add_header + 0x42001b3c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_add_header_force + 0x42001b3c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_remove_header + 0x42001b3c 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_header_impl + 0x42001b40 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_header_force + 0x42001b40 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_free + 0x42001b40 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3c (size before relaxing) + .literal.pbuf_alloc + 0x42001b50 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x44 (size before relaxing) + .literal.pbuf_realloc + 0x42001b64 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x30 (size before relaxing) + .literal.pbuf_free_header + 0x42001b7c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_ref + 0x42001b7c 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_cat + 0x42001b84 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x10 (size before relaxing) + .literal.pbuf_chain + 0x42001b8c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_copy_partial_pbuf + 0x42001b8c 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_copy + 0x42001b98 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_copy_partial + 0x42001b98 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_skip + 0x42001b98 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_take + 0x42001b9c 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_take_at + 0x42001ba8 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_clone + 0x42001bb0 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_try_get_at + 0x42001bb8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_get_at + 0x42001bb8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_put_at + 0x42001bb8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.raw_input_local_match + 0x42001bb8 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_input + 0x42001bbc 0x18 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x24 (size before relaxing) + .literal.raw_connect + 0x42001bd4 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x10 (size before relaxing) + .literal.raw_sendto_if_src + 0x42001bd4 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + 0x44 (size before relaxing) + .literal.raw_sendto + 0x42001be0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x18 (size before relaxing) + .literal.raw_send + 0x42001be0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.raw_remove + 0x42001be0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x8 (size before relaxing) + .literal.raw_new + 0x42001be0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0xc (size before relaxing) + .literal.raw_new_ip_type + 0x42001be0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.raw_netif_ip_addr_changed + 0x42001be0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.tcp_new_port + 0x42001be0 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_remove_listener + 0x42001bf0 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_listen_closed + 0x42001bfc 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x20 (size before relaxing) + .literal.tcp_free_listen + 0x42001c08 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_init + 0x42001c10 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_free + 0x42001c10 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_backlog_accepted + 0x42001c18 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_close_shutdown_fin + 0x42001c20 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x24 (size before relaxing) + .literal.tcp_handle_closepend + 0x42001c24 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_update_rcv_ann_wnd + 0x42001c24 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x20 (size before relaxing) + .literal.tcp_recved + 0x42001c34 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x20 (size before relaxing) + .literal.tcp_seg_free + 0x42001c40 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_segs_free + 0x42001c40 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_seg_copy + 0x42001c40 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_recv + 0x42001c48 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_sent + 0x42001c54 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_err + 0x42001c60 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_poll + 0x42001c6c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_next_iss + 0x42001c78 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_eff_send_mss_netif + 0x42001c84 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_connect + 0x42001c90 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x44 (size before relaxing) + .literal.tcp_free_ooseq + 0x42001c98 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_pcb_purge + 0x42001c98 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_pcb_remove + 0x42001c98 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4c (size before relaxing) + .literal.tcp_abandon + 0x42001cc4 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x44 (size before relaxing) + .literal.tcp_abort + 0x42001cd0 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_kill_timewait + 0x42001cd0 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_kill_prio + 0x42001cd4 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_netif_ip_addr_changed_pcblist + 0x42001cd4 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_netif_ip_addr_changed + 0x42001ce0 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_kill_state + 0x42001ce4 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_alloc + 0x42001ce4 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x54 (size before relaxing) + .literal.tcp_new_ip_type + 0x42001cf4 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_close_shutdown + 0x42001cf4 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5c (size before relaxing) + .literal.tcp_close_ext + 0x42001d04 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_close + 0x42001d04 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_recv_null + 0x42001d04 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_process_refused_data + 0x42001d04 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_fasttmr + 0x42001d04 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_shutdown + 0x42001d04 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_slowtmr + 0x42001d04 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xb4 (size before relaxing) + .literal.tcp_tmr + 0x42001d38 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_get_next_optbyte + 0x42001d3c 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .literal.tcp_parseopt + 0x42001d4c 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_input_delayed_close + 0x42001d5c 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x20 (size before relaxing) + .literal.tcp_timewait_input + 0x42001d68 0x1c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x38 (size before relaxing) + .literal.tcp_listen_input + 0x42001d84 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x64 (size before relaxing) + .literal.tcp_oos_insert_segment + 0x42001d8c 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_free_acked_segments + 0x42001d94 0x14 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x30 (size before relaxing) + .literal.tcp_receive + 0x42001da8 0x44 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x190 (size before relaxing) + .literal.tcp_process + 0x42001dec 0x1c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xc4 (size before relaxing) + .literal.tcp_input + 0x42001e08 0x30 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x134 (size before relaxing) + .literal.tcp_trigger_input_pcb_close + 0x42001e38 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x4 (size before relaxing) + .literal.tcp_write_checks + 0x42001e38 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_output_segment_busy + 0x42001e4c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x10 (size before relaxing) + .literal.tcp_output_fill_options + 0x42001e54 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x18 (size before relaxing) + .literal.tcp_pbuf_prealloc + 0x42001e60 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_create_segment + 0x42001e70 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x40 (size before relaxing) + .literal.tcp_output_alloc_header_common + 0x42001e80 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x28 (size before relaxing) + .literal.tcp_output_alloc_header + 0x42001e88 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rst_common + 0x42001e90 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x28 (size before relaxing) + .literal.tcp_route + 0x42001ea0 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc (size before relaxing) + .literal.tcp_output_segment + 0x42001ea0 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x54 (size before relaxing) + .literal.tcp_output_control_segment_netif + 0x42001eb4 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_output_control_segment + 0x42001ebc 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_write + 0x42001ec4 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x68 (size before relaxing) + .literal.tcp_split_unsent_seg + 0x42001ee4 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x54 (size before relaxing) + .literal.tcp_enqueue_flags + 0x42001ef8 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x44 (size before relaxing) + .literal.tcp_send_fin + 0x42001f14 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_rto_prepare + 0x42001f1c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_rexmit + 0x42001f24 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_fast + 0x42001f2c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rst + 0x42001f34 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x8 (size before relaxing) + .literal.tcp_rst_netif + 0x42001f34 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x8 (size before relaxing) + .literal.tcp_send_empty_ack + 0x42001f34 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_output + 0x42001f40 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x68 (size before relaxing) + .literal.tcp_rexmit_rto_commit + 0x42001f50 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rexmit_rto + 0x42001f58 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x18 (size before relaxing) + .literal.tcp_keepalive + 0x42001f60 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_zero_window_probe + 0x42001f6c 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x34 (size before relaxing) + .literal.sys_timeout_abs + 0x42001f78 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.lwip_cyclic_timer + 0x42001f88 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x14 (size before relaxing) + .literal.sys_timeout + 0x42001f90 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x1c (size before relaxing) + .literal.tcp_timer_needed + 0x42001f98 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_tcp_timer + 0x42001fa0 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.sys_timeouts_init + 0x42001fa0 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0xc (size before relaxing) + .literal.sys_untimeout + 0x42001fa4 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x8 (size before relaxing) + .literal.sys_check_timeouts + 0x42001fa4 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x10 (size before relaxing) + .literal.sys_timeouts_sleeptime + 0x42001fa4 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.udp_new_port + 0x42001fac 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x14 (size before relaxing) + .literal.udp_input_local_match + 0x42001fb4 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1c (size before relaxing) + .literal.udp_init + 0x42001fc4 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_input + 0x42001fc4 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x6c (size before relaxing) + .literal.udp_bind + 0x42001fd4 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1c (size before relaxing) + .literal.udp_sendto_if_src + 0x42001fd4 0xc esp-idf/lwip/liblwip.a(udp.c.obj) + 0x44 (size before relaxing) + .literal.udp_sendto_if + 0x42001fe0 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0xc (size before relaxing) + .literal.udp_sendto + 0x42001fe0 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x20 (size before relaxing) + .literal.udp_send + 0x42001fe4 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.udp_connect + 0x42001fe4 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x18 (size before relaxing) + .literal.udp_disconnect + 0x42001fe4 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + .literal.udp_remove + 0x42001fe8 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_new + 0x42001fe8 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_new_ip_type + 0x42001fe8 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.udp_netif_ip_addr_changed + 0x42001fe8 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_option_short + 0x42001fe8 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option + 0x42001ff4 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_byte + 0x42001ffc 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_long + 0x42002004 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_create_msg + 0x4200200c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2c (size before relaxing) + .literal.dhcp_option_hostname + 0x42002018 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x20 (size before relaxing) + .literal.dhcp_option_trailer + 0x42002020 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_rebind + 0x42002020 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x48 (size before relaxing) + .literal.dhcp_t2_timeout + 0x42002030 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_reboot + 0x42002030 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x54 (size before relaxing) + .literal.dhcp_select + 0x42002030 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x64 (size before relaxing) + .literal.dhcp_handle_offer + 0x42002030 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_discover + 0x42002038 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4c (size before relaxing) + .literal.dhcp_decline + 0x42002038 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x30 (size before relaxing) + .literal.dhcp_bind + 0x42002038 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_conflict_callback + 0x42002038 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2c (size before relaxing) + .literal.dhcp_handle_nak + 0x42002040 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_dec_pcb_refcount + 0x42002040 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1c (size before relaxing) + .literal.dhcp_inc_pcb_refcount + 0x4200204c 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x30 (size before relaxing) + .literal.dhcp_parse_reply + 0x4200205c 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x30 (size before relaxing) + .literal.dhcp_check + 0x42002064 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x8 (size before relaxing) + .literal.dhcp_handle_ack + 0x42002064 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_recv + 0x42002064 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_cleanup + 0x4200206c 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14 (size before relaxing) + .literal.dhcp_network_changed_link_up + 0x42002074 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_renew + 0x4200207c 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_t1_timeout + 0x42002080 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_release_and_stop + 0x42002080 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x48 (size before relaxing) + .literal.dhcp_start + 0x42002084 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2c (size before relaxing) + .literal.dhcp_coarse_tmr + 0x4200208c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14 (size before relaxing) + .literal.dhcp_timeout + 0x4200208c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_fine_tmr + 0x4200208c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_fine_timeout_cb + 0x4200208c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_release + 0x4200208c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_stop + 0x4200208c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.free_etharp_q + 0x4200208c 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x20 (size before relaxing) + .literal.etharp_free_entry + 0x4200209c 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_find_entry + 0x420020a0 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x28 (size before relaxing) + .literal.etharp_update_arp_entry + 0x420020b0 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x30 (size before relaxing) + .literal.etharp_raw + 0x420020b8 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x44 (size before relaxing) + .literal.etharp_request_dst + 0x420020cc 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_add_static_entry + 0x420020d0 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_remove_static_entry + 0x420020d0 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc (size before relaxing) + .literal.etharp_cleanup_netif + 0x420020d0 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_input + 0x420020d0 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x1c (size before relaxing) + .literal.etharp_request + 0x420020d0 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_tmr + 0x420020d4 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc (size before relaxing) + .literal.etharp_output_to_arp_index + 0x420020d4 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x24 (size before relaxing) + .literal.etharp_query + 0x420020dc 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x54 (size before relaxing) + .literal.etharp_output + 0x420020f0 0xc esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x48 (size before relaxing) + .literal.icmp_send_response + 0x420020fc 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x28 (size before relaxing) + .literal.icmp_input + 0x42002108 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x6c (size before relaxing) + .literal.icmp_dest_unreach + 0x42002114 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_start_timer + 0x42002114 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_delaying_member + 0x4200211c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_ip_output_if + 0x4200211c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_send + 0x4200211c 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_timeout + 0x4200212c 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8 (size before relaxing) + .literal.igmp_init + 0x42002130 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_stop + 0x42002138 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_report_groups + 0x42002138 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_lookup_group + 0x42002138 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x24 (size before relaxing) + .literal.igmp_start + 0x42002148 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8 (size before relaxing) + .literal.igmp_input + 0x42002148 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_joingroup_netif + 0x42002148 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_joingroup + 0x42002148 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xc (size before relaxing) + .literal.igmp_leavegroup_netif + 0x42002148 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x14 (size before relaxing) + .literal.igmp_leavegroup + 0x4200214c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xc (size before relaxing) + .literal.igmp_tmr + 0x4200214c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x18 (size before relaxing) + .literal.igmp_timeout_cb + 0x4200214c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.ip4_input_accept + 0x4200214c 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x8 (size before relaxing) + .literal.ip4_route + 0x4200214c 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x10 (size before relaxing) + .literal.ip4_route_src + 0x42002150 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x8 (size before relaxing) + .literal.ip4_input + 0x42002150 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x68 (size before relaxing) + .literal.ip4_output_if_opt_src + 0x42002154 0x14 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x44 (size before relaxing) + .literal.ip4_output_if_opt + 0x42002168 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if + 0x42002168 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if_src + 0x42002168 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4addr_aton + 0x42002168 0xc esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x20 (size before relaxing) + .literal.ip4_frag + 0x42002174 0xc esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x3c (size before relaxing) + .literal.icmp6_send_response_with_addrs_and_netif + 0x42002180 0x10 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x30 (size before relaxing) + .literal.icmp6_send_response + 0x42002190 0x8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x20 (size before relaxing) + .literal.icmp6_input + 0x42002198 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x48 (size before relaxing) + .literal.icmp6_dest_unreach + 0x42002198 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x4 (size before relaxing) + .literal.icmp6_param_problem + 0x42002198 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x8 (size before relaxing) + .literal.ip6_input_accept + 0x42002198 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6_route + 0x42002198 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x1c (size before relaxing) + .literal.ip6_select_source_address + 0x42002198 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x14 (size before relaxing) + .literal.ip6_input + 0x4200219c 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0xf8 (size before relaxing) + .literal.ip6_output_if_src + 0x420021a0 0x18 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x48 (size before relaxing) + .literal.ip6_output_if + 0x420021b8 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x8 (size before relaxing) + .literal.ip6_options_add_hbh_ra + 0x420021b8 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6addr_aton + 0x420021b8 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x20 (size before relaxing) + .literal.ip6_frag + 0x420021b8 0x14 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x44 (size before relaxing) + .literal.mld6_delayed_report + 0x420021cc 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x14 (size before relaxing) + .literal.mld6_new_group + 0x420021d4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_send + 0x420021d4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x20 (size before relaxing) + .literal.mld6_stop + 0x420021d4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_report_groups + 0x420021d4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_input + 0x420021d4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x30 (size before relaxing) + .literal.mld6_joingroup_netif + 0x420021d4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1c (size before relaxing) + .literal.mld6_joingroup + 0x420021d4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xc (size before relaxing) + .literal.mld6_leavegroup_netif + 0x420021d4 0x4 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1c (size before relaxing) + .literal.mld6_leavegroup + 0x420021d8 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xc (size before relaxing) + .literal.mld6_tmr + 0x420021d8 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x18 (size before relaxing) + .literal.mld6_timeout_cb + 0x420021d8 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_neighbor_cache_entry + 0x420021d8 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_find_destination_cache_entry + 0x420021dc 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_new_destination_cache_entry + 0x420021e0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_is_prefix_in_netif + 0x420021e0 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_select_router + 0x420021e4 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_get_router + 0x420021ec 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_get_onlink_prefix + 0x420021ec 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_new_onlink_prefix + 0x420021ec 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_send_q + 0x420021ec 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_duplicate_addr_detected + 0x420021f0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_process_autoconfig_prefix + 0x420021f0 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2c (size before relaxing) + .literal.nd6_free_q + 0x42002200 0x1c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x38 (size before relaxing) + .literal.nd6_free_neighbor_cache_entry + 0x4200221c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_new_neighbor_cache_entry + 0x4200221c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_send_na + 0x4200221c 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x30 (size before relaxing) + .literal.nd6_send_rs + 0x42002228 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x20 (size before relaxing) + .literal.nd6_send_ns + 0x42002228 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x30 (size before relaxing) + .literal.nd6_send_neighbor_cache_probe + 0x4200222c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_new_router + 0x4200222c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_get_next_hop_entry + 0x4200222c 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x50 (size before relaxing) + .literal.nd6_queue_packet + 0x4200223c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2c (size before relaxing) + .literal.nd6_input + 0x4200223c 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x128 (size before relaxing) + .literal.nd6_tmr + 0x4200224c 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x54 (size before relaxing) + .literal.nd6_clear_destination_cache + 0x42002254 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_route + 0x42002254 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_get_next_hop_addr_or_queue + 0x4200225c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xc (size before relaxing) + .literal.nd6_get_destination_mtu + 0x4200225c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_reachability_hint + 0x4200225c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x18 (size before relaxing) + .literal.nd6_cleanup_netif + 0x4200225c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_adjust_mld_membership + 0x4200225c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x10 (size before relaxing) + .literal.ethernet_input + 0x4200225c 0x4 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x28 (size before relaxing) + .literal.ethernet_output + 0x42002260 0xc esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x20 (size before relaxing) + .literal.lwip_init_tcp_isn + 0x4200226c 0x10 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x18 (size before relaxing) + .literal.lwip_hook_tcp_isn + 0x4200227c 0xc esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x40 (size before relaxing) + .literal.lwip_hook_ip6_input + 0x42002288 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x4 (size before relaxing) + .literal.ip4_route_src_hook + 0x42002288 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_parse_extra_opts + 0x42002288 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0xc (size before relaxing) + .literal.dhcp_append_extra_opts + 0x42002288 0xc esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x14 (size before relaxing) + .literal.lwip_getsockopt_impl_ext + 0x42002294 0x4 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + 0x8 (size before relaxing) + .literal.sys_thread_sem_free + 0x42002298 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_mutex_new + 0x42002298 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_mutex_lock + 0x42002298 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mutex_unlock + 0x420022a4 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_sem_new + 0x420022ac 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_sem_signal + 0x420022b8 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_sem_signal_isr + 0x420022c0 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_sem_wait + 0x420022c0 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_sem_free + 0x420022c8 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_mbox_new + 0x420022c8 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_mbox_post + 0x420022c8 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_trypost + 0x420022d0 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_mbox_fetch + 0x420022d0 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_arch_mbox_tryfetch + 0x420022dc 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_free + 0x420022e0 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.sys_thread_new + 0x420022ec 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_init + 0x420022ec 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x28 (size before relaxing) + .literal.sys_now + 0x42002300 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_protect + 0x42002300 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_arch_unprotect + 0x42002300 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_thread_sem_init + 0x42002300 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x2c (size before relaxing) + .literal.sys_thread_sem_get + 0x42002304 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_thread_tcpip + 0x42002304 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.acd_suspend + 0x42002310 0x4 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0x8 (size before relaxing) + .literal.send_probe_once + 0x42002314 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0xc (size before relaxing) + .literal.acd_dhcp_check_timeout_cb + 0x42002314 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0x4 (size before relaxing) + .literal.acd_remove + 0x42002314 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0x4 (size before relaxing) + .literal.acd_netif_ip_addr_changed + 0x42002314 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0x4 (size before relaxing) + .literal.acd_network_changed_link_down + 0x42002314 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0x4 (size before relaxing) + .literal.acd_arp_reply + 0x42002314 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0xc (size before relaxing) + .literal.acd_start + 0x42002314 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0x4 (size before relaxing) + .literal.lwip_get_socket_select_semaphore + 0x42002314 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select_isr + 0x42002314 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select + 0x42002314 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_ioctl_r_wrapper + 0x42002314 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_fcntl_r_wrapper + 0x42002314 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_fstat + 0x42002314 0x4 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_lwip_sockets_register + 0x42002318 0x34 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x40 (size before relaxing) + .literal.netconn_apimsg + 0x4200234c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_tcp_recvd_msg + 0x4200234c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_close_shutdown + 0x42002350 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_new_with_proto_and_callback + 0x42002354 0x18 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x34 (size before relaxing) + .literal.netconn_prepare_delete + 0x4200236c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_delete + 0x42002370 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_getaddr + 0x42002370 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_connect + 0x42002374 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_disconnect + 0x42002378 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_tcp_recvd + 0x4200237c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_send + 0x4200237c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_write_vectors_partly + 0x42002380 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x20 (size before relaxing) + .literal.netconn_write_partly + 0x4200238c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_err + 0x4200238c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_recv_data + 0x4200238c 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x48 (size before relaxing) + .literal.netconn_recv_udp_raw_netbuf_flags + 0x42002394 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_recv_data_tcp + 0x42002394 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x10 (size before relaxing) + .literal.netconn_recv_tcp_pbuf_flags + 0x42002394 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_shutdown + 0x42002394 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_join_leave_group + 0x42002394 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_join_leave_group_netif + 0x42002398 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_gethostbyname_addrtype + 0x4200239c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.lwip_netconn_err_to_msg + 0x420023a0 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.lwip_netconn_do_dns_found + 0x420023b8 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x8 (size before relaxing) + .literal.recv_udp + 0x420023b8 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3c (size before relaxing) + .literal.recv_raw + 0x420023c8 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.setup_tcp + 0x420023c8 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x24 (size before relaxing) + .literal.pcb_new + 0x420023dc 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x30 (size before relaxing) + .literal.lwip_netconn_do_connected + 0x420023f0 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x28 (size before relaxing) + .literal.err_tcp + 0x42002400 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40 (size before relaxing) + .literal.netconn_mark_mbox_invalid + 0x42002414 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_writemore + 0x42002418 0x1c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x5c (size before relaxing) + .literal.lwip_netconn_do_close_internal + 0x42002434 0x1c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x88 (size before relaxing) + .literal.poll_tcp + 0x42002450 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.sent_tcp + 0x42002454 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.tcp_do_abort + 0x42002458 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4 (size before relaxing) + .literal.recv_tcp + 0x42002458 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_is_deallocated_msg + 0x4200246c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4 (size before relaxing) + .literal.lwip_netconn_is_err_msg + 0x4200246c 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.lwip_netconn_do_newconn + 0x42002474 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x8 (size before relaxing) + .literal.netconn_alloc + 0x42002474 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.netconn_free + 0x4200247c 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x28 (size before relaxing) + .literal.netconn_drain + 0x4200248c 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x48 (size before relaxing) + .literal.lwip_netconn_do_delconn + 0x42002498 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_do_connect + 0x420024a8 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.lwip_netconn_do_disconnect + 0x420024ac 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x8 (size before relaxing) + .literal.lwip_netconn_do_send + 0x420024ac 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.lwip_netconn_do_recv + 0x420024ac 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xc (size before relaxing) + .literal.lwip_netconn_do_write + 0x420024ac 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x24 (size before relaxing) + .literal.lwip_netconn_do_getaddr + 0x420024b4 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_close + 0x420024bc 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_do_join_leave_group + 0x420024c8 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_join_leave_group_netif + 0x420024c8 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.lwip_netconn_do_gethostbyname + 0x420024c8 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xc (size before relaxing) + .literal.err_to_errno + 0x420024cc 0x4 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_delete + 0x420024d0 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x8 (size before relaxing) + .literal.netbuf_alloc + 0x420024d0 0xc esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x18 (size before relaxing) + .literal.netbuf_free + 0x420024dc 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x4 (size before relaxing) + .literal.dns_backupserver_available + 0x420024dc 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_server_is_set + 0x420024e0 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x4 (size before relaxing) + .literal.dns_call_found + 0x420024e0 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x24 (size before relaxing) + .literal.dns_correct_response + 0x420024f8 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x8 (size before relaxing) + .literal.dns_create_txid + 0x420024f8 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x8 (size before relaxing) + .literal.dns_send + 0x420024f8 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x64 (size before relaxing) + .literal.dns_check_entry + 0x42002510 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + 0x34 (size before relaxing) + .literal.dns_check_entries + 0x4200251c 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x4 (size before relaxing) + .literal.dns_lookup + 0x4200251c 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x8 (size before relaxing) + .literal.dns_alloc_random_port + 0x42002520 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x1c (size before relaxing) + .literal.dns_alloc_pcb + 0x42002524 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + 0xc (size before relaxing) + .literal.dns_enqueue + 0x42002528 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + 0x28 (size before relaxing) + .literal.dns_compare_name + 0x42002534 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x14 (size before relaxing) + .literal.dns_skip_name + 0x42002534 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0xc (size before relaxing) + .literal.dns_recv + 0x42002534 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x74 (size before relaxing) + .literal.dns_setserver + 0x42002538 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x10 (size before relaxing) + .literal.dns_tmr + 0x42002538 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x18 (size before relaxing) + .literal.dns_timeout_cb + 0x42002538 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x4 (size before relaxing) + .literal.dns_gethostbyname_addrtype + 0x42002538 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + 0x30 (size before relaxing) + .literal.inet_cksum_pseudo_base + 0x42002544 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0xc (size before relaxing) + .literal.inet_chksum_pseudo + 0x42002548 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip6_chksum_pseudo + 0x42002548 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip_chksum_pseudo + 0x42002548 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x8 (size before relaxing) + .literal.inet_chksum + 0x42002548 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.inet_chksum_pbuf + 0x42002548 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_add_to_list_unsafe + 0x42002548 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_remove_from_list_unsafe + 0x42002550 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_get_nr_of_ifs + 0x4200255c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_next_unsafe + 0x4200255c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_is_netif_listed + 0x4200255c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_get_handle_from_ifkey_unsafe + 0x4200255c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_is_active + 0x42002560 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_default_netif_internal + 0x42002560 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_lwip_ipc_call_msg + 0x42002560 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_lwip_ipc_call + 0x4200256c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_lwip_ipc_call_get_netif + 0x4200256c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_api_cb + 0x4200256c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.tcpip_init_done + 0x4200256c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_config_sanity_check + 0x4200256c 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.netif_mld_mac_filter_cb + 0x42002578 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x18 (size before relaxing) + .literal.netif_igmp_mac_filter_cb + 0x42002584 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x18 (size before relaxing) + .literal.esp_netif_set_mac_api + 0x42002588 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_set_ip_old_info_api + 0x42002588 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcps_cb + 0x42002588 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.esp_netif_start_ip_lost_timer + 0x42002594 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.netif_set_mldv6_flag + 0x4200259c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.netif_set_garp_flag + 0x420025a0 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.netif_send_mldv6 + 0x420025a8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .literal.esp_netif_init_configuration + 0x420025a8 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2c (size before relaxing) + .literal.netif_unset_garp_flag + 0x420025b4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.netif_unset_mldv6_flag + 0x420025b4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_lwip_remove + 0x420025b4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.netif_send_garp + 0x420025b4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_lwip_add + 0x420025b4 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.dns_clear_servers + 0x420025c0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcpc_start_api + 0x420025c0 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_update_default_netif + 0x420025d0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_ip_lost_timer + 0x420025d4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.esp_netif_internal_nd6_cb + 0x420025d8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2c (size before relaxing) + .literal.esp_netif_destroy_api + 0x420025dc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x38 (size before relaxing) + .literal.esp_netif_new_api + 0x420025e0 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc0 (size before relaxing) + .literal.esp_netif_start_api + 0x42002600 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x70 (size before relaxing) + .literal.esp_netif_stop_api + 0x42002628 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_up_api + 0x42002628 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .literal.esp_netif_down_api + 0x42002628 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.esp_netif_init + 0x42002628 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x5c (size before relaxing) + .literal.esp_netif_new + 0x42002638 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_attach + 0x4200263c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_set_driver_config + 0x42002644 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_mac + 0x42002644 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_start + 0x42002648 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_stop + 0x4200264c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_netstack_buf_ref + 0x42002650 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_netstack_buf_free + 0x42002650 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_transmit_wrap + 0x42002650 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_receive + 0x42002650 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_dhcpc_start + 0x42002650 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_get_hostname + 0x42002654 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_up + 0x42002654 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_down + 0x42002658 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_update_default_netif_lwip + 0x4200265c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x3c (size before relaxing) + .literal.esp_netif_get_old_ip_info + 0x42002664 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_get_ip_info + 0x42002664 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_old_ip_info + 0x42002664 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_internal_dhcpc_cb + 0x42002668 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x3c (size before relaxing) + .literal.netif_callback_fn + 0x4200266c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_gmac + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.digest_vector + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.hmac_vector + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.aes_crypt_init + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.aes_crypt_deinit + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.aes_crypt + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.sha256_vector + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha256_vector + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha256 + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha1_vector + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha1 + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt_init + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt_deinit + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt_init + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt_deinit + 0x4200266c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_128_cbc_encrypt + 0x4200266c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.aes_128_cbc_decrypt + 0x42002670 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.aes_ctr_encrypt + 0x42002670 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + .literal.pbkdf2_sha1 + 0x42002670 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.omac1_aes_vector + 0x42002670 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x20 (size before relaxing) + .literal.omac1_aes_128_vector + 0x42002674 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.omac1_aes_128 + 0x42002674 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.pad_blocks + 0x42002674 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .literal.sha1_op + 0x42002678 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + 0x10 (size before relaxing) + .literal.fast_psk_f + 0x42002678 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + 0x44 (size before relaxing) + .literal.esp_fast_psk + 0x42002678 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + 0xc (size before relaxing) + .literal.os_get_time + 0x42002678 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_random + 0x42002678 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_get_random + 0x42002678 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_sleep + 0x42002678 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x8 (size before relaxing) + .literal.forced_memzero + 0x42002678 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.ccmp_aad_nonce + 0x42002678 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x18 (size before relaxing) + .literal.ccmp_decrypt + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x14 (size before relaxing) + .literal.ccmp_encrypt + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x1c (size before relaxing) + .literal.shift_right_block + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x4 (size before relaxing) + .literal.ghash_start + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x4 (size before relaxing) + .literal.aes_gcm_init_hash_subkey + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0xc (size before relaxing) + .literal.gf_mult + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x14 (size before relaxing) + .literal.ghash + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x20 (size before relaxing) + .literal.aes_gcm_ghash + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x18 (size before relaxing) + .literal.aes_gcm_prepare_j0 + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x18 (size before relaxing) + .literal.aes_gctr + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x14 (size before relaxing) + .literal.aes_gcm_gctr + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0xc (size before relaxing) + .literal.aes_gcm_ae + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x18 (size before relaxing) + .literal.aes_gmac + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x4 (size before relaxing) + .literal.hex2byte + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.hexstr2bin + 0x42002684 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_ntp_timestamp + 0x42002684 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x1c (size before relaxing) + .literal.printf_decode + 0x42002690 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.dup_binstr + 0x42002690 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_config_parse_string + 0x42002694 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x38 (size before relaxing) + .literal.bin_clear_free + 0x420026a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.os_memdup + 0x420026a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.os_reltime_expired + 0x420026a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_encr_start + 0x420026a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_auth + 0x420026a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_encr + 0x420026a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_encr_auth + 0x420026a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_decr_auth + 0x420026a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_auth_start + 0x420026a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.aes_ccm_ae + 0x420026a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x1c (size before relaxing) + .literal.aes_ccm_ad + 0x420026a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.esp_wifi_config_info + 0x420026a0 0x34 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x80 (size before relaxing) + .literal.wifi_deinit_internal + 0x420026d4 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4c (size before relaxing) + .literal.esp_wifi_set_log_level + 0x420026e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4 (size before relaxing) + .literal.s_set_default_wifi_log_level + 0x420026e8 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x20 (size before relaxing) + .literal.esp_wifi_init + 0x420026fc 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x54 (size before relaxing) + .literal.esp_wifi_connect + 0x42002714 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4 (size before relaxing) + .literal.pm_beacon_offset_funcs_init + 0x42002714 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4 (size before relaxing) + .literal.wifi_default_action_sta_got_ip + 0x42002714 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x1c (size before relaxing) + .literal.wifi_default_action_ap_stop + 0x42002720 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_stop + 0x42002720 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_start + 0x42002720 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x50 (size before relaxing) + .literal.wifi_default_action_ap_start + 0x42002744 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_start + 0x42002744 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_disconnected + 0x42002744 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_connected + 0x42002744 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x28 (size before relaxing) + .literal.clear_default_wifi_handlers + 0x42002744 0x28 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4c (size before relaxing) + .literal.set_default_wifi_handlers + 0x4200276c 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x50 (size before relaxing) + .literal.create_and_attach + 0x42002770 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x18 (size before relaxing) + .literal.esp_netif_attach_wifi + 0x42002778 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.esp_wifi_set_default_wifi_sta_handlers + 0x42002778 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_attach_wifi_station + 0x42002778 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_create_default_wifi_sta + 0x42002778 0x28 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x38 (size before relaxing) + .literal.parse_url_char + 0x420027a0 0xc esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_parse_host_char + 0x420027ac 0x4 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x8 (size before relaxing) + .literal.http_parse_host + 0x420027b0 0x14 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x1c (size before relaxing) + .literal.http_parser_url_init + 0x420027c4 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x4 (size before relaxing) + .literal.http_parser_parse_url + 0x420027c4 0x14 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x24 (size before relaxing) + .literal.ms_to_timeval + 0x420027d8 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_hostname_to_fd + 0x420027dc 0x20 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x64 (size before relaxing) + .literal.esp_tls_set_socket_options + 0x420027fc 0x24 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x90 (size before relaxing) + .literal.esp_tls_set_socket_non_blocking + 0x42002820 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x40 (size before relaxing) + .literal.tcp_connect + 0x4200282c 0x1c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0xac (size before relaxing) + .literal.tcp_write + 0x42002848 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4 (size before relaxing) + .literal.tcp_read + 0x42002848 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4 (size before relaxing) + .literal.create_ssl_handle + 0x42002848 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4 (size before relaxing) + .literal.esp_tls_handshake + 0x42002848 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4 (size before relaxing) + .literal.esp_tls_low_level_conn + 0x42002848 0x1c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x74 (size before relaxing) + .literal.esp_tls_conn_destroy + 0x42002864 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x10 (size before relaxing) + .literal.esp_tls_init + 0x42002864 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x10 (size before relaxing) + .literal.esp_tls_plain_tcp_connect + 0x42002868 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4 (size before relaxing) + .literal.esp_tls_conn_new_async + 0x42002868 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4 (size before relaxing) + .literal.esp_tls_get_bytes_avail + 0x42002868 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4 (size before relaxing) + .literal.esp_tls_get_conn_sockfd + 0x42002868 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x10 (size before relaxing) + .literal.esp_tls_get_and_clear_last_error + 0x4200286c 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4 (size before relaxing) + .literal.esp_tls_internal_event_tracker_create + 0x4200286c 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + 0x4 (size before relaxing) + .literal.esp_tls_internal_event_tracker_destroy + 0x4200286c 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + 0x4 (size before relaxing) + .literal.esp_mbedtls_read + 0x4200286c 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x20 (size before relaxing) + .literal.esp_mbedtls_write + 0x4200287c 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x28 (size before relaxing) + .literal.set_global_ca_store + 0x42002888 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x2c (size before relaxing) + .literal.set_ca_cert + 0x4200289c 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x44 (size before relaxing) + .literal.esp_mbedtls_init_pk_ctx_for_ds + 0x420028ac 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x48 (size before relaxing) + .literal.set_pki_context + 0x420028c0 0x20 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x80 (size before relaxing) + .literal.esp_mbedtls_verify_certificate + 0x420028e0 0x8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x24 (size before relaxing) + .literal.esp_mbedtls_handshake + 0x420028e8 0x8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x2c (size before relaxing) + .literal.esp_mbedtls_get_bytes_avail + 0x420028f0 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x14 (size before relaxing) + .literal.esp_mbedtls_cleanup + 0x420028f4 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x40 (size before relaxing) + .literal.esp_mbedtls_conn_delete + 0x420028f4 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.set_client_config + 0x420028f4 0x44 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x100 (size before relaxing) + .literal.esp_create_mbedtls_handle + 0x42002938 0x2c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0xb4 (size before relaxing) + .literal.esp_transport_list_init + 0x42002964 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x1c (size before relaxing) + .literal.esp_transport_list_add + 0x42002974 0x8 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x24 (size before relaxing) + .literal.esp_transport_list_get_transport + 0x4200297c 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .literal.esp_transport_init + 0x42002980 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x1c (size before relaxing) + .literal.esp_transport_destroy + 0x42002984 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x8 (size before relaxing) + .literal.esp_transport_list_clean + 0x42002984 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x4 (size before relaxing) + .literal.esp_transport_list_destroy + 0x42002984 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x8 (size before relaxing) + .literal.esp_transport_set_func + 0x42002984 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .literal.capture_tcp_transport_error + 0x42002988 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x10 (size before relaxing) + .literal.esp_tls_connect_async + 0x4200298c 0x8 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x24 (size before relaxing) + .literal.tcp_connect_async + 0x42002994 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x4 (size before relaxing) + .literal.base_poll_write + 0x42002994 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x2c (size before relaxing) + .literal.base_poll_read + 0x42002998 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x30 (size before relaxing) + .literal.base_close + 0x4200299c 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x8 (size before relaxing) + .literal.esp_transport_esp_tls_create + 0x4200299c 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x4 (size before relaxing) + .literal.esp_transport_base_init + 0x4200299c 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x38 (size before relaxing) + .literal.tcp_write + 0x420029a8 0x8 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x3c (size before relaxing) + .literal.tcp_read + 0x420029b0 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x30 (size before relaxing) + .literal.tcp_connect + 0x420029b4 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x1c (size before relaxing) + .literal.esp_transport_esp_tls_destroy + 0x420029b8 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x4 (size before relaxing) + .literal.base_destroy + 0x420029b8 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0xc (size before relaxing) + .literal.esp_transport_tcp_init + 0x420029b8 0x24 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x30 (size before relaxing) + .literal.esp_transport_tcp_set_keep_alive + 0x420029dc 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x4 (size before relaxing) + .literal.esp_transport_tcp_set_interface_name + 0x420029dc 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x4 (size before relaxing) + .literal.esp_transport_utils_ms_to_timeval + 0x420029dc 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + 0x4 (size before relaxing) + .literal.esp_transport_init_foundation_transport + 0x420029dc 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + 0x2c (size before relaxing) + .literal.esp_transport_destroy_foundation_transport + 0x420029ec 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + 0x8 (size before relaxing) + .literal.ws_get_payload_transport_handle + 0x420029ec 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x4 (size before relaxing) + .literal.ws_poll_write + 0x420029ec 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x8 (size before relaxing) + .literal._ws_write + 0x420029ec 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x34 (size before relaxing) + .literal.ws_write + 0x420029f8 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x8 (size before relaxing) + .literal.ws_destroy + 0x420029f8 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x20 (size before relaxing) + .literal.internal_esp_transport_ws_set_path + 0x420029f8 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0xc (size before relaxing) + .literal.ws_poll_read + 0x420029fc 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x8 (size before relaxing) + .literal.ws_close + 0x420029fc 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x8 (size before relaxing) + .literal.esp_transport_read_internal + 0x420029fc 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0xc (size before relaxing) + .literal.esp_transport_read_exact_size + 0x42002a00 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x14 (size before relaxing) + .literal.ws_read_header + 0x42002a04 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x48 (size before relaxing) + .literal.ws_read_payload + 0x42002a08 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x18 (size before relaxing) + .literal.trimwhitespace + 0x42002a08 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x8 (size before relaxing) + .literal.get_http_header + 0x42002a0c 0x8 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x14 (size before relaxing) + .literal.get_http_status_code + 0x42002a14 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x14 (size before relaxing) + .literal.ws_connect + 0x42002a20 0x60 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x12c (size before relaxing) + .literal.esp_transport_ws_set_path + 0x42002a80 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x14 (size before relaxing) + .literal.esp_transport_ws_init + 0x42002a84 0x38 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x90 (size before relaxing) + .literal.esp_transport_ws_set_subprotocol + 0x42002abc 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0xc (size before relaxing) + .literal.esp_transport_ws_poll_connection_closed + 0x42002abc 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x3c (size before relaxing) + .literal.esp_transport_ws_handle_control_frames + 0x42002ac8 0x1c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x68 (size before relaxing) + .literal.ws_handle_control_frame_internal + 0x42002ae4 0xc esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x3c (size before relaxing) + .literal.ws_read + 0x42002af0 0x4 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ssl_ciphersuite_from_id + 0x42002af4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_list_ciphersuites + 0x42002af8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x18 (size before relaxing) + .literal.ssl_check_record_type + 0x42002b08 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_read_application_data + 0x42002b0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x8 (size before relaxing) + .literal.ssl_build_record_nonce + 0x42002b0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x8 (size before relaxing) + .literal.ssl_extract_add_data_from_record + 0x42002b0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ct_hmac + 0x42002b0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x48 (size before relaxing) + .literal.ssl_consume_current_message + 0x42002b0c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x8 (size before relaxing) + .literal.ssl_check_ctr_renegotiate + 0x42002b10 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_encrypt_buf + 0x42002b14 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x68 (size before relaxing) + .literal.mbedtls_ssl_decrypt_buf + 0x42002b1c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x70 (size before relaxing) + .literal.ssl_prepare_record_content + 0x42002b24 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ssl_fetch_input + 0x42002b28 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ssl_start_handshake_msg + 0x42002b34 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_update_out_pointers + 0x42002b38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_flush_output + 0x42002b38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_prepare_handshake_record + 0x42002b38 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ssl_handle_message_type + 0x42002b3c 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ssl_reset_in_pointers + 0x42002b48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_reset_out_pointers + 0x42002b48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_transform_free + 0x42002b48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ssl_write_record + 0x42002b48 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_ssl_write_handshake_msg_ext + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_finish_handshake_msg + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_write_change_cipher_spec + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_send_alert_message + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0xc (size before relaxing) + .literal.ssl_tls12_handle_hs_message_post_handshake + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0xc (size before relaxing) + .literal.ssl_handle_hs_message_post_handshake + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x8 (size before relaxing) + .literal.ssl_write_real + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ssl_write + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x10 (size before relaxing) + .literal.ssl_parse_record_header + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x10 (size before relaxing) + .literal.ssl_get_next_record + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ssl_read_record + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ssl_parse_change_cipher_spec + 0x42002b4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ssl_read + 0x42002b4c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_ssl_handle_pending_alert + 0x42002b50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x8 (size before relaxing) + .literal.ssl_mfl_code_to_length + 0x42002b50 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_conf_version_check + 0x42002b54 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_conf_check + 0x42002b58 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_set_handshake_prfs + 0x42002b5c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_get_type + 0x42002b74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_key_cert_free + 0x42002b74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_append_key_cert + 0x42002b74 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.tls_prf_generic + 0x42002b78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x58 (size before relaxing) + .literal.tls_prf_sha256 + 0x42002b78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.tls_prf_sha384 + 0x42002b78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_compute_master + 0x42002b78 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.ssl_update_checksum_sha256 + 0x42002b80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_update_checksum_sha384 + 0x42002b80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_update_checksum_start + 0x42002b80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_handshake_params_init + 0x42002b80 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ssl_free_hostname + 0x42002b84 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.ssl_srv_check_client_no_crt_notification + 0x42002b88 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_check_peer_crt_unchanged + 0x42002b8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_clear_peer_cert + 0x42002b8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_prepare_handshake_step + 0x42002b8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_write_hello_request + 0x42002b8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_calc_finished_tls_generic + 0x42002b8c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x24 (size before relaxing) + .literal.ssl_calc_finished_tls_sha256 + 0x42002b94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_calc_finished_tls_sha384 + 0x42002b94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_calc_verify_tls_legacy + 0x42002b94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .literal.ssl_calc_verify_tls_sha256 + 0x42002b94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_calc_verify_tls_sha384 + 0x42002b94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_parse_certificate_chain + 0x42002b94 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_pk_get_ec_group_id + 0x42002ba8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_optimize_checksum + 0x42002ba8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_reset_checksum + 0x42002bb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_ssl_transform_init + 0x42002bb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ssl_session_init + 0x42002bb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_init + 0x42002bb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_conf_own_cert + 0x42002bb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_get_mode_from_transform + 0x42002bb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ssl_get_mode_from_ciphersuite + 0x42002bb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.ssl_tls12_populate_transform + 0x42002bb0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x60 (size before relaxing) + .literal.mbedtls_ssl_get_hostname_pointer + 0x42002bb4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.get_hostname_for_verification + 0x42002bb4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_set_hostname + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ssl_conf_alpn_protocols + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_get_output_max_frag_len + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_get_max_out_record_payload + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_handshake_step + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ssl_handshake + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ssl_handshake_free + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ssl_session_free + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.ssl_handshake_init + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_ssl_setup + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ssl_start_renegotiation + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ssl_renegotiate + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ssl_free + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_ssl_config_init + 0x42002bb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_config_defaults + 0x42002bb8 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_ssl_config_free + 0x42002bdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ssl_sig_from_pk + 0x42002bdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ssl_get_ecp_group_id_from_tls_id + 0x42002bdc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_tls_id_from_ecp_group_id + 0x42002be0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_check_curve + 0x42002be0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ssl_parse_sig_alg_ext + 0x42002be0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ssl_derive_keys + 0x42002be4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ssl_set_calc_verify_md + 0x42002be4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ssl_write_certificate + 0x42002be4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ssl_handshake_wrapup_free_hs_transform + 0x42002be8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ssl_handshake_wrapup + 0x42002be8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_write_finished + 0x42002be8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ssl_parse_finished + 0x42002be8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ssl_get_key_exchange_md_tls1_2 + 0x42002be8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg + 0x42002be8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_write_sig_alg_ext + 0x42002be8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ssl_parse_server_name_ext + 0x42002be8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ssl_parse_alpn_ext + 0x42002bec 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_ssl_write_alpn_ext + 0x42002bf4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_check_cert_usage + 0x42002bf4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ssl_verify_certificate + 0x42002bfc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ssl_parse_certificate + 0x42002c04 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x34 (size before relaxing) + .literal.ssl_write_supported_point_formats_ext + 0x42002c08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x4 (size before relaxing) + .literal.ssl_write_max_fragment_length_ext + 0x42002c08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x4 (size before relaxing) + .literal.ssl_write_encrypt_then_mac_ext + 0x42002c08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x4 (size before relaxing) + .literal.ssl_write_extended_ms_ext + 0x42002c08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x4 (size before relaxing) + .literal.ssl_write_renegotiation_ext + 0x42002c08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x8 (size before relaxing) + .literal.ssl_write_session_ticket_ext + 0x42002c08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_max_fragment_length_ext + 0x42002c08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_encrypt_then_mac_ext + 0x42002c08 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_extended_ms_ext + 0x42002c0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_session_ticket_ext + 0x42002c0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_supported_point_formats_ext + 0x42002c0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x10 (size before relaxing) + .literal.ssl_parse_certificate_request + 0x42002c0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x20 (size before relaxing) + .literal.ssl_parse_server_hello_done + 0x42002c0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x10 (size before relaxing) + .literal.ssl_parse_renegotiation_info + 0x42002c0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x14 (size before relaxing) + .literal.ssl_parse_alpn_ext + 0x42002c0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x28 (size before relaxing) + .literal.ssl_parse_server_hello + 0x42002c0c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0xa0 (size before relaxing) + .literal.ssl_check_server_ecdh_params + 0x42002c1c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0xc (size before relaxing) + .literal.ssl_get_ecdh_params_from_cert + 0x42002c1c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x1c (size before relaxing) + .literal.ssl_parse_server_ecdh_params + 0x42002c20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_get_pk_type_and_md_alg_from_sig_alg + 0x42002c20 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_md_get_size_from_type + 0x42002c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_server_key_exchange + 0x42002c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x6c (size before relaxing) + .literal.ssl_write_encrypted_pms + 0x42002c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x1c (size before relaxing) + .literal.ssl_write_client_key_exchange + 0x42002c2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x14 (size before relaxing) + .literal.ssl_write_certificate_verify + 0x42002c2c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x28 (size before relaxing) + .literal.ssl_parse_new_session_ticket + 0x42002c34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_ssl_tls12_write_client_hello_exts + 0x42002c34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ssl_handshake_client_step + 0x42002c34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x40 (size before relaxing) + .literal.ssl_parse_supported_point_formats + 0x42002c34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_max_fragment_length_ext + 0x42002c34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_encrypt_then_mac_ext + 0x42002c34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_extended_ms_ext + 0x42002c34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x8 (size before relaxing) + .literal.ssl_write_renegotiation_ext + 0x42002c34 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_renegotiation_info + 0x42002c38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x10 (size before relaxing) + .literal.ssl_parse_supported_groups_ext + 0x42002c38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x24 (size before relaxing) + .literal.ssl_handle_id_based_session_resumption + 0x42002c38 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x14 (size before relaxing) + .literal.ssl_parse_session_ticket_ext + 0x42002c3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_pk_get_ec_group_id + 0x42002c3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x4 (size before relaxing) + .literal.ssl_check_key_curve + 0x42002c3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x8 (size before relaxing) + .literal.ssl_pick_cert + 0x42002c3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x10 (size before relaxing) + .literal.ssl_ciphersuite_match + 0x42002c3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x1c (size before relaxing) + .literal.ssl_parse_client_hello + 0x42002c3c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x9c (size before relaxing) + .literal.ssl_write_encrypt_then_mac_ext + 0x42002c44 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x8 (size before relaxing) + .literal.ssl_write_server_hello + 0x42002c44 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x50 (size before relaxing) + .literal.ssl_write_server_hello_done + 0x42002c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x4 (size before relaxing) + .literal.ssl_get_ecdh_params_from_cert + 0x42002c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x1c (size before relaxing) + .literal.ssl_prepare_server_key_exchange + 0x42002c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x44 (size before relaxing) + .literal.ssl_write_server_key_exchange + 0x42002c48 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x14 (size before relaxing) + .literal.ssl_write_certificate_request + 0x42002c4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x14 (size before relaxing) + .literal.ssl_decrypt_encrypted_pms + 0x42002c4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x20 (size before relaxing) + .literal.ssl_parse_encrypted_pms + 0x42002c4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x10 (size before relaxing) + .literal.ssl_parse_client_key_exchange + 0x42002c4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x20 (size before relaxing) + .literal.ssl_parse_certificate_verify + 0x42002c4c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x2c (size before relaxing) + .literal.ssl_write_new_session_ticket + 0x42002c50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_handshake_server_step + 0x42002c50 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_ms_time + 0x42002c54 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + 0x10 (size before relaxing) + .literal.net_would_block + 0x42002c58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_net_recv + 0x42002c58 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_net_send + 0x42002c5c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_net_free + 0x42002c60 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x8 (size before relaxing) + .literal.ssl_generate_random + 0x42002c60 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x8 (size before relaxing) + .literal.ssl_prepare_client_hello + 0x42002c60 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x8 (size before relaxing) + .literal.ssl_write_client_hello_cipher_suites + 0x42002c60 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x10 (size before relaxing) + .literal.ssl_write_hostname_ext + 0x42002c64 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x10 (size before relaxing) + .literal.ssl_write_alpn_ext + 0x42002c68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0xc (size before relaxing) + .literal.ssl_write_supported_groups_ext + 0x42002c68 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x14 (size before relaxing) + .literal.ssl_write_client_hello_body + 0x42002c6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_ssl_write_client_hello + 0x42002c6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_int_div_int + 0x42002c6c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_free + 0x42002c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_grow + 0x42002c70 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_safe_cond_assign + 0x42002c78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_safe_cond_swap + 0x42002c78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_resize_clear + 0x42002c78 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_shrink + 0x42002c7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_copy + 0x42002c7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_lset + 0x42002c7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .text.esp_app_format_init_elf_sha256 + 0x42002c7c 0x5c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text.esp_app_get_elf_sha256 + 0x42002cd8 0x42 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x46 (size before relaxing) + 0x42002cd8 esp_app_get_elf_sha256 + *fill* 0x42002d1a 0x2 + .text.__esp_system_init_fn_init_show_app_info + 0x42002d1c 0xcd esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0xd5 (size before relaxing) + *fill* 0x42002de9 0x3 + .text.__esp_system_init_fn_init_efuse_check + 0x42002dec 0x12 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x15 (size before relaxing) + *fill* 0x42002dfe 0x2 + .text.__esp_system_init_fn_init_efuse_show_app_info + 0x42002e00 0x9c esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .text.__esp_system_init_fn_init_efuse + 0x42002e9c 0x30 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .text.esp_efuse_read_field_blob + 0x42002ecc 0x61 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x65 (size before relaxing) + 0x42002ecc esp_efuse_read_field_blob + *fill* 0x42002f2d 0x3 + .text.esp_efuse_check_errors + 0x42002f30 0xd esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x42002f30 esp_efuse_check_errors + *fill* 0x42002f3d 0x3 + .text.esp_efuse_utility_process + 0x42002f40 0x132 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x42002f40 esp_efuse_utility_process + *fill* 0x42003072 0x2 + .text.esp_efuse_utility_read_reg + 0x42003074 0x4a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x42003074 esp_efuse_utility_read_reg + *fill* 0x420030be 0x2 + .text.esp_efuse_utility_fill_buff + 0x420030c0 0xc1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x420030c0 esp_efuse_utility_fill_buff + *fill* 0x42003181 0x3 + .text.esp_efuse_utility_count_once + 0x42003184 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x42003184 esp_efuse_utility_count_once + *fill* 0x420031b6 0x2 + .text.esp_register_shutdown_handler + 0x420031b8 0x32 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x420031b8 esp_register_shutdown_handler + *fill* 0x420031ea 0x2 + .text.esp_unregister_shutdown_handler + 0x420031ec 0x2a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x420031ec esp_unregister_shutdown_handler + *fill* 0x42003216 0x2 + .text.esp_restart + 0x42003218 0x26 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x42003218 esp_restart + *fill* 0x4200323e 0x2 + .text.__esp_system_init_fn_init_show_cpu_freq + 0x42003240 0x4a esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + *fill* 0x4200328a 0x2 + .text.__esp_system_init_fn_init_brownout + 0x4200328c 0x10 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x13 (size before relaxing) + *fill* 0x4200329c 0x0 + .text.__esp_system_init_fn_init_newlib_time + 0x4200329c 0xa esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0xd (size before relaxing) + *fill* 0x420032a6 0x2 + .text.__esp_system_init_fn_init_flash + 0x420032a8 0x34 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x37 (size before relaxing) + *fill* 0x420032dc 0x0 + .text.__esp_system_init_fn_init_apb_dma + 0x420032dc 0xa esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0xd (size before relaxing) + *fill* 0x420032e6 0x2 + .text.__esp_system_init_fn_init_disable_rtc_wdt + 0x420032e8 0x26 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + *fill* 0x4200330e 0x2 + .text.core_intr_matrix_clear + 0x42003310 0x24 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .text.sys_rtc_init + 0x42003334 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xb (size before relaxing) + *fill* 0x4200333c 0x0 + .text.start_other_core + 0x4200333c 0xd9 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xdd (size before relaxing) + *fill* 0x42003415 0x3 + .text.system_early_init + 0x42003418 0x252 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x27a (size before relaxing) + *fill* 0x4200366a 0x2 + .text.startup_resume_other_cores + 0x4200366c 0x10 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x4200366c startup_resume_other_cores + .text.mspi_init + 0x4200367c 0x17 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x1d (size before relaxing) + *fill* 0x42003693 0x1 + .text.select_rtc_slow_clk + 0x42003694 0xae esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x42003742 0x2 + .text.esp_rtc_init + 0x42003744 0x2b esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x42003744 esp_rtc_init + *fill* 0x4200376f 0x1 + .text.esp_clk_init + 0x42003770 0x125 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x129 (size before relaxing) + 0x42003770 esp_clk_init + *fill* 0x42003895 0x3 + .text.esp_perip_clk_init + 0x42003898 0x15e esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x42003898 esp_perip_clk_init + *fill* 0x420039f6 0x2 + .text.esp_cache_err_get_panic_info + 0x420039f8 0x36 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x420039f8 esp_cache_err_get_panic_info + *fill* 0x42003a2e 0x2 + .text.esp_cache_err_acs_save_and_clr + 0x42003a30 0xb0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x42003a30 esp_cache_err_acs_save_and_clr + .text.esp_cache_err_int_init + 0x42003ae0 0x114 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x42003ae0 esp_cache_err_int_init + .text.esp_cache_err_get_cpuid + 0x42003bf4 0xa esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x42003bf4 esp_cache_err_get_cpuid + *fill* 0x42003bfe 0x2 + .text.esp_apb_backup_dma_lock_init + 0x42003c00 0x11 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x42003c00 esp_apb_backup_dma_lock_init + *fill* 0x42003c11 0x3 + .text.esp_int_wdt_init + 0x42003c14 0xb8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x42003c14 esp_int_wdt_init + .text.esp_int_wdt_cpu_init + 0x42003ccc 0x34 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x42003ccc esp_int_wdt_cpu_init + .text.do_global_ctors + 0x42003d00 0x19 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x42003d19 0x3 + .text.do_system_init_fn + 0x42003d1c 0x61 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x42003d7d 0x3 + .text.do_core_init + 0x42003d80 0xa esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xe (size before relaxing) + *fill* 0x42003d8a 0x2 + .text.do_secondary_init + 0x42003d8c 0x5e esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x62 (size before relaxing) + *fill* 0x42003dea 0x2 + .text.start_cpu0_default + 0x42003dec 0x21 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x29 (size before relaxing) + 0x42003dec start_cpu0 + *fill* 0x42003e0d 0x3 + .text.frame_to_panic_info + 0x42003e10 0x4d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x51 (size before relaxing) + *fill* 0x42003e5d 0x3 + .text.panic_handler + 0x42003e60 0xfc esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x104 (size before relaxing) + .text.print_state_for_core + 0x42003f5c 0x2a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + *fill* 0x42003f86 0x2 + .text.print_state + 0x42003f88 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x50 (size before relaxing) + .text.panic_restart + 0x42003fd0 0x9 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x42003fd0 panic_restart + *fill* 0x42003fd9 0x3 + .text.esp_ipc_isr_init + 0x42003fdc 0x1f esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x42003fdc esp_ipc_isr_init + *fill* 0x42003ffb 0x1 + .text.esp_ipc_isr_port_init + 0x42003ffc 0x24 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x42003ffc esp_ipc_isr_port_init + .text.print_debug_exception_details + 0x42004020 0x68 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.print_illegal_instruction_details + 0x42004088 0x6a esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x420040f2 0x2 + .text.print_cache_err_details + 0x420040f4 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x64 (size before relaxing) + .text.panic_print_registers + 0x42004154 0x10f esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x42004154 panic_print_registers + *fill* 0x42004263 0x1 + .text.panic_arch_fill_info + 0x42004264 0x32 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x42004264 panic_arch_fill_info + *fill* 0x42004296 0x2 + .text.panic_soc_fill_info + 0x42004298 0x62 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x42004298 panic_soc_fill_info + *fill* 0x420042fa 0x2 + .text.panic_print_backtrace + 0x420042fc 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x420042fc panic_print_backtrace + .text.esp_ipc_call_and_wait + 0x4200431c 0xdd esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x420043f9 0x3 + .text.esp_ipc_init + 0x420043fc 0x91 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x4200448d 0x3 + .text.esp_ipc_call_blocking + 0x42004490 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x42004490 esp_ipc_call_blocking + *fill* 0x420044a5 0x3 + .text.esp_ipc_call_nonblocking + 0x420044a8 0xae esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x420044a8 esp_ipc_call_nonblocking + *fill* 0x42004556 0x2 + .text.esp_err_to_name + 0x42004558 0x2b esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x42004558 esp_err_to_name + *fill* 0x42004583 0x1 + .text.uart_hal_rxfifo_rst + 0x42004584 0x27 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x42004584 uart_hal_rxfifo_rst + *fill* 0x420045ab 0x1 + .text.esp_log_set_default_level + 0x420045ac 0xa esp-idf/log/liblog.a(log_level.c.obj) + 0x420045ac esp_log_set_default_level + *fill* 0x420045b6 0x2 + .text.esp_log_is_tag_loggable + 0x420045b8 0x1d esp-idf/log/liblog.a(log_level.c.obj) + 0x420045b8 esp_log_is_tag_loggable + *fill* 0x420045d5 0x3 + .text.set_log_level + 0x420045d8 0x29 esp-idf/log/liblog.a(log_linked_list.c.obj) + *fill* 0x42004601 0x3 + .text.add_to_list + 0x42004604 0x3d esp-idf/log/liblog.a(log_linked_list.c.obj) + *fill* 0x42004641 0x3 + .text.esp_log_linked_list_set_level + 0x42004644 0x20 esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x28 (size before relaxing) + 0x42004644 esp_log_linked_list_set_level + .text.esp_log_linked_list_get_level + 0x42004664 0x2b esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x42004664 esp_log_linked_list_get_level + *fill* 0x4200468f 0x1 + .text.esp_log_linked_list_clean + 0x42004690 0x1e esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x42004690 esp_log_linked_list_clean + *fill* 0x420046ae 0x2 + .text.fix_cache_generation_overflow + 0x420046b0 0x2c esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.heap_swap + 0x420046dc 0x22 esp-idf/log/liblog.a(log_binary_heap.c.obj) + *fill* 0x420046fe 0x2 + .text.heap_bubble_down + 0x42004700 0x3b esp-idf/log/liblog.a(log_binary_heap.c.obj) + *fill* 0x4200473b 0x1 + .text.esp_log_cache_set_level + 0x4200473c 0x6e esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x4200473c esp_log_cache_set_level + *fill* 0x420047aa 0x2 + .text.esp_log_cache_get_level + 0x420047ac 0xb0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0xb4 (size before relaxing) + 0x420047ac esp_log_cache_get_level + .text.esp_log_cache_clean + 0x4200485c 0x16 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x4200485c esp_log_cache_clean + *fill* 0x42004872 0x2 + .text.esp_log_cache_add + 0x42004874 0x7b esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x7f (size before relaxing) + 0x42004874 esp_log_cache_add + *fill* 0x420048ef 0x1 + .text.heap_caps_get_free_size + 0x420048f0 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x420048f0 heap_caps_get_free_size + *fill* 0x4200491d 0x3 + .text.heap_caps_get_info + 0x42004920 0x73 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x42004920 heap_caps_get_info + *fill* 0x42004993 0x1 + .text.heap_caps_get_largest_free_block + 0x42004994 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x42004994 heap_caps_get_largest_free_block + *fill* 0x420049a5 0x3 + .text.heap_caps_aligned_calloc + 0x420049a8 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x420049a8 heap_caps_aligned_calloc + .text.sorted_add_to_registered_heaps + 0x420049dc 0x4f esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x42004a2b 0x1 + .text.register_heap + 0x42004a2c 0x2b esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x42004a57 0x1 + .text.heap_caps_enable_nonos_stack_heaps + 0x42004a58 0x2c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x42004a58 heap_caps_enable_nonos_stack_heaps + .text.heap_caps_init + 0x42004a84 0x2a3 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2a7 (size before relaxing) + 0x42004a84 heap_caps_init + *fill* 0x42004d27 0x1 + .text.__esp_system_init_fn_init_heap + 0x42004d28 0xa esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xd (size before relaxing) + *fill* 0x42004d32 0x2 + .text.s_get_num_reserved_regions + 0x42004d34 0x13 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x42004d47 0x1 + .text.s_prepare_reserved_regions + 0x42004d48 0xb5 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x42004dfd 0x3 + .text.soc_get_available_memory_region_max_count + 0x42004e00 0x12 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x42004e00 soc_get_available_memory_region_max_count + *fill* 0x42004e12 0x2 + .text.soc_get_available_memory_regions + 0x42004e14 0x112 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x116 (size before relaxing) + 0x42004e14 soc_get_available_memory_regions + *fill* 0x42004f26 0x2 + .text.insert_vector_desc + 0x42004f28 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.find_desc_for_int + 0x42004f78 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.get_desc_for_int + 0x42004f9c 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x5e (size before relaxing) + *fill* 0x42004ff2 0x2 + .text.find_desc_for_source + 0x42004ff4 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x42005066 0x2 + .text.is_vect_desc_usable + 0x42005068 0xc5 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc9 (size before relaxing) + *fill* 0x4200512d 0x3 + .text.get_available_int + 0x42005130 0x145 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x159 (size before relaxing) + *fill* 0x42005275 0x3 + .text.esp_intr_ptr_in_isr_region + 0x42005278 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x42005278 esp_intr_ptr_in_isr_region + .text.esp_intr_alloc_intrstatus_bind + 0x420052b0 0x341 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x345 (size before relaxing) + 0x420052b0 esp_intr_alloc_intrstatus_bind + *fill* 0x420055f1 0x3 + .text.esp_intr_alloc_intrstatus + 0x420055f4 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x420055f4 esp_intr_alloc_intrstatus + *fill* 0x42005615 0x3 + .text.esp_intr_alloc + 0x42005618 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + 0x42005618 esp_intr_alloc + .text.intr_free_for_current_cpu + 0x42005630 0xee esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x4200571e 0x2 + .text.esp_intr_free + 0x42005720 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x42005720 esp_intr_free + *fill* 0x42005772 0x2 + .text.intr_free_for_other_cpu + 0x42005774 0xa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xe (size before relaxing) + *fill* 0x4200577e 0x2 + .text.s_rtc_isr_noniram_hook + 0x42005780 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + *fill* 0x4200578f 0x1 + .text.s_rtc_isr_noniram_hook_relieve + 0x42005790 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + *fill* 0x420057a2 0x2 + .text.rtc_isr_ensure_installed + 0x420057a4 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + *fill* 0x42005803 0x1 + .text.rtc_isr_register + 0x42005804 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x6a (size before relaxing) + 0x42005804 rtc_isr_register + *fill* 0x42005862 0x2 + .text.esp_sleep_config_gpio_isolate + 0x42005864 0xe3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x123 (size before relaxing) + 0x42005864 esp_sleep_config_gpio_isolate + *fill* 0x42005947 0x1 + .text.esp_sleep_enable_gpio_switch + 0x42005948 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0xba (size before relaxing) + 0x42005948 esp_sleep_enable_gpio_switch + *fill* 0x420059fa 0x2 + .text.__esp_system_init_fn_esp_sleep_startup_init + 0x420059fc 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x15 (size before relaxing) + *fill* 0x42005a0d 0x3 + .text.esp_deep_sleep_wakeup_io_reset + 0x42005a10 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x42005a10 esp_deep_sleep_wakeup_io_reset + .text.esp_brownout_init + 0x42005a8c 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x4d (size before relaxing) + 0x42005a8c esp_brownout_init + *fill* 0x42005ad5 0x3 + .text.esp_chip_info + 0x42005ad8 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x42005ad8 esp_chip_info + *fill* 0x42005b02 0x2 + .text.memprot_ll_icache_set_pms_area_0 + 0x42005b04 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005b42 0x2 + .text.memprot_ll_icache_set_pms_area_1 + 0x42005b44 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005b82 0x2 + .text.memprot_ll_prepare_iram0_split_line_regval + 0x42005b84 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_set_iram0_split_line + 0x42005c18 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005c4a 0x2 + .text.memprot_ll_iram0_set_pms_area_0 + 0x42005c4c 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_iram0_set_pms_area_1 + 0x42005c84 0x3d esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005cc1 0x3 + .text.memprot_ll_iram0_set_pms_area_2 + 0x42005cc4 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005d02 0x2 + .text.memprot_ll_iram0_set_pms_area_3 + 0x42005d04 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005d42 0x2 + .text.memprot_ll_iram0_get_monitor_lock + 0x42005d44 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005d7f 0x1 + .text.memprot_ll_iram0_set_monitor_en + 0x42005d80 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_iram0_get_monitor_en + 0x42005de8 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005e1a 0x2 + .text.memprot_ll_iram0_set_monitor_intrclr + 0x42005e1c 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005e56 0x2 + .text.memprot_ll_iram0_reset_monitor_intrclr + 0x42005e58 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005e92 0x2 + .text.memprot_ll_get_pif_constraint_lock + 0x42005e94 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005ecf 0x1 + .text.memprot_ll_set_rtcfast_split_line + 0x42005ed0 0x75 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42005f45 0x3 + .text.memprot_ll_rtcfast_set_pms_area + 0x42005f48 0xdc esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_rtcfast_get_pms_area + 0x42006024 0xc2 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x420060e6 0x2 + .text.memprot_ll_rtcfast_get_monitor_lock + 0x420060e8 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42006123 0x1 + .text.memprot_ll_rtcfast_set_monitor_en + 0x42006124 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x4200618e 0x2 + .text.memprot_ll_rtcfast_get_monitor_en + 0x42006190 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x420061c2 0x2 + .text.memprot_ll_rtcfast_set_monitor_intrclr + 0x420061c4 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x420061fe 0x2 + .text.memprot_ll_rtcfast_reset_monitor_intrclr + 0x42006200 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x4200623a 0x2 + .text.memprot_ll_prepare_dram0_split_line_regval + 0x4200623c 0x99 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x420062d5 0x3 + .text.memprot_ll_set_dram0_split_line + 0x420062d8 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x4200630a 0x2 + .text.memprot_ll_dram0_set_pms_area_0 + 0x4200630c 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x4200633d 0x3 + .text.memprot_ll_dram0_set_pms_area_1 + 0x42006340 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42006376 0x2 + .text.memprot_ll_dram0_set_pms_area_2 + 0x42006378 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x420063ae 0x2 + .text.memprot_ll_dram0_set_pms_area_3 + 0x420063b0 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_dram0_get_monitor_lock + 0x420063e4 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x4200641f 0x1 + .text.memprot_ll_dram0_set_monitor_en + 0x42006420 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_dram0_get_monitor_en + 0x42006488 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x420064ba 0x2 + .text.memprot_ll_dram0_set_monitor_intrclr + 0x420064bc 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x420064f6 0x2 + .text.memprot_ll_dram0_reset_monitor_intrclr + 0x420064f8 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42006532 0x2 + .text.esp_mprot_cpuid_valid + 0x42006534 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x4200655d 0x3 + .text.esp_memprot_iram0_get_def_split_addr + 0x42006560 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_memprot_dram0_get_def_split_addr + 0x42006568 0xd esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42006575 0x3 + .text.esp_memprot_rtcfast_get_min_split_addr + 0x42006578 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_set_intr_matrix + 0x42006580 0xc2 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x42006642 0x2 + .text.esp_mprot_set_split_addr + 0x42006644 0xbe esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0xda (size before relaxing) + 0x42006644 esp_mprot_set_split_addr + *fill* 0x42006702 0x2 + .text.esp_mprot_get_default_main_split_addr + 0x42006704 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x42006704 esp_mprot_get_default_main_split_addr + *fill* 0x42006745 0x3 + .text.esp_mprot_set_split_addr_lock + 0x42006748 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x66 (size before relaxing) + 0x42006748 esp_mprot_set_split_addr_lock + *fill* 0x420067aa 0x2 + .text.esp_mprot_get_split_addr_lock + 0x420067ac 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x5e (size before relaxing) + 0x420067ac esp_mprot_get_split_addr_lock + *fill* 0x42006802 0x2 + .text.esp_mprot_set_pms_lock + 0x42006804 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x42006804 esp_mprot_set_pms_lock + *fill* 0x42006876 0x2 + .text.esp_mprot_get_pms_lock + 0x42006878 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x72 (size before relaxing) + 0x42006878 esp_mprot_get_pms_lock + *fill* 0x420068e2 0x2 + .text.esp_mprot_set_pms_area + 0x420068e4 0x16c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x184 (size before relaxing) + 0x420068e4 esp_mprot_set_pms_area + .text.esp_mprot_get_pms_area + 0x42006a50 0x21a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x22a (size before relaxing) + 0x42006a50 esp_mprot_get_pms_area + *fill* 0x42006c6a 0x2 + .text.esp_mprot_set_monitor_lock + 0x42006c6c 0xb6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x42006c6c esp_mprot_set_monitor_lock + *fill* 0x42006d22 0x2 + .text.esp_mprot_get_monitor_lock + 0x42006d24 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x72 (size before relaxing) + 0x42006d24 esp_mprot_get_monitor_lock + *fill* 0x42006d86 0x2 + .text.esp_mprot_set_monitor_en + 0x42006d88 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x66 (size before relaxing) + 0x42006d88 esp_mprot_set_monitor_en + *fill* 0x42006dde 0x2 + .text.esp_mprot_get_monitor_en + 0x42006de0 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x72 (size before relaxing) + 0x42006de0 esp_mprot_get_monitor_en + *fill* 0x42006e42 0x2 + .text.esp_mprot_monitor_clear_intr + 0x42006e44 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x9a (size before relaxing) + 0x42006e44 esp_mprot_monitor_clear_intr + *fill* 0x42006eb6 0x2 + .text.esp_mprot_is_conf_locked_any + 0x42006eb8 0x186 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x1ae (size before relaxing) + 0x42006eb8 esp_mprot_is_conf_locked_any + *fill* 0x4200703e 0x2 + .text.esp_mprot_set_prot + 0x42007040 0x80a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8ba (size before relaxing) + 0x42007040 esp_mprot_set_prot + *fill* 0x4200784a 0x2 + .text.esp_mprot_ll_err_to_esp_err + 0x4200784c 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + 0x4200784c esp_mprot_ll_err_to_esp_err + *fill* 0x42007892 0x2 + .text.esp_cpu_intr_get_desc + 0x42007894 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x42007894 esp_cpu_intr_get_desc + .text.clk_tree_rtc_slow_calibration + 0x420078d8 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .text.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x42007924 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x42007924 esp_clk_tree_rc_fast_d256_get_freq_hz + *fill* 0x4200797e 0x2 + .text.esp_clk_tree_xtal32k_get_freq_hz + 0x42007980 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x42007980 esp_clk_tree_xtal32k_get_freq_hz + *fill* 0x420079da 0x2 + .text.esp_clk_tree_lp_slow_get_freq_hz + 0x420079dc 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x420079dc esp_clk_tree_lp_slow_get_freq_hz + *fill* 0x42007a1d 0x3 + .text.esp_clk_tree_rc_fast_get_freq_hz + 0x42007a20 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x42007a20 esp_clk_tree_rc_fast_get_freq_hz + *fill* 0x42007a39 0x3 + .text.esp_clk_tree_lp_fast_get_freq_hz + 0x42007a3c 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x42007a3c esp_clk_tree_lp_fast_get_freq_hz + *fill* 0x42007a92 0x2 + .text.__esp_system_init_fn_init_libc + 0x42007a94 0xa esp-idf/newlib/libnewlib.a(init.c.obj) + 0xd (size before relaxing) + *fill* 0x42007a9e 0x2 + .text.__esp_system_init_fn_init_libc_stdio + 0x42007aa0 0xd esp-idf/newlib/libnewlib.a(init.c.obj) + 0x10 (size before relaxing) + *fill* 0x42007aad 0x3 + .text.esp_libc_newlib_locks_init + 0x42007ab0 0x14 esp-idf/newlib/libnewlib.a(locks.c.obj) + .text.esp_libc_locks_init + 0x42007ac4 0x4e esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x51 (size before relaxing) + 0x42007ac4 esp_libc_locks_init + 0x42007ac4 esp_newlib_locks_init + *fill* 0x42007b12 0x2 + .text.adjust_boot_time + 0x42007b14 0x11e esp-idf/newlib/libnewlib.a(time.c.obj) + *fill* 0x42007c32 0x2 + .text.get_adjusted_boot_time + 0x42007c34 0x1e esp-idf/newlib/libnewlib.a(time.c.obj) + 0x22 (size before relaxing) + *fill* 0x42007c52 0x2 + .text.adjtime_corr_stop + 0x42007c54 0x30 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x34 (size before relaxing) + .text._gettimeofday_r + 0x42007c84 0x44 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4c (size before relaxing) + 0x42007c84 _gettimeofday_r + .text._times_r + 0x42007cc8 0x2c esp-idf/newlib/libnewlib.a(time.c.obj) + 0x42007cc8 _times_r + .text.settimeofday + 0x42007cf4 0x45 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x49 (size before relaxing) + 0x42007cf4 settimeofday + *fill* 0x42007d39 0x3 + .text.usleep 0x42007d3c 0x61 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x42007d3c usleep + *fill* 0x42007d9d 0x3 + .text.sleep 0x42007da0 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x13 (size before relaxing) + 0x42007da0 sleep + *fill* 0x42007db0 0x0 + .text.clock_gettime + 0x42007db0 0x91 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x42007db0 clock_gettime + *fill* 0x42007e41 0x3 + .text.esp_libc_time_init + 0x42007e44 0xb esp-idf/newlib/libnewlib.a(time.c.obj) + 0x42007e44 esp_libc_time_init + 0x42007e44 esp_newlib_time_init + *fill* 0x42007e4f 0x1 + .text.fstat 0x42007e50 0x14 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x18 (size before relaxing) + 0x42007e50 fstat + .text.syscall_not_implemented_aborts + 0x42007e64 0x9 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + 0x42007e64 _raise_r + 0x42007e64 _sbrk_r + *fill* 0x42007e6d 0x3 + .text.esp_reent_init + 0x42007e70 0x29 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x42007e70 esp_reent_init + *fill* 0x42007e99 0x3 + .text.esp_cleanup_r + 0x42007e9c 0x3c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .text.raise_r_stub + 0x42007ed8 0xf esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + *fill* 0x42007ee7 0x1 + .text.esp_libc_init + 0x42007ee8 0x4a esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x42007ee8 esp_setup_newlib_syscalls + 0x42007ee8 esp_newlib_init + 0x42007ee8 esp_libc_init + *fill* 0x42007f32 0x2 + .text.esp_libc_init_global_stdio + 0x42007f34 0x50 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x42007f34 esp_libc_init_global_stdio + .text.getrandom + 0x42007f84 0x22 esp-idf/newlib/libnewlib.a(random.c.obj) + 0x42007f84 getrandom + *fill* 0x42007fa6 0x2 + .text.find_key + 0x42007fa8 0x2f esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x42007fd7 0x1 + .text.pthread_cleanup_thread_specific_data_callback + 0x42007fd8 0x46 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4a (size before relaxing) + *fill* 0x4200801e 0x2 + .text.pthread_key_create + 0x42008020 0x4d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x42008020 pthread_key_create + *fill* 0x4200806d 0x3 + .text.pthread_getspecific + 0x42008070 0x20 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x42008070 pthread_getspecific + .text.pthread_setspecific + 0x42008090 0xbf esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0xc3 (size before relaxing) + 0x42008090 pthread_setspecific + *fill* 0x4200814f 0x1 + .text.esp_timer_early_init + 0x42008150 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x13 (size before relaxing) + 0x42008150 esp_timer_early_init + *fill* 0x42008160 0x0 + .text.__esp_system_init_fn_esp_timer_init_nonos + 0x42008160 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0xd (size before relaxing) + *fill* 0x4200816a 0x2 + .text.esp_timer_impl_init_system_time + 0x4200816c 0x5a esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x5e (size before relaxing) + 0x4200816c esp_timer_impl_init_system_time + *fill* 0x420081c6 0x2 + .text.uart_get_avail_data_len + 0x420081c8 0x17 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x420081df 0x1 + .text.uart_tx_char + 0x420081e0 0x37 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x42008217 0x1 + .text.uart_rx_char + 0x42008218 0x35 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x4200824d 0x3 + .text.uart_read_char + 0x42008250 0x22 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x42008272 0x2 + .text.unregister_select + 0x42008274 0x6b esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x420082df 0x1 + .text.uart_end_select + 0x420082e0 0x8a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x96 (size before relaxing) + *fill* 0x4200836a 0x2 + .text.register_select + 0x4200836c 0x55 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x420083c1 0x3 + .text.uart_start_select + 0x420083c4 0x1b9 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c5 (size before relaxing) + *fill* 0x4200857d 0x3 + .text.select_notif_callback_isr + 0x42008580 0xe6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0xea (size before relaxing) + *fill* 0x42008666 0x2 + .text.uart_tcflush + 0x42008668 0x42 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x420086aa 0x2 + .text.uart_tcdrain + 0x420086ac 0x32 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x420086de 0x2 + .text.uart_tcgetattr + 0x420086e0 0x390 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_tcsetattr + 0x42008a70 0x38e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x42008dfe 0x2 + .text.uart_access + 0x42008e00 0x5c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_open + 0x42008e5c 0x45 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x42008ea1 0x3 + .text.uart_fcntl + 0x42008ea4 0x5d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x42008f01 0x3 + .text.uart_fstat + 0x42008f04 0x31 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x42008f35 0x3 + .text.uart_close + 0x42008f38 0x1e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x42008f56 0x2 + .text.uart_return_char + 0x42008f58 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x42008f7e 0x2 + .text.uart_fsync + 0x42008f80 0x41 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x42008fc1 0x3 + .text.uart_read + 0x42008fc4 0x10e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x11a (size before relaxing) + *fill* 0x420090d2 0x2 + .text.uart_write + 0x420090d4 0x7f esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x42009153 0x1 + .text.esp_vfs_uart_get_vfs + 0x42009154 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x42009154 esp_vfs_uart_get_vfs + .text.uart_vfs_dev_register + 0x4200915c 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x2a (size before relaxing) + 0x4200915c esp_vfs_dev_uart_register + 0x4200915c uart_vfs_dev_register + *fill* 0x42009182 0x2 + .text.__esp_system_init_fn_init_vfs_uart + 0x42009184 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0xd (size before relaxing) + *fill* 0x4200918e 0x2 + .text.uart_pattern_queue_update + 0x42009190 0x3d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x420091cd 0x3 + .text.uart_reenable_intr_mask + 0x420091d0 0x84 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_word_length + 0x42009254 0x8c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009254 uart_set_word_length + .text.uart_get_word_length + 0x420092e0 0x42 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x420092e0 uart_get_word_length + *fill* 0x42009322 0x2 + .text.uart_set_stop_bits + 0x42009324 0x8c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009324 uart_set_stop_bits + .text.uart_get_stop_bits + 0x420093b0 0x64 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x420093b0 uart_get_stop_bits + .text.uart_set_parity + 0x42009414 0x64 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009414 uart_set_parity + .text.uart_get_parity + 0x42009478 0x64 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009478 uart_get_parity + .text.uart_set_baudrate + 0x420094dc 0x172 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x420094dc uart_set_baudrate + *fill* 0x4200964e 0x2 + .text.uart_get_baudrate + 0x42009650 0xaa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009650 uart_get_baudrate + *fill* 0x420096fa 0x2 + .text.uart_wait_tx_done + 0x420096fc 0x1d2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x420096fc uart_wait_tx_done + *fill* 0x420098ce 0x2 + .text.uart_get_buffered_data_len + 0x420098d0 0x8c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x420098d0 uart_get_buffered_data_len + .text.uart_flush_input + 0x4200995c 0x1ac esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x1b8 (size before relaxing) + 0x4200995c uart_flush + 0x4200995c uart_flush_input + .text.uart_is_driver_installed + 0x42009b08 0x1e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009b08 uart_is_driver_installed + *fill* 0x42009b26 0x2 + .text.uart_set_select_notif_callback + 0x42009b28 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009b28 uart_set_select_notif_callback + *fill* 0x42009b3e 0x2 + .text.uart_get_selectlock + 0x42009b40 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x42009b40 uart_get_selectlock + .text.__esp_system_init_fn_usb_serial_jtag_conn_status_init + 0x42009b48 0x28 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .text.usb_serial_jtag_open + 0x42009b70 0x10 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_rx_char_no_driver + 0x42009b80 0x31 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x42009bb1 0x3 + .text.usb_serial_jtag_read_char + 0x42009bb4 0x20 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_wait_tx_done_no_driver + 0x42009bd4 0x70 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_tx_char_no_driver + 0x42009c44 0x86 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x42009cca 0x2 + .text.unregister_select + 0x42009ccc 0x74 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x78 (size before relaxing) + .text.usb_serial_jtag_end_select + 0x42009d40 0x1b esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x42009d5b 0x1 + .text.register_select + 0x42009d5c 0x68 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_start_select + 0x42009dc4 0xf1 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0xf9 (size before relaxing) + *fill* 0x42009eb5 0x3 + .text.select_notif_callback_isr + 0x42009eb8 0x96 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x9e (size before relaxing) + *fill* 0x42009f4e 0x2 + .text.usb_serial_jtag_tcflush + 0x42009f50 0x11 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x42009f61 0x3 + .text.usb_serial_jtag_fcntl + 0x42009f64 0x39 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x42009f9d 0x3 + .text.usb_serial_jtag_tcgetattr + 0x42009fa0 0x63 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x4200a003 0x1 + .text.usb_serial_jtag_fstat + 0x4200a004 0x19 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x4200a01d 0x3 + .text.usb_serial_jtag_fsync + 0x4200a020 0x2f esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x4200a04f 0x1 + .text.usb_serial_jtag_tcdrain + 0x4200a050 0xc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x10 (size before relaxing) + .text.usb_serial_jtag_tcsetattr + 0x4200a05c 0x63 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x67 (size before relaxing) + *fill* 0x4200a0bf 0x1 + .text.usb_serial_jtag_write + 0x4200a0c0 0x52 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x4200a112 0x2 + .text.usb_serial_jtag_return_char + 0x4200a114 0x24 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .text.usb_serial_jtag_read + 0x4200a138 0xee esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0xfa (size before relaxing) + *fill* 0x4200a226 0x2 + .text.__esp_system_init_fn_init_vfs_usj_sec + 0x4200a228 0x14 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x18 (size before relaxing) + .text.esp_vfs_usb_serial_jtag_get_vfs + 0x4200a23c 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x4200a23c esp_vfs_usb_serial_jtag_get_vfs + .text.usb_serial_jtag_is_driver_installed + 0x4200a244 0xf esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + 0x4200a244 usb_serial_jtag_is_driver_installed + *fill* 0x4200a253 0x1 + .text.usb_serial_jtag_set_select_notif_callback + 0x4200a254 0x12 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + 0x16 (size before relaxing) + 0x4200a254 usb_serial_jtag_set_select_notif_callback + *fill* 0x4200a266 0x2 + .text.usb_serial_jtag_get_read_bytes_available + 0x4200a268 0x2e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + 0x4200a268 usb_serial_jtag_get_read_bytes_available + *fill* 0x4200a296 0x2 + .text.usb_serial_jtag_write_ready + 0x4200a298 0x17 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + 0x4200a298 usb_serial_jtag_write_ready + *fill* 0x4200a2af 0x1 + .text.console_start_select + 0x4200a2b0 0x31 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + *fill* 0x4200a2e1 0x3 + .text.console_end_select + 0x4200a2e4 0x1e esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a2e4 console_end_select + *fill* 0x4200a302 0x2 + .text.console_open + 0x4200a304 0x43 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a304 console_open + *fill* 0x4200a347 0x1 + .text.console_write + 0x4200a348 0x22 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a348 console_write + *fill* 0x4200a36a 0x2 + .text.console_fstat + 0x4200a36c 0x14 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a36c console_fstat + .text.console_close + 0x4200a380 0x3e esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a380 console_close + *fill* 0x4200a3be 0x2 + .text.console_read + 0x4200a3c0 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a3c0 console_read + *fill* 0x4200a3d6 0x2 + .text.console_fcntl + 0x4200a3d8 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a3d8 console_fcntl + *fill* 0x4200a3ee 0x2 + .text.console_fsync + 0x4200a3f0 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x1a (size before relaxing) + 0x4200a3f0 console_fsync + *fill* 0x4200a406 0x2 + .text.console_access + 0x4200a408 0x12 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a408 console_access + *fill* 0x4200a41a 0x2 + .text.console_tcsetattr + 0x4200a41c 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a41c console_tcsetattr + *fill* 0x4200a432 0x2 + .text.console_tcgetattr + 0x4200a434 0x14 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a434 console_tcgetattr + .text.console_tcdrain + 0x4200a448 0x12 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a448 console_tcdrain + *fill* 0x4200a45a 0x2 + .text.console_tcflush + 0x4200a45c 0x14 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x4200a45c console_tcflush + .text.esp_vfs_dev_console_register + 0x4200a470 0x14 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x18 (size before relaxing) + .text.esp_vfs_console_register + 0x4200a484 0x1c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x24 (size before relaxing) + 0x4200a484 esp_vfs_console_register + .text.__esp_system_init_fn_init_vfs_console + 0x4200a4a0 0xa esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0xd (size before relaxing) + *fill* 0x4200a4aa 0x2 + .text.esp_get_free_index + 0x4200a4ac 0x1b esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x4200a4c7 0x1 + .text.set_global_fd_sets + 0x4200a4c8 0xf8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.free_proxy_members + 0x4200a5c0 0x1e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x4200a5de 0x2 + .text.esp_vfs_duplicate_fs_ops + 0x4200a5e0 0xd4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_free_fs_ops + 0x4200a6b4 0x26 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x4200a6da 0x2 + .text.esp_vfs_register_fs_common + 0x4200a6dc 0xda esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x4200a7b6 0x2 + .text.esp_minify_vfs + 0x4200a7b8 0x14c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_make_fs_ops + 0x4200a904 0x103 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x107 (size before relaxing) + *fill* 0x4200aa07 0x1 + .text.translate_path + 0x4200aa08 0x3d esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x4200aa45 0x3 + .text.esp_vfs_register_fs + 0x4200aa48 0x5e esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x66 (size before relaxing) + 0x4200aa48 esp_vfs_register_fs + *fill* 0x4200aaa6 0x2 + .text.esp_vfs_register_common + 0x4200aaa8 0x67 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x6f (size before relaxing) + 0x4200aaa8 esp_vfs_register_common + *fill* 0x4200ab0f 0x1 + .text.esp_vfs_register_fd_range + 0x4200ab10 0x102 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200ab10 esp_vfs_register_fd_range + *fill* 0x4200ac12 0x2 + .text.get_vfs_for_index + 0x4200ac14 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200ac14 get_vfs_for_index + *fill* 0x4200ac36 0x2 + .text.get_vfs_for_fd + 0x4200ac38 0x25 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x4200ac5d 0x3 + .text.call_end_selects + 0x4200ac60 0x37 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x4200ac97 0x1 + .text.get_vfs_for_path + 0x4200ac98 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200ac98 get_vfs_for_path + *fill* 0x4200ad06 0x2 + .text.esp_vfs_open + 0x4200ad08 0x100 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200ad08 _open_r + 0x4200ad08 esp_vfs_open + .text.esp_vfs_write + 0x4200ae08 0x6d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x4200ae08 _write_r + 0x4200ae08 esp_vfs_write + *fill* 0x4200ae75 0x3 + .text.esp_vfs_lseek + 0x4200ae78 0x6d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x4200ae78 esp_vfs_lseek + 0x4200ae78 _lseek_r + *fill* 0x4200aee5 0x3 + .text.esp_vfs_read + 0x4200aee8 0x6d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x4200aee8 _read_r + 0x4200aee8 esp_vfs_read + *fill* 0x4200af55 0x3 + .text.esp_vfs_close + 0x4200af58 0xc3 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc7 (size before relaxing) + 0x4200af58 esp_vfs_close + 0x4200af58 _close_r + *fill* 0x4200b01b 0x1 + .text.esp_vfs_fstat + 0x4200b01c 0x6a esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x6e (size before relaxing) + 0x4200b01c _fstat_r + 0x4200b01c esp_vfs_fstat + *fill* 0x4200b086 0x2 + .text.esp_vfs_fcntl_r + 0x4200b088 0x6d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x4200b088 _fcntl_r + 0x4200b088 esp_vfs_fcntl_r + *fill* 0x4200b0f5 0x3 + .text.esp_vfs_fsync + 0x4200b0f8 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x72 (size before relaxing) + 0x4200b0f8 fsync + 0x4200b0f8 esp_vfs_fsync + *fill* 0x4200b166 0x2 + .text.esp_vfs_stat + 0x4200b168 0x4e esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x52 (size before relaxing) + 0x4200b168 _stat_r + 0x4200b168 esp_vfs_stat + *fill* 0x4200b1b6 0x2 + .text.esp_vfs_link + 0x4200b1b8 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x84 (size before relaxing) + 0x4200b1b8 esp_vfs_link + 0x4200b1b8 _link_r + .text.esp_vfs_unlink + 0x4200b234 0x58 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x5c (size before relaxing) + 0x4200b234 esp_vfs_unlink + 0x4200b234 _unlink_r + .text.esp_vfs_rename + 0x4200b28c 0x88 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x90 (size before relaxing) + 0x4200b28c esp_vfs_rename + 0x4200b28c _rename_r + .text.esp_vfs_access + 0x4200b314 0x59 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x5d (size before relaxing) + 0x4200b314 access + 0x4200b314 esp_vfs_access + *fill* 0x4200b36d 0x3 + .text.esp_vfs_select + 0x4200b370 0x426 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x43a (size before relaxing) + 0x4200b370 select + 0x4200b370 esp_vfs_select + *fill* 0x4200b796 0x2 + .text.esp_vfs_select_triggered + 0x4200b798 0x4d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b798 esp_vfs_select_triggered + *fill* 0x4200b7e5 0x3 + .text.esp_vfs_select_triggered_isr + 0x4200b7e8 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4200b7e8 esp_vfs_select_triggered_isr + *fill* 0x4200b831 0x3 + .text.tcgetattr + 0x4200b834 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x7c (size before relaxing) + 0x4200b834 tcgetattr + .text.tcsetattr + 0x4200b8ac 0x7a esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x7e (size before relaxing) + 0x4200b8ac tcsetattr + *fill* 0x4200b926 0x2 + .text.tcdrain 0x4200b928 0x72 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x76 (size before relaxing) + 0x4200b928 tcdrain + *fill* 0x4200b99a 0x2 + .text.tcflush 0x4200b99c 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x7c (size before relaxing) + 0x4200b99c tcflush + .text.vfs_null_get_empty_fd + 0x4200ba14 0x26 esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x4200ba3a 0x2 + .text.vfs_null_fsync + 0x4200ba3c 0x1c esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_ioctl + 0x4200ba58 0x2a esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x4200ba82 0x2 + .text.vfs_null_fcntl + 0x4200ba84 0x23 esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x4200baa7 0x1 + .text.vfs_null_close + 0x4200baa8 0x1c esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_open + 0x4200bac4 0xa6 esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x4200bb6a 0x2 + .text.vfs_null_pwrite + 0x4200bb6c 0x2c esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_pread + 0x4200bb98 0x28 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_read + 0x4200bbc0 0x28 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_lseek + 0x4200bbe8 0x42 esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x4200bc2a 0x2 + .text.vfs_null_write + 0x4200bc2c 0x2b esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x4200bc57 0x1 + .text.vfs_null_stat + 0x4200bc58 0x45 esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x4200bc9d 0x3 + .text.vfs_null_fstat + 0x4200bca0 0x3c esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.esp_vfs_null_register + 0x4200bcdc 0x14 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x18 (size before relaxing) + 0x4200bcdc esp_vfs_null_register + .text.__esp_system_init_fn_init_vfs_nullfs + 0x4200bcf0 0xa esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0xd (size before relaxing) + *fill* 0x4200bcfa 0x2 + .text.app_main + 0x4200bcfc 0xf esp-idf/main/libmain.a(main.c.obj) + 0x17 (size before relaxing) + 0x4200bcfc app_main + *fill* 0x4200bd0b 0x1 + .text.wifi_event_handler + 0x4200bd0c 0x5e esp-idf/main/libmain.a(wifi_init.c.obj) + 0x66 (size before relaxing) + *fill* 0x4200bd6a 0x2 + .text.wifi_init + 0x4200bd6c 0x1fe esp-idf/main/libmain.a(wifi_init.c.obj) + 0x222 (size before relaxing) + 0x4200bd6c wifi_init + *fill* 0x4200bf6a 0x2 + .text.fs_init 0x4200bf6c 0x7c esp-idf/main/libmain.a(fs_init.c.obj) + 0x80 (size before relaxing) + 0x4200bf6c fs_init + .text.periodic_publish_task + 0x4200bfe8 0x48 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .text.reboot_task + 0x4200c030 0x27 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x2b (size before relaxing) + *fill* 0x4200c057 0x1 + .text.build_rpc_topics + 0x4200c058 0xcc esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0xd0 (size before relaxing) + .text.mqtt_send_response + 0x4200c124 0x56 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x5a (size before relaxing) + 0x4200c124 mqtt_send_response + *fill* 0x4200c17a 0x2 + .text.send_job_status + 0x4200c17c 0x4f esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x53 (size before relaxing) + *fill* 0x4200c1cb 0x1 + .text.mqtt_event_handler + 0x4200c1cc 0x300 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x330 (size before relaxing) + .text.mqtt_manager_init + 0x4200c4cc 0x8a esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + 0x96 (size before relaxing) + 0x4200c4cc mqtt_manager_init + *fill* 0x4200c556 0x2 + .text.esp_spiffs_get_empty + 0x4200c558 0x23 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x4200c57b 0x1 + .text.spiffs_res_to_errno + 0x4200c57c 0xb9 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x4200c635 0x3 + .text.spiffs_mode_conv + 0x4200c638 0x46 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x4200c67e 0x2 + .text.esp_spiffs_by_label + 0x4200c680 0x4b esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x4200c6cb 0x1 + .text.vfs_spiffs_rmdir + 0x4200c6cc 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x4200c6de 0x2 + .text.vfs_spiffs_mkdir + 0x4200c6e0 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x4200c6f2 0x2 + .text.vfs_spiffs_link + 0x4200c6f4 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x4200c706 0x2 + .text.vfs_spiffs_telldir + 0x4200c708 0x1d esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x4200c725 0x3 + .text.esp_spiffs_free + 0x4200c728 0x4a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x4200c772 0x2 + .text.esp_spiffs_init + 0x4200c774 0x446 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x476 (size before relaxing) + *fill* 0x4200cbba 0x2 + .text.vfs_spiffs_get_mtime + 0x4200cbbc 0x18 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text.vfs_spiffs_update_mtime_value + 0x4200cbd4 0x3e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x42 (size before relaxing) + *fill* 0x4200cc12 0x2 + .text.vfs_spiffs_utime + 0x4200cc14 0x5c esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x60 (size before relaxing) + .text.vfs_spiffs_ftruncate + 0x4200cc70 0x3a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x42 (size before relaxing) + *fill* 0x4200ccaa 0x2 + .text.vfs_spiffs_truncate + 0x4200ccac 0x7a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x86 (size before relaxing) + *fill* 0x4200cd26 0x2 + .text.vfs_spiffs_close + 0x4200cd28 0x3a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x3e (size before relaxing) + *fill* 0x4200cd62 0x2 + .text.vfs_spiffs_closedir + 0x4200cd64 0x54 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x58 (size before relaxing) + .text.vfs_spiffs_seekdir + 0x4200cdb8 0xd8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0xe8 (size before relaxing) + .text.vfs_spiffs_readdir_r + 0x4200ce90 0xd9 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0xdd (size before relaxing) + *fill* 0x4200cf69 0x3 + .text.vfs_spiffs_readdir + 0x4200cf6c 0x3d esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x4200cfa9 0x3 + .text.vfs_spiffs_opendir + 0x4200cfac 0x8a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x8e (size before relaxing) + *fill* 0x4200d036 0x2 + .text.vfs_spiffs_rename + 0x4200d038 0x62 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x66 (size before relaxing) + *fill* 0x4200d09a 0x2 + .text.vfs_spiffs_unlink + 0x4200d09c 0x4e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x52 (size before relaxing) + *fill* 0x4200d0ea 0x2 + .text.vfs_spiffs_stat + 0x4200d0ec 0xac esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0xb0 (size before relaxing) + .text.vfs_spiffs_fsync + 0x4200d198 0x3c esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x40 (size before relaxing) + .text.vfs_spiffs_fstat + 0x4200d1d4 0x7d esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x85 (size before relaxing) + *fill* 0x4200d251 0x3 + .text.vfs_spiffs_update_mtime + 0x4200d254 0x46 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x4a (size before relaxing) + *fill* 0x4200d29a 0x2 + .text.vfs_spiffs_open + 0x4200d29c 0x68 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x73 (size before relaxing) + *fill* 0x4200d304 0x0 + .text.vfs_spiffs_read + 0x4200d304 0x3e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x42 (size before relaxing) + *fill* 0x4200d342 0x2 + .text.vfs_spiffs_lseek + 0x4200d344 0x3e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x42 (size before relaxing) + *fill* 0x4200d382 0x2 + .text.vfs_spiffs_write + 0x4200d384 0x3e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x42 (size before relaxing) + *fill* 0x4200d3c2 0x2 + .text.esp_spiffs_info + 0x4200d3c4 0x2d esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x31 (size before relaxing) + 0x4200d3c4 esp_spiffs_info + *fill* 0x4200d3f1 0x3 + .text.esp_vfs_spiffs_register + 0x4200d3f4 0x86 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x92 (size before relaxing) + 0x4200d3f4 esp_vfs_spiffs_register + *fill* 0x4200d47a 0x2 + .text.spiffs_api_lock + 0x4200d47c 0x12 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x4200d47c spiffs_api_lock + *fill* 0x4200d48e 0x2 + .text.spiffs_api_unlock + 0x4200d490 0x16 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x4200d490 spiffs_api_unlock + *fill* 0x4200d4a6 0x2 + .text.spiffs_api_read + 0x4200d4a8 0x38 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x3c (size before relaxing) + 0x4200d4a8 spiffs_api_read + .text.spiffs_api_write + 0x4200d4e0 0x38 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x3c (size before relaxing) + 0x4200d4e0 spiffs_api_write + .text.spiffs_api_erase + 0x4200d518 0x38 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x4200d518 spiffs_api_erase + .text.spiffs_api_check + 0x4200d550 0x36 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x4200d550 spiffs_api_check + *fill* 0x4200d586 0x2 + .text.spiffs_hydro_write + 0x4200d588 0x56 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + *fill* 0x4200d5de 0x2 + .text.spiffs_fflush_cache + 0x4200d5e0 0x72 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + *fill* 0x4200d652 0x2 + .text.spiffs_hydro_read + 0x4200d654 0x108 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x124 (size before relaxing) + .text.spiffs_stat_pix + 0x4200d75c 0xa4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.spiffs_read_dir_v + 0x4200d800 0xc2 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xc6 (size before relaxing) + *fill* 0x4200d8c2 0x2 + .text.SPIFFS_format + 0x4200d8c4 0x74 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x4200d8c4 SPIFFS_format + .text.SPIFFS_mount + 0x4200d938 0x112 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x11e (size before relaxing) + 0x4200d938 SPIFFS_mount + *fill* 0x4200da4a 0x2 + .text.SPIFFS_unmount + 0x4200da4c 0x53 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x5b (size before relaxing) + 0x4200da4c SPIFFS_unmount + *fill* 0x4200da9f 0x1 + .text.SPIFFS_open + 0x4200daa0 0x1c3 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x1f7 (size before relaxing) + 0x4200daa0 SPIFFS_open + *fill* 0x4200dc63 0x1 + .text.SPIFFS_read + 0x4200dc64 0x1e esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x4200dc64 SPIFFS_read + *fill* 0x4200dc82 0x2 + .text.SPIFFS_write + 0x4200dc84 0x20a esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x22e (size before relaxing) + 0x4200dc84 SPIFFS_write + *fill* 0x4200de8e 0x2 + .text.SPIFFS_lseek + 0x4200de90 0x116 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x12e (size before relaxing) + 0x4200de90 SPIFFS_lseek + *fill* 0x4200dfa6 0x2 + .text.SPIFFS_remove + 0x4200dfa8 0xe5 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x105 (size before relaxing) + 0x4200dfa8 SPIFFS_remove + *fill* 0x4200e08d 0x3 + .text.SPIFFS_ftruncate + 0x4200e090 0xa5 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xb5 (size before relaxing) + 0x4200e090 SPIFFS_ftruncate + *fill* 0x4200e135 0x3 + .text.SPIFFS_stat + 0x4200e138 0x74 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x80 (size before relaxing) + 0x4200e138 SPIFFS_stat + .text.SPIFFS_fstat + 0x4200e1ac 0x6c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x7c (size before relaxing) + 0x4200e1ac SPIFFS_fstat + .text.SPIFFS_fflush + 0x4200e218 0x4f esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x5a (size before relaxing) + 0x4200e218 SPIFFS_fflush + *fill* 0x4200e267 0x1 + .text.SPIFFS_close + 0x4200e268 0x67 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x76 (size before relaxing) + 0x4200e268 SPIFFS_close + *fill* 0x4200e2cf 0x1 + .text.SPIFFS_rename + 0x4200e2d0 0x12c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x14f (size before relaxing) + 0x4200e2d0 SPIFFS_rename + *fill* 0x4200e3fc 0x0 + .text.SPIFFS_update_meta + 0x4200e3fc 0xcf esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xee (size before relaxing) + 0x4200e3fc SPIFFS_update_meta + *fill* 0x4200e4cb 0x1 + .text.SPIFFS_fupdate_meta + 0x4200e4cc 0x93 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xa6 (size before relaxing) + 0x4200e4cc SPIFFS_fupdate_meta + *fill* 0x4200e55f 0x1 + .text.SPIFFS_opendir + 0x4200e560 0x37 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x4200e560 SPIFFS_opendir + *fill* 0x4200e597 0x1 + .text.SPIFFS_readdir + 0x4200e598 0x74 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x78 (size before relaxing) + 0x4200e598 SPIFFS_readdir + .text.SPIFFS_closedir + 0x4200e60c 0x29 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x4200e60c SPIFFS_closedir + *fill* 0x4200e635 0x3 + .text.SPIFFS_info + 0x4200e638 0x72 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x4200e638 SPIFFS_info + *fill* 0x4200e6aa 0x2 + .text.spiffs_obj_lu_scan_v + 0x4200e6ac 0x35 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x4200e6e1 0x3 + .text.spiffs_update_ix_map + 0x4200e6e4 0xe3 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x4200e7c7 0x1 + .text.spiffs_hash + 0x4200e7c8 0x26 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x4200e7ee 0x2 + .text.spiffs_obj_lu_find_id_and_span_v + 0x4200e7f0 0xa8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .text.spiffs_page_data_check + 0x4200e898 0x9b esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x4200e933 0x1 + .text.spiffs_page_index_check + 0x4200e934 0xab esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x4200e9df 0x1 + .text.spiffs_object_find_object_index_header_by_name_v + 0x4200e9e0 0x96 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x4200ea76 0x2 + .text.spiffs_obj_lu_find_free_obj_id_compact_v + 0x4200ea78 0xa1 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0xa5 (size before relaxing) + *fill* 0x4200eb19 0x3 + .text.spiffs_obj_lu_find_free_obj_id_bitmap_v + 0x4200eb1c 0xda esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0xde (size before relaxing) + *fill* 0x4200ebf6 0x2 + .text.spiffs_phys_cpy + 0x4200ebf8 0x44 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x4c (size before relaxing) + 0x4200ebf8 spiffs_phys_cpy + .text.spiffs_obj_lu_find_entry_visitor + 0x4200ec3c 0x1c2 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x1c6 (size before relaxing) + 0x4200ec3c spiffs_obj_lu_find_entry_visitor + *fill* 0x4200edfe 0x2 + .text.spiffs_erase_block + 0x4200ee00 0xd2 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x4200ee00 spiffs_erase_block + *fill* 0x4200eed2 0x2 + .text.spiffs_obj_lu_scan + 0x4200eed4 0x14c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x154 (size before relaxing) + 0x4200eed4 spiffs_obj_lu_scan + .text.spiffs_obj_lu_find_id + 0x4200f020 0x2a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x2e (size before relaxing) + 0x4200f020 spiffs_obj_lu_find_id + *fill* 0x4200f04a 0x2 + .text.spiffs_obj_lu_find_free + 0x4200f04c 0x66 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x4200f04c spiffs_obj_lu_find_free + *fill* 0x4200f0b2 0x2 + .text.spiffs_obj_lu_find_id_and_span + 0x4200f0b4 0x8c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x4200f0b4 spiffs_obj_lu_find_id_and_span + .text.spiffs_page_allocate_data + 0x4200f140 0x14d esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x15d (size before relaxing) + 0x4200f140 spiffs_page_allocate_data + *fill* 0x4200f28d 0x3 + .text.spiffs_page_delete + 0x4200f290 0x82 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x86 (size before relaxing) + 0x4200f290 spiffs_page_delete + *fill* 0x4200f312 0x2 + .text.spiffs_page_move + 0x4200f314 0x12e esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x136 (size before relaxing) + 0x4200f314 spiffs_page_move + *fill* 0x4200f442 0x2 + .text.spiffs_cb_object_event + 0x4200f444 0x157 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x4200f444 spiffs_cb_object_event + *fill* 0x4200f59b 0x1 + .text.spiffs_object_create + 0x4200f59c 0x16c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x178 (size before relaxing) + 0x4200f59c spiffs_object_create + .text.spiffs_object_update_index_hdr + 0x4200f708 0x168 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x16c (size before relaxing) + 0x4200f708 spiffs_object_update_index_hdr + .text.spiffs_object_open_by_page + 0x4200f870 0xc7 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x4200f870 spiffs_object_open_by_page + *fill* 0x4200f937 0x1 + .text.spiffs_object_append + 0x4200f938 0x600 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x644 (size before relaxing) + 0x4200f938 spiffs_object_append + .text.spiffs_object_modify + 0x4200ff38 0x4a2 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x4e2 (size before relaxing) + 0x4200ff38 spiffs_object_modify + *fill* 0x420103da 0x2 + .text.spiffs_object_find_object_index_header_by_name + 0x420103dc 0x74 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x78 (size before relaxing) + 0x420103dc spiffs_object_find_object_index_header_by_name + .text.spiffs_object_truncate + 0x42010450 0x4d8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x518 (size before relaxing) + 0x42010450 spiffs_object_truncate + .text.spiffs_object_read + 0x42010928 0x1f0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x200 (size before relaxing) + 0x42010928 spiffs_object_read + .text.spiffs_obj_lu_find_free_obj_id + 0x42010b18 0x192 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x196 (size before relaxing) + 0x42010b18 spiffs_obj_lu_find_free_obj_id + *fill* 0x42010caa 0x2 + .text.spiffs_fd_find_new + 0x42010cac 0xe5 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x42010cac spiffs_fd_find_new + *fill* 0x42010d91 0x3 + .text.spiffs_fd_return + 0x42010d94 0x3f esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x42010d94 spiffs_fd_return + *fill* 0x42010dd3 0x1 + .text.spiffs_fd_get + 0x42010dd4 0x3d esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x42010dd4 spiffs_fd_get + *fill* 0x42010e11 0x3 + .text.spiffs_fd_temporal_cache_rehash + 0x42010e14 0x3a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x3e (size before relaxing) + 0x42010e14 spiffs_fd_temporal_cache_rehash + *fill* 0x42010e4e 0x2 + .text.spiffs_cache_page_remove_oldest + 0x42010e50 0x5c esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .text.spiffs_cache_drop_page + 0x42010eac 0x1f esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x42010eac spiffs_cache_drop_page + *fill* 0x42010ecb 0x1 + .text.spiffs_phys_rd + 0x42010ecc 0x106 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x10a (size before relaxing) + 0x42010ecc spiffs_phys_rd + *fill* 0x42010fd2 0x2 + .text.spiffs_phys_wr + 0x42010fd4 0xb5 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x42010fd4 spiffs_phys_wr + *fill* 0x42011089 0x3 + .text.spiffs_cache_page_allocate_by_fd + 0x4201108c 0x2c esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x4201108c spiffs_cache_page_allocate_by_fd + .text.spiffs_cache_fd_release + 0x420110b8 0x40 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x420110b8 spiffs_cache_fd_release + .text.spiffs_cache_init + 0x420110f8 0x9a esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x420110f8 spiffs_cache_init + *fill* 0x42011192 0x2 + .text.spiffs_gc_erase_block + 0x42011194 0x36 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x3a (size before relaxing) + *fill* 0x420111ca 0x2 + .text.spiffs_gc_quick + 0x420111cc 0x151 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x420111cc spiffs_gc_quick + *fill* 0x4201131d 0x3 + .text.spiffs_gc_erase_page_stats + 0x42011320 0xb8 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0xbc (size before relaxing) + 0x42011320 spiffs_gc_erase_page_stats + .text.spiffs_gc_find_candidate + 0x420113d8 0x1fc esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x200 (size before relaxing) + 0x420113d8 spiffs_gc_find_candidate + .text.spiffs_gc_clean + 0x420115d4 0x4ba esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x4e2 (size before relaxing) + 0x420115d4 spiffs_gc_clean + *fill* 0x42011a8e 0x2 + .text.spiffs_gc_check + 0x42011a90 0x132 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x13e (size before relaxing) + 0x42011a90 spiffs_gc_check + *fill* 0x42011bc2 0x2 + .text.create_string + 0x42011bc4 0x54 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text.esp_mqtt_check_cfg_conflict + 0x42011c18 0x11a esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x42011d32 0x2 + .text.create_client_data + 0x42011d34 0xe5 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x42011e19 0x3 + .text.run_event_loop + 0x42011e1c 0x32 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x42011e4e 0x2 + .text.esp_mqtt_dispatch_event + 0x42011e50 0x35 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x42011e85 0x3 + .text.mqtt_delete_expired_messages + 0x42011e88 0x1b esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x1f (size before relaxing) + *fill* 0x42011ea3 0x1 + .text.esp_mqtt_client_create_transport + 0x42011ea4 0x1c5 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x1d9 (size before relaxing) + *fill* 0x42012069 0x3 + .text.esp_mqtt_dispatch_event_with_msgid + 0x4201206c 0x24 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text.esp_mqtt_client_dispatch_transport_error + 0x42012090 0x3e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x42 (size before relaxing) + *fill* 0x420120ce 0x2 + .text.esp_mqtt_handle_transport_read_error + 0x420120d0 0x5c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x60 (size before relaxing) + .text.esp_mqtt_abort_connection + 0x4201212c 0x4f esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x57 (size before relaxing) + *fill* 0x4201217b 0x1 + .text.esp_mqtt_write + 0x4201217c 0x86 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x42012202 0x2 + .text.mqtt_message_receive + 0x42012204 0x1d8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x1dc (size before relaxing) + .text.esp_mqtt_connect + 0x420123dc 0x1da esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x1ea (size before relaxing) + *fill* 0x420125b6 0x2 + .text.send_disconnect_msg + 0x420125b8 0x5e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x42012616 0x2 + .text.deliver_suback + 0x42012618 0x9c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .text.deliver_publish + 0x420126b4 0x120 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x128 (size before relaxing) + .text.remove_initiator_message + 0x420127d4 0x1b esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x420127ef 0x1 + .text.mqtt_process_receive + 0x420127f0 0x298 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x2bc (size before relaxing) + .text.mqtt_resend_pubrel + 0x42012a88 0x7a esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x82 (size before relaxing) + *fill* 0x42012b02 0x2 + .text.mqtt_resend_queued + 0x42012b04 0x6e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x72 (size before relaxing) + *fill* 0x42012b72 0x2 + .text.esp_mqtt_client_ping + 0x42012b74 0x56 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x5a (size before relaxing) + *fill* 0x42012bca 0x2 + .text.process_keepalive + 0x42012bcc 0xf6 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x102 (size before relaxing) + *fill* 0x42012cc2 0x2 + .text.esp_mqtt_task + 0x42012cc4 0x49e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x4ea (size before relaxing) + *fill* 0x42013162 0x2 + .text.mqtt_enqueue + 0x42013164 0x42 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x46 (size before relaxing) + *fill* 0x420131a6 0x2 + .text.make_publish + 0x420131a8 0x4d esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x420131f5 0x3 + .text.mqtt_client_enqueue_publish + 0x420131f8 0x78 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x7c (size before relaxing) + .text.esp_mqtt_set_if_config + 0x42013270 0x28 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x42013270 esp_mqtt_set_if_config + .text.esp_mqtt_destroy_config + 0x42013298 0xe3 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0xe7 (size before relaxing) + 0x42013298 esp_mqtt_destroy_config + *fill* 0x4201337b 0x1 + .text.esp_mqtt_client_set_uri + 0x4201337c 0x187 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x193 (size before relaxing) + 0x4201337c esp_mqtt_client_set_uri + *fill* 0x42013503 0x1 + .text.esp_mqtt_set_config + 0x42013504 0x7cf esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x7e3 (size before relaxing) + 0x42013504 esp_mqtt_set_config + *fill* 0x42013cd3 0x1 + .text.esp_mqtt_client_start + 0x42013cd4 0xc6 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x42013cd4 esp_mqtt_client_start + *fill* 0x42013d9a 0x2 + .text.esp_mqtt_client_stop + 0x42013d9c 0xe9 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0xed (size before relaxing) + 0x42013d9c esp_mqtt_client_stop + *fill* 0x42013e85 0x3 + .text.esp_mqtt_client_destroy + 0x42013e88 0x5f esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x67 (size before relaxing) + 0x42013e88 esp_mqtt_client_destroy + *fill* 0x42013ee7 0x1 + .text.esp_mqtt_client_init + 0x42013ee8 0xa4 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0xb0 (size before relaxing) + 0x42013ee8 esp_mqtt_client_init + .text.esp_mqtt_client_subscribe_multiple + 0x42013f8c 0x148 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x14c (size before relaxing) + 0x42013f8c esp_mqtt_client_subscribe_multiple + .text.esp_mqtt_client_subscribe_single + 0x420140d4 0x14 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x18 (size before relaxing) + 0x420140d4 esp_mqtt_client_subscribe_single + .text.esp_mqtt_client_publish + 0x420140e8 0x178 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x18c (size before relaxing) + 0x420140e8 esp_mqtt_client_publish + .text.esp_mqtt_client_register_event + 0x42014260 0x22 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + 0x42014260 esp_mqtt_client_register_event + *fill* 0x42014282 0x2 + .text.fini_message + 0x42014284 0xc1 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + *fill* 0x42014345 0x3 + .text.append_string + 0x42014348 0x48 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .text.append_message_id + 0x42014390 0x44 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .text.mqtt_msg_connect + 0x420143d4 0x218 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x220 (size before relaxing) + 0x420143d4 mqtt_msg_connect + .text.mqtt_msg_publish + 0x420145ec 0xde esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x420145ec mqtt_msg_publish + *fill* 0x420146ca 0x2 + .text.mqtt_msg_puback + 0x420146cc 0x38 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x3c (size before relaxing) + 0x420146cc mqtt_msg_puback + .text.mqtt_msg_pubrec + 0x42014704 0x3c esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x42014704 mqtt_msg_pubrec + .text.mqtt_msg_pubrel + 0x42014740 0x3c esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x42014740 mqtt_msg_pubrel + .text.mqtt_msg_pubcomp + 0x4201477c 0x3c esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x4201477c mqtt_msg_pubcomp + .text.mqtt_msg_subscribe + 0x420147b8 0xa9 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0xad (size before relaxing) + 0x420147b8 mqtt_msg_subscribe + *fill* 0x42014861 0x3 + .text.mqtt_msg_pingreq + 0x42014864 0x1c esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x20 (size before relaxing) + 0x42014864 mqtt_msg_pingreq + .text.mqtt_msg_disconnect + 0x42014880 0x1c esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x20 (size before relaxing) + 0x42014880 mqtt_msg_disconnect + .text.mqtt_has_valid_msg_hdr + 0x4201489c 0x7c esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x4201489c mqtt_has_valid_msg_hdr + .text.mqtt_msg_buffer_init + 0x42014918 0x2a esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x42014918 mqtt_msg_buffer_init + *fill* 0x42014942 0x2 + .text.mqtt_msg_buffer_destroy + 0x42014944 0xf esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x42014944 mqtt_msg_buffer_destroy + *fill* 0x42014953 0x1 + .text.outbox_init + 0x42014954 0x9a esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x42014954 outbox_init + *fill* 0x420149ee 0x2 + .text.outbox_enqueue + 0x420149f0 0xe2 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x420149f0 outbox_enqueue + *fill* 0x42014ad2 0x2 + .text.outbox_delete_item + 0x42014ad4 0x62 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x42014ad4 outbox_delete_item + *fill* 0x42014b36 0x2 + .text.outbox_delete + 0x42014b38 0x6e esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x42014b38 outbox_delete + *fill* 0x42014ba6 0x2 + .text.outbox_set_pending + 0x42014ba8 0x1a esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x42014ba8 outbox_set_pending + *fill* 0x42014bc2 0x2 + .text.outbox_set_tick + 0x42014bc4 0x1c esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x42014bc4 outbox_set_tick + .text.outbox_delete_expired + 0x42014be0 0x83 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x42014be0 outbox_delete_expired + *fill* 0x42014c63 0x1 + .text.outbox_get_size + 0x42014c64 0x13 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x42014c64 outbox_get_size + *fill* 0x42014c77 0x1 + .text.outbox_delete_all_items + 0x42014c78 0x5e esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x42014c78 outbox_delete_all_items + *fill* 0x42014cd6 0x2 + .text.outbox_destroy + 0x42014cd8 0x1a esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x1e (size before relaxing) + 0x42014cd8 outbox_destroy + *fill* 0x42014cf2 0x2 + .text.platform_create_id_string + 0x42014cf4 0x5e esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + 0x42014cf4 platform_create_id_string + *fill* 0x42014d52 0x2 + .text.platform_random + 0x42014d54 0xe esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + 0x42014d54 platform_random + *fill* 0x42014d62 0x2 + .text.platform_tick_get_ms + 0x42014d64 0x1a esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + 0x42014d64 platform_tick_get_ms + *fill* 0x42014d7e 0x2 + .text.fota_manager_apply + 0x42014d80 0x262 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + 0x28a (size before relaxing) + 0x42014d80 fota_manager_apply + *fill* 0x42014fe2 0x2 + .text.ftp_connect_control + 0x42014fe4 0xfa esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + 0x106 (size before relaxing) + *fill* 0x420150de 0x2 + .text.ftp_recv_line + 0x420150e0 0x4d esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + *fill* 0x4201512d 0x3 + .text.ftp_send_cmd + 0x42015130 0x2a esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + 0x2e (size before relaxing) + *fill* 0x4201515a 0x2 + .text.ftp_manager_download + 0x4201515c 0x398 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + 0x3d0 (size before relaxing) + 0x4201515c ftp_manager_download + .text.rpc_job_parse + 0x420154f4 0x89 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + 0xad (size before relaxing) + 0x420154f4 rpc_job_parse + *fill* 0x4201557d 0x3 + .text.case_insensitive_strcmp + 0x42015580 0x6c esp-idf/json/libjson.a(cJSON.c.obj) + .text.utf16_literal_to_utf8 + 0x420155ec 0x124 esp-idf/json/libjson.a(cJSON.c.obj) + .text.parse_string + 0x42015710 0x186 esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x42015896 0x2 + .text.cJSON_New_Item + 0x42015898 0x1a esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x420158b2 0x2 + .text.skip_utf8_bom + 0x420158b4 0x34 esp-idf/json/libjson.a(cJSON.c.obj) + .text.parse_number + 0x420158e8 0x12c esp-idf/json/libjson.a(cJSON.c.obj) + .text.get_object_item + 0x42015a14 0x57 esp-idf/json/libjson.a(cJSON.c.obj) + 0x5b (size before relaxing) + *fill* 0x42015a6b 0x1 + .text.cJSON_Delete + 0x42015a6c 0x51 esp-idf/json/libjson.a(cJSON.c.obj) + 0x42015a6c cJSON_Delete + *fill* 0x42015abd 0x3 + .text.parse_object + 0x42015ac0 0x162 esp-idf/json/libjson.a(cJSON.c.obj) + 0x16a (size before relaxing) + *fill* 0x42015c22 0x2 + .text.parse_value + 0x42015c24 0x11e esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x42015d42 0x2 + .text.parse_array + 0x42015d44 0x108 esp-idf/json/libjson.a(cJSON.c.obj) + 0x110 (size before relaxing) + .text.cJSON_ParseWithLengthOpts + 0x42015e4c 0xc4 esp-idf/json/libjson.a(cJSON.c.obj) + 0xcc (size before relaxing) + 0x42015e4c cJSON_ParseWithLengthOpts + .text.cJSON_ParseWithOpts + 0x42015f10 0x1c esp-idf/json/libjson.a(cJSON.c.obj) + 0x20 (size before relaxing) + 0x42015f10 cJSON_ParseWithOpts + .text.cJSON_Parse + 0x42015f2c 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + 0x14 (size before relaxing) + 0x42015f2c cJSON_Parse + .text.cJSON_GetObjectItem + 0x42015f3c 0x10 esp-idf/json/libjson.a(cJSON.c.obj) + 0x14 (size before relaxing) + 0x42015f3c cJSON_GetObjectItem + .text.gpio_sleep_input_enable + 0x42015f4c 0x7b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x42015fc7 0x1 + .text.gpio_sleep_input_disable + 0x42015fc8 0x7a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x42016042 0x2 + .text.gpio_sleep_output_enable + 0x42016044 0x7b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x420160bf 0x1 + .text.gpio_sleep_output_disable + 0x420160c0 0x7b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x4201613b 0x1 + .text.gpio_sleep_pulldown_en + 0x4201613c 0x90 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pullup_en + 0x420161cc 0x90 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pulldown_dis + 0x4201625c 0x90 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pullup_dis + 0x420162ec 0x90 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_set_direction + 0x4201637c 0x8d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x95 (size before relaxing) + 0x4201637c gpio_sleep_set_direction + *fill* 0x42016409 0x3 + .text.gpio_sleep_set_pull_mode + 0x4201640c 0x10d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x11d (size before relaxing) + 0x4201640c gpio_sleep_set_pull_mode + *fill* 0x42016519 0x3 + .text.gpio_sleep_sel_en + 0x4201651c 0x8e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4201651c gpio_sleep_sel_en + *fill* 0x420165aa 0x2 + .text.gpio_sleep_sel_dis + 0x420165ac 0x90 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x420165ac gpio_sleep_sel_dis + .text.get_ota_ops_entry + 0x4201663c 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x42016656 0x2 + .text.esp_ota_init_entry + 0x42016658 0x42 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x4201669a 0x2 + .text.image_validate + 0x4201669c 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x26 (size before relaxing) + *fill* 0x420166be 0x2 + .text.ota_verify_partition + 0x420166c0 0x8c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x94 (size before relaxing) + .text.read_otadata + 0x4201674c 0x8b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x8f (size before relaxing) + *fill* 0x420167d7 0x1 + .text.rewrite_ota_seq + 0x420167d8 0x4a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x52 (size before relaxing) + *fill* 0x42016822 0x2 + .text.esp_ota_get_running_partition + 0x42016824 0x80 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x8f (size before relaxing) + 0x42016824 esp_ota_get_running_partition + *fill* 0x420168a4 0x0 + .text.esp_ota_begin + 0x420168a4 0xba esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0xc6 (size before relaxing) + 0x420168a4 esp_ota_begin + *fill* 0x4201695e 0x2 + .text.esp_ota_write + 0x42016960 0x1c4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x1c8 (size before relaxing) + 0x42016960 esp_ota_write + .text.esp_ota_end + 0x42016b24 0xcd esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0xe1 (size before relaxing) + 0x42016b24 esp_ota_end + *fill* 0x42016bf1 0x3 + .text.esp_ota_get_app_partition_count + 0x42016bf4 0x38 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x3c (size before relaxing) + 0x42016bf4 esp_ota_get_app_partition_count + .text.esp_rewrite_ota_data + 0x42016c2c 0x8f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x97 (size before relaxing) + *fill* 0x42016cbb 0x1 + .text.esp_ota_set_boot_partition + 0x42016cbc 0x51 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x5d (size before relaxing) + 0x42016cbc esp_ota_set_boot_partition + *fill* 0x42016d0d 0x3 + .text.esp_ota_get_next_update_partition + 0x42016d10 0x5c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x64 (size before relaxing) + 0x42016d10 esp_ota_get_next_update_partition + .text.is_partition_encrypted + 0x42016d6c 0x57 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x42016dc3 0x1 + .text.load_partitions + 0x42016dc4 0x170 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x178 (size before relaxing) + .text.ensure_partitions_loaded + 0x42016f34 0x54 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x58 (size before relaxing) + .text.iterator_create + 0x42016f88 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_iterator_release + 0x42016fac 0xe esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x42016fac esp_partition_iterator_release + *fill* 0x42016fba 0x2 + .text.esp_partition_next + 0x42016fbc 0x8a esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x42016fbc esp_partition_next + *fill* 0x42017046 0x2 + .text.esp_partition_find + 0x42017048 0x3c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x44 (size before relaxing) + 0x42017048 esp_partition_find + .text.esp_partition_get + 0x42017084 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x42017084 esp_partition_get + .text.esp_partition_find_first + 0x420170a0 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x2c (size before relaxing) + 0x420170a0 esp_partition_find_first + .text.esp_partition_verify + 0x420170c4 0x7a esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x82 (size before relaxing) + 0x420170c4 esp_partition_verify + *fill* 0x4201713e 0x2 + .text.esp_partition_copy + 0x42017140 0x1ad esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x1bd (size before relaxing) + 0x42017140 esp_partition_copy + *fill* 0x420172ed 0x3 + .text.esp_partition_write + 0x420172f0 0x7d esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x420172f0 esp_partition_write + *fill* 0x4201736d 0x3 + .text.esp_partition_read_raw + 0x42017370 0x45 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x42017370 esp_partition_read_raw + *fill* 0x420173b5 0x3 + .text.esp_partition_write_raw + 0x420173b8 0x4e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x420173b8 esp_partition_write_raw + *fill* 0x42017406 0x2 + .text.esp_partition_erase_range + 0x42017408 0x69 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x42017408 esp_partition_erase_range + *fill* 0x42017471 0x3 + .text.esp_partition_mmap + 0x42017474 0x67 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x42017474 esp_partition_mmap + *fill* 0x420174db 0x1 + .text.esp_partition_munmap + 0x420174dc 0xa esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xe (size before relaxing) + 0x420174dc esp_partition_munmap + *fill* 0x420174e6 0x2 + .text.esp_partition_read + 0x420174e8 0x86 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x8a (size before relaxing) + 0x420174e8 esp_partition_read + *fill* 0x4201756e 0x2 + .text.esp_partition_is_flash_region_writable + 0x42017570 0x50 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x54 (size before relaxing) + 0x42017570 esp_partition_is_flash_region_writable + .text.esp_partition_main_flash_region_safe + 0x420175c0 0x39 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x3d (size before relaxing) + 0x420175c0 esp_partition_main_flash_region_safe + *fill* 0x420175f9 0x3 + .text.esp_partition_get_main_flash_sector_size + 0x420175fc 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x420175fc esp_partition_get_main_flash_sector_size + .text.bootloader_common_check_chip_revision_validity + 0x42017604 0xf6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x42017604 bootloader_common_check_chip_revision_validity + *fill* 0x420176fa 0x2 + .text.bootloader_common_ota_select_crc + 0x420176fc 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x420176fc bootloader_common_ota_select_crc + .text.bootloader_common_ota_select_valid + 0x42017710 0x25 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x29 (size before relaxing) + 0x42017710 bootloader_common_ota_select_valid + *fill* 0x42017735 0x3 + .text.bootloader_common_check_efuse_blk_validity + 0x42017738 0xcc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x42017738 bootloader_common_check_efuse_blk_validity + .text.bootloader_common_check_chip_validity + 0x42017804 0x72 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x42017804 bootloader_common_check_chip_validity + *fill* 0x42017876 0x2 + .text.bootloader_common_get_active_otadata + 0x42017878 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x31 (size before relaxing) + 0x42017878 bootloader_common_get_active_otadata + *fill* 0x420178a5 0x3 + .text.bootloader_init_mem + 0x420178a8 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0xb (size before relaxing) + 0x420178a8 bootloader_init_mem + *fill* 0x420178b0 0x0 + .text.bootloader_mmap_get_free_pages + 0x420178b0 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x10 (size before relaxing) + 0x420178b0 bootloader_mmap_get_free_pages + .text.bootloader_mmap + 0x420178bc 0x73 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x420178bc bootloader_mmap + *fill* 0x4201792f 0x1 + .text.bootloader_munmap + 0x42017930 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x1d (size before relaxing) + 0x42017930 bootloader_munmap + *fill* 0x42017949 0x3 + .text.bootloader_flash_read + 0x4201794c 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4201794c bootloader_flash_read + *fill* 0x42017982 0x2 + .text.bootloader_flash_update_id + 0x42017984 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x42017984 bootloader_flash_update_id + *fill* 0x42017996 0x2 + .text.esp_partition_table_verify + 0x42017998 0x175 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x42017998 esp_partition_table_verify + *fill* 0x42017b0d 0x3 + .text.is_bootloader + 0x42017b10 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_map + 0x42017b2c 0x2b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x42017b57 0x1 + .text.verify_segment_header + 0x42017b58 0x7d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x42017bd5 0x3 + .text.process_appended_hash_and_sig + 0x42017bd8 0x67 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x42017c3f 0x1 + .text.process_checksum + 0x42017c40 0xc8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_image_header + 0x42017d08 0x7a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x82 (size before relaxing) + *fill* 0x42017d82 0x2 + .text.process_image_header + 0x42017d84 0x60 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x68 (size before relaxing) + .text.should_load + 0x42017de4 0x42 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x46 (size before relaxing) + *fill* 0x42017e26 0x2 + .text.process_segment_data + 0x42017e28 0xe0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0xec (size before relaxing) + .text.process_segment + 0x42017f08 0x16f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x17b (size before relaxing) + *fill* 0x42018077 0x1 + .text.process_segments + 0x42018078 0x8d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x91 (size before relaxing) + *fill* 0x42018105 0x3 + .text.verify_simple_hash + 0x42018108 0x66 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x6a (size before relaxing) + *fill* 0x4201816e 0x2 + .text.image_load + 0x42018170 0xda esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0xee (size before relaxing) + *fill* 0x4201824a 0x2 + .text.esp_image_bootloader_offset_set + 0x4201824c 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x4201824c esp_image_bootloader_offset_set + .text.esp_image_verify + 0x42018274 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + 0x42018274 esp_image_verify + .text.bootloader_sha256_start + 0x42018284 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x26 (size before relaxing) + 0x42018284 bootloader_sha256_start + *fill* 0x420182a6 0x2 + .text.bootloader_sha256_data + 0x420182a8 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x3a (size before relaxing) + 0x420182a8 bootloader_sha256_data + *fill* 0x420182df 0x1 + .text.bootloader_sha256_finish + 0x420182e0 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x4a (size before relaxing) + 0x420182e0 bootloader_sha256_finish + *fill* 0x42018326 0x2 + .text.s_get_bus_mask + 0x42018328 0x4a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x42018372 0x2 + .text.s_reserve_irom_region + 0x42018374 0x7f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x420183f3 0x1 + .text.s_reserve_drom_region + 0x420183f4 0x7f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x42018473 0x1 + .text.esp_mmu_map_init + 0x42018474 0x106 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x10a (size before relaxing) + 0x42018474 esp_mmu_map_init + *fill* 0x4201857a 0x2 + .text.esp_mmu_map_get_max_consecutive_free_block_size + 0x4201857c 0xa8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4201857c esp_mmu_map_get_max_consecutive_free_block_size + .text.esp_mmu_map + 0x42018624 0x3e9 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x42018624 esp_mmu_map + *fill* 0x42018a0d 0x3 + .text.esp_mmu_unmap + 0x42018a10 0x141 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x42018a10 esp_mmu_unmap + *fill* 0x42018b51 0x3 + .text.esp_mmu_vaddr_to_paddr + 0x42018b54 0xca esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x42018b54 esp_mmu_vaddr_to_paddr + *fill* 0x42018c1e 0x2 + .text.spi_flash_init_lock + 0x42018c20 0x26 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x42018c20 spi_flash_init_lock + *fill* 0x42018c46 0x2 + .text.spi_flash_op_lock + 0x42018c48 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x42018c48 spi_flash_op_lock + *fill* 0x42018c5a 0x2 + .text.spi_flash_op_unlock + 0x42018c5c 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x42018c5c spi_flash_op_unlock + .text.spi_flash_mmap + 0x42018c6c 0x93 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x42018c6c spi_flash_mmap + *fill* 0x42018cff 0x1 + .text.spi_flash_munmap + 0x42018d00 0x43 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x46 (size before relaxing) + 0x42018d00 spi_flash_munmap + *fill* 0x42018d43 0x1 + .text.spi_flash_mmap_get_free_pages + 0x42018d44 0x21 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x42018d44 spi_flash_mmap_get_free_pages + *fill* 0x42018d65 0x3 + .text.spi_flash_cache2phys + 0x42018d68 0x24 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x28 (size before relaxing) + 0x42018d68 spi_flash_cache2phys + .text.esp_mspi_get_io + 0x42018d8c 0x7f esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x83 (size before relaxing) + 0x42018d8c esp_mspi_get_io + *fill* 0x42018e0b 0x1 + .text.esp_mspi_pin_reserve + 0x42018e0c 0x57 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x42018e0c esp_mspi_pin_reserve + *fill* 0x42018e63 0x1 + .text.spimem_flash_ll_get_source_freq_mhz + 0x42018e64 0x3d esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x42018ea1 0x3 + .text.s_esp_flash_choose_correct_mode + 0x42018ea4 0x3a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x42018ede 0x2 + .text.esp_flash_init_default_chip + 0x42018ee0 0x133 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x13b (size before relaxing) + 0x42018ee0 esp_flash_init_default_chip + *fill* 0x42019013 0x1 + .text.esp_flash_app_init + 0x42019014 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x1f (size before relaxing) + 0x42019014 esp_flash_app_init + *fill* 0x42019030 0x0 + .text.esp_crosscore_int_init + 0x42019030 0x72 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x76 (size before relaxing) + 0x42019030 esp_crosscore_int_init + *fill* 0x420190a2 0x2 + .text.find_entry_and_check_all_reset + 0x420190a4 0x36 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x420190da 0x2 + .text.find_entry_from_task_handle_and_check_all_reset + 0x420190dc 0x37 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x42019113 0x1 + .text.task_wdt_timer_feed + 0x42019114 0x24 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.add_entry + 0x42019138 0x111 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x11d (size before relaxing) + *fill* 0x42019249 0x3 + .text.get_task_affinity + 0x4201924c 0x25 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x42019271 0x3 + .text.task_wdt_timeout_abort + 0x42019274 0xbc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x42019274 task_wdt_timeout_abort + .text.task_wdt_timeout_handling + 0x42019330 0xba esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xbe (size before relaxing) + *fill* 0x420193ea 0x2 + .text.esp_task_wdt_add + 0x420193ec 0x4c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x50 (size before relaxing) + 0x420193ec esp_task_wdt_add + .text.subscribe_idle + 0x42019438 0x6b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x420194a3 0x1 + .text.esp_task_wdt_init + 0x420194a4 0xea esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xf2 (size before relaxing) + 0x420194a4 esp_task_wdt_init + *fill* 0x4201958e 0x2 + .text.esp_task_wdt_reset + 0x42019590 0x9e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xa2 (size before relaxing) + 0x42019590 esp_task_wdt_reset + *fill* 0x4201962e 0x2 + .text.idle_hook_cb + 0x42019630 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd (size before relaxing) + *fill* 0x4201963a 0x2 + .text.esp_task_wdt_print_triggered_tasks + 0x4201963c 0xce esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4201963c esp_task_wdt_print_triggered_tasks + *fill* 0x4201970a 0x2 + .text.task_wdt_isr + 0x4201970c 0xc9 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd4 (size before relaxing) + *fill* 0x420197d5 0x3 + .text.esp_task_wdt_impl_timer_allocate + 0x420197d8 0xe1 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x420197d8 esp_task_wdt_impl_timer_allocate + *fill* 0x420198b9 0x3 + .text.esp_task_wdt_impl_timeout_triggered + 0x420198bc 0x1f esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x420198bc esp_task_wdt_impl_timeout_triggered + *fill* 0x420198db 0x1 + .text.esp_task_wdt_impl_timer_restart + 0x420198dc 0x31 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x420198dc esp_task_wdt_impl_timer_restart + *fill* 0x4201990d 0x3 + .text.esp_rom_efuse_get_opiconfig + 0x42019910 0x3e esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + 0x42019910 esp_rom_efuse_get_opiconfig + *fill* 0x4201994e 0x2 + .text.gpspi_flash_ll_calculate_clock_reg + 0x42019950 0x2d esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + *fill* 0x4201997d 0x3 + .text.spimem_flash_ll_calculate_clock_reg + 0x42019980 0x2d esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + *fill* 0x420199ad 0x3 + .text.extra_dummy_under_timing_tuning + 0x420199b0 0x16 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + *fill* 0x420199c6 0x2 + .text.get_flash_clock_divider + 0x420199c8 0x66 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + *fill* 0x42019a2e 0x2 + .text.spi_flash_cal_clock + 0x42019a30 0x2c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x34 (size before relaxing) + .text.spi_flash_hal_init + 0x42019a5c 0x12a esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x12e (size before relaxing) + 0x42019a5c spi_flash_hal_init + *fill* 0x42019b86 0x2 + .text.spi_flash_hal_supports_direct_write + 0x42019b88 0x12 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x42019b88 spi_flash_hal_supports_direct_write + *fill* 0x42019b9a 0x2 + .text.spi_flash_hal_supports_direct_read + 0x42019b9c 0x12 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x42019b9c spi_flash_hal_supports_direct_read + *fill* 0x42019bae 0x2 + .text.clk_hal_lp_slow_get_freq_hz + 0x42019bb0 0x3d esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x42019bb0 clk_hal_lp_slow_get_freq_hz + *fill* 0x42019bed 0x3 + .text.clk_hal_xtal_get_freq_mhz + 0x42019bf0 0x40 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x42019bf0 clk_hal_xtal_get_freq_mhz + .text.clk_hal_soc_root_get_freq_mhz + 0x42019c30 0x4e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x52 (size before relaxing) + 0x42019c30 clk_hal_soc_root_get_freq_mhz + *fill* 0x42019c7e 0x2 + .text.clk_hal_cpu_get_freq_hz + 0x42019c80 0xc6 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x42019c80 clk_hal_cpu_get_freq_hz + *fill* 0x42019d46 0x2 + .text.clk_hal_ahb_get_freq_hz + 0x42019d48 0x1e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x22 (size before relaxing) + *fill* 0x42019d66 0x2 + .text.clk_hal_apb_get_freq_hz + 0x42019d68 0xa esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0xd (size before relaxing) + 0x42019d68 clk_hal_apb_get_freq_hz + *fill* 0x42019d72 0x2 + .text.brownout_ll_set_threshold + 0x42019d74 0x18 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .text.brownout_hal_config + 0x42019d8c 0x108 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x10c (size before relaxing) + 0x42019d8c brownout_hal_config + .text.esp_crypto_sha_aes_lock_acquire + 0x42019e94 0xe esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x42019e94 esp_crypto_sha_aes_lock_acquire + *fill* 0x42019ea2 0x2 + .text.esp_crypto_hmac_lock_acquire + 0x42019ea4 0x11 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x14 (size before relaxing) + 0x42019ea4 esp_crypto_hmac_lock_acquire + *fill* 0x42019eb5 0x3 + .text.esp_crypto_sha_aes_lock_release + 0x42019eb8 0xe esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x42019eb8 esp_crypto_sha_aes_lock_release + *fill* 0x42019ec6 0x2 + .text.esp_crypto_hmac_lock_release + 0x42019ec8 0x11 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x14 (size before relaxing) + 0x42019ec8 esp_crypto_hmac_lock_release + *fill* 0x42019ed9 0x3 + .text.esp_crypto_mpi_lock_acquire + 0x42019edc 0xe esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x42019edc esp_crypto_mpi_lock_acquire + *fill* 0x42019eea 0x2 + .text.esp_crypto_ds_lock_acquire + 0x42019eec 0x14 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x1a (size before relaxing) + 0x42019eec esp_crypto_ds_lock_acquire + *fill* 0x42019f00 0x0 + .text.esp_crypto_mpi_lock_release + 0x42019f00 0xe esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x42019f00 esp_crypto_mpi_lock_release + *fill* 0x42019f0e 0x2 + .text.esp_crypto_ds_lock_release + 0x42019f10 0x14 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + 0x1a (size before relaxing) + 0x42019f10 esp_crypto_ds_lock_release + *fill* 0x42019f24 0x0 + .text.esp_crypto_aes_enable_periph_clk + 0x42019f24 0x6e esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + 0x42019f24 esp_crypto_aes_enable_periph_clk + *fill* 0x42019f92 0x2 + .text.esp_crypto_sha_enable_periph_clk + 0x42019f94 0x7f esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + 0x42019f94 esp_crypto_sha_enable_periph_clk + *fill* 0x4201a013 0x1 + .text.esp_crypto_mpi_enable_periph_clk + 0x4201a014 0x97 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + 0x4201a014 esp_crypto_mpi_enable_periph_clk + *fill* 0x4201a0ab 0x1 + .text.esp_crypto_hmac_enable_periph_clk + 0x4201a0ac 0x64 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + 0x4201a0ac esp_crypto_hmac_enable_periph_clk + .text.esp_crypto_ds_enable_periph_clk + 0x4201a110 0x63 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + 0x4201a110 esp_crypto_ds_enable_periph_clk + *fill* 0x4201a173 0x1 + .text.esp_cpu_configure_region_protection + 0x4201a174 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x4201a174 esp_cpu_configure_region_protection + *fill* 0x4201a1a7 0x1 + .text.esp_fill_random + 0x4201a1a8 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x4201a1a8 esp_fill_random + *fill* 0x4201a1e3 0x1 + .text.get_idx 0x4201a1e4 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x4201a222 0x2 + .text.generate_mac + 0x4201a224 0x91 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x4201a2b5 0x3 + .text.get_efuse_factory_mac + 0x4201a2b8 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.get_efuse_mac_custom + 0x4201a2ec 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x6e (size before relaxing) + *fill* 0x4201a356 0x2 + .text.get_mac_addr_from_mac_table + 0x4201a358 0xaa esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0xae (size before relaxing) + *fill* 0x4201a402 0x2 + .text.esp_efuse_mac_get_default + 0x4201a404 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x10 (size before relaxing) + 0x4201a404 esp_efuse_mac_get_default + .text.esp_read_mac + 0x4201a410 0xc6 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0xd6 (size before relaxing) + 0x4201a410 esp_read_mac + *fill* 0x4201a4d6 0x2 + .text.esp_gpio_reserve + 0x4201a4d8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x4201a4d8 esp_gpio_reserve + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_ET_SA_SA_T0_ + 0x4201a4f0 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x4201a504 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x4201a526 0x2 + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZ9nvs_closeEUlRS1_E_ET_S6_S6_T0_ + 0x4201a528 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x4201a53c 0x67 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x6e (size before relaxing) + *fill* 0x4201a5a3 0x1 + .text._ZZL24close_handles_and_deinitPKcENKUlR14NVSHandleEntryE_clES2_ + 0x4201a5a4 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL24close_handles_and_deinitPKcEUlRS1_E_EEET_SC_SC_T0_St18input_iterator_tag + 0x4201a5c4 0x1b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x4201a5df 0x1 + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL24close_handles_and_deinitPKcEUlRS1_E_ET_S8_S8_T0_ + 0x4201a5e0 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x4201a5f5 0x3 + .text.nvs_flash_init_partition + 0x4201a5f8 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x52 (size before relaxing) + 0x4201a5f8 nvs_flash_init_partition + *fill* 0x4201a63e 0x2 + .text.nvs_flash_init + 0x4201a640 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + 0x4201a640 nvs_flash_init + *fill* 0x4201a64d 0x3 + .text.nvs_erase_key + 0x4201a650 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + 0x4201a650 nvs_erase_key + *fill* 0x4201a677 0x1 + .text.nvs_commit + 0x4201a678 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x30 (size before relaxing) + 0x4201a678 nvs_commit + *fill* 0x4201a69d 0x3 + .text.nvs_set_blob + 0x4201a6a0 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x36 (size before relaxing) + 0x4201a6a0 nvs_set_blob + *fill* 0x4201a6cb 0x1 + .text.nvs_get_blob + 0x4201a6cc 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + 0x4201a6cc nvs_get_blob + .text._ZL24close_handles_and_deinitPKc + 0x4201a6e0 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x48 (size before relaxing) + .text.nvs_flash_erase_partition + 0x4201a720 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x62 (size before relaxing) + 0x4201a720 nvs_flash_erase_partition + *fill* 0x4201a76b 0x1 + .text.nvs_flash_erase + 0x4201a76c 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + 0x4201a76c nvs_flash_erase + *fill* 0x4201a779 0x3 + .text.nvs_close + 0x4201a77c 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x52 (size before relaxing) + 0x4201a77c nvs_close + *fill* 0x4201a7c6 0x2 + .text.nvs_open_from_partition + 0x4201a7c8 0x77 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x82 (size before relaxing) + 0x4201a7c8 nvs_open_from_partition + *fill* 0x4201a83f 0x1 + .text.nvs_open + 0x4201a840 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4201a840 nvs_open + *fill* 0x4201a856 0x2 + .text._Z7nvs_setIaEimPKcT_ + 0x4201a858 0x2f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x36 (size before relaxing) + *fill* 0x4201a887 0x1 + .text.nvs_set_i8 + 0x4201a888 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4201a888 nvs_set_i8 + .text._Z7nvs_setIhEimPKcT_ + 0x4201a89c 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4201a8c7 0x1 + .text.nvs_set_u8 + 0x4201a8c8 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4201a8c8 nvs_set_u8 + .text._Z7nvs_setItEimPKcT_ + 0x4201a8dc 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4201a907 0x1 + .text.nvs_set_u16 + 0x4201a908 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4201a908 nvs_set_u16 + .text._Z7nvs_setImEimPKcT_ + 0x4201a91c 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4201a947 0x1 + .text.nvs_set_u32 + 0x4201a948 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x4201a948 nvs_set_u32 + .text._Z7nvs_getIaEimPKcPT_ + 0x4201a958 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4201a983 0x1 + .text.nvs_get_i8 + 0x4201a984 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x4201a984 nvs_get_i8 + .text._Z7nvs_getIhEimPKcPT_ + 0x4201a994 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4201a9bf 0x1 + .text.nvs_get_u8 + 0x4201a9c0 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x4201a9c0 nvs_get_u8 + .text._Z7nvs_getItEimPKcPT_ + 0x4201a9d0 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4201a9fb 0x1 + .text.nvs_get_u16 + 0x4201a9fc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x4201a9fc nvs_get_u16 + .text._Z7nvs_getImEimPKcPT_ + 0x4201aa0c 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4201aa37 0x1 + .text.nvs_get_u32 + 0x4201aa38 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x4201aa38 nvs_get_u32 + .text._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x4201aa48 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201aa48 nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) + 0x4201aa48 nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) + .text._ZN3nvs4PageC2Ev + 0x4201aa98 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201aa98 nvs::Page::Page() + 0x4201aa98 nvs::Page::Page() + *fill* 0x4201aac6 0x2 + .text._ZN3nvs4Page6Header14calculateCrc32Ev + 0x4201aac8 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201aac8 nvs::Page::Header::calculateCrc32() + .text._ZN3nvs4Page10initializeEv + 0x4201aadc 0x71 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x75 (size before relaxing) + 0x4201aadc nvs::Page::initialize() + *fill* 0x4201ab4d 0x3 + .text._ZNK3nvs4Page12getSeqNumberERm + 0x4201ab50 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201ab50 nvs::Page::getSeqNumber(unsigned long&) const + *fill* 0x4201ab7a 0x2 + .text._ZN3nvs4Page12setSeqNumberEm + 0x4201ab7c 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201ab7c nvs::Page::setSeqNumber(unsigned long) + *fill* 0x4201ab91 0x3 + .text._ZN3nvs4Page5eraseEv + 0x4201ab94 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201ab94 nvs::Page::erase() + *fill* 0x4201abcf 0x1 + .text._ZN3nvs4Page11markFreeingEv + 0x4201abd0 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201abd0 nvs::Page::markFreeing() + *fill* 0x4201abfd 0x3 + .text._ZN3nvs4Page8markFullEv + 0x4201ac00 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201ac00 nvs::Page::markFull() + *fill* 0x4201ac1e 0x2 + .text._ZNK3nvs4Page18getVarDataTailroomEv + 0x4201ac20 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201ac20 nvs::Page::getVarDataTailroom() const + *fill* 0x4201ac51 0x3 + .text._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x4201ac54 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201ac54 nvs::Page::alterEntryState(unsigned int, nvs::Page::EntryState) + .text._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x4201aca4 0x5e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201aca4 nvs::Page::writeEntry(nvs::Item const&) + *fill* 0x4201ad02 0x2 + .text._ZN3nvs4Page9copyItemsERS0_ + 0x4201ad04 0xba esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc2 (size before relaxing) + 0x4201ad04 nvs::Page::copyItems(nvs::Page&) + *fill* 0x4201adbe 0x2 + .text._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x4201adc0 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201adc0 nvs::Page::alterEntryRangeState(unsigned int, unsigned int, nvs::Page::EntryState) + .text._ZN3nvs4Page14writeEntryDataEPKhj + 0x4201ae30 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201ae30 nvs::Page::writeEntryData(unsigned char const*, unsigned int) + *fill* 0x4201aeae 0x2 + .text._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x4201aeb0 0x1ca esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1ea (size before relaxing) + 0x4201aeb0 nvs::Page::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char) + *fill* 0x4201b07a 0x2 + .text._ZN3nvs4Page17eraseEntryAndSpanEj + 0x4201b07c 0x132 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x13e (size before relaxing) + 0x4201b07c nvs::Page::eraseEntryAndSpan(unsigned int) + *fill* 0x4201b1ae 0x2 + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x4201b1b0 0x26e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x276 (size before relaxing) + 0x4201b1b0 nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned int&, nvs::Item&, unsigned char, nvs::VerOffset) + *fill* 0x4201b41e 0x2 + .text._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x4201b420 0x101 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4201b420 nvs::Page::cmpItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char, nvs::VerOffset) + *fill* 0x4201b521 0x3 + .text._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x4201b524 0xf5 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xfd (size before relaxing) + 0x4201b524 nvs::Page::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int, unsigned char, nvs::VerOffset) + *fill* 0x4201b619 0x3 + .text._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x4201b61c 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x3e (size before relaxing) + 0x4201b61c nvs::Page::eraseItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) + *fill* 0x4201b656 0x2 + .text._ZN3nvs4Page15mLoadEntryTableEv + 0x4201b658 0x3d4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x3f0 (size before relaxing) + 0x4201b658 nvs::Page::mLoadEntryTable() + .text._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x4201ba2c 0x126 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x12a (size before relaxing) + 0x4201ba2c nvs::Page::load(nvs::Partition*, unsigned long) + *fill* 0x4201bb52 0x2 + .text._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x4201bb54 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x4201bb74 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x4201bb94 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_St18input_iterator_tag + 0x4201bbe0 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x4201bbfa 0x2 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x4201bbfc 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x50 (size before relaxing) + .text._ZZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x4201bc44 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x4201bc89 0x3 + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x4201bc8c 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x4201bca6 0x2 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x4201bca8 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x50 (size before relaxing) + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_EEET_SG_SG_T0_St18input_iterator_tag + 0x4201bcf0 0x1b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x4201bd0b 0x1 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_ET_SC_SC_T0_ + 0x4201bd0c 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x4201bd21 0x3 + .text._ZN3nvs4Item6getKeyEPcj + 0x4201bd24 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4201bd24 nvs::Item::getKey(char*, unsigned int) + *fill* 0x4201bd49 0x3 + .text._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x4201bd4c 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x82 (size before relaxing) + 0x4201bd4c nvs::Storage::eraseOrphanDataBlobs(intrusive_list&) + *fill* 0x4201bdca 0x2 + .text._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x4201bdcc 0x4f esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4201bdcc nvs::Storage::findItem(unsigned char, nvs::ItemType, char const*, nvs::Page*&, nvs::Item&, unsigned char, nvs::VerOffset) + *fill* 0x4201be1b 0x1 + .text._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x4201be1c 0xc9 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xcd (size before relaxing) + 0x4201be1c nvs::Storage::cmpMultiPageBlob(unsigned char, char const*, void const*, unsigned int) + *fill* 0x4201bee5 0x3 + .text._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x4201bee8 0x10c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x120 (size before relaxing) + 0x4201bee8 nvs::Storage::eraseMultiPageBlob(unsigned char, char const*, nvs::VerOffset) + .text._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x4201bff4 0x10c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x110 (size before relaxing) + 0x4201bff4 nvs::Storage::readMultiPageBlob(unsigned char, char const*, void*, unsigned int) + .text._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x4201c100 0x66 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x6e (size before relaxing) + 0x4201c100 nvs::Storage::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int) + *fill* 0x4201c166 0x2 + .text._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x4201c168 0x9a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x9e (size before relaxing) + 0x4201c168 nvs::Storage::eraseItem(unsigned char, nvs::ItemType, char const*) + *fill* 0x4201c202 0x2 + .text._ZN3nvs7Storage14eraseNamespaceEh + 0x4201c204 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4201c204 nvs::Storage::eraseNamespace(unsigned char) + *fill* 0x4201c247 0x1 + .text._ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE + 0x4201c248 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x3e (size before relaxing) + 0x4201c248 nvs::Storage::findKey(unsigned char, char const*, nvs::ItemType*) + *fill* 0x4201c282 0x2 + .text._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x4201c284 0x6a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x6e (size before relaxing) + 0x4201c284 nvs::Storage::getItemDataSize(unsigned char, nvs::ItemType, char const*, unsigned int&) + *fill* 0x4201c2ee 0x2 + .text._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x4201c2f0 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x64 (size before relaxing) + 0x4201c2f0 nvs::Storage::calcEntriesInNamespace(unsigned char, unsigned int&) + .text._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x4201c350 0x8c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4201c350 nvs::Storage::populateBlobIndices(intrusive_list&) + .text._ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE + 0x4201c3dc 0xd7 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xdf (size before relaxing) + 0x4201c3dc nvs::Storage::eraseMismatchedBlobIndexes(intrusive_list&) + *fill* 0x4201c4b3 0x1 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x4201c4b4 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4201c4b4 intrusive_list::clearAndFreeNodes() + *fill* 0x4201c4d5 0x3 + .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x4201c4d8 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4201c4d8 std::enable_if::value, void>::type std::default_delete::operator()(nvs::Page*) const + .text._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev + 0x4201c508 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x16 (size before relaxing) + 0x4201c508 std::unique_ptr >::~unique_ptr() + 0x4201c508 std::unique_ptr >::~unique_ptr() + *fill* 0x4201c51a 0x2 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x4201c51c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4201c51c intrusive_list::clearAndFreeNodes() + *fill* 0x4201c53d 0x3 + .text._ZN3nvs7Storage15clearNamespacesEv + 0x4201c540 0xb esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xe (size before relaxing) + 0x4201c540 nvs::Storage::clearNamespaces() + *fill* 0x4201c54b 0x1 + .text._ZN3nvs7StorageD2Ev + 0x4201c54c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x17 (size before relaxing) + 0x4201c54c nvs::Storage::~Storage() + 0x4201c54c nvs::Storage::~Storage() + *fill* 0x4201c55c 0x0 + .text._ZN3nvs7Storage4initEmm + 0x4201c55c 0x137 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x143 (size before relaxing) + 0x4201c55c nvs::Storage::init(unsigned long, unsigned long) + *fill* 0x4201c693 0x1 + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x4201c694 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4201c694 intrusive_list::clearAndFreeNodes() + *fill* 0x4201c6b5 0x3 + .text._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x4201c6b8 0x1d9 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x1e9 (size before relaxing) + 0x4201c6b8 nvs::Storage::writeMultiPageBlob(unsigned char, char const*, void const*, unsigned int, nvs::VerOffset) + *fill* 0x4201c891 0x3 + .text._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x4201c894 0x2b4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x2dc (size before relaxing) + 0x4201c894 nvs::Storage::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int) + .text._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x4201cb48 0xda esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xde (size before relaxing) + 0x4201cb48 nvs::Storage::createOrOpenNamespace(char const*, bool, unsigned char&) + *fill* 0x4201cc22 0x2 + .text._ZN3nvs15NVSHandleSimple6commitEv + 0x4201cc24 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4201cc24 nvs::NVSHandleSimple::commit() + *fill* 0x4201cc36 0x2 + .text._ZN3nvs15NVSHandleSimpleD2Ev + 0x4201cc38 0x19 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x1d (size before relaxing) + 0x4201cc38 nvs::NVSHandleSimple::~NVSHandleSimple() + 0x4201cc38 nvs::NVSHandleSimple::~NVSHandleSimple() + *fill* 0x4201cc51 0x3 + .text._ZN3nvs15NVSHandleSimpleD0Ev + 0x4201cc54 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x16 (size before relaxing) + 0x4201cc54 nvs::NVSHandleSimple::~NVSHandleSimple() + *fill* 0x4201cc66 0x2 + .text._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x4201cc68 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4201cc68 nvs::NVSHandleSimple::set_typed_item(nvs::ItemType, char const*, void const*, unsigned int) + *fill* 0x4201cc9d 0x3 + .text._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x4201cca0 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4201cca0 nvs::NVSHandleSimple::set_blob(char const*, void const*, unsigned int) + *fill* 0x4201ccd1 0x3 + .text._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x4201ccd4 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4201ccd4 nvs::NVSHandleSimple::get_typed_item(nvs::ItemType, char const*, void*, unsigned int) + *fill* 0x4201ccfa 0x2 + .text._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x4201ccfc 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x26 (size before relaxing) + 0x4201ccfc nvs::NVSHandleSimple::get_string(char const*, char*, unsigned int) + *fill* 0x4201cd1e 0x2 + .text._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x4201cd20 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x26 (size before relaxing) + 0x4201cd20 nvs::NVSHandleSimple::get_blob(char const*, void*, unsigned int) + *fill* 0x4201cd42 0x2 + .text._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x4201cd44 0x3d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4201cd44 nvs::NVSHandleSimple::set_string(char const*, char const*) + *fill* 0x4201cd81 0x3 + .text._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x4201cd84 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4201cd84 nvs::NVSHandleSimple::get_item_size(nvs::ItemType, char const*, unsigned int&) + *fill* 0x4201cda9 0x3 + .text._ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t + 0x4201cdac 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x49 (size before relaxing) + 0x4201cdac nvs::NVSHandleSimple::find_key(char const*, nvs_type_t&) + *fill* 0x4201cdf1 0x3 + .text._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x4201cdf4 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4201cdf4 nvs::NVSHandleSimple::erase_item(char const*) + *fill* 0x4201ce25 0x3 + .text._ZN3nvs15NVSHandleSimple9erase_allEv + 0x4201ce28 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4201ce28 nvs::NVSHandleSimple::erase_all() + *fill* 0x4201ce51 0x3 + .text._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x4201ce54 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4201ce54 nvs::NVSHandleSimple::get_used_entry_count(unsigned int&) + *fill* 0x4201ce7e 0x2 + .text._ZN3nvs12NVSPartitionD2Ev + 0x4201ce80 0xf esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4201ce80 nvs::NVSPartition::~NVSPartition() + 0x4201ce80 nvs::NVSPartition::~NVSPartition() + *fill* 0x4201ce8f 0x1 + .text._ZN3nvs12NVSPartition8read_rawEjPvj + 0x4201ce90 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4201ce90 nvs::NVSPartition::read_raw(unsigned int, void*, unsigned int) + *fill* 0x4201cea5 0x3 + .text._ZN3nvs12NVSPartition4readEjPvj + 0x4201cea8 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4201cea8 nvs::NVSPartition::read(unsigned int, void*, unsigned int) + *fill* 0x4201cec9 0x3 + .text._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x4201cecc 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4201cecc nvs::NVSPartition::write_raw(unsigned int, void const*, unsigned int) + *fill* 0x4201cee1 0x3 + .text._ZN3nvs12NVSPartition5writeEjPKvj + 0x4201cee4 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4201cee4 nvs::NVSPartition::write(unsigned int, void const*, unsigned int) + *fill* 0x4201cf05 0x3 + .text._ZN3nvs12NVSPartition11erase_rangeEjj + 0x4201cf08 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x14 (size before relaxing) + 0x4201cf08 nvs::NVSPartition::erase_range(unsigned int, unsigned int) + .text._ZN3nvs12NVSPartitionD0Ev + 0x4201cf18 0x17 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4201cf18 nvs::NVSPartition::~NVSPartition() + *fill* 0x4201cf2f 0x1 + .text._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x4201cf30 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4201cf30 nvs::NVSPartition::NVSPartition(esp_partition_t const*) + 0x4201cf30 nvs::NVSPartition::NVSPartition(esp_partition_t const*) + *fill* 0x4201cf4f 0x1 + .text._ZN3nvs19NVSPartitionManagerD2Ev + 0x4201cf50 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4201cf50 nvs::NVSPartitionManager::~NVSPartitionManager() + 0x4201cf50 nvs::NVSPartitionManager::~NVSPartitionManager() + *fill* 0x4201cf5a 0x2 + .text._ZN3nvs19NVSPartitionManagerD0Ev + 0x4201cf5c 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4201cf5c nvs::NVSPartitionManager::~NVSPartitionManager() + *fill* 0x4201cf6e 0x2 + .text._ZZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKcENKUlRNS_7StorageEE_clES4_ + 0x4201cf70 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_St18input_iterator_tag + 0x4201cf8c 0x1b esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + *fill* 0x4201cfa7 0x1 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_ET_SA_SA_T0_ + 0x4201cfa8 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + *fill* 0x4201cfbd 0x3 + .text._ZN3nvs7StorageC2EPNS_9PartitionE + 0x4201cfc0 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4201cfc0 nvs::Storage::Storage(nvs::Partition*) + 0x4201cfc0 nvs::Storage::Storage(nvs::Partition*) + *fill* 0x4201cfee 0x2 + .text._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x4201cff0 0x39 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4201cff0 nvs::NVSPartitionManager::get_instance() + *fill* 0x4201d029 0x3 + .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x4201d02c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x14 (size before relaxing) + 0x4201d02c nvs::NVSPartitionManager::lookup_storage_from_name(char const*) + .text._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x4201d03c 0x94 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xa0 (size before relaxing) + 0x4201d03c nvs::NVSPartitionManager::init_custom(nvs::Partition*, unsigned long, unsigned long) + .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x4201d0d0 0x7c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x88 (size before relaxing) + 0x4201d0d0 nvs::NVSPartitionManager::init_partition(char const*) + .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x4201d14c 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4201d14c nvs::NVSPartitionManager::close_handle(nvs::NVSHandleSimple*) + *fill* 0x4201d171 0x3 + .text._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x4201d174 0x8d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4201d174 nvs::NVSPartitionManager::deinit_partition(char const*) + *fill* 0x4201d201 0x3 + .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x4201d204 0xaa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xb2 (size before relaxing) + 0x4201d204 nvs::NVSPartitionManager::open_handle(char const*, char const*, nvs_open_mode_t, nvs::NVSHandleSimple**) + *fill* 0x4201d2ae 0x2 + .text._ZNK3nvs4Item14calculateCrc32Ev + 0x4201d2b0 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4201d2b0 nvs::Item::calculateCrc32() const + .text._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x4201d2dc 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4201d2dc nvs::Item::calculateCrc32WithoutValue() const + .text._ZN3nvs4Item14calculateCrc32EPKhj + 0x4201d304 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4201d304 nvs::Item::calculateCrc32(unsigned char const*, unsigned int) + .text._ZNK3nvs4Item22checkHeaderConsistencyEh + 0x4201d318 0x104 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x108 (size before relaxing) + 0x4201d318 nvs::Item::checkHeaderConsistency(unsigned char) const + .text._ZN3nvs4LockC2Ev + 0x4201d41c 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x4201d41c nvs::Lock::Lock() + 0x4201d41c nvs::Lock::Lock() + *fill* 0x4201d42a 0x2 + .text._ZN3nvs4LockD2Ev + 0x4201d42c 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x4201d42c nvs::Lock::~Lock() + 0x4201d42c nvs::Lock::~Lock() + *fill* 0x4201d43a 0x2 + .text._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x4201d43c 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4a (size before relaxing) + 0x4201d43c nvs::HashList::find(unsigned int, nvs::Item const&) + *fill* 0x4201d482 0x2 + .text._ZN3nvs8HashList5clearEv + 0x4201d484 0x23 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4201d484 nvs::HashList::clear() + *fill* 0x4201d4a7 0x1 + .text._ZN3nvs8HashListD2Ev + 0x4201d4a8 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0xe (size before relaxing) + 0x4201d4a8 nvs::HashList::~HashList() + 0x4201d4a8 nvs::HashList::~HashList() + *fill* 0x4201d4b2 0x2 + .text._ZN3nvs8HashList5eraseEj + 0x4201d4b4 0x6e esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4201d4b4 nvs::HashList::erase(unsigned int) + *fill* 0x4201d522 0x2 + .text._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x4201d524 0x6d esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x71 (size before relaxing) + 0x4201d524 nvs::HashList::insert(nvs::Item const&, unsigned int) + *fill* 0x4201d591 0x3 + .text._ZZN3nvs11PageManager4loadEPNS_9PartitionEmmENKUlRKNS_4PageEE_clES5_ + 0x4201d594 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x4201d5b9 0x3 + .text._ZSt9__find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_EEET_SF_SF_T0_St18input_iterator_tag + 0x4201d5bc 0x1b esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x4201d5d7 0x1 + .text._ZSt7find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_ET_SB_SB_T0_ + 0x4201d5d8 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x4201d5ed 0x3 + .text._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x4201d5f0 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4201d5f0 intrusive_list::clear() + *fill* 0x4201d605 0x3 + .text._ZN3nvs11PageManager12activatePageEv + 0x4201d608 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4e (size before relaxing) + 0x4201d608 nvs::PageManager::activatePage() + *fill* 0x4201d652 0x2 + .text._ZN3nvs11PageManager14requestNewPageEv + 0x4201d654 0xae esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0xba (size before relaxing) + 0x4201d654 nvs::PageManager::requestNewPage() + *fill* 0x4201d702 0x2 + .text._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x4201d704 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4201d704 intrusive_list::insert(intrusive_list::iterator, nvs::Page*) + .text._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x4201d73c 0x24a esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x272 (size before relaxing) + 0x4201d73c nvs::PageManager::load(nvs::Partition*, unsigned long, unsigned long) + *fill* 0x4201d986 0x2 + .text._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + 0x4201d988 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x49 (size before relaxing) + 0x4201d988 nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::NVSPartition**) + *fill* 0x4201d9cd 0x3 + .text.create_addrinfo + 0x4201d9d0 0x145 esp-idf/lwip/liblwip.a(netdb.c.obj) + *fill* 0x4201db15 0x3 + .text.lwip_freeaddrinfo + 0x4201db18 0x19 esp-idf/lwip/liblwip.a(netdb.c.obj) + 0x4201db18 lwip_freeaddrinfo + *fill* 0x4201db31 0x3 + .text.lwip_getaddrinfo + 0x4201db34 0x281 esp-idf/lwip/liblwip.a(netdb.c.obj) + 0x289 (size before relaxing) + 0x4201db34 lwip_getaddrinfo + *fill* 0x4201ddb5 0x3 + .text.tryget_socket_unconn_nouse + 0x4201ddb8 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.free_socket_locked + 0x4201ddd4 0x4b esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x4201de1f 0x1 + .text.sock_inc_used_locked + 0x4201de20 0x5d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x4201de7d 0x3 + .text.tryget_socket_unconn_locked + 0x4201de80 0x26 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2a (size before relaxing) + *fill* 0x4201dea6 0x2 + .text.lwip_sockopt_to_ipopt + 0x4201dea8 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.sock_inc_used + 0x4201dec8 0x4f esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x52 (size before relaxing) + *fill* 0x4201df17 0x1 + .text.tryget_socket_unconn + 0x4201df18 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .text.alloc_socket + 0x4201df30 0xac esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xb4 (size before relaxing) + .text.lwip_select_inc_sockets_used_set + 0x4201dfdc 0x5c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x60 (size before relaxing) + .text.lwip_select_inc_sockets_used + 0x4201e038 0x32 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x3a (size before relaxing) + *fill* 0x4201e06a 0x2 + .text.lwip_link_select_cb + 0x4201e06c 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_unlink_select_cb + 0x4201e09c 0x6b esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x4201e107 0x1 + .text.sockaddr_to_ipaddr_port + 0x4201e108 0x7f esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x4201e187 0x1 + .text.lwip_sock_make_addr + 0x4201e188 0xfc esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_recv_tcp_from + 0x4201e284 0x3d esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x41 (size before relaxing) + *fill* 0x4201e2c1 0x3 + .text.free_socket_free_elements + 0x4201e2c4 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x26 (size before relaxing) + *fill* 0x4201e2e3 0x1 + .text.free_socket + 0x4201e2e4 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .text.done_socket + 0x4201e30c 0x82 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8a (size before relaxing) + *fill* 0x4201e38e 0x2 + .text.tryget_socket + 0x4201e390 0x1a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1e (size before relaxing) + *fill* 0x4201e3aa 0x2 + .text.get_socket + 0x4201e3ac 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .text.lwip_selscan + 0x4201e3c4 0x218 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x224 (size before relaxing) + .text.lwip_select_dec_sockets_used + 0x4201e5dc 0x4b esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4f (size before relaxing) + *fill* 0x4201e627 0x1 + .text.lwip_socket_register_membership + 0x4201e628 0x51 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x59 (size before relaxing) + *fill* 0x4201e679 0x3 + .text.lwip_socket_unregister_membership + 0x4201e67c 0x5c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x63 (size before relaxing) + *fill* 0x4201e6d8 0x0 + .text.lwip_socket_register_mld6_membership + 0x4201e6d8 0x66 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x6a (size before relaxing) + *fill* 0x4201e73e 0x2 + .text.lwip_socket_unregister_mld6_membership + 0x4201e740 0xa7 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xae (size before relaxing) + *fill* 0x4201e7e7 0x1 + .text.lwip_socket_drop_registered_memberships + 0x4201e7e8 0x6a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x76 (size before relaxing) + *fill* 0x4201e852 0x2 + .text.lwip_socket_drop_registered_mld6_memberships + 0x4201e854 0x72 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x7a (size before relaxing) + *fill* 0x4201e8c6 0x2 + .text.lwip_recv_tcp + 0x4201e8c8 0x154 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x168 (size before relaxing) + .text.lwip_recvfrom_udp_raw + 0x4201ea1c 0xd8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xe0 (size before relaxing) + .text.select_check_waiters + 0x4201eaf4 0xfa esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x112 (size before relaxing) + *fill* 0x4201ebee 0x2 + .text.event_callback + 0x4201ebf0 0xf0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x100 (size before relaxing) + .text.lwip_getsockopt_impl + 0x4201ece0 0x54e esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x586 (size before relaxing) + *fill* 0x4201f22e 0x2 + .text.lwip_getsockopt_callback + 0x4201f230 0x32 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x36 (size before relaxing) + *fill* 0x4201f262 0x2 + .text.lwip_setsockopt_impl + 0x4201f264 0x73a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x772 (size before relaxing) + *fill* 0x4201f99e 0x2 + .text.lwip_setsockopt_callback + 0x4201f9a0 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .text.lwip_close + 0x4201f9d0 0x85 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x9d (size before relaxing) + 0x4201f9d0 lwip_close + *fill* 0x4201fa55 0x3 + .text.lwip_connect + 0x4201fa58 0x114 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x134 (size before relaxing) + 0x4201fa58 lwip_connect + .text.lwip_recvfrom + 0x4201fb6c 0xce esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xe2 (size before relaxing) + 0x4201fb6c lwip_recvfrom + *fill* 0x4201fc3a 0x2 + .text.lwip_read + 0x4201fc3c 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4201fc3c lwip_read + *fill* 0x4201fc55 0x3 + .text.lwip_recv + 0x4201fc58 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4201fc58 lwip_recv + *fill* 0x4201fc71 0x3 + .text.lwip_sendto + 0x4201fc74 0x184 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1a0 (size before relaxing) + 0x4201fc74 lwip_sendto + .text.lwip_send + 0x4201fdf8 0x8e esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x9e (size before relaxing) + 0x4201fdf8 lwip_send + *fill* 0x4201fe86 0x2 + .text.lwip_socket + 0x4201fe88 0xcd esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xd8 (size before relaxing) + 0x4201fe88 lwip_socket + *fill* 0x4201ff55 0x3 + .text.lwip_write + 0x4201ff58 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4201ff58 lwip_write + *fill* 0x4201ff6d 0x3 + .text.lwip_select + 0x4201ff70 0x3c1 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x3f5 (size before relaxing) + 0x4201ff70 lwip_select + *fill* 0x42020331 0x3 + .text.lwip_shutdown + 0x42020334 0xb2 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc2 (size before relaxing) + 0x42020334 lwip_shutdown + *fill* 0x420203e6 0x2 + .text.lwip_getsockopt + 0x420203e8 0xa6 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xba (size before relaxing) + 0x420203e8 lwip_getsockopt + *fill* 0x4202048e 0x2 + .text.lwip_setsockopt + 0x42020490 0x92 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xa6 (size before relaxing) + 0x42020490 lwip_setsockopt + *fill* 0x42020522 0x2 + .text.lwip_ioctl + 0x42020524 0x60 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x64 (size before relaxing) + 0x42020524 lwip_ioctl + .text.lwip_fcntl + 0x42020584 0xbc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc4 (size before relaxing) + 0x42020584 lwip_fcntl + .text.lwip_inet_pton + 0x42020640 0x42 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x46 (size before relaxing) + 0x42020640 lwip_inet_pton + *fill* 0x42020682 0x2 + .text.tcpip_timeouts_mbox_fetch + 0x42020684 0x36 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x46 (size before relaxing) + *fill* 0x420206ba 0x2 + .text.tcpip_thread_handle_msg + 0x420206bc 0xa6 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0xb2 (size before relaxing) + *fill* 0x42020762 0x2 + .text.tcpip_thread + 0x42020764 0x3e esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x49 (size before relaxing) + *fill* 0x420207a2 0x2 + .text.tcpip_inpkt + 0x420207a4 0x52 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5a (size before relaxing) + 0x420207a4 tcpip_inpkt + *fill* 0x420207f6 0x2 + .text.tcpip_input + 0x420207f8 0x27 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x2a (size before relaxing) + 0x420207f8 tcpip_input + *fill* 0x4202081f 0x1 + .text.tcpip_callback + 0x42020820 0x41 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x45 (size before relaxing) + 0x42020820 tcpip_callback + *fill* 0x42020861 0x3 + .text.tcpip_try_callback + 0x42020864 0x4f esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x57 (size before relaxing) + 0x42020864 tcpip_try_callback + *fill* 0x420208b3 0x1 + .text.tcpip_send_msg_wait_sem + 0x420208b4 0x56 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5a (size before relaxing) + 0x420208b4 tcpip_send_msg_wait_sem + *fill* 0x4202090a 0x2 + .text.tcpip_api_call + 0x4202090c 0x41 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x49 (size before relaxing) + 0x4202090c tcpip_api_call + *fill* 0x4202094d 0x3 + .text.tcpip_init + 0x42020950 0x43 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x47 (size before relaxing) + 0x42020950 tcpip_init + *fill* 0x42020993 0x1 + .text.lwip_init + 0x42020994 0x29 esp-idf/lwip/liblwip.a(init.c.obj) + 0x3b (size before relaxing) + 0x42020994 lwip_init + *fill* 0x420209bd 0x3 + .text.ipaddr_aton + 0x420209c0 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x4b (size before relaxing) + 0x420209c0 ipaddr_aton + *fill* 0x42020a04 0x0 + .text.ip_input + 0x42020a04 0x2d esp-idf/lwip/liblwip.a(ip.c.obj) + 0x31 (size before relaxing) + 0x42020a04 ip_input + *fill* 0x42020a31 0x3 + .text.mem_malloc + 0x42020a34 0x37 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x3f (size before relaxing) + 0x42020a34 mem_malloc + *fill* 0x42020a6b 0x1 + .text.mem_free + 0x42020a6c 0x3d esp-idf/lwip/liblwip.a(mem.c.obj) + 0x42020a6c mem_free + *fill* 0x42020aa9 0x3 + .text.mem_calloc + 0x42020aac 0x11 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x42020aac mem_calloc + *fill* 0x42020abd 0x3 + .text.do_memp_malloc_pool + 0x42020ac0 0x66 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x6e (size before relaxing) + *fill* 0x42020b26 0x2 + .text.do_memp_free_pool + 0x42020b28 0x38 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x40 (size before relaxing) + .text.memp_malloc + 0x42020b60 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x42020b60 memp_malloc + .text.memp_free + 0x42020b80 0x1c esp-idf/lwip/liblwip.a(memp.c.obj) + 0x42020b80 memp_free + .text.netif_loopif_init + 0x42020b9c 0x34 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_do_set_netmask + 0x42020bd0 0x6a esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x42020c3a 0x2 + .text.netif_do_set_gw + 0x42020c3c 0x6c esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_do_ip_addr_changed + 0x42020ca8 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .text.netif_issue_reports + 0x42020cc4 0x3f esp-idf/lwip/liblwip.a(netif.c.obj) + 0x42 (size before relaxing) + *fill* 0x42020d03 0x1 + .text.netif_do_set_ipaddr + 0x42020d04 0x95 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x9d (size before relaxing) + *fill* 0x42020d99 0x3 + .text.netif_poll + 0x42020d9c 0xbe esp-idf/lwip/liblwip.a(netif.c.obj) + 0xd0 (size before relaxing) + 0x42020d9c netif_poll + *fill* 0x42020e5a 0x2 + .text.netif_set_default + 0x42020e5c 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + 0x42020e5c netif_set_default + *fill* 0x42020e66 0x2 + .text.netif_loop_output + 0x42020e68 0xe8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x104 (size before relaxing) + 0x42020e68 netif_loop_output + .text.netif_loop_output_ipv6 + 0x42020f50 0x11 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x42020f61 0x3 + .text.netif_loop_output_ipv4 + 0x42020f64 0x11 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x42020f75 0x3 + .text.netif_get_ip6_addr_match + 0x42020f78 0xa2 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x42020f78 netif_get_ip6_addr_match + *fill* 0x4202101a 0x2 + .text.netif_get_by_index + 0x4202101c 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4202101c netif_get_by_index + .text.netif_find + 0x42021044 0x4c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x42021044 netif_find + .text.netif_add_ext_callback + 0x42021090 0x39 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x42021090 netif_add_ext_callback + *fill* 0x420210c9 0x3 + .text.netif_remove_ext_callback + 0x420210cc 0x5e esp-idf/lwip/liblwip.a(netif.c.obj) + 0x420210cc netif_remove_ext_callback + *fill* 0x4202112a 0x2 + .text.netif_invoke_ext_callback + 0x4202112c 0x35 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4202112c netif_invoke_ext_callback + *fill* 0x42021161 0x3 + .text.netif_set_addr + 0x42021164 0xbc esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc0 (size before relaxing) + 0x42021164 netif_set_addr + .text.netif_add + 0x42021220 0x1e6 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1f2 (size before relaxing) + 0x42021220 netif_add + *fill* 0x42021406 0x2 + .text.netif_set_up + 0x42021408 0x32 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x36 (size before relaxing) + 0x42021408 netif_set_up + *fill* 0x4202143a 0x2 + .text.netif_set_down + 0x4202143c 0x38 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3c (size before relaxing) + 0x4202143c netif_set_down + .text.netif_remove + 0x42021474 0x9d esp-idf/lwip/liblwip.a(netif.c.obj) + 0xa5 (size before relaxing) + 0x42021474 netif_remove + *fill* 0x42021511 0x3 + .text.netif_set_link_up + 0x42021514 0x3a esp-idf/lwip/liblwip.a(netif.c.obj) + 0x42 (size before relaxing) + 0x42021514 netif_set_link_up + *fill* 0x4202154e 0x2 + .text.netif_init + 0x42021550 0x56 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x5e (size before relaxing) + 0x42021550 netif_init + *fill* 0x420215a6 0x2 + .text.netif_set_link_down + 0x420215a8 0x2e esp-idf/lwip/liblwip.a(netif.c.obj) + 0x36 (size before relaxing) + 0x420215a8 netif_set_link_down + *fill* 0x420215d6 0x2 + .text.netif_ip6_addr_set_parts + 0x420215d8 0x12a esp-idf/lwip/liblwip.a(netif.c.obj) + 0x12e (size before relaxing) + 0x420215d8 netif_ip6_addr_set_parts + *fill* 0x42021702 0x2 + .text.netif_ip6_addr_set + 0x42021704 0x43 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x42021704 netif_ip6_addr_set + *fill* 0x42021747 0x1 + .text.netif_ip6_addr_set_state + 0x42021748 0xc0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc8 (size before relaxing) + 0x42021748 netif_ip6_addr_set_state + .text.pbuf_add_header_impl + 0x42021808 0x78 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_pool_is_empty + 0x42021880 0x3c esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4c (size before relaxing) + .text.pbuf_free_ooseq + 0x420218bc 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3b (size before relaxing) + *fill* 0x420218ef 0x1 + .text.pbuf_free_ooseq_callback + 0x420218f0 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xb (size before relaxing) + *fill* 0x420218f8 0x0 + .text.pbuf_alloc_reference + 0x420218f8 0x4a esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x420218f8 pbuf_alloc_reference + *fill* 0x42021942 0x2 + .text.pbuf_alloced_custom + 0x42021944 0x38 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x42021944 pbuf_alloced_custom + .text.pbuf_add_header + 0x4202197c 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x4202197c pbuf_add_header + .text.pbuf_add_header_force + 0x4202198c 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x4202198c pbuf_add_header_force + .text.pbuf_remove_header + 0x4202199c 0x52 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4202199c pbuf_remove_header + *fill* 0x420219ee 0x2 + .text.pbuf_header_impl + 0x420219f0 0x23 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x26 (size before relaxing) + *fill* 0x42021a13 0x1 + .text.pbuf_header_force + 0x42021a14 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x42021a14 pbuf_header_force + .text.pbuf_free + 0x42021a28 0xbb esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xcb (size before relaxing) + 0x42021a28 pbuf_free + *fill* 0x42021ae3 0x1 + .text.pbuf_alloc + 0x42021ae4 0x14c esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x154 (size before relaxing) + 0x42021ae4 pbuf_alloc + .text.pbuf_realloc + 0x42021c30 0xb6 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x42021c30 pbuf_realloc + *fill* 0x42021ce6 0x2 + .text.pbuf_free_header + 0x42021ce8 0x3e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x42 (size before relaxing) + 0x42021ce8 pbuf_free_header + *fill* 0x42021d26 0x2 + .text.pbuf_ref + 0x42021d28 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x32 (size before relaxing) + 0x42021d28 pbuf_ref + *fill* 0x42021d56 0x2 + .text.pbuf_cat + 0x42021d58 0x51 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x42021d58 pbuf_cat + *fill* 0x42021da9 0x3 + .text.pbuf_chain + 0x42021dac 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x17 (size before relaxing) + 0x42021dac pbuf_chain + *fill* 0x42021dbf 0x1 + .text.pbuf_copy_partial_pbuf + 0x42021dc0 0x119 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x42021dc0 pbuf_copy_partial_pbuf + *fill* 0x42021ed9 0x3 + .text.pbuf_copy + 0x42021edc 0x1e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x42021edc pbuf_copy + *fill* 0x42021efa 0x2 + .text.pbuf_copy_partial + 0x42021efc 0x72 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x42021efc pbuf_copy_partial + *fill* 0x42021f6e 0x2 + .text.pbuf_skip + 0x42021f70 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x42021f70 pbuf_skip + .text.pbuf_take + 0x42021f84 0x7a esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x42021f84 pbuf_take + *fill* 0x42021ffe 0x2 + .text.pbuf_take_at + 0x42022000 0x7e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x82 (size before relaxing) + 0x42022000 pbuf_take_at + *fill* 0x4202207e 0x2 + .text.pbuf_clone + 0x42022080 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x32 (size before relaxing) + 0x42022080 pbuf_clone + *fill* 0x420220ae 0x2 + .text.pbuf_try_get_at + 0x420220b0 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x420220b0 pbuf_try_get_at + *fill* 0x420220de 0x2 + .text.pbuf_get_at + 0x420220e0 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + 0x420220e0 pbuf_get_at + .text.pbuf_put_at + 0x420220f8 0x24 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x28 (size before relaxing) + 0x420220f8 pbuf_put_at + .text.raw_input_local_match + 0x4202211c 0xf6 esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x42022212 0x2 + .text.raw_input + 0x42022214 0x100 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x42022214 raw_input + .text.raw_connect + 0x42022314 0xd9 esp-idf/lwip/liblwip.a(raw.c.obj) + 0xdd (size before relaxing) + 0x42022314 raw_connect + *fill* 0x420223ed 0x3 + .text.raw_sendto_if_src + 0x420223f0 0x232 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x242 (size before relaxing) + 0x420223f0 raw_sendto_if_src + *fill* 0x42022622 0x2 + .text.raw_sendto + 0x42022624 0x129 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x42022624 raw_sendto + *fill* 0x4202274d 0x3 + .text.raw_send + 0x42022750 0x14 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x42022750 raw_send + .text.raw_remove + 0x42022764 0x36 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x3a (size before relaxing) + 0x42022764 raw_remove + *fill* 0x4202279a 0x2 + .text.raw_new 0x4202279c 0x32 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4202279c raw_new + *fill* 0x420227ce 0x2 + .text.raw_new_ip_type + 0x420227d0 0x18 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x1b (size before relaxing) + 0x420227d0 raw_new_ip_type + *fill* 0x420227e8 0x0 + .text.raw_netif_ip_addr_changed + 0x420227e8 0xc3 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x420227e8 raw_netif_ip_addr_changed + *fill* 0x420228ab 0x1 + .text.tcp_new_port + 0x420228ac 0x6a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x42022916 0x2 + .text.tcp_remove_listener + 0x42022918 0x2b esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x42022943 0x1 + .text.tcp_listen_closed + 0x42022944 0x45 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x49 (size before relaxing) + *fill* 0x42022989 0x3 + .text.tcp_free_listen + 0x4202298c 0x23 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x26 (size before relaxing) + *fill* 0x420229af 0x1 + .text.tcp_init + 0x420229b0 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x420229b0 tcp_init + *fill* 0x420229c7 0x1 + .text.tcp_free + 0x420229c8 0x23 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x26 (size before relaxing) + 0x420229c8 tcp_free + *fill* 0x420229eb 0x1 + .text.tcp_backlog_accepted + 0x420229ec 0x4d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x420229ec tcp_backlog_accepted + *fill* 0x42022a39 0x3 + .text.tcp_close_shutdown_fin + 0x42022a3c 0x82 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8a (size before relaxing) + *fill* 0x42022abe 0x2 + .text.tcp_handle_closepend + 0x42022ac0 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x42022ae9 0x3 + .text.tcp_update_rcv_ann_wnd + 0x42022aec 0x6f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x42022aec tcp_update_rcv_ann_wnd + *fill* 0x42022b5b 0x1 + .text.tcp_recved + 0x42022b5c 0x5f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x63 (size before relaxing) + 0x42022b5c tcp_recved + *fill* 0x42022bbb 0x1 + .text.tcp_seg_free + 0x42022bbc 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + 0x42022bbc tcp_seg_free + .text.tcp_segs_free + 0x42022bd4 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x42022bd4 tcp_segs_free + *fill* 0x42022beb 0x1 + .text.tcp_seg_copy + 0x42022bec 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3a (size before relaxing) + 0x42022bec tcp_seg_copy + *fill* 0x42022c22 0x2 + .text.tcp_recv + 0x42022c24 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x42022c24 tcp_recv + *fill* 0x42022c46 0x2 + .text.tcp_sent + 0x42022c48 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x42022c48 tcp_sent + *fill* 0x42022c6a 0x2 + .text.tcp_err 0x42022c6c 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x42022c6c tcp_err + *fill* 0x42022c8e 0x2 + .text.tcp_poll + 0x42022c90 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x42022c90 tcp_poll + .text.tcp_next_iss + 0x42022cb8 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x2c (size before relaxing) + 0x42022cb8 tcp_next_iss + *fill* 0x42022ce1 0x3 + .text.tcp_eff_send_mss_netif + 0x42022ce4 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x57 (size before relaxing) + 0x42022ce4 tcp_eff_send_mss_netif + *fill* 0x42022d37 0x1 + .text.tcp_connect + 0x42022d38 0x2a2 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x2b2 (size before relaxing) + 0x42022d38 tcp_connect + *fill* 0x42022fda 0x2 + .text.tcp_free_ooseq + 0x42022fdc 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x16 (size before relaxing) + 0x42022fdc tcp_free_ooseq + *fill* 0x42022fee 0x2 + .text.tcp_pcb_purge + 0x42022ff0 0x5e esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x66 (size before relaxing) + 0x42022ff0 tcp_pcb_purge + *fill* 0x4202304e 0x2 + .text.tcp_pcb_remove + 0x42023050 0xd1 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xd9 (size before relaxing) + 0x42023050 tcp_pcb_remove + *fill* 0x42023121 0x3 + .text.tcp_abandon + 0x42023124 0xd6 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xee (size before relaxing) + 0x42023124 tcp_abandon + *fill* 0x420231fa 0x2 + .text.tcp_abort + 0x420231fc 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x420231fc tcp_abort + *fill* 0x4202320b 0x1 + .text.tcp_kill_timewait + 0x4202320c 0x2f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x32 (size before relaxing) + *fill* 0x4202323b 0x1 + .text.tcp_kill_prio + 0x4202323c 0x58 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5b (size before relaxing) + *fill* 0x42023294 0x0 + .text.tcp_netif_ip_addr_changed_pcblist + 0x42023294 0x69 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x420232fd 0x3 + .text.tcp_netif_ip_addr_changed + 0x42023300 0xd7 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xdf (size before relaxing) + 0x42023300 tcp_netif_ip_addr_changed + *fill* 0x420233d7 0x1 + .text.tcp_kill_state + 0x420233d8 0x3a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x42023412 0x2 + .text.tcp_alloc + 0x42023414 0xce esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xfe (size before relaxing) + 0x42023414 tcp_alloc + *fill* 0x420234e2 0x2 + .text.tcp_new_ip_type + 0x420234e4 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x420234e4 tcp_new_ip_type + *fill* 0x420234fe 0x2 + .text.tcp_close_shutdown + 0x42023500 0x155 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x165 (size before relaxing) + *fill* 0x42023655 0x3 + .text.tcp_close_ext + 0x42023658 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x2d (size before relaxing) + 0x42023658 tcp_close_ext + *fill* 0x42023681 0x3 + .text.tcp_close + 0x42023684 0x11 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x42023684 tcp_close + *fill* 0x42023695 0x3 + .text.tcp_recv_null + 0x42023698 0x32 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3a (size before relaxing) + 0x42023698 tcp_recv_null + *fill* 0x420236ca 0x2 + .text.tcp_process_refused_data + 0x420236cc 0x83 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x420236cc tcp_process_refused_data + *fill* 0x4202374f 0x1 + .text.tcp_fasttmr + 0x42023750 0x85 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x89 (size before relaxing) + 0x42023750 tcp_fasttmr + *fill* 0x420237d5 0x3 + .text.tcp_shutdown + 0x420237d8 0x71 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x75 (size before relaxing) + 0x420237d8 tcp_shutdown + *fill* 0x42023849 0x3 + .text.tcp_slowtmr + 0x4202384c 0x481 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x491 (size before relaxing) + 0x4202384c tcp_slowtmr + *fill* 0x42023ccd 0x3 + .text.tcp_tmr 0x42023cd0 0x1c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x22 (size before relaxing) + 0x42023cd0 tcp_tmr + *fill* 0x42023cec 0x0 + .text.tcp_get_next_optbyte + 0x42023cec 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text.tcp_parseopt + 0x42023d2c 0xa2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xb1 (size before relaxing) + *fill* 0x42023dce 0x2 + .text.tcp_input_delayed_close + 0x42023dd0 0x4d esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x51 (size before relaxing) + *fill* 0x42023e1d 0x3 + .text.tcp_timewait_input + 0x42023e20 0xa6 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xaa (size before relaxing) + *fill* 0x42023ec6 0x2 + .text.tcp_listen_input + 0x42023ec8 0x1f7 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x216 (size before relaxing) + *fill* 0x420240bf 0x1 + .text.tcp_oos_insert_segment + 0x420240c0 0xfc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x100 (size before relaxing) + .text.tcp_free_acked_segments + 0x420241bc 0xd6 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x42024292 0x2 + .text.tcp_receive + 0x42024294 0xcc2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xd06 (size before relaxing) + *fill* 0x42024f56 0x2 + .text.tcp_process + 0x42024f58 0x64e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x67a (size before relaxing) + *fill* 0x420255a6 0x2 + .text.tcp_input + 0x420255a8 0x89f esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x8ce (size before relaxing) + 0x420255a8 tcp_input + *fill* 0x42025e47 0x1 + .text.tcp_trigger_input_pcb_close + 0x42025e48 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x42025e48 tcp_trigger_input_pcb_close + *fill* 0x42025e5b 0x1 + .text.tcp_write_checks + 0x42025e5c 0xc0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_output_segment_busy + 0x42025f1c 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x42025f45 0x3 + .text.tcp_output_fill_options + 0x42025f48 0x2f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x42025f77 0x1 + .text.tcp_pbuf_prealloc + 0x42025f78 0x66 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x42025fde 0x2 + .text.tcp_create_segment + 0x42025fe0 0x105 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x10d (size before relaxing) + *fill* 0x420260e5 0x3 + .text.tcp_output_alloc_header_common + 0x420260e8 0xdb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xdf (size before relaxing) + *fill* 0x420261c3 0x1 + .text.tcp_output_alloc_header + 0x420261c4 0x4a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x4202620e 0x2 + .text.tcp_rst_common + 0x42026210 0x6a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x6e (size before relaxing) + *fill* 0x4202627a 0x2 + .text.tcp_route + 0x4202627c 0x39 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x420262b5 0x3 + .text.tcp_output_segment + 0x420262b8 0x1a5 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1ad (size before relaxing) + *fill* 0x4202645d 0x3 + .text.tcp_output_control_segment_netif + 0x42026460 0x76 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x7e (size before relaxing) + *fill* 0x420264d6 0x2 + .text.tcp_output_control_segment + 0x420264d8 0x44 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x48 (size before relaxing) + .text.tcp_write + 0x4202651c 0x2e5 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2f1 (size before relaxing) + 0x4202651c tcp_write + *fill* 0x42026801 0x3 + .text.tcp_split_unsent_seg + 0x42026804 0x1d9 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1e9 (size before relaxing) + 0x42026804 tcp_split_unsent_seg + *fill* 0x420269dd 0x3 + .text.tcp_enqueue_flags + 0x420269e0 0x144 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x420269e0 tcp_enqueue_flags + .text.tcp_send_fin + 0x42026b24 0x80 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x42026b24 tcp_send_fin + .text.tcp_rexmit_rto_prepare + 0x42026ba4 0xc5 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xcd (size before relaxing) + 0x42026ba4 tcp_rexmit_rto_prepare + *fill* 0x42026c69 0x3 + .text.tcp_rexmit + 0x42026c6c 0xc1 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc5 (size before relaxing) + 0x42026c6c tcp_rexmit + *fill* 0x42026d2d 0x3 + .text.tcp_rexmit_fast + 0x42026d30 0x62 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x66 (size before relaxing) + 0x42026d30 tcp_rexmit_fast + *fill* 0x42026d92 0x2 + .text.tcp_rst 0x42026d94 0x2a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2e (size before relaxing) + 0x42026d94 tcp_rst + *fill* 0x42026dbe 0x2 + .text.tcp_rst_netif + 0x42026dc0 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x32 (size before relaxing) + 0x42026dc0 tcp_rst_netif + *fill* 0x42026dee 0x2 + .text.tcp_send_empty_ack + 0x42026df0 0x82 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x86 (size before relaxing) + 0x42026df0 tcp_send_empty_ack + *fill* 0x42026e72 0x2 + .text.tcp_output + 0x42026e74 0x3e9 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x42026e74 tcp_output + *fill* 0x4202725d 0x3 + .text.tcp_rexmit_rto_commit + 0x42027260 0x2d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x30 (size before relaxing) + 0x42027260 tcp_rexmit_rto_commit + *fill* 0x4202728d 0x3 + .text.tcp_rexmit_rto + 0x42027290 0x28 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2c (size before relaxing) + 0x42027290 tcp_rexmit_rto + .text.tcp_keepalive + 0x420272b8 0x56 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x5e (size before relaxing) + 0x420272b8 tcp_keepalive + *fill* 0x4202730e 0x2 + .text.tcp_zero_window_probe + 0x42027310 0x131 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x139 (size before relaxing) + 0x42027310 tcp_zero_window_probe + *fill* 0x42027441 0x3 + .text.sys_timeout_abs + 0x42027444 0x61 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x65 (size before relaxing) + *fill* 0x420274a5 0x3 + .text.lwip_cyclic_timer + 0x420274a8 0x37 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x3e (size before relaxing) + *fill* 0x420274df 0x1 + .text.sys_timeout + 0x420274e0 0x2b esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x2f (size before relaxing) + 0x420274e0 sys_timeout + *fill* 0x4202750b 0x1 + .text.tcp_timer_needed + 0x4202750c 0x2f esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x4202750c tcp_timer_needed + *fill* 0x4202753b 0x1 + .text.tcpip_tcp_timer + 0x4202753c 0x2d esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x35 (size before relaxing) + *fill* 0x42027569 0x3 + .text.sys_timeouts_init + 0x4202756c 0x20 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x4202756c sys_timeouts_init + .text.sys_untimeout + 0x4202758c 0x3e esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42 (size before relaxing) + 0x4202758c sys_untimeout + *fill* 0x420275ca 0x2 + .text.sys_check_timeouts + 0x420275cc 0x3a esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42 (size before relaxing) + 0x420275cc sys_check_timeouts + *fill* 0x42027606 0x2 + .text.sys_timeouts_sleeptime + 0x42027608 0x3c esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42027608 sys_timeouts_sleeptime + .text.udp_new_port + 0x42027644 0x54 esp-idf/lwip/liblwip.a(udp.c.obj) + .text.udp_input_local_match + 0x42027698 0x13c esp-idf/lwip/liblwip.a(udp.c.obj) + .text.udp_init + 0x420277d4 0x17 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x420277d4 udp_init + *fill* 0x420277eb 0x1 + .text.udp_input + 0x420277ec 0x324 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x33f (size before relaxing) + 0x420277ec udp_input + *fill* 0x42027b10 0x0 + .text.udp_bind + 0x42027b10 0x23a esp-idf/lwip/liblwip.a(udp.c.obj) + 0x42027b10 udp_bind + *fill* 0x42027d4a 0x2 + .text.udp_sendto_if_src + 0x42027d4c 0x200 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x218 (size before relaxing) + 0x42027d4c udp_sendto_if_src + .text.udp_sendto_if + 0x42027f4c 0xdb esp-idf/lwip/liblwip.a(udp.c.obj) + 0x42027f4c udp_sendto_if + *fill* 0x42028027 0x1 + .text.udp_sendto + 0x42028028 0x10f esp-idf/lwip/liblwip.a(udp.c.obj) + 0x117 (size before relaxing) + 0x42028028 udp_sendto + *fill* 0x42028137 0x1 + .text.udp_send + 0x42028138 0x35 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x39 (size before relaxing) + 0x42028138 udp_send + *fill* 0x4202816d 0x3 + .text.udp_connect + 0x42028170 0x10c esp-idf/lwip/liblwip.a(udp.c.obj) + 0x110 (size before relaxing) + 0x42028170 udp_connect + .text.udp_disconnect + 0x4202827c 0x92 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4202827c udp_disconnect + *fill* 0x4202830e 0x2 + .text.udp_remove + 0x42028310 0x36 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3a (size before relaxing) + 0x42028310 udp_remove + *fill* 0x42028346 0x2 + .text.udp_new 0x42028348 0x20 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x24 (size before relaxing) + 0x42028348 udp_new + .text.udp_new_ip_type + 0x42028368 0x18 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x42028368 udp_new_ip_type + .text.udp_netif_ip_addr_changed + 0x42028380 0xc3 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x42028380 udp_netif_ip_addr_changed + *fill* 0x42028443 0x1 + .text.dhcp_option_short + 0x42028444 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x42028479 0x3 + .text.dhcp_option + 0x4202847c 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_option_byte + 0x420284b0 0x26 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x420284d6 0x2 + .text.dhcp_option_long + 0x420284d8 0x4f esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x42028527 0x1 + .text.dhcp_create_msg + 0x42028528 0x12c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x130 (size before relaxing) + .text.dhcp_option_hostname + 0x42028654 0x7a esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x420286ce 0x2 + .text.dhcp_option_trailer + 0x420286d0 0x3e esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x42 (size before relaxing) + *fill* 0x4202870e 0x2 + .text.dhcp_rebind + 0x42028710 0x113 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x133 (size before relaxing) + *fill* 0x42028823 0x1 + .text.dhcp_t2_timeout + 0x42028824 0x2a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2e (size before relaxing) + *fill* 0x4202884e 0x2 + .text.dhcp_reboot + 0x42028850 0x133 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x15f (size before relaxing) + *fill* 0x42028983 0x1 + .text.dhcp_select + 0x42028984 0x176 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1a6 (size before relaxing) + *fill* 0x42028afa 0x2 + .text.dhcp_handle_offer + 0x42028afc 0x60 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_discover + 0x42028b5c 0x115 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x135 (size before relaxing) + *fill* 0x42028c71 0x3 + .text.dhcp_decline + 0x42028c74 0x89 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xa1 (size before relaxing) + *fill* 0x42028cfd 0x3 + .text.dhcp_bind + 0x42028d00 0xc2 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x42028dc2 0x2 + .text.dhcp_conflict_callback + 0x42028dc4 0x6e esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x76 (size before relaxing) + *fill* 0x42028e32 0x2 + .text.dhcp_handle_nak + 0x42028e34 0x23 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x27 (size before relaxing) + *fill* 0x42028e57 0x1 + .text.dhcp_dec_pcb_refcount + 0x42028e58 0x3b esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x42028e93 0x1 + .text.dhcp_inc_pcb_refcount + 0x42028e94 0x75 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x7d (size before relaxing) + *fill* 0x42028f09 0x3 + .text.dhcp_parse_reply + 0x42028f0c 0x37d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x381 (size before relaxing) + *fill* 0x42029289 0x3 + .text.dhcp_check + 0x4202928c 0x20 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_handle_ack + 0x420292ac 0x112 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x420293be 0x2 + .text.dhcp_recv + 0x420293c0 0x149 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x158 (size before relaxing) + *fill* 0x42029509 0x3 + .text.dhcp_cleanup + 0x4202950c 0x30 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4202950c dhcp_cleanup + .text.dhcp_network_changed_link_up + 0x4202953c 0x4b esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4e (size before relaxing) + 0x4202953c dhcp_network_changed_link_up + *fill* 0x42029587 0x1 + .text.dhcp_renew + 0x42029588 0x113 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x133 (size before relaxing) + 0x42029588 dhcp_renew + *fill* 0x4202969b 0x1 + .text.dhcp_t1_timeout + 0x4202969c 0x2a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2e (size before relaxing) + *fill* 0x420296c6 0x2 + .text.dhcp_release_and_stop + 0x420296c8 0x13c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x15b (size before relaxing) + 0x420296c8 dhcp_release_and_stop + *fill* 0x42029804 0x0 + .text.dhcp_start + 0x42029804 0xca esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xda (size before relaxing) + 0x42029804 dhcp_start + *fill* 0x420298ce 0x2 + .text.dhcp_coarse_tmr + 0x420298d0 0x67 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x6b (size before relaxing) + 0x420298d0 dhcp_coarse_tmr + *fill* 0x42029937 0x1 + .text.dhcp_timeout + 0x42029938 0x76 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x7e (size before relaxing) + *fill* 0x420299ae 0x2 + .text.dhcp_fine_tmr + 0x420299b0 0x4f esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x56 (size before relaxing) + 0x420299b0 dhcp_fine_tmr + *fill* 0x420299ff 0x1 + .text.dhcp_fine_timeout_cb + 0x42029a00 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe (size before relaxing) + 0x42029a00 dhcp_fine_timeout_cb + *fill* 0x42029a0a 0x2 + .text.dhcp_release + 0x42029a0c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + 0x42029a0c dhcp_release + .text.dhcp_stop + 0x42029a18 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe (size before relaxing) + 0x42029a18 dhcp_stop + *fill* 0x42029a22 0x2 + .text.free_etharp_q + 0x42029a24 0x41 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x49 (size before relaxing) + *fill* 0x42029a65 0x3 + .text.etharp_free_entry + 0x42029a68 0x31 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x35 (size before relaxing) + *fill* 0x42029a99 0x3 + .text.etharp_find_entry + 0x42029a9c 0x199 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x19d (size before relaxing) + *fill* 0x42029c35 0x3 + .text.etharp_update_arp_entry + 0x42029c38 0xe8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xf0 (size before relaxing) + .text.etharp_raw + 0x42029d20 0xe2 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xee (size before relaxing) + *fill* 0x42029e02 0x2 + .text.etharp_request_dst + 0x42029e04 0x20 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x24 (size before relaxing) + .text.etharp_add_static_entry + 0x42029e24 0x21 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x25 (size before relaxing) + 0x42029e24 etharp_add_static_entry + *fill* 0x42029e45 0x3 + .text.etharp_remove_static_entry + 0x42029e48 0x31 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x39 (size before relaxing) + 0x42029e48 etharp_remove_static_entry + *fill* 0x42029e79 0x3 + .text.etharp_cleanup_netif + 0x42029e7c 0x32 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x42029e7c etharp_cleanup_netif + *fill* 0x42029eae 0x2 + .text.etharp_input + 0x42029eb0 0xd4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xe0 (size before relaxing) + 0x42029eb0 etharp_input + .text.etharp_request + 0x42029f84 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x42029f84 etharp_request + .text.etharp_tmr + 0x42029f98 0xa4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xa8 (size before relaxing) + 0x42029f98 etharp_tmr + .text.etharp_output_to_arp_index + 0x4202a03c 0xad esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x4202a0e9 0x3 + .text.etharp_query + 0x4202a0ec 0x1f4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x200 (size before relaxing) + 0x4202a0ec etharp_query + .text.etharp_output + 0x4202a2e0 0x159 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x15d (size before relaxing) + 0x4202a2e0 etharp_output + *fill* 0x4202a439 0x3 + .text.icmp_send_response + 0x4202a43c 0xe4 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0xf4 (size before relaxing) + .text.icmp_input + 0x4202a520 0x1cb esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x1ea (size before relaxing) + 0x4202a520 icmp_input + *fill* 0x4202a6eb 0x1 + .text.icmp_dest_unreach + 0x4202a6ec 0x12 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x4202a6ec icmp_dest_unreach + *fill* 0x4202a6fe 0x2 + .text.igmp_start_timer + 0x4202a700 0x3e esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x42 (size before relaxing) + *fill* 0x4202a73e 0x2 + .text.igmp_delaying_member + 0x4202a740 0x22 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x26 (size before relaxing) + *fill* 0x4202a762 0x2 + .text.igmp_ip_output_if + 0x4202a764 0x2c esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x30 (size before relaxing) + .text.igmp_send + 0x4202a790 0xbf esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xca (size before relaxing) + *fill* 0x4202a84f 0x1 + .text.igmp_timeout + 0x4202a850 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x4202a876 0x2 + .text.igmp_init + 0x4202a878 0x15 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4202a878 igmp_init + *fill* 0x4202a88d 0x3 + .text.igmp_stop + 0x4202a890 0x31 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4202a890 igmp_stop + *fill* 0x4202a8c1 0x3 + .text.igmp_report_groups + 0x4202a8c4 0x1f esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4202a8c4 igmp_report_groups + *fill* 0x4202a8e3 0x1 + .text.igmp_lookup_group + 0x4202a8e4 0x86 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8a (size before relaxing) + *fill* 0x4202a96a 0x2 + .text.igmp_start + 0x4202a96c 0x36 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4202a96c igmp_start + *fill* 0x4202a9a2 0x2 + .text.igmp_input + 0x4202a9a4 0xfb esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10a (size before relaxing) + 0x4202a9a4 igmp_input + *fill* 0x4202aa9f 0x1 + .text.igmp_joingroup_netif + 0x4202aaa0 0x85 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x89 (size before relaxing) + 0x4202aaa0 igmp_joingroup_netif + *fill* 0x4202ab25 0x3 + .text.igmp_joingroup + 0x4202ab28 0x5c esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4202ab28 igmp_joingroup + .text.igmp_leavegroup_netif + 0x4202ab84 0x8d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x95 (size before relaxing) + 0x4202ab84 igmp_leavegroup_netif + *fill* 0x4202ac11 0x3 + .text.igmp_leavegroup + 0x4202ac14 0x59 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x5d (size before relaxing) + 0x4202ac14 igmp_leavegroup + *fill* 0x4202ac6d 0x3 + .text.igmp_tmr + 0x4202ac70 0x66 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4202ac70 igmp_tmr + *fill* 0x4202acd6 0x2 + .text.igmp_timeout_cb + 0x4202acd8 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xb (size before relaxing) + *fill* 0x4202ace0 0x0 + .text.ip4_input_accept + 0x4202ace0 0x34 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_route + 0x4202ad14 0x77 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4202ad14 ip4_route + *fill* 0x4202ad8b 0x1 + .text.ip4_route_src + 0x4202ad8c 0x1c esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x20 (size before relaxing) + 0x4202ad8c ip4_route_src + .text.ip4_input + 0x4202ada8 0x29b esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x2b6 (size before relaxing) + 0x4202ada8 ip4_input + *fill* 0x4202b043 0x1 + .text.ip4_output_if_opt_src + 0x4202b044 0x289 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x28d (size before relaxing) + 0x4202b044 ip4_output_if_opt_src + *fill* 0x4202b2cd 0x3 + .text.ip4_output_if_opt + 0x4202b2d0 0x34 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4202b2d0 ip4_output_if_opt + .text.ip4_output_if + 0x4202b304 0x26 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4202b304 ip4_output_if + *fill* 0x4202b32a 0x2 + .text.ip4_output_if_src + 0x4202b32c 0x26 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4202b32c ip4_output_if_src + *fill* 0x4202b352 0x2 + .text.ip4addr_aton + 0x4202b354 0x1cb esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x4202b354 ip4addr_aton + *fill* 0x4202b51f 0x1 + .text.ip4_frag + 0x4202b520 0x185 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x195 (size before relaxing) + 0x4202b520 ip4_frag + *fill* 0x4202b6a5 0x3 + .text.icmp6_send_response_with_addrs_and_netif + 0x4202b6a8 0xc3 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0xd3 (size before relaxing) + *fill* 0x4202b76b 0x1 + .text.icmp6_send_response + 0x4202b76c 0x3e esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x42 (size before relaxing) + *fill* 0x4202b7aa 0x2 + .text.icmp6_input + 0x4202b7ac 0xfb esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x126 (size before relaxing) + 0x4202b7ac icmp6_input + *fill* 0x4202b8a7 0x1 + .text.icmp6_dest_unreach + 0x4202b8a8 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x4202b8a8 icmp6_dest_unreach + .text.icmp6_param_problem + 0x4202b8bc 0x1a esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x4202b8bc icmp6_param_problem + *fill* 0x4202b8d6 0x2 + .text.ip6_input_accept + 0x4202b8d8 0x82 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x4202b95a 0x2 + .text.ip6_route + 0x4202b95c 0x27a esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x27e (size before relaxing) + 0x4202b95c ip6_route + *fill* 0x4202bbd6 0x2 + .text.ip6_select_source_address + 0x4202bbd8 0x18d esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4202bbd8 ip6_select_source_address + *fill* 0x4202bd65 0x3 + .text.ip6_input + 0x4202bd68 0x701 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x76d (size before relaxing) + 0x4202bd68 ip6_input + *fill* 0x4202c469 0x3 + .text.ip6_output_if_src + 0x4202c46c 0x351 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x361 (size before relaxing) + 0x4202c46c ip6_output_if_src + *fill* 0x4202c7bd 0x3 + .text.ip6_output_if + 0x4202c7c0 0x65 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4202c7c0 ip6_output_if + *fill* 0x4202c825 0x3 + .text.ip6_options_add_hbh_ra + 0x4202c828 0x3e esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x42 (size before relaxing) + 0x4202c828 ip6_options_add_hbh_ra + *fill* 0x4202c866 0x2 + .text.ip6addr_aton + 0x4202c868 0x1f0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x4202c868 ip6addr_aton + .text.ip6_frag + 0x4202ca58 0x151 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x161 (size before relaxing) + 0x4202ca58 ip6_frag + *fill* 0x4202cba9 0x3 + .text.mld6_delayed_report + 0x4202cbac 0x5a esp-idf/lwip/liblwip.a(mld6.c.obj) + *fill* 0x4202cc06 0x2 + .text.mld6_new_group + 0x4202cc08 0x50 esp-idf/lwip/liblwip.a(mld6.c.obj) + .text.mld6_send + 0x4202cc58 0x110 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x124 (size before relaxing) + .text.mld6_stop + 0x4202cd68 0x31 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4202cd68 mld6_stop + *fill* 0x4202cd99 0x3 + .text.mld6_report_groups + 0x4202cd9c 0x1b esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4202cd9c mld6_report_groups + *fill* 0x4202cdb7 0x1 + .text.mld6_input + 0x4202cdb8 0x17d esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x188 (size before relaxing) + 0x4202cdb8 mld6_input + *fill* 0x4202cf35 0x3 + .text.mld6_joingroup_netif + 0x4202cf38 0xe1 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xe5 (size before relaxing) + 0x4202cf38 mld6_joingroup_netif + *fill* 0x4202d019 0x3 + .text.mld6_joingroup + 0x4202d01c 0x47 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4202d01c mld6_joingroup + *fill* 0x4202d063 0x1 + .text.mld6_leavegroup_netif + 0x4202d064 0xd5 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xdd (size before relaxing) + 0x4202d064 mld6_leavegroup_netif + *fill* 0x4202d139 0x3 + .text.mld6_leavegroup + 0x4202d13c 0x43 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x47 (size before relaxing) + 0x4202d13c mld6_leavegroup + *fill* 0x4202d17f 0x1 + .text.mld6_tmr + 0x4202d180 0x72 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x76 (size before relaxing) + 0x4202d180 mld6_tmr + *fill* 0x4202d1f2 0x2 + .text.mld6_timeout_cb + 0x4202d1f4 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xb (size before relaxing) + *fill* 0x4202d1fc 0x0 + .text.nd6_find_neighbor_cache_entry + 0x4202d1fc 0x72 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x4202d26e 0x2 + .text.nd6_find_destination_cache_entry + 0x4202d270 0x74 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_new_destination_cache_entry + 0x4202d2e4 0x62 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x4202d346 0x2 + .text.nd6_is_prefix_in_netif + 0x4202d348 0xb9 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x4202d401 0x3 + .text.nd6_select_router + 0x4202d404 0xc0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_get_router + 0x4202d4c4 0x5a esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x4202d51e 0x2 + .text.nd6_get_onlink_prefix + 0x4202d520 0x60 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_new_onlink_prefix + 0x4202d580 0x86 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x4202d606 0x2 + .text.nd6_send_q + 0x4202d608 0x13e esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x142 (size before relaxing) + *fill* 0x4202d746 0x2 + .text.nd6_duplicate_addr_detected + 0x4202d748 0x42 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4a (size before relaxing) + *fill* 0x4202d78a 0x2 + .text.nd6_process_autoconfig_prefix + 0x4202d78c 0x22b esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x232 (size before relaxing) + *fill* 0x4202d9b7 0x1 + .text.nd6_free_q + 0x4202d9b8 0x66 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x6a (size before relaxing) + *fill* 0x4202da1e 0x2 + .text.nd6_free_neighbor_cache_entry + 0x4202da20 0x68 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_new_neighbor_cache_entry + 0x4202da88 0x1de esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1ea (size before relaxing) + *fill* 0x4202dc66 0x2 + .text.nd6_send_na + 0x4202dc68 0x15c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x168 (size before relaxing) + .text.nd6_send_rs + 0x4202ddc4 0xe5 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xf5 (size before relaxing) + *fill* 0x4202dea9 0x3 + .text.nd6_send_ns + 0x4202deac 0x198 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1a4 (size before relaxing) + .text.nd6_send_neighbor_cache_probe + 0x4202e044 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x12 (size before relaxing) + *fill* 0x4202e052 0x2 + .text.nd6_new_router + 0x4202e054 0x116 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x11e (size before relaxing) + *fill* 0x4202e16a 0x2 + .text.nd6_get_next_hop_entry + 0x4202e16c 0x27d esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x289 (size before relaxing) + *fill* 0x4202e3e9 0x3 + .text.nd6_queue_packet + 0x4202e3ec 0x131 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x13d (size before relaxing) + *fill* 0x4202e51d 0x3 + .text.nd6_input + 0x4202e520 0xcff esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xd6e (size before relaxing) + 0x4202e520 nd6_input + *fill* 0x4202f21f 0x1 + .text.nd6_tmr 0x4202f220 0x46a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x476 (size before relaxing) + 0x4202f220 nd6_tmr + *fill* 0x4202f68a 0x2 + .text.nd6_clear_destination_cache + 0x4202f68c 0x29 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4202f68c nd6_clear_destination_cache + *fill* 0x4202f6b5 0x3 + .text.nd6_find_route + 0x4202f6b8 0x96 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4202f6b8 nd6_find_route + *fill* 0x4202f74e 0x2 + .text.nd6_get_next_hop_addr_or_queue + 0x4202f750 0x8c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x90 (size before relaxing) + 0x4202f750 nd6_get_next_hop_addr_or_queue + .text.nd6_get_destination_mtu + 0x4202f7dc 0x2a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2e (size before relaxing) + 0x4202f7dc nd6_get_destination_mtu + *fill* 0x4202f806 0x2 + .text.nd6_reachability_hint + 0x4202f808 0x153 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x157 (size before relaxing) + 0x4202f808 nd6_reachability_hint + *fill* 0x4202f95b 0x1 + .text.nd6_cleanup_netif + 0x4202f95c 0xa6 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xac (size before relaxing) + 0x4202f95c nd6_cleanup_netif + *fill* 0x4202fa02 0x2 + .text.nd6_adjust_mld_membership + 0x4202fa04 0x9c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x9f (size before relaxing) + 0x4202fa04 nd6_adjust_mld_membership + *fill* 0x4202faa0 0x0 + .text.ethernet_input + 0x4202faa0 0xf0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0xfc (size before relaxing) + 0x4202faa0 ethernet_input + .text.ethernet_output + 0x4202fb90 0x69 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x6d (size before relaxing) + 0x4202fb90 ethernet_output + *fill* 0x4202fbf9 0x3 + .text.lwip_init_tcp_isn + 0x4202fbfc 0x2a esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x4202fbfc lwip_init_tcp_isn + *fill* 0x4202fc26 0x2 + .text.lwip_hook_tcp_isn + 0x4202fc28 0xd2 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0xda (size before relaxing) + 0x4202fc28 lwip_hook_tcp_isn + *fill* 0x4202fcfa 0x2 + .text.lwip_hook_ip6_input + 0x4202fcfc 0x35 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x39 (size before relaxing) + 0x4202fcfc lwip_hook_ip6_input + *fill* 0x4202fd31 0x3 + .text.ip4_route_src_hook + 0x4202fd34 0x2e esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x4202fd34 ip4_route_src_hook + *fill* 0x4202fd62 0x2 + .text.dhcp_parse_extra_opts + 0x4202fd64 0x79 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x7d (size before relaxing) + 0x4202fd64 dhcp_parse_extra_opts + *fill* 0x4202fddd 0x3 + .text.dhcp_append_extra_opts + 0x4202fde0 0x7c esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x4202fde0 dhcp_append_extra_opts + .text.lwip_getsockopt_impl_ext + 0x4202fe5c 0xc9 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + 0x4202fe5c lwip_getsockopt_impl_ext + *fill* 0x4202ff25 0x3 + .text.sys_thread_sem_free + 0x4202ff28 0x1a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x4202ff42 0x2 + .text.sys_mutex_new + 0x4202ff44 0x1a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4202ff44 sys_mutex_new + *fill* 0x4202ff5e 0x2 + .text.sys_mutex_lock + 0x4202ff60 0x23 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4202ff60 sys_mutex_lock + *fill* 0x4202ff83 0x1 + .text.sys_mutex_unlock + 0x4202ff84 0x27 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4202ff84 sys_mutex_unlock + *fill* 0x4202ffab 0x1 + .text.sys_sem_new + 0x4202ffac 0x61 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4202ffac sys_sem_new + *fill* 0x4203000d 0x3 + .text.sys_sem_signal + 0x42030010 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x42030010 sys_sem_signal + .text.sys_sem_signal_isr + 0x42030038 0x1d esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x42030038 sys_sem_signal_isr + *fill* 0x42030055 0x3 + .text.sys_arch_sem_wait + 0x42030058 0x5e esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x42030058 sys_arch_sem_wait + *fill* 0x420300b6 0x2 + .text.sys_sem_free + 0x420300b8 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x420300b8 sys_sem_free + *fill* 0x420300ca 0x2 + .text.sys_mbox_new + 0x420300cc 0x3a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x3e (size before relaxing) + 0x420300cc sys_mbox_new + *fill* 0x42030106 0x2 + .text.sys_mbox_post + 0x42030108 0x2c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x42030108 sys_mbox_post + .text.sys_mbox_trypost + 0x42030134 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x42030134 sys_mbox_trypost + *fill* 0x42030156 0x2 + .text.sys_arch_mbox_fetch + 0x42030158 0x6a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x42030158 sys_arch_mbox_fetch + *fill* 0x420301c2 0x2 + .text.sys_arch_mbox_tryfetch + 0x420301c4 0x3a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x420301c4 sys_arch_mbox_tryfetch + *fill* 0x420301fe 0x2 + .text.sys_mbox_free + 0x42030200 0x3e esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x42030200 sys_mbox_free + *fill* 0x4203023e 0x2 + .text.sys_thread_new + 0x42030240 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x42030240 sys_thread_new + .text.sys_init + 0x42030268 0x3c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x44 (size before relaxing) + 0x42030268 sys_init + .text.sys_now 0x420302a4 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x420302a4 sys_now + .text.sys_arch_protect + 0x420302b4 0x1b esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x21 (size before relaxing) + 0x420302b4 sys_arch_protect + *fill* 0x420302cf 0x1 + .text.sys_arch_unprotect + 0x420302d0 0xb esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xe (size before relaxing) + 0x420302d0 sys_arch_unprotect + *fill* 0x420302db 0x1 + .text.sys_thread_sem_init + 0x420302dc 0x74 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x78 (size before relaxing) + 0x420302dc sys_thread_sem_init + .text.sys_thread_sem_get + 0x42030350 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + 0x42030350 sys_thread_sem_get + .text.sys_thread_tcpip + 0x42030368 0x6c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x42030368 sys_thread_tcpip + .text.acd_suspend + 0x420303d4 0x1c esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .text.send_probe_once + 0x420303f0 0x30 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0x34 (size before relaxing) + .text.acd_dhcp_check_timeout_cb + 0x42030420 0x36 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + *fill* 0x42030456 0x2 + .text.acd_remove + 0x42030458 0xe esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0x12 (size before relaxing) + 0x42030458 acd_remove + *fill* 0x42030466 0x2 + .text.acd_netif_ip_addr_changed + 0x42030468 0xa esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0xe (size before relaxing) + 0x42030468 acd_netif_ip_addr_changed + *fill* 0x42030472 0x2 + .text.acd_network_changed_link_down + 0x42030474 0xa esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0xe (size before relaxing) + 0x42030474 acd_network_changed_link_down + *fill* 0x4203047e 0x2 + .text.acd_arp_reply + 0x42030480 0x6c esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0x42030480 acd_arp_reply + .text.acd_start + 0x420304ec 0x27 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0x420304ec acd_start + *fill* 0x42030513 0x1 + .text.lwip_get_socket_select_semaphore + 0x42030514 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xd (size before relaxing) + *fill* 0x4203051e 0x2 + .text.lwip_stop_socket_select_isr + 0x42030520 0x12 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x16 (size before relaxing) + *fill* 0x42030532 0x2 + .text.lwip_stop_socket_select + 0x42030534 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x4203053e 0x2 + .text.lwip_ioctl_r_wrapper + 0x42030540 0x3a esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x4203057a 0x2 + .text.lwip_fcntl_r_wrapper + 0x4203057c 0x10 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x14 (size before relaxing) + .text.lwip_fstat + 0x4203058c 0x45 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x420305d1 0x3 + .text.esp_vfs_lwip_sockets_register + 0x420305d4 0x70 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x420305d4 esp_vfs_lwip_sockets_register + .text.netconn_apimsg + 0x42030644 0x32 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x36 (size before relaxing) + *fill* 0x42030676 0x2 + .text.netconn_tcp_recvd_msg + 0x42030678 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x420306a5 0x3 + .text.netconn_close_shutdown + 0x420306a8 0x25 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x29 (size before relaxing) + *fill* 0x420306cd 0x3 + .text.netconn_new_with_proto_and_callback + 0x420306d0 0x7a esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x82 (size before relaxing) + 0x420306d0 netconn_new_with_proto_and_callback + *fill* 0x4203074a 0x2 + .text.netconn_prepare_delete + 0x4203074c 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x24 (size before relaxing) + 0x4203074c netconn_prepare_delete + .text.netconn_delete + 0x4203076c 0x2c esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x30 (size before relaxing) + 0x4203076c netconn_delete + .text.netconn_getaddr + 0x42030798 0x39 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x42030798 netconn_getaddr + *fill* 0x420307d1 0x3 + .text.netconn_connect + 0x420307d4 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x420307d4 netconn_connect + *fill* 0x420307fe 0x2 + .text.netconn_disconnect + 0x42030800 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x42030800 netconn_disconnect + *fill* 0x4203081d 0x3 + .text.netconn_tcp_recvd + 0x42030820 0x2b esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x42030820 netconn_tcp_recvd + *fill* 0x4203084b 0x1 + .text.netconn_send + 0x4203084c 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4203084c netconn_send + *fill* 0x4203086a 0x2 + .text.netconn_write_vectors_partly + 0x4203086c 0xe2 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xe6 (size before relaxing) + 0x4203086c netconn_write_vectors_partly + *fill* 0x4203094e 0x2 + .text.netconn_write_partly + 0x42030950 0x1c esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x42030950 netconn_write_partly + .text.netconn_err + 0x4203096c 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x24 (size before relaxing) + 0x4203096c netconn_err + .text.netconn_recv_data + 0x4203098c 0x132 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x15a (size before relaxing) + *fill* 0x42030abe 0x2 + .text.netconn_recv_udp_raw_netbuf_flags + 0x42030ac0 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x42030ac0 netconn_recv_udp_raw_netbuf_flags + *fill* 0x42030aed 0x3 + .text.netconn_recv_data_tcp + 0x42030af0 0xa7 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xaf (size before relaxing) + *fill* 0x42030b97 0x1 + .text.netconn_recv_tcp_pbuf_flags + 0x42030b98 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x42030b98 netconn_recv_tcp_pbuf_flags + *fill* 0x42030bc5 0x3 + .text.netconn_shutdown + 0x42030bc8 0x2c esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x42030bc8 netconn_shutdown + .text.netconn_join_leave_group + 0x42030bf4 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x2e (size before relaxing) + 0x42030bf4 netconn_join_leave_group + *fill* 0x42030c1e 0x2 + .text.netconn_join_leave_group_netif + 0x42030c20 0x35 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x42030c20 netconn_join_leave_group_netif + *fill* 0x42030c55 0x3 + .text.netconn_gethostbyname_addrtype + 0x42030c58 0x52 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x56 (size before relaxing) + 0x42030c58 netconn_gethostbyname_addrtype + *fill* 0x42030caa 0x2 + .text.lwip_netconn_err_to_msg + 0x42030cac 0x4a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x42030cf6 0x2 + .text.lwip_netconn_do_dns_found + 0x42030cf8 0x42 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x42030d3a 0x2 + .text.recv_udp + 0x42030d3c 0xef esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x103 (size before relaxing) + *fill* 0x42030e2b 0x1 + .text.recv_raw + 0x42030e2c 0xa5 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xb1 (size before relaxing) + *fill* 0x42030ed1 0x3 + .text.setup_tcp + 0x42030ed4 0x36 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x42 (size before relaxing) + *fill* 0x42030f0a 0x2 + .text.pcb_new 0x42030f0c 0xe6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xea (size before relaxing) + *fill* 0x42030ff2 0x2 + .text.lwip_netconn_do_connected + 0x42030ff4 0xc8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.err_tcp 0x420310bc 0x120 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x128 (size before relaxing) + .text.netconn_mark_mbox_invalid + 0x420311dc 0x40 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x47 (size before relaxing) + *fill* 0x4203121c 0x0 + .text.lwip_netconn_do_writemore + 0x4203121c 0x281 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x4203149d 0x3 + .text.lwip_netconn_do_close_internal + 0x420314a0 0x1e8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x204 (size before relaxing) + .text.poll_tcp + 0x42031688 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x66 (size before relaxing) + *fill* 0x420316ea 0x2 + .text.sent_tcp + 0x420316ec 0x60 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x68 (size before relaxing) + .text.tcp_do_abort + 0x4203174c 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x10 (size before relaxing) + .text.recv_tcp + 0x42031758 0xae esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xb2 (size before relaxing) + *fill* 0x42031806 0x2 + .text.lwip_netconn_is_deallocated_msg + 0x42031808 0x12 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x42031808 lwip_netconn_is_deallocated_msg + *fill* 0x4203181a 0x2 + .text.lwip_netconn_is_err_msg + 0x4203181c 0x4c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4203181c lwip_netconn_is_err_msg + .text.lwip_netconn_do_newconn + 0x42031868 0x1d esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x20 (size before relaxing) + 0x42031868 lwip_netconn_do_newconn + *fill* 0x42031885 0x3 + .text.netconn_alloc + 0x42031888 0x6c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x74 (size before relaxing) + 0x42031888 netconn_alloc + .text.netconn_free + 0x420318f4 0x5a esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x420318f4 netconn_free + *fill* 0x4203194e 0x2 + .text.netconn_drain + 0x42031950 0xd2 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xf6 (size before relaxing) + *fill* 0x42031a22 0x2 + .text.lwip_netconn_do_delconn + 0x42031a24 0x108 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x110 (size before relaxing) + 0x42031a24 lwip_netconn_do_delconn + .text.lwip_netconn_do_connect + 0x42031b2c 0xb6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xc6 (size before relaxing) + 0x42031b2c lwip_netconn_do_connect + *fill* 0x42031be2 0x2 + .text.lwip_netconn_do_disconnect + 0x42031be4 0x2c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x42031be4 lwip_netconn_do_disconnect + .text.lwip_netconn_do_send + 0x42031c10 0xe2 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xf2 (size before relaxing) + 0x42031c10 lwip_netconn_do_send + *fill* 0x42031cf2 0x2 + .text.lwip_netconn_do_recv + 0x42031cf4 0x40 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x44 (size before relaxing) + 0x42031cf4 lwip_netconn_do_recv + .text.lwip_netconn_do_write + 0x42031d34 0x77 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x82 (size before relaxing) + 0x42031d34 lwip_netconn_do_write + *fill* 0x42031dab 0x1 + .text.lwip_netconn_do_getaddr + 0x42031dac 0x183 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x42031dac lwip_netconn_do_getaddr + *fill* 0x42031f2f 0x1 + .text.lwip_netconn_do_close + 0x42031f30 0xcc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xd7 (size before relaxing) + 0x42031f30 lwip_netconn_do_close + *fill* 0x42031ffc 0x0 + .text.lwip_netconn_do_join_leave_group + 0x42031ffc 0x71 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x42031ffc lwip_netconn_do_join_leave_group + *fill* 0x4203206d 0x3 + .text.lwip_netconn_do_join_leave_group_netif + 0x42032070 0x78 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x7f (size before relaxing) + 0x42032070 lwip_netconn_do_join_leave_group_netif + *fill* 0x420320e8 0x0 + .text.lwip_netconn_do_gethostbyname + 0x420320e8 0x2e esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x32 (size before relaxing) + 0x420320e8 lwip_netconn_do_gethostbyname + *fill* 0x42032116 0x2 + .text.err_to_errno + 0x42032118 0x26 esp-idf/lwip/liblwip.a(err.c.obj) + 0x42032118 err_to_errno + *fill* 0x4203213e 0x2 + .text.netbuf_delete + 0x42032140 0x1b esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x22 (size before relaxing) + 0x42032140 netbuf_delete + *fill* 0x4203215b 0x1 + .text.netbuf_alloc + 0x4203215c 0x4a esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x4203215c netbuf_alloc + *fill* 0x420321a6 0x2 + .text.netbuf_free + 0x420321a8 0x14 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x18 (size before relaxing) + 0x420321a8 netbuf_free + .text.dns_backupserver_available + 0x420321bc 0x82 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x4203223e 0x2 + .text.dns_server_is_set + 0x42032240 0x72 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x420322b2 0x2 + .text.dns_call_found + 0x420322b4 0x1a0 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_correct_response + 0x42032454 0xd6 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x4203252a 0x2 + .text.dns_create_txid + 0x4203252c 0x3c esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_send + 0x42032568 0x25d esp-idf/lwip/liblwip.a(dns.c.obj) + 0x275 (size before relaxing) + *fill* 0x420327c5 0x3 + .text.dns_check_entry + 0x420327c8 0x2ce esp-idf/lwip/liblwip.a(dns.c.obj) + 0x2d2 (size before relaxing) + *fill* 0x42032a96 0x2 + .text.dns_check_entries + 0x42032a98 0x1a esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x42032ab2 0x2 + .text.dns_lookup + 0x42032ab4 0x149 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x42032bfd 0x3 + .text.dns_alloc_random_port + 0x42032c00 0x56 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x5a (size before relaxing) + *fill* 0x42032c56 0x2 + .text.dns_alloc_pcb + 0x42032c58 0x71 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x42032cc9 0x3 + .text.dns_enqueue + 0x42032ccc 0x1fd esp-idf/lwip/liblwip.a(dns.c.obj) + 0x205 (size before relaxing) + *fill* 0x42032ec9 0x3 + .text.dns_compare_name + 0x42032ecc 0xc2 esp-idf/lwip/liblwip.a(dns.c.obj) + 0xca (size before relaxing) + *fill* 0x42032f8e 0x2 + .text.dns_skip_name + 0x42032f90 0x6a esp-idf/lwip/liblwip.a(dns.c.obj) + 0x6e (size before relaxing) + *fill* 0x42032ffa 0x2 + .text.dns_recv + 0x42032ffc 0x50b esp-idf/lwip/liblwip.a(dns.c.obj) + 0x536 (size before relaxing) + *fill* 0x42033507 0x1 + .text.dns_setserver + 0x42033508 0x3a esp-idf/lwip/liblwip.a(dns.c.obj) + 0x42033508 dns_setserver + *fill* 0x42033542 0x2 + .text.dns_tmr 0x42033544 0x5a esp-idf/lwip/liblwip.a(dns.c.obj) + 0x5e (size before relaxing) + 0x42033544 dns_tmr + *fill* 0x4203359e 0x2 + .text.dns_timeout_cb + 0x420335a0 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + 0xb (size before relaxing) + *fill* 0x420335a8 0x0 + .text.dns_gethostbyname_addrtype + 0x420335a8 0x148 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x154 (size before relaxing) + 0x420335a8 dns_gethostbyname_addrtype + .text.inet_cksum_pseudo_base + 0x420336f0 0x7a esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + *fill* 0x4203376a 0x2 + .text.inet_chksum_pseudo + 0x4203376c 0x38 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x3c (size before relaxing) + 0x4203376c inet_chksum_pseudo + .text.ip6_chksum_pseudo + 0x420337a4 0x54 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x420337a4 ip6_chksum_pseudo + .text.ip_chksum_pseudo + 0x420337f8 0x29 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x2c (size before relaxing) + 0x420337f8 ip_chksum_pseudo + *fill* 0x42033821 0x3 + .text.inet_chksum + 0x42033824 0x18 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x42033824 inet_chksum + .text.inet_chksum_pbuf + 0x4203383c 0x5a esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4203383c inet_chksum_pbuf + *fill* 0x42033896 0x2 + .text.esp_netif_add_to_list_unsafe + 0x42033898 0x2d esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x42033898 esp_netif_add_to_list_unsafe + *fill* 0x420338c5 0x3 + .text.esp_netif_remove_from_list_unsafe + 0x420338c8 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x420338c8 esp_netif_remove_from_list_unsafe + .text.esp_netif_get_nr_of_ifs + 0x42033928 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x42033928 esp_netif_get_nr_of_ifs + *fill* 0x42033932 0x2 + .text.esp_netif_next_unsafe + 0x42033934 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x42033934 esp_netif_next_unsafe + *fill* 0x42033965 0x3 + .text.esp_netif_is_netif_listed + 0x42033968 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x42033968 esp_netif_is_netif_listed + .text.esp_netif_get_handle_from_ifkey_unsafe + 0x42033988 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x42033988 esp_netif_get_handle_from_ifkey_unsafe + .text.esp_netif_is_active + 0x420339b8 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x12 (size before relaxing) + *fill* 0x420339c6 0x2 + .text.esp_netif_set_default_netif_internal + 0x420339c8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x420339d2 0x2 + .text.esp_netif_lwip_ipc_call_msg + 0x420339d4 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x41 (size before relaxing) + *fill* 0x42033a09 0x3 + .text.esp_netif_lwip_ipc_call + 0x42033a0c 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x22 (size before relaxing) + *fill* 0x42033a2a 0x2 + .text.esp_netif_lwip_ipc_call_get_netif + 0x42033a2c 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x22 (size before relaxing) + *fill* 0x42033a4a 0x2 + .text.esp_netif_api_cb + 0x42033a4c 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x42033a67 0x1 + .text.tcpip_init_done + 0x42033a68 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x42033a72 0x2 + .text.esp_netif_config_sanity_check + 0x42033a74 0x6e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x42033ae2 0x2 + .text.netif_mld_mac_filter_cb + 0x42033ae4 0x7e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x42033b62 0x2 + .text.netif_igmp_mac_filter_cb + 0x42033b64 0x82 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x42033be6 0x2 + .text.esp_netif_set_mac_api + 0x42033be8 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x42033be8 esp_netif_set_mac_api + *fill* 0x42033c11 0x3 + .text.esp_netif_set_ip_old_info_api + 0x42033c14 0x2c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_cb + 0x42033c40 0x92 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x42033cd2 0x2 + .text.esp_netif_start_ip_lost_timer + 0x42033cd4 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x24 (size before relaxing) + .text.netif_set_mldv6_flag + 0x42033cf4 0x22 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x26 (size before relaxing) + *fill* 0x42033d16 0x2 + .text.netif_set_garp_flag + 0x42033d18 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x13 (size before relaxing) + *fill* 0x42033d28 0x0 + .text.netif_send_mldv6 + 0x42033d28 0x27 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2b (size before relaxing) + *fill* 0x42033d4f 0x1 + .text.esp_netif_init_configuration + 0x42033d50 0x109 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x42033e59 0x3 + .text.netif_unset_garp_flag + 0x42033e5c 0xd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + *fill* 0x42033e69 0x3 + .text.netif_unset_mldv6_flag + 0x42033e6c 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x42033e86 0x2 + .text.esp_netif_lwip_remove + 0x42033e88 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x48 (size before relaxing) + .text.netif_send_garp + 0x42033ec4 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + *fill* 0x42033ee5 0x3 + .text.esp_netif_lwip_add + 0x42033ee8 0x8d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x91 (size before relaxing) + *fill* 0x42033f75 0x3 + .text.dns_clear_servers + 0x42033f78 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_start_api + 0x42033fa0 0xc6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xca (size before relaxing) + *fill* 0x42034066 0x2 + .text.esp_netif_update_default_netif + 0x42034068 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x42034068 esp_netif_update_default_netif + .text.esp_netif_ip_lost_timer + 0x4203407c 0x8a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x92 (size before relaxing) + *fill* 0x42034106 0x2 + .text.esp_netif_internal_nd6_cb + 0x42034108 0xc2 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xca (size before relaxing) + *fill* 0x420341ca 0x2 + .text.esp_netif_destroy_api + 0x420341cc 0x6d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x7d (size before relaxing) + *fill* 0x42034239 0x3 + .text.esp_netif_new_api + 0x4203423c 0x224 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x234 (size before relaxing) + .text.esp_netif_start_api + 0x42034460 0x13f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x156 (size before relaxing) + *fill* 0x4203459f 0x1 + .text.esp_netif_stop_api + 0x420345a0 0x79 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8d (size before relaxing) + *fill* 0x42034619 0x3 + .text.esp_netif_up_api + 0x4203461c 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4e (size before relaxing) + *fill* 0x42034662 0x2 + .text.esp_netif_down_api + 0x42034664 0xaa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xbe (size before relaxing) + *fill* 0x4203470e 0x2 + .text.esp_netif_init + 0x42034710 0xc5 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe1 (size before relaxing) + 0x42034710 esp_netif_init + *fill* 0x420347d5 0x3 + .text.esp_netif_new + 0x420347d8 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420347d8 esp_netif_new + .text.esp_netif_attach + 0x420347f0 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420347f0 esp_netif_attach + *fill* 0x4203482e 0x2 + .text.esp_netif_set_driver_config + 0x42034830 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x42034830 esp_netif_set_driver_config + *fill* 0x42034862 0x2 + .text.esp_netif_set_mac + 0x42034864 0x27 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x42034864 esp_netif_set_mac + *fill* 0x4203488b 0x1 + .text.esp_netif_start + 0x4203488c 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4203488c esp_netif_start + .text.esp_netif_stop + 0x420348a0 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420348a0 esp_netif_stop + .text.esp_netif_netstack_buf_ref + 0x420348b4 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + 0x420348b4 esp_netif_netstack_buf_ref + *fill* 0x420348be 0x2 + .text.esp_netif_netstack_buf_free + 0x420348c0 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + 0x420348c0 esp_netif_netstack_buf_free + *fill* 0x420348ca 0x2 + .text.esp_netif_transmit_wrap + 0x420348cc 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420348cc esp_netif_transmit_wrap + *fill* 0x420348fe 0x2 + .text.esp_netif_receive + 0x42034900 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x42034900 esp_netif_receive + *fill* 0x42034935 0x3 + .text.esp_netif_dhcpc_start + 0x42034938 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x42034938 esp_netif_dhcpc_start + .text.esp_netif_get_hostname + 0x4203494c 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4203494c esp_netif_get_hostname + *fill* 0x42034975 0x3 + .text.esp_netif_up + 0x42034978 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x42034978 esp_netif_up + .text.esp_netif_down + 0x4203498c 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4203498c esp_netif_down + .text.esp_netif_update_default_netif_lwip + 0x420349a0 0xf0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10c (size before relaxing) + .text.esp_netif_get_old_ip_info + 0x42034a90 0x2a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x42034a90 esp_netif_get_old_ip_info + *fill* 0x42034aba 0x2 + .text.esp_netif_get_ip_info + 0x42034abc 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x42034abc esp_netif_get_ip_info + *fill* 0x42034b02 0x2 + .text.esp_netif_set_old_ip_info + 0x42034b04 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x42034b04 esp_netif_set_old_ip_info + .text.esp_netif_internal_dhcpc_cb + 0x42034b18 0xfe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10a (size before relaxing) + *fill* 0x42034c16 0x2 + .text.netif_callback_fn + 0x42034c18 0x33 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x37 (size before relaxing) + *fill* 0x42034c4b 0x1 + .text.esp_aes_gmac + 0x42034c4c 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + *fill* 0x42034c69 0x3 + .text.digest_vector + 0x42034c6c 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x71 (size before relaxing) + *fill* 0x42034cc9 0x3 + .text.hmac_vector + 0x42034ccc 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x78 (size before relaxing) + .text.aes_crypt_init + 0x42034d30 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x54 (size before relaxing) + .text.aes_crypt_deinit + 0x42034d80 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x16 (size before relaxing) + *fill* 0x42034d92 0x2 + .text.aes_crypt + 0x42034d94 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + *fill* 0x42034da9 0x3 + .text.sha256_vector + 0x42034dac 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x42034dac sha256_vector + .text.hmac_sha256_vector + 0x42034dc0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x42034dc0 hmac_sha256_vector + .text.hmac_sha256 + 0x42034dd8 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x42034dd8 hmac_sha256 + *fill* 0x42034df5 0x3 + .text.hmac_sha1_vector + 0x42034df8 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x42034df8 hmac_sha1_vector + .text.hmac_sha1 + 0x42034e10 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x42034e10 hmac_sha1 + *fill* 0x42034e2d 0x3 + .text.aes_encrypt_init + 0x42034e30 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + 0x42034e30 aes_encrypt_init + .text.aes_encrypt + 0x42034e40 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x42034e40 aes_encrypt + *fill* 0x42034e55 0x3 + .text.aes_encrypt_deinit + 0x42034e58 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xe (size before relaxing) + 0x42034e58 aes_encrypt_deinit + *fill* 0x42034e62 0x2 + .text.aes_decrypt_init + 0x42034e64 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + 0x42034e64 aes_decrypt_init + .text.aes_decrypt + 0x42034e74 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x42034e74 aes_decrypt + *fill* 0x42034e89 0x3 + .text.aes_decrypt_deinit + 0x42034e8c 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xe (size before relaxing) + 0x42034e8c aes_decrypt_deinit + *fill* 0x42034e96 0x2 + .text.aes_128_cbc_encrypt + 0x42034e98 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x5a (size before relaxing) + 0x42034e98 aes_128_cbc_encrypt + *fill* 0x42034ee2 0x2 + .text.aes_128_cbc_decrypt + 0x42034ee4 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x5a (size before relaxing) + 0x42034ee4 aes_128_cbc_decrypt + *fill* 0x42034f2e 0x2 + .text.aes_ctr_encrypt + 0x42034f30 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4b (size before relaxing) + 0x42034f30 aes_ctr_encrypt + *fill* 0x42034f6c 0x0 + .text.pbkdf2_sha1 + 0x42034f6c 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x24 (size before relaxing) + 0x42034f6c pbkdf2_sha1 + .text.omac1_aes_vector + 0x42034f8c 0xa3 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xb3 (size before relaxing) + 0x42034f8c omac1_aes_vector + *fill* 0x4203502f 0x1 + .text.omac1_aes_128_vector + 0x42035030 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x42035030 omac1_aes_128_vector + *fill* 0x42035049 0x3 + .text.omac1_aes_128 + 0x4203504c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x4203504c omac1_aes_128 + .text.pad_blocks + 0x42035064 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + *fill* 0x4203509b 0x1 + .text.sha1_op 0x4203509c 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + 0x32 (size before relaxing) + 0x4203509c sha1_op + *fill* 0x420350c2 0x2 + .text.fast_psk_f + 0x420350c4 0x12f esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + 0x153 (size before relaxing) + 0x420350c4 fast_psk_f + *fill* 0x420351f3 0x1 + .text.esp_fast_psk + 0x420351f4 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + 0x66 (size before relaxing) + 0x420351f4 esp_fast_psk + *fill* 0x42035252 0x2 + .text.os_get_time + 0x42035254 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x42035254 os_get_time + *fill* 0x42035271 0x3 + .text.os_random + 0x42035274 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x42035274 os_random + *fill* 0x42035281 0x3 + .text.os_get_random + 0x42035284 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x42035284 os_get_random + *fill* 0x42035295 0x3 + .text.os_sleep + 0x42035298 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x1f (size before relaxing) + 0x42035298 os_sleep + *fill* 0x420352b4 0x0 + .text.forced_memzero + 0x420352b4 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x420352b4 forced_memzero + *fill* 0x420352c3 0x1 + .text.ccmp_aad_nonce + 0x420352c4 0x116 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + *fill* 0x420353da 0x2 + .text.ccmp_decrypt + 0x420353dc 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x92 (size before relaxing) + 0x420353dc ccmp_decrypt + *fill* 0x4203546a 0x2 + .text.ccmp_encrypt + 0x4203546c 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x100 (size before relaxing) + 0x4203546c ccmp_encrypt + .text.shift_right_block + 0x42035564 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .text.ghash_start + 0x4203565c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + *fill* 0x4203566e 0x2 + .text.aes_gcm_init_hash_subkey + 0x42035670 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x2b (size before relaxing) + *fill* 0x42035697 0x1 + .text.gf_mult 0x42035698 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x72 (size before relaxing) + *fill* 0x42035702 0x2 + .text.ghash 0x42035704 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x86 (size before relaxing) + *fill* 0x4203577e 0x2 + .text.aes_gcm_ghash + 0x42035780 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x56 (size before relaxing) + *fill* 0x420357c2 0x2 + .text.aes_gcm_prepare_j0 + 0x420357c4 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x7a (size before relaxing) + *fill* 0x42035832 0x2 + .text.aes_gctr + 0x42035834 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x84 (size before relaxing) + .text.aes_gcm_gctr + 0x420358ac 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x2b (size before relaxing) + *fill* 0x420358d3 0x1 + .text.aes_gcm_ae + 0x420358d4 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x74 (size before relaxing) + 0x420358d4 aes_gcm_ae + .text.aes_gmac + 0x42035934 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x24 (size before relaxing) + 0x42035934 aes_gmac + .text.hex2byte + 0x42035954 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x30 (size before relaxing) + 0x42035954 hex2byte + .text.hexstr2bin + 0x42035980 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x42035980 hexstr2bin + .text.wpa_get_ntp_timestamp + 0x420359a8 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x56 (size before relaxing) + 0x420359a8 wpa_get_ntp_timestamp + *fill* 0x420359fa 0x2 + .text.printf_decode + 0x420359fc 0x154 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x15c (size before relaxing) + 0x420359fc printf_decode + .text.dup_binstr + 0x42035b50 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x42035b50 dup_binstr + *fill* 0x42035b7a 0x2 + .text.wpa_config_parse_string + 0x42035b7c 0x12a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x12e (size before relaxing) + 0x42035b7c wpa_config_parse_string + *fill* 0x42035ca6 0x2 + .text.bin_clear_free + 0x42035ca8 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x1a (size before relaxing) + 0x42035ca8 bin_clear_free + *fill* 0x42035cbe 0x2 + .text.os_memdup + 0x42035cc0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x42035cc0 os_memdup + .text.os_reltime_expired + 0x42035ce8 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x42035ce8 os_reltime_expired + .text.aes_ccm_encr_start + 0x42035d50 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x42035d6a 0x2 + .text.aes_ccm_auth + 0x42035d6c 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x5e (size before relaxing) + *fill* 0x42035dc2 0x2 + .text.aes_ccm_encr + 0x42035dc4 0x67 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x6f (size before relaxing) + *fill* 0x42035e2b 0x1 + .text.aes_ccm_encr_auth + 0x42035e2c 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x36 (size before relaxing) + *fill* 0x42035e5e 0x2 + .text.aes_ccm_decr_auth + 0x42035e60 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x36 (size before relaxing) + *fill* 0x42035e92 0x2 + .text.aes_ccm_auth_start + 0x42035e94 0xbb esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xcf (size before relaxing) + *fill* 0x42035f4f 0x1 + .text.aes_ccm_ae + 0x42035f50 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x9c (size before relaxing) + 0x42035f50 aes_ccm_ae + .text.aes_ccm_ad + 0x42035fd4 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xb6 (size before relaxing) + 0x42035fd4 aes_ccm_ad + *fill* 0x42036072 0x2 + .text.esp_wifi_config_info + 0x42036074 0x10e esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x42036182 0x2 + .text.wifi_deinit_internal + 0x42036184 0x8e esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xa2 (size before relaxing) + *fill* 0x42036212 0x2 + .text.esp_wifi_set_log_level + 0x42036214 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xe (size before relaxing) + *fill* 0x4203621e 0x2 + .text.s_set_default_wifi_log_level + 0x42036220 0x32 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x42036252 0x2 + .text.esp_wifi_init + 0x42036254 0x98 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xac (size before relaxing) + 0x42036254 esp_wifi_init + .text.esp_wifi_connect + 0x420362ec 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xd (size before relaxing) + 0x420362ec esp_wifi_connect + *fill* 0x420362f6 0x2 + .text.pm_beacon_offset_funcs_init + 0x420362f8 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xb (size before relaxing) + 0x420362f8 pm_beacon_offset_funcs_init + *fill* 0x42036300 0x0 + .text.wifi_default_action_sta_got_ip + 0x42036300 0x3f esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x43 (size before relaxing) + *fill* 0x4203633f 0x1 + .text.wifi_default_action_ap_stop + 0x42036340 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_stop + 0x42036358 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_start + 0x42036370 0xbc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xc8 (size before relaxing) + .text.wifi_default_action_ap_start + 0x4203642c 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_start + 0x42036444 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_disconnected + 0x4203645c 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_connected + 0x42036474 0x5e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x66 (size before relaxing) + *fill* 0x420364d2 0x2 + .text.clear_default_wifi_handlers + 0x420364d4 0x79 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x81 (size before relaxing) + *fill* 0x4203654d 0x3 + .text.set_default_wifi_handlers + 0x42036550 0xd5 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x42036625 0x3 + .text.create_and_attach + 0x42036628 0x3c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_attach_wifi + 0x42036664 0x31 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x42036695 0x3 + .text.esp_wifi_set_default_wifi_sta_handlers + 0x42036698 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xd (size before relaxing) + 0x42036698 esp_wifi_set_default_wifi_sta_handlers + *fill* 0x420366a2 0x2 + .text.esp_netif_attach_wifi_station + 0x420366a4 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x420366a4 esp_netif_attach_wifi_station + *fill* 0x420366b5 0x3 + .text.esp_netif_create_default_wifi_sta + 0x420366b8 0x5e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x6a (size before relaxing) + 0x420366b8 esp_netif_create_default_wifi_sta + *fill* 0x42036716 0x2 + .text.parse_url_char + 0x42036718 0x2b2 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + *fill* 0x420369ca 0x2 + .text.http_parse_host_char + 0x420369cc 0x268 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_parse_host + 0x42036c34 0x114 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_parser_url_init + 0x42036d48 0x12 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x42036d48 http_parser_url_init + *fill* 0x42036d5a 0x2 + .text.http_parser_parse_url + 0x42036d5c 0x149 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x14d (size before relaxing) + 0x42036d5c http_parser_parse_url + *fill* 0x42036ea5 0x3 + .text.ms_to_timeval + 0x42036ea8 0x38 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_hostname_to_fd + 0x42036ee0 0x151 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x15d (size before relaxing) + *fill* 0x42037031 0x3 + .text.esp_tls_set_socket_options + 0x42037034 0x19a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x1b6 (size before relaxing) + *fill* 0x420371ce 0x2 + .text.esp_tls_set_socket_non_blocking + 0x420371d0 0x8a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x9a (size before relaxing) + *fill* 0x4203725a 0x2 + .text.tcp_connect + 0x4203725c 0x22b esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x26e (size before relaxing) + *fill* 0x42037487 0x1 + .text.tcp_write + 0x42037488 0x19 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + *fill* 0x420374a1 0x3 + .text.tcp_read + 0x420374a4 0x19 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + *fill* 0x420374bd 0x3 + .text.create_ssl_handle + 0x420374c0 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x18 (size before relaxing) + .text.esp_tls_handshake + 0x420374d4 0x11 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + *fill* 0x420374e5 0x3 + .text.esp_tls_low_level_conn + 0x420374e8 0x25a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x27a (size before relaxing) + *fill* 0x42037742 0x2 + .text.esp_tls_conn_destroy + 0x42037744 0x38 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x44 (size before relaxing) + 0x42037744 esp_tls_conn_destroy + .text.esp_tls_init + 0x4203777c 0x44 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4203777c esp_tls_init + .text.esp_tls_plain_tcp_connect + 0x420377c0 0x31 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x420377c0 esp_tls_plain_tcp_connect + *fill* 0x420377f1 0x3 + .text.esp_tls_conn_new_async + 0x420377f4 0x3a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x420377f4 esp_tls_conn_new_async + *fill* 0x4203782e 0x2 + .text.esp_tls_get_bytes_avail + 0x42037830 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x10 (size before relaxing) + 0x42037830 esp_tls_get_bytes_avail + .text.esp_tls_get_conn_sockfd + 0x4203783c 0x40 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4203783c esp_tls_get_conn_sockfd + .text.esp_tls_get_and_clear_last_error + 0x4203787c 0x29 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4203787c esp_tls_get_and_clear_last_error + *fill* 0x420378a5 0x3 + .text.esp_tls_internal_event_tracker_create + 0x420378a8 0x11 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + 0x420378a8 esp_tls_internal_event_tracker_create + *fill* 0x420378b9 0x3 + .text.esp_tls_internal_event_tracker_destroy + 0x420378bc 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + 0x420378bc esp_tls_internal_event_tracker_destroy + *fill* 0x420378ca 0x2 + .text.esp_mbedtls_read + 0x420378cc 0x64 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x6c (size before relaxing) + 0x420378cc esp_mbedtls_read + .text.esp_mbedtls_write + 0x42037930 0x8b esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x93 (size before relaxing) + 0x42037930 esp_mbedtls_write + *fill* 0x420379bb 0x1 + .text.set_global_ca_store + 0x420379bc 0x60 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x64 (size before relaxing) + .text.set_ca_cert + 0x42037a1c 0xa4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0xb0 (size before relaxing) + .text.esp_mbedtls_init_pk_ctx_for_ds + 0x42037ac0 0x9c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0xa4 (size before relaxing) + .text.set_pki_context + 0x42037b5c 0x166 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x17e (size before relaxing) + *fill* 0x42037cc2 0x2 + .text.esp_mbedtls_verify_certificate + 0x42037cc4 0x52 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x5a (size before relaxing) + 0x42037cc4 esp_mbedtls_verify_certificate + *fill* 0x42037d16 0x2 + .text.esp_mbedtls_handshake + 0x42037d18 0x95 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0xa1 (size before relaxing) + 0x42037d18 esp_mbedtls_handshake + *fill* 0x42037dad 0x3 + .text.esp_mbedtls_get_bytes_avail + 0x42037db0 0x2c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x2f (size before relaxing) + 0x42037db0 esp_mbedtls_get_bytes_avail + *fill* 0x42037ddc 0x0 + .text.esp_mbedtls_cleanup + 0x42037ddc 0xa0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0xd0 (size before relaxing) + 0x42037ddc esp_mbedtls_cleanup + .text.esp_mbedtls_conn_delete + 0x42037e7c 0x2e esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x32 (size before relaxing) + 0x42037e7c esp_mbedtls_conn_delete + *fill* 0x42037eaa 0x2 + .text.set_client_config + 0x42037eac 0x332 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x36a (size before relaxing) + 0x42037eac set_client_config + *fill* 0x420381de 0x2 + .text.esp_create_mbedtls_handle + 0x420381e0 0x1e7 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x21b (size before relaxing) + 0x420381e0 esp_create_mbedtls_handle + *fill* 0x420383c7 0x1 + .text.esp_transport_list_init + 0x420383c8 0x44 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420383c8 esp_transport_list_init + .text.esp_transport_list_add + 0x4203840c 0x79 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x4203840c esp_transport_list_add + *fill* 0x42038485 0x3 + .text.esp_transport_list_get_transport + 0x42038488 0x26 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x42038488 esp_transport_list_get_transport + *fill* 0x420384ae 0x2 + .text.esp_transport_init + 0x420384b0 0x38 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420384b0 esp_transport_init + .text.esp_transport_destroy + 0x420384e8 0x24 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420384e8 esp_transport_destroy + .text.esp_transport_list_clean + 0x4203850c 0x1f esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x4203850c esp_transport_list_clean + *fill* 0x4203852b 0x1 + .text.esp_transport_list_destroy + 0x4203852c 0x14 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x18 (size before relaxing) + 0x4203852c esp_transport_list_destroy + .text.esp_transport_set_func + 0x42038540 0x29 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x42038540 esp_transport_set_func + *fill* 0x42038569 0x3 + .text.capture_tcp_transport_error + 0x4203856c 0x43 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x47 (size before relaxing) + 0x4203856c capture_tcp_transport_error + *fill* 0x420385af 0x1 + .text.esp_tls_connect_async + 0x420385b0 0x86 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x8e (size before relaxing) + *fill* 0x42038636 0x2 + .text.tcp_connect_async + 0x42038638 0x14 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x18 (size before relaxing) + .text.base_poll_write + 0x4203864c 0x110 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x124 (size before relaxing) + .text.base_poll_read + 0x4203875c 0x124 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x138 (size before relaxing) + .text.base_close + 0x42038880 0x51 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + *fill* 0x420388d1 0x3 + .text.esp_transport_esp_tls_create + 0x420388d4 0x1a esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + *fill* 0x420388ee 0x2 + .text.esp_transport_base_init + 0x420388f0 0x8c esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x94 (size before relaxing) + .text.tcp_write + 0x4203897c 0x92 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0xa6 (size before relaxing) + *fill* 0x42038a0e 0x2 + .text.tcp_read + 0x42038a10 0x96 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0xaa (size before relaxing) + *fill* 0x42038aa6 0x2 + .text.tcp_connect + 0x42038aa8 0x56 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x5e (size before relaxing) + *fill* 0x42038afe 0x2 + .text.esp_transport_esp_tls_destroy + 0x42038b00 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x42038b00 esp_transport_esp_tls_destroy + *fill* 0x42038b0e 0x2 + .text.base_destroy + 0x42038b10 0x1d esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x25 (size before relaxing) + *fill* 0x42038b2d 0x3 + .text.esp_transport_tcp_init + 0x42038b30 0x3f esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x47 (size before relaxing) + 0x42038b30 esp_transport_tcp_init + *fill* 0x42038b6f 0x1 + .text.esp_transport_tcp_set_keep_alive + 0x42038b70 0xf esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x42038b70 esp_transport_tcp_set_keep_alive + *fill* 0x42038b7f 0x1 + .text.esp_transport_tcp_set_interface_name + 0x42038b80 0xf esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x42038b80 esp_transport_tcp_set_interface_name + *fill* 0x42038b8f 0x1 + .text.esp_transport_utils_ms_to_timeval + 0x42038b90 0x3c esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + 0x42038b90 esp_transport_utils_ms_to_timeval + .text.esp_transport_init_foundation_transport + 0x42038bcc 0x7e esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + 0x42038bcc esp_transport_init_foundation_transport + *fill* 0x42038c4a 0x2 + .text.esp_transport_destroy_foundation_transport + 0x42038c4c 0x17 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + 0x42038c4c esp_transport_destroy_foundation_transport + *fill* 0x42038c63 0x1 + .text.ws_get_payload_transport_handle + 0x42038c64 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x14 (size before relaxing) + .text.ws_poll_write + 0x42038c74 0x16 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x1a (size before relaxing) + *fill* 0x42038c8a 0x2 + .text._ws_write + 0x42038c8c 0x14c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x15c (size before relaxing) + .text.ws_write + 0x42038dd8 0x2a esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x31 (size before relaxing) + *fill* 0x42038e02 0x2 + .text.ws_destroy + 0x42038e04 0x46 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x4a (size before relaxing) + *fill* 0x42038e4a 0x2 + .text.internal_esp_transport_ws_set_path + 0x42038e4c 0x3f esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + *fill* 0x42038e8b 0x1 + .text.ws_poll_read + 0x42038e8c 0x16 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x1a (size before relaxing) + *fill* 0x42038ea2 0x2 + .text.ws_close + 0x42038ea4 0x14 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x18 (size before relaxing) + .text.esp_transport_read_internal + 0x42038eb8 0x52 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + *fill* 0x42038f0a 0x2 + .text.esp_transport_read_exact_size + 0x42038f0c 0x51 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x55 (size before relaxing) + *fill* 0x42038f5d 0x3 + .text.ws_read_header + 0x42038f60 0x180 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x198 (size before relaxing) + .text.ws_read_payload + 0x420390e0 0x76 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x7a (size before relaxing) + *fill* 0x42039156 0x2 + .text.trimwhitespace + 0x42039158 0x43 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + *fill* 0x4203919b 0x1 + .text.get_http_header + 0x4203919c 0x38 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x3c (size before relaxing) + .text.get_http_status_code + 0x420391d4 0x56 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + *fill* 0x4203922a 0x2 + .text.ws_connect + 0x4203922c 0x450 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x478 (size before relaxing) + .text.esp_transport_ws_set_path + 0x4203967c 0x2a esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x2e (size before relaxing) + 0x4203967c esp_transport_ws_set_path + *fill* 0x420396a6 0x2 + .text.esp_transport_ws_init + 0x420396a8 0x13f esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x157 (size before relaxing) + 0x420396a8 esp_transport_ws_init + *fill* 0x420397e7 0x1 + .text.esp_transport_ws_set_subprotocol + 0x420397e8 0x41 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x420397e8 esp_transport_ws_set_subprotocol + *fill* 0x42039829 0x3 + .text.esp_transport_ws_poll_connection_closed + 0x4203982c 0x136 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x142 (size before relaxing) + 0x4203982c esp_transport_ws_poll_connection_closed + *fill* 0x42039962 0x2 + .text.esp_transport_ws_handle_control_frames + 0x42039964 0x18c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x198 (size before relaxing) + .text.ws_handle_control_frame_internal + 0x42039af0 0xe7 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0xeb (size before relaxing) + *fill* 0x42039bd7 0x1 + .text.ws_read 0x42039bd8 0x8f esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + 0x93 (size before relaxing) + *fill* 0x42039c67 0x1 + .text.mbedtls_ssl_ciphersuite_from_id + 0x42039c68 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x42039c68 mbedtls_ssl_ciphersuite_from_id + *fill* 0x42039c83 0x1 + .text.mbedtls_ssl_list_ciphersuites + 0x42039c84 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x49 (size before relaxing) + 0x42039c84 mbedtls_ssl_list_ciphersuites + *fill* 0x42039cc9 0x3 + .text.ssl_check_record_type + 0x42039ccc 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + *fill* 0x42039ce2 0x2 + .text.ssl_read_application_data + 0x42039ce4 0x46 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4a (size before relaxing) + *fill* 0x42039d2a 0x2 + .text.ssl_build_record_nonce + 0x42039d2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_extract_add_data_from_record + 0x42039d6c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ct_hmac + 0x42039da8 0x12c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x163 (size before relaxing) + *fill* 0x42039ed4 0x0 + .text.ssl_consume_current_message + 0x42039ed4 0x74 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_check_ctr_renegotiate + 0x42039f48 0x6e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x72 (size before relaxing) + *fill* 0x42039fb6 0x2 + .text.mbedtls_ssl_encrypt_buf + 0x42039fb8 0x33e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x376 (size before relaxing) + 0x42039fb8 mbedtls_ssl_encrypt_buf + *fill* 0x4203a2f6 0x2 + .text.mbedtls_ssl_decrypt_buf + 0x4203a2f8 0x3d6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x412 (size before relaxing) + 0x4203a2f8 mbedtls_ssl_decrypt_buf + *fill* 0x4203a6ce 0x2 + .text.ssl_prepare_record_content + 0x4203a6d0 0x8a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x8e (size before relaxing) + *fill* 0x4203a75a 0x2 + .text.mbedtls_ssl_fetch_input + 0x4203a75c 0x98 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x9c (size before relaxing) + 0x4203a75c mbedtls_ssl_fetch_input + .text.mbedtls_ssl_start_handshake_msg + 0x4203a7f4 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4203a7f4 mbedtls_ssl_start_handshake_msg + *fill* 0x4203a812 0x2 + .text.mbedtls_ssl_update_out_pointers + 0x4203a814 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4203a814 mbedtls_ssl_update_out_pointers + .text.mbedtls_ssl_flush_output + 0x4203a838 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4203a838 mbedtls_ssl_flush_output + .text.mbedtls_ssl_prepare_handshake_record + 0x4203a898 0xad esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0xb1 (size before relaxing) + 0x4203a898 mbedtls_ssl_prepare_handshake_record + *fill* 0x4203a945 0x3 + .text.mbedtls_ssl_handle_message_type + 0x4203a948 0xae esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4203a948 mbedtls_ssl_handle_message_type + *fill* 0x4203a9f6 0x2 + .text.mbedtls_ssl_reset_in_pointers + 0x4203a9f8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x16 (size before relaxing) + 0x4203a9f8 mbedtls_ssl_reset_in_pointers + *fill* 0x4203aa0a 0x2 + .text.mbedtls_ssl_reset_out_pointers + 0x4203aa0c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4203aa0c mbedtls_ssl_reset_out_pointers + *fill* 0x4203aa26 0x2 + .text.mbedtls_ssl_transform_free + 0x4203aa28 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x38 (size before relaxing) + 0x4203aa28 mbedtls_ssl_transform_free + .text.mbedtls_ssl_write_record + 0x4203aa54 0x132 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x13a (size before relaxing) + 0x4203aa54 mbedtls_ssl_write_record + *fill* 0x4203ab86 0x2 + .text.mbedtls_ssl_write_handshake_msg_ext + 0x4203ab88 0x9e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4203ab88 mbedtls_ssl_write_handshake_msg_ext + *fill* 0x4203ac26 0x2 + .text.mbedtls_ssl_finish_handshake_msg + 0x4203ac28 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4203ac28 mbedtls_ssl_finish_handshake_msg + .text.mbedtls_ssl_write_change_cipher_spec + 0x4203ac40 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x28 (size before relaxing) + 0x4203ac40 mbedtls_ssl_write_change_cipher_spec + .text.mbedtls_ssl_send_alert_message + 0x4203ac64 0x51 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4203ac64 mbedtls_ssl_send_alert_message + *fill* 0x4203acb5 0x3 + .text.ssl_tls12_handle_hs_message_post_handshake + 0x4203acb8 0x7a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + *fill* 0x4203ad32 0x2 + .text.ssl_handle_hs_message_post_handshake + 0x4203ad34 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x1e (size before relaxing) + *fill* 0x4203ad4e 0x2 + .text.ssl_write_real + 0x4203ad50 0x52 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x56 (size before relaxing) + *fill* 0x4203ada2 0x2 + .text.mbedtls_ssl_write + 0x4203ada4 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x4a (size before relaxing) + 0x4203ada4 mbedtls_ssl_write + *fill* 0x4203ade6 0x2 + .text.ssl_parse_record_header + 0x4203ade8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x84 (size before relaxing) + .text.ssl_get_next_record + 0x4203ae68 0x96 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0xa6 (size before relaxing) + *fill* 0x4203aefe 0x2 + .text.mbedtls_ssl_read_record + 0x4203af00 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x71 (size before relaxing) + 0x4203af00 mbedtls_ssl_read_record + *fill* 0x4203af61 0x3 + .text.mbedtls_ssl_parse_change_cipher_spec + 0x4203af64 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x5c (size before relaxing) + 0x4203af64 mbedtls_ssl_parse_change_cipher_spec + .text.mbedtls_ssl_read + 0x4203afb8 0x13a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x146 (size before relaxing) + 0x4203afb8 mbedtls_ssl_read + *fill* 0x4203b0f2 0x2 + .text.mbedtls_ssl_handle_pending_alert + 0x4203b0f4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x32 (size before relaxing) + 0x4203b0f4 mbedtls_ssl_handle_pending_alert + *fill* 0x4203b122 0x2 + .text.ssl_mfl_code_to_length + 0x4203b124 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x4203b14d 0x3 + .text.ssl_conf_version_check + 0x4203b150 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x4203b176 0x2 + .text.ssl_conf_check + 0x4203b178 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_set_handshake_prfs + 0x4203b194 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x4203b1bf 0x1 + .text.tls_prf_get_type + 0x4203b1c0 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x4203b1dd 0x3 + .text.ssl_key_cert_free + 0x4203b1e0 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x4203b1f7 0x1 + .text.ssl_append_key_cert + 0x4203b1f8 0x49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x4203b241 0x3 + .text.tls_prf_generic + 0x4203b244 0x171 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1a1 (size before relaxing) + *fill* 0x4203b3b5 0x3 + .text.tls_prf_sha256 + 0x4203b3b8 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x2a (size before relaxing) + *fill* 0x4203b3de 0x2 + .text.tls_prf_sha384 + 0x4203b3e0 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x2a (size before relaxing) + *fill* 0x4203b406 0x2 + .text.ssl_compute_master + 0x4203b408 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x64 (size before relaxing) + .text.ssl_update_checksum_sha256 + 0x4203b468 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x4203b481 0x3 + .text.ssl_update_checksum_sha384 + 0x4203b484 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x4203b49d 0x3 + .text.ssl_update_checksum_start + 0x4203b4a0 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x32 (size before relaxing) + *fill* 0x4203b4ce 0x2 + .text.ssl_handshake_params_init + 0x4203b4d0 0x35 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3d (size before relaxing) + *fill* 0x4203b505 0x3 + .text.mbedtls_ssl_free_hostname + 0x4203b508 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x4203b52f 0x1 + .text.ssl_srv_check_client_no_crt_notification + 0x4203b530 0x4e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x4203b57e 0x2 + .text.ssl_check_peer_crt_unchanged + 0x4203b580 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_clear_peer_cert + 0x4203b5a8 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1e (size before relaxing) + *fill* 0x4203b5c2 0x2 + .text.ssl_prepare_handshake_step + 0x4203b5c4 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .text.ssl_write_hello_request + 0x4203b5d0 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x4203b5f5 0x3 + .text.ssl_calc_finished_tls_generic + 0x4203b5f8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x93 (size before relaxing) + *fill* 0x4203b678 0x0 + .text.ssl_calc_finished_tls_sha256 + 0x4203b678 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .text.ssl_calc_finished_tls_sha384 + 0x4203b694 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .text.ssl_calc_verify_tls_legacy + 0x4203b6b0 0x43 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x5a (size before relaxing) + *fill* 0x4203b6f3 0x1 + .text.ssl_calc_verify_tls_sha256 + 0x4203b6f4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .text.ssl_calc_verify_tls_sha384 + 0x4203b70c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .text.ssl_parse_certificate_chain + 0x4203b724 0x196 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1a2 (size before relaxing) + *fill* 0x4203b8ba 0x2 + .text.mbedtls_pk_get_ec_group_id + 0x4203b8bc 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x26 (size before relaxing) + *fill* 0x4203b8de 0x2 + .text.mbedtls_ssl_optimize_checksum + 0x4203b8e0 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203b8e0 mbedtls_ssl_optimize_checksum + *fill* 0x4203b8fe 0x2 + .text.mbedtls_ssl_reset_checksum + 0x4203b900 0x74 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x98 (size before relaxing) + 0x4203b900 mbedtls_ssl_reset_checksum + .text.mbedtls_ssl_transform_init + 0x4203b974 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x38 (size before relaxing) + 0x4203b974 mbedtls_ssl_transform_init + .text.mbedtls_ssl_session_init + 0x4203b9a0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203b9a0 mbedtls_ssl_session_init + *fill* 0x4203b9b2 0x2 + .text.mbedtls_ssl_init + 0x4203b9b4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203b9b4 mbedtls_ssl_init + *fill* 0x4203b9c6 0x2 + .text.mbedtls_ssl_conf_own_cert + 0x4203b9c8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203b9c8 mbedtls_ssl_conf_own_cert + .text.mbedtls_ssl_get_mode_from_transform + 0x4203b9dc 0x21 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x25 (size before relaxing) + 0x4203b9dc mbedtls_ssl_get_mode_from_transform + *fill* 0x4203b9fd 0x3 + .text.mbedtls_ssl_get_mode_from_ciphersuite + 0x4203ba00 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x2a (size before relaxing) + 0x4203ba00 mbedtls_ssl_get_mode_from_ciphersuite + *fill* 0x4203ba26 0x2 + .text.ssl_tls12_populate_transform + 0x4203ba28 0x2c2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x2ee (size before relaxing) + *fill* 0x4203bcea 0x2 + .text.mbedtls_ssl_get_hostname_pointer + 0x4203bcec 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203bcec mbedtls_ssl_get_hostname_pointer + .text.get_hostname_for_verification + 0x4203bcfc 0x2d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x31 (size before relaxing) + *fill* 0x4203bd29 0x3 + .text.mbedtls_ssl_set_hostname + 0x4203bd2c 0x62 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x66 (size before relaxing) + 0x4203bd2c mbedtls_ssl_set_hostname + *fill* 0x4203bd8e 0x2 + .text.mbedtls_ssl_conf_alpn_protocols + 0x4203bd90 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203bd90 mbedtls_ssl_conf_alpn_protocols + *fill* 0x4203bdcd 0x3 + .text.mbedtls_ssl_get_output_max_frag_len + 0x4203bdd0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3b (size before relaxing) + 0x4203bdd0 mbedtls_ssl_get_output_max_frag_len + *fill* 0x4203be00 0x0 + .text.mbedtls_ssl_get_max_out_record_payload + 0x4203be00 0x2f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203be00 mbedtls_ssl_get_max_out_record_payload + *fill* 0x4203be2f 0x1 + .text.mbedtls_ssl_handshake_step + 0x4203be30 0xae esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xb6 (size before relaxing) + 0x4203be30 mbedtls_ssl_handshake_step + *fill* 0x4203bede 0x2 + .text.mbedtls_ssl_handshake + 0x4203bee0 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203bee0 mbedtls_ssl_handshake + .text.mbedtls_ssl_handshake_free + 0x4203bf14 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x48 (size before relaxing) + 0x4203bf14 mbedtls_ssl_handshake_free + .text.mbedtls_ssl_session_free + 0x4203bf48 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x23 (size before relaxing) + 0x4203bf48 mbedtls_ssl_session_free + *fill* 0x4203bf63 0x1 + .text.ssl_handshake_init + 0x4203bf64 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xbd (size before relaxing) + *fill* 0x4203c005 0x3 + .text.mbedtls_ssl_setup + 0x4203c008 0x8f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xa7 (size before relaxing) + 0x4203c008 mbedtls_ssl_setup + *fill* 0x4203c097 0x1 + .text.mbedtls_ssl_start_renegotiation + 0x4203c098 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x26 (size before relaxing) + 0x4203c098 mbedtls_ssl_start_renegotiation + *fill* 0x4203c0ba 0x2 + .text.mbedtls_ssl_renegotiate + 0x4203c0bc 0x75 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x7d (size before relaxing) + 0x4203c0bc mbedtls_ssl_renegotiate + *fill* 0x4203c131 0x3 + .text.mbedtls_ssl_free + 0x4203c134 0x7e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xa2 (size before relaxing) + 0x4203c134 mbedtls_ssl_free + *fill* 0x4203c1b2 0x2 + .text.mbedtls_ssl_config_init + 0x4203c1b4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203c1b4 mbedtls_ssl_config_init + *fill* 0x4203c1c6 0x2 + .text.mbedtls_ssl_config_defaults + 0x4203c1c8 0xcd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xd9 (size before relaxing) + 0x4203c1c8 mbedtls_ssl_config_defaults + *fill* 0x4203c295 0x3 + .text.mbedtls_ssl_config_free + 0x4203c298 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1b (size before relaxing) + 0x4203c298 mbedtls_ssl_config_free + *fill* 0x4203c2af 0x1 + .text.mbedtls_ssl_sig_from_pk + 0x4203c2b0 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x29 (size before relaxing) + 0x4203c2b0 mbedtls_ssl_sig_from_pk + *fill* 0x4203c2d5 0x3 + .text.mbedtls_ssl_get_ecp_group_id_from_tls_id + 0x4203c2d8 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203c2d8 mbedtls_ssl_get_ecp_group_id_from_tls_id + *fill* 0x4203c30a 0x2 + .text.mbedtls_ssl_get_tls_id_from_ecp_group_id + 0x4203c30c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203c30c mbedtls_ssl_get_tls_id_from_ecp_group_id + *fill* 0x4203c33a 0x2 + .text.mbedtls_ssl_check_curve + 0x4203c33c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x21 (size before relaxing) + 0x4203c33c mbedtls_ssl_check_curve + *fill* 0x4203c359 0x3 + .text.mbedtls_ssl_parse_sig_alg_ext + 0x4203c35c 0x136 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x13a (size before relaxing) + 0x4203c35c mbedtls_ssl_parse_sig_alg_ext + *fill* 0x4203c492 0x2 + .text.mbedtls_ssl_derive_keys + 0x4203c494 0x9e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xae (size before relaxing) + 0x4203c494 mbedtls_ssl_derive_keys + *fill* 0x4203c532 0x2 + .text.mbedtls_ssl_set_calc_verify_md + 0x4203c534 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203c534 mbedtls_ssl_set_calc_verify_md + *fill* 0x4203c55d 0x3 + .text.mbedtls_ssl_write_certificate + 0x4203c560 0xf9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xfd (size before relaxing) + 0x4203c560 mbedtls_ssl_write_certificate + *fill* 0x4203c659 0x3 + .text.mbedtls_ssl_handshake_wrapup_free_hs_transform + 0x4203c65c 0x2f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3b (size before relaxing) + 0x4203c65c mbedtls_ssl_handshake_wrapup_free_hs_transform + *fill* 0x4203c68b 0x1 + .text.mbedtls_ssl_handshake_wrapup + 0x4203c68c 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x5c (size before relaxing) + 0x4203c68c mbedtls_ssl_handshake_wrapup + .text.mbedtls_ssl_write_finished + 0x4203c6e4 0x9a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xa2 (size before relaxing) + 0x4203c6e4 mbedtls_ssl_write_finished + *fill* 0x4203c77e 0x2 + .text.mbedtls_ssl_parse_finished + 0x4203c780 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xf0 (size before relaxing) + 0x4203c780 mbedtls_ssl_parse_finished + .text.mbedtls_ssl_get_key_exchange_md_tls1_2 + 0x4203c860 0x6a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x86 (size before relaxing) + 0x4203c860 mbedtls_ssl_get_key_exchange_md_tls1_2 + *fill* 0x4203c8ca 0x2 + .text.mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg + 0x4203c8cc 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3a (size before relaxing) + 0x4203c8cc mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg + *fill* 0x4203c902 0x2 + .text.mbedtls_ssl_write_sig_alg_ext + 0x4203c904 0xdb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203c904 mbedtls_ssl_write_sig_alg_ext + *fill* 0x4203c9df 0x1 + .text.mbedtls_ssl_parse_server_name_ext + 0x4203c9e0 0x101 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x105 (size before relaxing) + 0x4203c9e0 mbedtls_ssl_parse_server_name_ext + *fill* 0x4203cae1 0x3 + .text.mbedtls_ssl_parse_alpn_ext + 0x4203cae4 0x10c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203cae4 mbedtls_ssl_parse_alpn_ext + .text.mbedtls_ssl_write_alpn_ext + 0x4203cbf0 0x7d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203cbf0 mbedtls_ssl_write_alpn_ext + *fill* 0x4203cc6d 0x3 + .text.mbedtls_ssl_check_cert_usage + 0x4203cc70 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4203cc70 mbedtls_ssl_check_cert_usage + *fill* 0x4203cd16 0x2 + .text.mbedtls_ssl_verify_certificate + 0x4203cd18 0x16a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x17e (size before relaxing) + 0x4203cd18 mbedtls_ssl_verify_certificate + *fill* 0x4203ce82 0x2 + .text.mbedtls_ssl_parse_certificate + 0x4203ce84 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xe4 (size before relaxing) + 0x4203ce84 mbedtls_ssl_parse_certificate + .text.ssl_write_supported_point_formats_ext + 0x4203cf4c 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + *fill* 0x4203cf8d 0x3 + .text.ssl_write_max_fragment_length_ext + 0x4203cf90 0x4a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + *fill* 0x4203cfda 0x2 + .text.ssl_write_encrypt_then_mac_ext + 0x4203cfdc 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + *fill* 0x4203d021 0x3 + .text.ssl_write_extended_ms_ext + 0x4203d024 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + *fill* 0x4203d069 0x3 + .text.ssl_write_renegotiation_ext + 0x4203d06c 0x65 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + *fill* 0x4203d0d1 0x3 + .text.ssl_write_session_ticket_ext + 0x4203d0d4 0x7c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_max_fragment_length_ext + 0x4203d150 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + *fill* 0x4203d17a 0x2 + .text.ssl_parse_encrypt_then_mac_ext + 0x4203d17c 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x2b (size before relaxing) + *fill* 0x4203d1a3 0x1 + .text.ssl_parse_extended_ms_ext + 0x4203d1a4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x2c (size before relaxing) + .text.ssl_parse_session_ticket_ext + 0x4203d1cc 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x30 (size before relaxing) + .text.ssl_parse_supported_point_formats_ext + 0x4203d1f8 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x51 (size before relaxing) + *fill* 0x4203d245 0x3 + .text.ssl_parse_certificate_request + 0x4203d248 0x12a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x132 (size before relaxing) + *fill* 0x4203d372 0x2 + .text.ssl_parse_server_hello_done + 0x4203d374 0x4a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x4e (size before relaxing) + *fill* 0x4203d3be 0x2 + .text.ssl_parse_renegotiation_info + 0x4203d3c0 0x71 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x75 (size before relaxing) + *fill* 0x4203d431 0x3 + .text.ssl_parse_alpn_ext + 0x4203d434 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0xc0 (size before relaxing) + .text.ssl_parse_server_hello + 0x4203d4ec 0x3f6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x436 (size before relaxing) + *fill* 0x4203d8e2 0x2 + .text.ssl_check_server_ecdh_params + 0x4203d8e4 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x2e (size before relaxing) + *fill* 0x4203d90e 0x2 + .text.ssl_get_ecdh_params_from_cert + 0x4203d910 0x67 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x73 (size before relaxing) + *fill* 0x4203d977 0x1 + .text.ssl_parse_server_ecdh_params + 0x4203d978 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x28 (size before relaxing) + .text.mbedtls_ssl_get_pk_type_and_md_alg_from_sig_alg + 0x4203d99c 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x65 (size before relaxing) + *fill* 0x4203d9fd 0x3 + .text.mbedtls_md_get_size_from_type + 0x4203da00 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x16 (size before relaxing) + *fill* 0x4203da12 0x2 + .text.ssl_parse_server_key_exchange + 0x4203da14 0x2e6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x30e (size before relaxing) + *fill* 0x4203dcfa 0x2 + .text.ssl_write_encrypted_pms + 0x4203dcfc 0xba esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0xc2 (size before relaxing) + *fill* 0x4203ddb6 0x2 + .text.ssl_write_client_key_exchange + 0x4203ddb8 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0xba (size before relaxing) + *fill* 0x4203de6e 0x2 + .text.ssl_write_certificate_verify + 0x4203de70 0x12a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x13e (size before relaxing) + *fill* 0x4203df9a 0x2 + .text.ssl_parse_new_session_ticket + 0x4203df9c 0x127 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x137 (size before relaxing) + *fill* 0x4203e0c3 0x1 + .text.mbedtls_ssl_tls12_write_client_hello_exts + 0x4203e0c4 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x94 (size before relaxing) + 0x4203e0c4 mbedtls_ssl_tls12_write_client_hello_exts + .text.mbedtls_ssl_handshake_client_step + 0x4203e144 0x14c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x17f (size before relaxing) + 0x4203e144 mbedtls_ssl_handshake_client_step + *fill* 0x4203e290 0x0 + .text.ssl_parse_supported_point_formats + 0x4203e290 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + *fill* 0x4203e2d1 0x3 + .text.ssl_parse_max_fragment_length_ext + 0x4203e2d4 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + *fill* 0x4203e2fb 0x1 + .text.ssl_parse_encrypt_then_mac_ext + 0x4203e2fc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_extended_ms_ext + 0x4203e32c 0x31 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + *fill* 0x4203e35d 0x3 + .text.ssl_write_renegotiation_ext + 0x4203e360 0x7a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + *fill* 0x4203e3da 0x2 + .text.ssl_parse_renegotiation_info + 0x4203e3dc 0x59 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x5d (size before relaxing) + *fill* 0x4203e435 0x3 + .text.ssl_parse_supported_groups_ext + 0x4203e438 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0xe4 (size before relaxing) + .text.ssl_handle_id_based_session_resumption + 0x4203e50c 0x6f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x76 (size before relaxing) + *fill* 0x4203e57b 0x1 + .text.ssl_parse_session_ticket_ext + 0x4203e57c 0x84 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x94 (size before relaxing) + .text.mbedtls_pk_get_ec_group_id + 0x4203e600 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x26 (size before relaxing) + *fill* 0x4203e622 0x2 + .text.ssl_check_key_curve + 0x4203e624 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x2c (size before relaxing) + .text.ssl_pick_cert + 0x4203e648 0x7c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x88 (size before relaxing) + .text.ssl_ciphersuite_match + 0x4203e6c4 0x76 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x8a (size before relaxing) + *fill* 0x4203e73a 0x2 + .text.ssl_parse_client_hello + 0x4203e73c 0x5bc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x5ec (size before relaxing) + .text.ssl_write_encrypt_then_mac_ext + 0x4203ecf8 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + *fill* 0x4203ed4e 0x2 + .text.ssl_write_server_hello + 0x4203ed50 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x1e8 (size before relaxing) + .text.ssl_write_server_hello_done + 0x4203ef10 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x2c (size before relaxing) + .text.ssl_get_ecdh_params_from_cert + 0x4203ef38 0x55 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x61 (size before relaxing) + *fill* 0x4203ef8d 0x3 + .text.ssl_prepare_server_key_exchange + 0x4203ef90 0x1aa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x1d2 (size before relaxing) + *fill* 0x4203f13a 0x2 + .text.ssl_write_server_key_exchange + 0x4203f13c 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0xae (size before relaxing) + *fill* 0x4203f1e2 0x2 + .text.ssl_write_certificate_request + 0x4203f1e4 0x178 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x180 (size before relaxing) + .text.ssl_decrypt_encrypted_pms + 0x4203f35c 0x99 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0xa9 (size before relaxing) + *fill* 0x4203f3f5 0x3 + .text.ssl_parse_encrypted_pms + 0x4203f3f8 0xde esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0xea (size before relaxing) + *fill* 0x4203f4d6 0x2 + .text.ssl_parse_client_key_exchange + 0x4203f4d8 0xda esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0xde (size before relaxing) + *fill* 0x4203f5b2 0x2 + .text.ssl_parse_certificate_verify + 0x4203f5b4 0x15e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x172 (size before relaxing) + *fill* 0x4203f712 0x2 + .text.ssl_write_new_session_ticket + 0x4203f714 0x91 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x95 (size before relaxing) + *fill* 0x4203f7a5 0x3 + .text.mbedtls_ssl_handshake_server_step + 0x4203f7a8 0x133 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x15e (size before relaxing) + 0x4203f7a8 mbedtls_ssl_handshake_server_step + *fill* 0x4203f8db 0x1 + .text.mbedtls_ms_time + 0x4203f8dc 0x62 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + 0x66 (size before relaxing) + 0x4203f8dc mbedtls_ms_time + *fill* 0x4203f93e 0x2 + .text.net_would_block + 0x4203f940 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x21 (size before relaxing) + *fill* 0x4203f95d 0x3 + .text.mbedtls_net_recv + 0x4203f960 0x5e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x6a (size before relaxing) + 0x4203f960 mbedtls_net_recv + *fill* 0x4203f9be 0x2 + .text.mbedtls_net_send + 0x4203f9c0 0x5e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x6a (size before relaxing) + 0x4203f9c0 mbedtls_net_send + *fill* 0x4203fa1e 0x2 + .text.mbedtls_net_free + 0x4203fa20 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x1e (size before relaxing) + 0x4203fa20 mbedtls_net_free + *fill* 0x4203fa3a 0x2 + .text.ssl_generate_random + 0x4203fa3c 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x58 (size before relaxing) + .text.ssl_prepare_client_hello + 0x4203fa90 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + *fill* 0x4203fb36 0x2 + .text.ssl_write_client_hello_cipher_suites + 0x4203fb38 0xed esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0xf5 (size before relaxing) + *fill* 0x4203fc25 0x3 + .text.ssl_write_hostname_ext + 0x4203fc28 0x91 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x95 (size before relaxing) + *fill* 0x4203fcb9 0x3 + .text.ssl_write_alpn_ext + 0x4203fcbc 0xbd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + *fill* 0x4203fd79 0x3 + .text.ssl_write_supported_groups_ext + 0x4203fd7c 0xdd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0xe1 (size before relaxing) + *fill* 0x4203fe59 0x3 + .text.ssl_write_client_hello_body + 0x4203fe5c 0x1ec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x208 (size before relaxing) + .text.mbedtls_ssl_write_client_hello + 0x42040048 0x6a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x7a (size before relaxing) + 0x42040048 mbedtls_ssl_write_client_hello + *fill* 0x420400b2 0x2 + .text.mbedtls_int_div_int + 0x420400b4 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x420400e6 0x2 + .text.mbedtls_mpi_free + 0x420400e8 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x420400e8 mbedtls_mpi_free + *fill* 0x4204010e 0x2 + .text.mbedtls_mpi_grow + 0x42040110 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x55 (size before relaxing) + 0x42040110 mbedtls_mpi_grow + *fill* 0x42040161 0x3 + .text.mbedtls_mpi_safe_cond_assign + 0x42040164 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7a (size before relaxing) + 0x42040164 mbedtls_mpi_safe_cond_assign + *fill* 0x420401d6 0x2 + .text.mbedtls_mpi_safe_cond_swap + 0x420401d8 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8c (size before relaxing) + 0x420401d8 mbedtls_mpi_safe_cond_swap + .text.mbedtls_mpi_resize_clear + 0x4204025c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x48 (size before relaxing) + .text.mbedtls_mpi_shrink + 0x420402a0 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x78 (size before relaxing) + 0x420402a0 mbedtls_mpi_shrink + .text.mbedtls_mpi_copy + 0x42040314 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x42040314 mbedtls_mpi_copy + .text.mbedtls_mpi_lset + 0x4204039c 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x47 (size before relaxing) + 0x4204039c mbedtls_mpi_lset + *fill* 0x420403df 0x1 + .literal.mbedtls_mpi_size + 0x420403e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_read_binary_le + 0x420403e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_read_binary + 0x420403e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_write_binary_le + 0x420403e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_write_binary + 0x420403e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_shift_l + 0x420403e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_shift_r + 0x420403e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_abs + 0x420403e0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_cmp_mpi + 0x420403e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_int + 0x420403e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_add_abs + 0x420403e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_sub_abs + 0x420403e4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.add_sub_mpi + 0x420403ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_add_mpi + 0x420403ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_mpi + 0x420403ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_add_int + 0x420403ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_int + 0x420403ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_div_mpi + 0x420403ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa8 (size before relaxing) + .literal.mbedtls_mpi_div_int + 0x420403f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mod_mpi + 0x420403f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_mod_int + 0x420403f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mpi_check_small_factors + 0x420403f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_exp_mod_unsafe + 0x420403f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_gcd + 0x420403f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x58 (size before relaxing) + .literal.mbedtls_mpi_fill_random + 0x420403f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mpi_miller_rabin + 0x420403f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_mpi_random + 0x420403f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_inv_mod + 0x420403f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xd0 (size before relaxing) + .literal.mbedtls_mpi_is_prime_ext + 0x420403f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mpi_bigendian_to_host + 0x420403f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_bitlen + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_bigendian_to_host + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_uint_le_mpi + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_lt_ct + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_read_le + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_read_be + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_write_le + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_write_be + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_shift_r + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_core_shift_l + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_montmul + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_core_get_mont_r2_unsafe + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_core_fill_random + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_random + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_core_to_mont_rep + 0x420403f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_get_pkcs_padding + 0x420403f8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.get_one_and_zeros_padding + 0x42040400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.get_zeros_and_len_padding + 0x42040400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.get_zeros_padding + 0x42040400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.get_no_padding + 0x42040400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.add_zeros_padding + 0x42040400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_aead_encrypt + 0x42040400 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_aead_decrypt + 0x4204040c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_cipher_info_from_type + 0x42040410 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_values + 0x42040414 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_cipher_init + 0x42040418 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_free + 0x42040418 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_setup + 0x42040418 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_cipher_setkey + 0x4204041c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_set_iv + 0x42040428 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_cipher_reset + 0x4204042c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_update + 0x4204042c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_cipher_finish + 0x42040440 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_cipher_set_padding_mode + 0x42040444 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_cipher_crypt + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_cipher_auth_encrypt_ext + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_cipher_auth_decrypt_ext + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_ctx_free + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_ctx_alloc + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_setkey_dec_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_setkey_enc_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_xts_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_ctx_free + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_ctx_alloc + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_aria_setkey_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.gcm_aes_setkey_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ccm_ctx_free + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_ctx_alloc + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_aria_setkey_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ccm_aes_setkey_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_ctx_free + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aria_ctx_alloc + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aria_setkey_dec_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_setkey_enc_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_ctr_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_cfb128_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_cbc_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_ecb_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_ctx_free + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_ctx_alloc + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_setkey_dec_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_setkey_enc_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ctr_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ofb_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cfb128_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cbc_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ecb_wrap + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ct_memmove_left + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ct_memcpy_offset + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x4 (size before relaxing) + .literal.cmac_multiply_by_u + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0xc (size before relaxing) + .literal.cmac_generate_subkeys + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_starts + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_update + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_finish + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ctr_increment_counter + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x8 (size before relaxing) + .literal.block_cipher_df + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x44 (size before relaxing) + .literal.ctr_drbg_update_internal + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed_internal + 0x42040468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ctr_drbg_init + 0x42040468 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ctr_drbg_free + 0x4204046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed + 0x4204046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ctr_drbg_seed + 0x4204046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ctr_drbg_random_with_add + 0x4204046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ctr_drbg_random + 0x4204046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_gen_public_restartable + 0x4204046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.ecdh_compute_shared_restartable + 0x4204046c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x18 (size before relaxing) + .literal.ecdh_init_internal + 0x42040470 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x14 (size before relaxing) + .literal.ecdh_setup_internal + 0x42040470 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.ecdh_free_internal + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x14 (size before relaxing) + .literal.ecdh_read_params_internal + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_read_public_internal + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.ecdh_get_params_internal + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdh_gen_public + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_make_params_internal + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.ecdh_make_public_internal + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecdh_compute_shared + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_calc_secret_internal + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecdh_init + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_setup + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecdh_free + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_make_params + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecdh_read_params + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdh_get_params + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdh_make_public + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecdh_read_public + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecdh_calc_secret + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.ecp_pick_window_size + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mpi_init_many + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mpi_free_many + 0x42040474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.ecp_check_bad_points_mx + 0x42040474 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .literal.ecp_check_pubkey_mx + 0x42040480 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_sub_int_mod + 0x42040480 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_sub_mod + 0x42040480 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_modp + 0x42040480 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_mpi_mul_mod + 0x42040480 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_add_mod + 0x42040484 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_sw_rhs + 0x42040484 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_sw_derive_y + 0x42040484 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.ecp_check_pubkey_sw + 0x42040484 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x30 (size before relaxing) + .literal.ecp_double_add_mxz + 0x42040484 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x48 (size before relaxing) + .literal.ecp_randomize_mxz + 0x42040484 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.ecp_randomize_jac + 0x42040488 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ecp_gen_privkey_sw + 0x42040488 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_normalize_mxz + 0x42040488 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_normalize_jac + 0x42040488 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_mpi_mul_int_mod + 0x42040488 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_shift_l_mod + 0x42040488 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_double_jac + 0x42040488 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x78 (size before relaxing) + .literal.ecp_normalize_jac_many + 0x4204048c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x58 (size before relaxing) + .literal.ecp_safe_invert_jac + 0x42040494 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_select_comb + 0x42040494 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.ecp_comb_recode_core + 0x42040494 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_comb_recode_scalar + 0x42040494 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecp_gen_privkey_mx + 0x42040494 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecp_curve_list + 0x42040494 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_grp_id_list + 0x42040498 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_curve_info_from_grp_id + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_curve_info_from_tls_id + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_point_init + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_init + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_keypair_init + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_point_free + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_free + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ecp_keypair_free + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_copy + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_mul_mxz + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5c (size before relaxing) + .literal.mbedtls_ecp_group_copy + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_set_zero + 0x420404a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_add_mixed + 0x420404a0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x78 (size before relaxing) + .literal.ecp_precompute_comb + 0x420404a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x28 (size before relaxing) + .literal.ecp_mul_comb_core + 0x420404a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.ecp_mul_comb_after_precomp + 0x420404a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_mul_comb + 0x420404a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ecp_is_zero + 0x420404a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_point_cmp + 0x420404a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecp_point_write_binary + 0x420404a4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_ecp_point_read_binary + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_ecp_tls_read_point + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_tls_write_point + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_tls_read_group_id + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_tls_write_group + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_check_pubkey + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecp_check_privkey + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.ecp_mul_restartable_internal + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_mul_restartable + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_mul + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_mul_shortcuts + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_ecp_muladd_restartable + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_ecp_muladd + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_gen_privkey + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecp_read_key + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_ecp_check_pub_priv + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .literal.ecp_mod_p255 + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x10 (size before relaxing) + .literal.ecp_mod_koblitz + 0x420404a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x2c (size before relaxing) + .literal.ecp_mod_p256k1 + 0x420404a8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p224k1 + 0x420404ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p192k1 + 0x420404b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p521 + 0x420404b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_mod_p384 + 0x420404b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p256 + 0x420404b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p224 + 0x420404b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p192 + 0x420404b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x28 (size before relaxing) + .literal.ecp_group_load + 0x420404b4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_use_curve25519 + 0x420404b8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_ecp_group_load + 0x420404c0 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x154 (size before relaxing) + .literal.entropy_update + 0x420405d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x20 (size before relaxing) + .literal.entropy_gather_internal + 0x420405d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_free + 0x420405d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_init + 0x420405d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_entropy_func + 0x420405dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_md_info_from_type + 0x420405dc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_init + 0x420405f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_free + 0x420405f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_md_clone + 0x420405f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md_setup + 0x420405f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_md_starts + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md_update + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md_finish + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md_hmac_starts + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_md_hmac_update + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_md_hmac_finish + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_md_hmac_reset + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_md5 + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_md_get_size_from_type + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x8 (size before relaxing) + .literal.pk_hashlen_helper + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_free + 0x420405fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_info_from_type + 0x420405fc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_setup + 0x4204060c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_setup_rsa_alt + 0x42040614 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_pk_verify_restartable + 0x42040618 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_pk_verify + 0x4204061c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_sign_restartable + 0x4204061c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_pk_sign + 0x4204061c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_decrypt + 0x4204061c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_encrypt + 0x4204061c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_verify_ext + 0x4204061c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_pk_ecc_set_group + 0x42040628 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_pk_ecc_set_key + 0x4204062c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_ecc_set_pubkey_from_prv + 0x4204062c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_ecc_set_pubkey + 0x4204062c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x8 (size before relaxing) + .literal.rsa_debug + 0x4204062c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.eckey_debug + 0x42040634 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_sign_wrap + 0x42040638 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_alt_decrypt_wrap + 0x4204063c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_free_wrap + 0x42040640 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_alloc_wrap + 0x42040640 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_check_pair_wrap + 0x42040640 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.rsa_encrypt_wrap + 0x42040640 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_decrypt_wrap + 0x42040644 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_sign_wrap + 0x42040644 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_verify_wrap + 0x42040644 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .literal.rsa_get_bitlen + 0x42040644 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.eckey_free_wrap + 0x42040644 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_alloc_wrap + 0x42040644 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_check_pair_wrap + 0x42040644 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_sign_wrap + 0x42040644 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_verify_wrap + 0x42040644 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_alt_free_wrap + 0x42040648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.rsa_alt_alloc_wrap + 0x42040648 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_alt_check_pair + 0x42040648 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x18 (size before relaxing) + .literal.pk_get_ecparams + 0x4204064c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x14 (size before relaxing) + .literal.pk_get_pk_alg + 0x42040658 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x18 (size before relaxing) + .literal.pk_use_ecparams_rfc8410 + 0x42040660 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x8 (size before relaxing) + .literal.pk_group_from_specified + 0x42040660 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x64 (size before relaxing) + .literal.pk_group_id_from_group + 0x42040668 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x38 (size before relaxing) + .literal.pk_ecc_group_id_from_specified + 0x42040668 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x20 (size before relaxing) + .literal.pk_use_ecparams + 0x42040668 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .literal.pk_parse_key_rfc8410_der + 0x4204066c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .literal.pk_parse_key_sec1_der + 0x4204066c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x3c (size before relaxing) + .literal.pk_parse_key_pkcs8_unencrypted_der + 0x42040670 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x4c (size before relaxing) + .literal.mbedtls_pk_parse_key_pkcs8_encrypted_der + 0x42040670 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_pk_parse_subpubkey + 0x42040684 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_pk_parse_key + 0x4204068c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xe0 (size before relaxing) + .literal.mbedtls_pk_parse_public_key + 0x420406b8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_calloc + 0x420406c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_free + 0x420406cc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_platform_zeroize + 0x420406d0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.mbedtls_zeroize_and_free + 0x420406d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x8 (size before relaxing) + .literal.asn1_get_nonzero_mpi + 0x420406d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.rsa_check_context + 0x420406d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30 (size before relaxing) + .literal.rsa_prepare_blinding + 0x420406d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3c (size before relaxing) + .literal.rsa_unblind + 0x420406d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_md_get_size_from_type + 0x420406d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.compute_hash + 0x420406d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mgf_mask + 0x420406d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x38 (size before relaxing) + .literal.hash_mprime + 0x420406d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ct_rsaes_pkcs1_v15_unpadding + 0x420406d8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.rsa_rsassa_pkcs1_v15_encode + 0x420406e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_rsa_import + 0x420406e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_import_raw + 0x420406e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_complete + 0x420406e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_rsa_init + 0x420406e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_get_bitlen + 0x420406e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_check_pubkey + 0x420406e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_rsa_parse_pubkey + 0x420406e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_rsa_check_privkey + 0x420406e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_check_pub_priv + 0x420406e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_public + 0x420406e0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_private + 0x420406e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc0 (size before relaxing) + .literal.rsa_rsassa_pss_sign_no_mode_check + 0x420406e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x28 (size before relaxing) + .literal.rsa_rsassa_pss_sign + 0x420406e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_encrypt + 0x420406e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x420406e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_encrypt + 0x420406e4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_decrypt + 0x420406e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x420406e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_decrypt + 0x420406e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_sign + 0x420406e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x420406e8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_sign + 0x420406ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify_ext + 0x420406ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify + 0x420406ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x420406ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_verify + 0x420406ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_free + 0x420406ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_rsa_parse_key + 0x420406ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x60 (size before relaxing) + .literal.mbedtls_rsa_deduce_primes + 0x420406ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_rsa_deduce_private_exponent + 0x420406f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_rsa_deduce_crt + 0x420406f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_validate_params + 0x420406f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x68 (size before relaxing) + .literal.mbedtls_rsa_validate_crt + 0x420406f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_sha1 + 0x420406f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256 + 0x420406f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512 + 0x420406f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_hardware_poll + 0x420406f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x4 (size before relaxing) + .literal.esp_mbedtls_mem_calloc + 0x420406f0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .literal.esp_mbedtls_mem_free + 0x420406f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .literal.esp_aes_xts_init + 0x420406fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_free + 0x420406fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_setkey_enc + 0x420406fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_xts_setkey_dec + 0x420406fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_crypt_xts + 0x420406fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x1c (size before relaxing) + .literal.esp_aes_init + 0x42040700 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_free + 0x42040704 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_setkey + 0x42040704 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_validate_input + 0x42040704 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x28 (size before relaxing) + .literal.esp_aes_acquire_hardware + 0x4204071c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_release_hardware + 0x4204071c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_crypt_ecb + 0x4204071c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x1c (size before relaxing) + .literal.esp_aes_crypt_cbc + 0x4204071c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x34 (size before relaxing) + .literal.esp_aes_crypt_cfb128 + 0x42040720 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x48 (size before relaxing) + .literal.esp_aes_crypt_ofb + 0x42040724 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x40 (size before relaxing) + .literal.esp_aes_crypt_ctr + 0x42040724 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x50 (size before relaxing) + .literal.s_check_dma_capable + 0x42040730 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_dma_process + 0x42040738 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x48 (size before relaxing) + .literal.esp_sha_write_digest_state + 0x4204075c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4 (size before relaxing) + .literal.esp_sha_read_digest_state + 0x4204075c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4 (size before relaxing) + .literal.esp_sha_acquire_hardware + 0x4204075c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_release_hardware + 0x4204075c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_set_mode + 0x4204075c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_block + 0x4204075c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4 (size before relaxing) + .literal.esp_sha_block_mode_fallback + 0x4204075c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x18 (size before relaxing) + .literal.esp_sha_dma + 0x4204076c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x48 (size before relaxing) + .literal.rsa_rsassa_pkcs1_v15_encode + 0x4204078c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + 0x24 (size before relaxing) + .literal.esp_ds_rsa_sign + 0x4204078c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + 0x88 (size before relaxing) + .literal.esp_ds_get_data_ctx + 0x420407bc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .literal.esp_ds_get_hmac_key_id + 0x420407c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .literal.esp_ds_get_keylen + 0x420407c4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_ds_conn_lock + 0x420407cc 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + 0x1c (size before relaxing) + .literal.esp_ds_release_ds_lock + 0x420407e0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + 0x20 (size before relaxing) + .literal.esp_ds_set_session_timeout + 0x420407f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .literal.esp_ds_init_data_ctx + 0x420407f4 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + 0x38 (size before relaxing) + .literal.mpi_words + 0x42040808 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.modular_inverse + 0x42040808 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.calculate_rinv + 0x4204080c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x10 (size before relaxing) + .literal.esp_mpi_isr_initialise + 0x4204080c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x3c (size before relaxing) + .literal.esp_mpi_wait_intr + 0x4204082c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x1c (size before relaxing) + .literal.esp_mpi_exp_mod + 0x42040834 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x60 (size before relaxing) + .literal.mpi_mult_mpi_failover_mod_mult + 0x42040834 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_mpi_exp_mod + 0x42040840 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mul_mpi + 0x42040840 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x40 (size before relaxing) + .literal.mpi_mult_mpi_overlong + 0x42040844 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_mul_int + 0x42040844 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.esp_mpi_enable_hardware_hw_op + 0x42040844 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0xc (size before relaxing) + .literal.esp_mpi_disable_hardware_hw_op + 0x42040844 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x8 (size before relaxing) + .literal.esp_mpi_mul_mpi_hw_op + 0x42040844 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x10 (size before relaxing) + .literal.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x42040844 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x20 (size before relaxing) + .literal.esp_mpi_exp_mpi_mod_hw_op + 0x42040844 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x40 (size before relaxing) + .literal.esp_internal_sha1_block_process + 0x42040850 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.esp_internal_sha_update_state + 0x42040850 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_init + 0x42040850 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_free + 0x42040850 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_clone + 0x42040850 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_starts + 0x42040850 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_update + 0x42040850 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_sha1_finish + 0x42040850 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x10 (size before relaxing) + .literal.esp_internal_sha256_block_process + 0x42040854 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.esp_internal_sha_update_state + 0x42040854 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_init + 0x42040854 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_free + 0x42040854 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_clone + 0x42040854 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_starts + 0x42040854 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_update + 0x42040854 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_sha256_finish + 0x42040854 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x14 (size before relaxing) + .literal.esp_internal_sha512_block_process + 0x42040858 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.esp_internal_sha_update_state + 0x42040858 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha512_init + 0x42040858 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_free + 0x42040858 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_clone + 0x42040858 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_starts + 0x42040858 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_update + 0x42040858 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_sha512_finish + 0x42040858 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x14 (size before relaxing) + .literal.gcm_gen_table + 0x4204085c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.gcm_mult + 0x42040860 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.increment32_j0 + 0x42040864 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x8 (size before relaxing) + .literal.esp_gcm_ghash + 0x42040864 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x18 (size before relaxing) + .literal.esp_gcm_derive_J0 + 0x42040864 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x18 (size before relaxing) + .literal.esp_aes_gcm_setkey + 0x42040868 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x1c (size before relaxing) + .literal.esp_aes_gcm_init + 0x4204086c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_gcm_free + 0x4204086c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_gcm_starts + 0x4204086c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x38 (size before relaxing) + .literal.esp_aes_gcm_update_ad + 0x42040878 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x30 (size before relaxing) + .literal.esp_aes_gcm_update + 0x42040880 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x58 (size before relaxing) + .literal.esp_aes_gcm_finish + 0x42040890 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x1c (size before relaxing) + .literal.esp_aes_gcm_crypt_and_tag_partial_hw + 0x42040890 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_gcm_crypt_and_tag + 0x42040890 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x18 (size before relaxing) + .literal.esp_aes_gcm_auth_decrypt + 0x42040890 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0xc (size before relaxing) + .literal.esp_md5_finish + 0x42040890 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_update + 0x42040894 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_init + 0x42040898 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_starts + 0x4204089c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_free + 0x4204089c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_clone + 0x4204089c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.aria_a + 0x4204089c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .literal.aria_fo_xor + 0x420408a4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x18 (size before relaxing) + .literal.aria_fe_xor + 0x420408b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x18 (size before relaxing) + .literal.aria_rot128 + 0x420408b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_aria_setkey_enc + 0x420408b4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_aria_setkey_dec + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_aria_crypt_ecb + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_aria_init + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_aria_free + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_aria_crypt_cbc + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_aria_crypt_cfb128 + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_aria_crypt_ctr + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.asn1_get_sequence_of_cb + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_tag + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.asn1_get_tagged_int + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_bool + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_int + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_mpi + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_get_bitstring + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_traverse_sequence_of + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_get_bitstring_null + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_sequence_free + 0x420408b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_sequence_of + 0x420408b8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_get_alg + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_asn1_get_alg_null + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_free_named_data_list_shallow + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_write_len_and_tag + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_write_mpi + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ccm_clear_state + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.ccm_calculate_first_block_if_ready + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_crypt + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ccm_compare_tags + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_init + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_setkey + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ccm_free + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_starts + 0x420408bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ccm_set_lengths + 0x420408bc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_update_ad + 0x420408c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_update + 0x420408c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ccm_finish + 0x420408c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0xc (size before relaxing) + .literal.ccm_auth_crypt + 0x420408c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x14 (size before relaxing) + .literal.ccm_auth_decrypt + 0x420408c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ccm_encrypt_and_tag + 0x420408c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_auth_decrypt + 0x420408c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.derive_mpi + 0x420408c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x10 (size before relaxing) + .literal.ecdsa_signature_to_asn1 + 0x420408c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecdsa_sign_restartable + 0x420408c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_ecdsa_sign_det_restartable + 0x420408c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_ecdsa_verify_restartable + 0x420408c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x6c (size before relaxing) + .literal.mbedtls_ecdsa_write_signature_restartable + 0x420408c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecdsa_write_signature + 0x420408c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_read_signature_restartable + 0x420408c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecdsa_read_signature + 0x420408cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_init + 0x420408cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_free + 0x420408cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.gcm_gen_table_rightshift + 0x420408cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x10 (size before relaxing) + .literal.gcm_gen_table + 0x420408cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x14 (size before relaxing) + .literal.gcm_mult_smalltable + 0x420408cc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0xc (size before relaxing) + .literal.gcm_mult + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x4 (size before relaxing) + .literal.gcm_mask + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.gcm_incr + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_gcm_init_soft + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_gcm_setkey_soft + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_gcm_starts_soft + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_gcm_update_ad_soft + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_gcm_update_soft + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_gcm_finish_soft + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_gcm_crypt_and_tag_soft + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_gcm_auth_decrypt_soft + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_gcm_free_soft + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_hmac_drbg_init + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_hmac_drbg_update + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x2c (size before relaxing) + .literal.hmac_drbg_reseed_core + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_hmac_drbg_seed_buf + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_hmac_drbg_reseed + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_random_with_add + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_hmac_drbg_random + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_free + 0x420408d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xc (size before relaxing) + .literal.oid_x509_ext_from_asn1 + 0x420408d0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_sig_alg_from_asn1 + 0x420408d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_pk_alg_from_asn1 + 0x420408d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_grp_id_from_asn1 + 0x420408dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_grp_id_algid_from_asn1 + 0x420408e0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_cipher_alg_from_asn1 + 0x420408e4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_md_alg_from_asn1 + 0x420408e8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_md_hmac_from_asn1 + 0x420408ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_pkcs12_pbe_alg_from_asn1 + 0x420408f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_oid_get_x509_ext_type + 0x420408f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_sig_alg + 0x420408f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_pk_alg + 0x420408f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_ec_grp + 0x420408f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_ec_grp_algid + 0x420408f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_cipher_alg + 0x420408f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_md_alg + 0x420408f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_md + 0x420408f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_md_hmac + 0x420408f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_pkcs12_pbe_alg + 0x420408f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.pem_check_pkcs_padding + 0x420408f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x8 (size before relaxing) + .literal.pem_get_iv + 0x420408f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x8 (size before relaxing) + .literal.pem_pbkdf1 + 0x420408fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x44 (size before relaxing) + .literal.pem_aes_decrypt + 0x420408fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_pem_init + 0x420408fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pem_read_buffer + 0x420408fc 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x84 (size before relaxing) + .literal.mbedtls_pem_free + 0x42040924 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0xc (size before relaxing) + .literal.pkcs12_parse_pbe_params + 0x42040924 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x14 (size before relaxing) + .literal.pkcs12_fill_buffer + 0x42040930 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_get_size_from_type + 0x42040930 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x8 (size before relaxing) + .literal.calculate_hashes + 0x42040930 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_pkcs12_derivation + 0x42040934 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x34 (size before relaxing) + .literal.pkcs12_pbe_derive_key_iv + 0x42040938 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_pkcs12_pbe_ext + 0x42040938 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x38 (size before relaxing) + .literal.pkcs5_parse_pbkdf2_params + 0x4204093c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x20 (size before relaxing) + .literal.pkcs5_pbkdf2_hmac + 0x42040948 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_pkcs5_pbkdf2_hmac_ext + 0x42040948 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_pkcs5_pbes2_ext + 0x42040948 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x4c (size before relaxing) + .literal.esp_sha_dma_start + 0x42040950 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + 0x4 (size before relaxing) + .literal.s_check_dma_capable + 0x42040950 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_isr_initialise + 0x42040950 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .literal.dma_desc_setup_link + 0x42040958 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_dma_wait_complete + 0x42040958 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + 0x20 (size before relaxing) + .literal.esp_aes_intr_alloc + 0x42040964 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + 0x38 (size before relaxing) + .literal.esp_aes_process_dma + 0x4204097c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + 0xd4 (size before relaxing) + .literal.esp_aes_process_dma_ext_ram + 0x420409b8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + 0x3c (size before relaxing) + .literal.crypto_shared_gdma_new_channel + 0x420409bc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0x8 (size before relaxing) + .literal.crypto_shared_gdma_init + 0x420409c0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0x44 (size before relaxing) + .literal.esp_crypto_shared_gdma_start_axi_ahb + 0x420409d8 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0x30 (size before relaxing) + .literal.esp_sha_512_t_init_hash + 0x420409e4 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_base64_encode + 0x420409f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_base64_decode + 0x420409fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_dma_start + 0x420409fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + 0x4 (size before relaxing) + .literal.x509_get_uid + 0x420409fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_subject_key_id + 0x42040a00 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_certificate_policies + 0x42040a04 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x2c (size before relaxing) + .literal.x509_crt_check_san_uri + 0x42040a14 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.x509_string_cmp + 0x42040a14 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_name_cmp + 0x42040a14 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_check_ee_locally_trusted + 0x42040a14 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_version + 0x42040a14 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x10 (size before relaxing) + .literal.x509_get_dates + 0x42040a18 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x10 (size before relaxing) + .literal.x509_get_basic_constraints + 0x42040a1c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x1c (size before relaxing) + .literal.x509_get_ext_key_usage + 0x42040a24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_authority_key_id + 0x42040a24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x18 (size before relaxing) + .literal.x509_get_crt_ext + 0x42040a24 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x50 (size before relaxing) + .literal.x509_inet_pton_ipv4 + 0x42040a2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.x509_inet_pton_ipv6 + 0x42040a2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_get_ec_group_id + 0x42040a2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.x509_profile_check_key + 0x42040a2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xc (size before relaxing) + .literal.x509_check_wildcard + 0x42040a2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_check_cn + 0x42040a2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_check_signature + 0x42040a2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_x509_crt_check_key_usage + 0x42040a2c 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_parent + 0x42040a38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_find_parent_in + 0x42040a38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_find_parent + 0x42040a38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_crt_check_extended_key_usage + 0x42040a38 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_x509_crt_is_revoked + 0x42040a3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.x509_crt_verifycrl + 0x42040a3c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x34 (size before relaxing) + .literal.x509_crt_verify_chain + 0x42040a44 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_x509_crt_parse_cn_inet_pton + 0x42040a48 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xc (size before relaxing) + .literal.x509_crt_check_san_ip + 0x42040a4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_check_san + 0x42040a4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xc (size before relaxing) + .literal.x509_crt_verify_name + 0x42040a4c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x14 (size before relaxing) + .literal.x509_crt_verify_restartable_ca_cb + 0x42040a50 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_x509_crt_verify_restartable + 0x42040a54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_crt_init + 0x42040a54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_crt_free + 0x42040a54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x2c (size before relaxing) + .literal.x509_crt_parse_der_core + 0x42040a54 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xc4 (size before relaxing) + .literal.mbedtls_x509_crt_parse_der_internal + 0x42040a64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_x509_crt_parse_der + 0x42040a64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_crt_parse + 0x42040a64 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x38 (size before relaxing) + .literal.x509_date_is_valid + 0x42040a70 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x14 (size before relaxing) + .literal.x509_parse_time + 0x42040a80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x24 (size before relaxing) + .literal.x509_get_attr_type_value + 0x42040a80 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x20 (size before relaxing) + .literal.x509_get_hash_alg + 0x42040a94 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x18 (size before relaxing) + .literal.x509_get_other_name + 0x42040aa0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_x509_get_serial + 0x42040aa4 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_x509_get_alg_null + 0x42040ab0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_get_alg + 0x42040ab0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_get_rsassa_pss_params + 0x42040ab0 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_x509_get_name + 0x42040abc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_x509_get_time + 0x42040abc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_x509_get_sig + 0x42040ac4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_x509_get_sig_alg + 0x42040acc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_x509_get_ext + 0x42040acc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_x509_get_ns_cert_type + 0x42040acc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_x509_get_key_usage + 0x42040acc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_parse_subject_alt_name + 0x42040acc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_x509_free_subject_alt_name + 0x42040acc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_get_subject_alt_name_ext + 0x42040acc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_x509_get_subject_alt_name + 0x42040acc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xc (size before relaxing) + .literal.mpi_ll_write_to_mem_block + 0x42040acc 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_ll_read_from_mem_block + 0x42040ad0 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.mpi_hal_enable_hardware_hw_op + 0x42040ad0 0x8 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_interrupt_enable + 0x42040ad8 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_clear_interrupt + 0x42040ad8 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_set_mode + 0x42040adc 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_write_to_mem_block + 0x42040ae0 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_write_at_offset + 0x42040ae0 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_write_m_prime + 0x42040ae0 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_write_rinv + 0x42040ae4 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_enable_constant_time + 0x42040ae4 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_enable_search + 0x42040ae8 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_set_search_position + 0x42040aec 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_start_op + 0x42040af0 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.mpi_hal_wait_op_complete + 0x42040af4 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.mpi_hal_read_result_hw_op + 0x42040af8 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.sha_hal_set_mode + 0x42040af8 0x4 esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.sha_hal_hash_block + 0x42040afc 0xc esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.sha_hal_hash_dma + 0x42040b08 0xc esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.sha_hal_wait_idle + 0x42040b14 0x4 esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.sha_hal_read_digest + 0x42040b18 0x4 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x14 (size before relaxing) + .literal.sha_hal_write_digest + 0x42040b1c 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x8 (size before relaxing) + .literal.sha_hal_sha512_init_hash + 0x42040b1c 0x8 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x10 (size before relaxing) + .literal.aes_ll_write_key + 0x42040b24 0x8 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.aes_ll_set_iv + 0x42040b2c 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x8 (size before relaxing) + .literal.aes_ll_read_iv + 0x42040b30 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x8 (size before relaxing) + .literal.aes_hal_setkey + 0x42040b34 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x8 (size before relaxing) + .literal.aes_hal_transform_dma_start + 0x42040b38 0xc esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.aes_hal_transform_dma_finish + 0x42040b44 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x8 (size before relaxing) + .literal.aes_hal_mode_init + 0x42040b48 0x8 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.aes_hal_set_iv + 0x42040b50 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x4 (size before relaxing) + .literal.aes_hal_read_iv + 0x42040b50 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x4 (size before relaxing) + .literal.aes_hal_wait_done + 0x42040b50 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.hmac_ll_config_output + 0x42040b54 0x4 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .literal.hmac_hal_start + 0x42040b58 0x8 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .literal.hmac_hal_configure + 0x42040b60 0x10 esp-idf/hal/libhal.a(hmac_hal.c.obj) + 0x18 (size before relaxing) + .literal.hmac_hal_clean + 0x42040b70 0x8 esp-idf/hal/libhal.a(hmac_hal.c.obj) + 0xc (size before relaxing) + .literal.ds_acquire_enable + 0x42040b78 0x0 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + 0x14 (size before relaxing) + .literal.ds_disable_release + 0x42040b78 0x0 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + 0x14 (size before relaxing) + .literal.esp_ds_start_sign + 0x42040b78 0x10 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + 0x4c (size before relaxing) + .literal.esp_ds_finish_sign + 0x42040b88 0x4 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + 0x20 (size before relaxing) + .literal.ets_timer_setfn + 0x42040b8c 0x20 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x28 (size before relaxing) + .literal.ets_timer_done + 0x42040bac 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .literal.init_timer_task + 0x42040bac 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x30 (size before relaxing) + .literal.timer_process_alarm + 0x42040bcc 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x30 (size before relaxing) + .literal.timer_task + 0x42040be8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.deinit_timer_task + 0x42040bec 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_create + 0x42040bf0 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .literal.esp_timer_delete + 0x42040bf8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18 (size before relaxing) + .literal.esp_timer_init + 0x42040bfc 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x24 (size before relaxing) + .literal.__esp_system_init_fn_esp_timer_init_os + 0x42040c0c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4 (size before relaxing) + .literal.phy_digital_regs_load + 0x42040c0c 0xc esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.phy_digital_regs_store + 0x42040c18 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xc (size before relaxing) + .literal.load_cal_data_from_nvs_handle + 0x42040c18 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x54 (size before relaxing) + .literal.store_cal_data_to_nvs_handle + 0x42040c48 0x14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x6c (size before relaxing) + .literal.esp_phy_disable + 0x42040c5c 0x18 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x28 (size before relaxing) + .literal.esp_wifi_bt_power_domain_off + 0x42040c74 0x14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x20 (size before relaxing) + .literal.esp_phy_modem_init + 0x42040c88 0xc esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x1c (size before relaxing) + .literal.esp_phy_modem_deinit + 0x42040c94 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x1c (size before relaxing) + .literal.esp_phy_get_init_data + 0x42040c98 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_phy_load_cal_data_from_nvs + 0x42040c9c 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x28 (size before relaxing) + .literal.esp_phy_store_cal_data_to_nvs + 0x42040cac 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x10 (size before relaxing) + .literal.esp_phy_load_cal_and_init + 0x42040cac 0x2c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xa8 (size before relaxing) + .literal.esp_phy_enable + 0x42040cd8 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x3c (size before relaxing) + .literal.phy_get_lock + 0x42040ce8 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4 (size before relaxing) + .literal.phy_get_modem_str + 0x42040ce8 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_enabled_modem_contains + 0x42040cf8 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_track_pll_internal + 0x42040cfc 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x10 (size before relaxing) + .literal.phy_track_pll_timer_callback + 0x42040d00 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x10 (size before relaxing) + .literal.phy_track_pll + 0x42040d00 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x14 (size before relaxing) + .literal.phy_track_pll_init + 0x42040d04 0x20 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x34 (size before relaxing) + .literal.phy_track_pll_deinit + 0x42040d24 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x24 (size before relaxing) + .literal.phy_set_modem_flag + 0x42040d34 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4 (size before relaxing) + .literal.phy_clr_modem_flag + 0x42040d34 0x8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x18 (size before relaxing) + .literal.phy_get_modem_flag + 0x42040d3c 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4 (size before relaxing) + .literal.phy_ant_clr_update_flag + 0x42040d3c 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_ant_update + 0x42040d40 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x10 (size before relaxing) + .literal.kill_oldest_dhcps_pool + 0x42040d44 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x18 (size before relaxing) + .literal.dhcps_option_ip + 0x42040d54 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x18 (size before relaxing) + .literal.parse_options + 0x42040d64 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.create_msg + 0x42040d64 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xc (size before relaxing) + .literal.add_offer_options + 0x42040d68 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x28 (size before relaxing) + .literal.dhcps_response_ip_set + 0x42040d6c 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.dhcps_poll_set + 0x42040d6c 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x20 (size before relaxing) + .literal.dhcps_new + 0x42040d74 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x8 (size before relaxing) + .literal.dhcps_delete + 0x42040d78 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.dhcps_tmr + 0x42040d78 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.parse_msg + 0x42040d7c 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x58 (size before relaxing) + .literal.dhcps_pbuf_alloc + 0x42040d7c 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.send_offer + 0x42040d7c 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x28 (size before relaxing) + .literal.send_ack + 0x42040d7c 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x28 (size before relaxing) + .literal.send_nak + 0x42040d7c 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x2c (size before relaxing) + .literal.handle_dhcp + 0x42040d7c 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x20 (size before relaxing) + .literal.dhcps_start + 0x42040d7c 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x44 (size before relaxing) + .literal.dhcps_stop + 0x42040d8c 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_action_start + 0x42040d8c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_stop + 0x42040d8c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_connected + 0x42040d8c 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x68 (size before relaxing) + .literal.esp_netif_action_disconnected + 0x42040dac 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_got_ip + 0x42040dac 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x14 (size before relaxing) + .literal.low_level_output + 0x42040db0 0x4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x18 (size before relaxing) + .literal.wlanif_input + 0x42040db4 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x10 (size before relaxing) + .literal.wlanif_init + 0x42040db4 0x1c esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x28 (size before relaxing) + .literal.wlanif_init_sta + 0x42040dd0 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4 (size before relaxing) + .literal.esp_pbuf_free + 0x42040dd0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x8 (size before relaxing) + .literal.esp_pbuf_allocate + 0x42040dd0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x10 (size before relaxing) + .literal.wpa_attach + 0x42040dd4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.wpa_config_done + 0x42040dd8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_get_wpa_ie + 0x42040dd8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_rx_eapol + 0x42040dd8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deattach + 0x42040dd8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.wpa_config_reload + 0x42040ddc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x8 (size before relaxing) + .literal.wpa_parse_wpa_ie_wrapper + 0x42040ddc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.hostap_sta_join + 0x42040ddc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x28 (size before relaxing) + .literal.wpa_sta_disconnected_cb + 0x42040de0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x34 (size before relaxing) + .literal.wpa_sta_connected_cb + 0x42040df0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_install_key + 0x42040df0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_key + 0x42040df0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deauthenticate + 0x42040df0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_config_profile + 0x42040df0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x24 (size before relaxing) + .literal.wpa_config_bss + 0x42040df0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sta_connect + 0x42040df0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x1c (size before relaxing) + .literal.wpa_config_assoc_ie + 0x42040df4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x8 (size before relaxing) + .literal.wpa_neg_complete + 0x42040df4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_set_bit + 0x42040df4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_bitlen + 0x42040df4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .text.mbedtls_mpi_set_bit + 0x42040df4 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x68 (size before relaxing) + 0x42040df4 mbedtls_mpi_set_bit + .text.mbedtls_mpi_bitlen + 0x42040e58 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x42040e58 mbedtls_mpi_bitlen + *fill* 0x42040e6a 0x2 + .text.mbedtls_mpi_size + 0x42040e6c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x13 (size before relaxing) + 0x42040e6c mbedtls_mpi_size + *fill* 0x42040e7b 0x1 + .text.mbedtls_mpi_read_binary_le + 0x42040e7c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x32 (size before relaxing) + 0x42040e7c mbedtls_mpi_read_binary_le + *fill* 0x42040eaa 0x2 + .text.mbedtls_mpi_read_binary + 0x42040eac 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x32 (size before relaxing) + 0x42040eac mbedtls_mpi_read_binary + *fill* 0x42040eda 0x2 + .text.mbedtls_mpi_write_binary_le + 0x42040edc 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x42040edc mbedtls_mpi_write_binary_le + *fill* 0x42040ef2 0x2 + .text.mbedtls_mpi_write_binary + 0x42040ef4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x42040ef4 mbedtls_mpi_write_binary + *fill* 0x42040f0a 0x2 + .text.mbedtls_mpi_shift_l + 0x42040f0c 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x42 (size before relaxing) + 0x42040f0c mbedtls_mpi_shift_l + *fill* 0x42040f4a 0x2 + .text.mbedtls_mpi_shift_r + 0x42040f4c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x42040f4c mbedtls_mpi_shift_r + *fill* 0x42040f62 0x2 + .text.mbedtls_mpi_cmp_abs + 0x42040f64 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x42040f64 mbedtls_mpi_cmp_abs + .text.mbedtls_mpi_cmp_mpi + 0x42040fd8 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x42040fd8 mbedtls_mpi_cmp_mpi + *fill* 0x4204107e 0x2 + .text.mbedtls_mpi_cmp_int + 0x42041080 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x38 (size before relaxing) + 0x42041080 mbedtls_mpi_cmp_int + .text.mbedtls_mpi_add_abs + 0x420410b4 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x9c (size before relaxing) + 0x420410b4 mbedtls_mpi_add_abs + .text.mbedtls_mpi_sub_abs + 0x42041148 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa9 (size before relaxing) + 0x42041148 mbedtls_mpi_sub_abs + *fill* 0x420411e9 0x3 + .text.add_sub_mpi + 0x420411ec 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x72 (size before relaxing) + *fill* 0x4204125a 0x2 + .text.mbedtls_mpi_add_mpi + 0x4204125c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4204125c mbedtls_mpi_add_mpi + *fill* 0x42041271 0x3 + .text.mbedtls_mpi_sub_mpi + 0x42041274 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x42041274 mbedtls_mpi_sub_mpi + *fill* 0x42041289 0x3 + .text.mbedtls_mpi_add_int + 0x4204128c 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4204128c mbedtls_mpi_add_int + *fill* 0x420412c6 0x2 + .text.mbedtls_mpi_sub_int + 0x420412c8 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x420412c8 mbedtls_mpi_sub_int + *fill* 0x42041301 0x3 + .text.mbedtls_mpi_div_mpi + 0x42041304 0x364 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x3d0 (size before relaxing) + 0x42041304 mbedtls_mpi_div_mpi + .text.mbedtls_mpi_div_int + 0x42041668 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x3c (size before relaxing) + 0x42041668 mbedtls_mpi_div_int + .text.mbedtls_mpi_mod_mpi + 0x420416a0 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x6e (size before relaxing) + 0x420416a0 mbedtls_mpi_mod_mpi + *fill* 0x42041706 0x2 + .text.mbedtls_mpi_mod_int + 0x42041708 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x42041708 mbedtls_mpi_mod_int + *fill* 0x42041789 0x3 + .text.mpi_check_small_factors + 0x4204178c 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x5a (size before relaxing) + *fill* 0x420417e2 0x2 + .text.mbedtls_mpi_exp_mod_unsafe + 0x420417e4 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + 0x420417e4 mbedtls_mpi_exp_mod_unsafe + .text.mbedtls_mpi_gcd + 0x420417f8 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x134 (size before relaxing) + 0x420417f8 mbedtls_mpi_gcd + .text.mbedtls_mpi_fill_random + 0x420418ec 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x36 (size before relaxing) + 0x420418ec mbedtls_mpi_fill_random + *fill* 0x4204191e 0x2 + .text.mpi_miller_rabin + 0x42041920 0x19d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x1ed (size before relaxing) + *fill* 0x42041abd 0x3 + .text.mbedtls_mpi_random + 0x42041ac0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x48 (size before relaxing) + 0x42041ac0 mbedtls_mpi_random + .text.mbedtls_mpi_inv_mod + 0x42041b00 0x2a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x32c (size before relaxing) + 0x42041b00 mbedtls_mpi_inv_mod + .text.mbedtls_mpi_is_prime_ext + 0x42041da0 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x6a (size before relaxing) + 0x42041da0 mbedtls_mpi_is_prime_ext + *fill* 0x42041dfe 0x2 + .text.mpi_bigendian_to_host + 0x42041e00 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_bitlen + 0x42041e10 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x42041e10 mbedtls_mpi_core_bitlen + *fill* 0x42041e3d 0x3 + .text.mbedtls_mpi_core_bigendian_to_host + 0x42041e40 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x30 (size before relaxing) + 0x42041e40 mbedtls_mpi_core_bigendian_to_host + .text.mbedtls_mpi_core_uint_le_mpi + 0x42041e6c 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x42041e6c mbedtls_mpi_core_uint_le_mpi + *fill* 0x42041ea6 0x2 + .text.mbedtls_mpi_core_lt_ct + 0x42041ea8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x48 (size before relaxing) + 0x42041ea8 mbedtls_mpi_core_lt_ct + .text.mbedtls_mpi_core_read_le + 0x42041eec 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x42041eec mbedtls_mpi_core_read_le + .text.mbedtls_mpi_core_read_be + 0x42041f44 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4e (size before relaxing) + 0x42041f44 mbedtls_mpi_core_read_be + *fill* 0x42041f8e 0x2 + .text.mbedtls_mpi_core_write_le + 0x42041f90 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x42041f90 mbedtls_mpi_core_write_le + .text.mbedtls_mpi_core_write_be + 0x42042008 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x42042008 mbedtls_mpi_core_write_be + .text.mbedtls_mpi_core_shift_r + 0x42042080 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x42042080 mbedtls_mpi_core_shift_r + .text.mbedtls_mpi_core_shift_l + 0x42042114 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x42042114 mbedtls_mpi_core_shift_l + *fill* 0x4204218b 0x1 + .text.mbedtls_mpi_core_montmul + 0x4204218c 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x9f (size before relaxing) + 0x4204218c mbedtls_mpi_core_montmul + *fill* 0x4204221f 0x1 + .text.mbedtls_mpi_core_get_mont_r2_unsafe + 0x42042220 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4a (size before relaxing) + 0x42042220 mbedtls_mpi_core_get_mont_r2_unsafe + *fill* 0x4204225a 0x2 + .text.mbedtls_mpi_core_fill_random + 0x4204225c 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x5d (size before relaxing) + 0x4204225c mbedtls_mpi_core_fill_random + *fill* 0x420422b5 0x3 + .text.mbedtls_mpi_core_random + 0x420422b8 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x96 (size before relaxing) + 0x420422b8 mbedtls_mpi_core_random + *fill* 0x42042342 0x2 + .text.mbedtls_mpi_core_to_mont_rep + 0x42042344 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x1e (size before relaxing) + 0x42042344 mbedtls_mpi_core_to_mont_rep + *fill* 0x4204235e 0x2 + .text.mbedtls_get_pkcs_padding + 0x42042360 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x420423fe 0x2 + .text.get_one_and_zeros_padding + 0x42042400 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x42042489 0x3 + .text.get_zeros_and_len_padding + 0x4204248c 0x8d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x91 (size before relaxing) + *fill* 0x42042519 0x3 + .text.get_zeros_padding + 0x4204251c 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x42042581 0x3 + .text.get_no_padding + 0x42042584 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x420425a2 0x2 + .text.add_zeros_padding + 0x420425a4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x420425b6 0x2 + .text.mbedtls_cipher_aead_encrypt + 0x420425b8 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x42042635 0x3 + .text.mbedtls_cipher_aead_decrypt + 0x42042638 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x420426b2 0x2 + .text.mbedtls_cipher_info_from_type + 0x420426b4 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x420426b4 mbedtls_cipher_info_from_type + *fill* 0x420426ce 0x2 + .text.mbedtls_cipher_info_from_values + 0x420426d0 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x420426d0 mbedtls_cipher_info_from_values + *fill* 0x4204270a 0x2 + .text.mbedtls_cipher_init + 0x4204270c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4204270c mbedtls_cipher_init + *fill* 0x4204271e 0x2 + .text.mbedtls_cipher_free + 0x42042720 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x36 (size before relaxing) + 0x42042720 mbedtls_cipher_free + *fill* 0x42042753 0x1 + .text.mbedtls_cipher_setup + 0x42042754 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x42042754 mbedtls_cipher_setup + *fill* 0x42042791 0x3 + .text.mbedtls_cipher_setkey + 0x42042794 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x42042794 mbedtls_cipher_setkey + *fill* 0x42042829 0x3 + .text.mbedtls_cipher_set_iv + 0x4204282c 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4204282c mbedtls_cipher_set_iv + *fill* 0x420428e2 0x2 + .text.mbedtls_cipher_reset + 0x420428e4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x420428e4 mbedtls_cipher_reset + *fill* 0x420428f9 0x3 + .text.mbedtls_cipher_update + 0x420428fc 0x2a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x2a8 (size before relaxing) + 0x420428fc mbedtls_cipher_update + .text.mbedtls_cipher_finish + 0x42042ba0 0x19c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x42042ba0 mbedtls_cipher_finish + .text.mbedtls_cipher_set_padding_mode + 0x42042d3c 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x42042d3c mbedtls_cipher_set_padding_mode + *fill* 0x42042dcd 0x3 + .text.mbedtls_cipher_crypt + 0x42042dd0 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x62 (size before relaxing) + 0x42042dd0 mbedtls_cipher_crypt + *fill* 0x42042e26 0x2 + .text.mbedtls_cipher_auth_encrypt_ext + 0x42042e28 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x42042e28 mbedtls_cipher_auth_encrypt_ext + *fill* 0x42042e6d 0x3 + .text.mbedtls_cipher_auth_decrypt_ext + 0x42042e70 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x42042e70 mbedtls_cipher_auth_decrypt_ext + *fill* 0x42042ebd 0x3 + .text.xts_aes_ctx_free + 0x42042ec0 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x17 (size before relaxing) + *fill* 0x42042ed3 0x1 + .text.xts_aes_ctx_alloc + 0x42042ed4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x42042eea 0x2 + .text.xts_aes_setkey_dec_wrap + 0x42042eec 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.xts_aes_setkey_enc_wrap + 0x42042efc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_xts_wrap + 0x42042f0c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x42042f31 0x3 + .text.gcm_ctx_free + 0x42042f34 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x42042f46 0x2 + .text.gcm_ctx_alloc + 0x42042f48 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x42042f5e 0x2 + .text.gcm_aria_setkey_wrap + 0x42042f60 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x42042f75 0x3 + .text.gcm_aes_setkey_wrap + 0x42042f78 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x42042f8d 0x3 + .text.ccm_ctx_free + 0x42042f90 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x42042fa2 0x2 + .text.ccm_ctx_alloc + 0x42042fa4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x42042fba 0x2 + .text.ccm_aria_setkey_wrap + 0x42042fbc 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x42042fd1 0x3 + .text.ccm_aes_setkey_wrap + 0x42042fd4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x42042fe9 0x3 + .text.aria_ctx_free + 0x42042fec 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x42042ffe 0x2 + .text.aria_ctx_alloc + 0x42043000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x42043016 0x2 + .text.aria_setkey_dec_wrap + 0x42043018 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aria_setkey_enc_wrap + 0x42043028 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aria_crypt_ctr_wrap + 0x42043038 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x42043055 0x3 + .text.aria_crypt_cfb128_wrap + 0x42043058 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x42043075 0x3 + .text.aria_crypt_cbc_wrap + 0x42043078 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x42043091 0x3 + .text.aria_crypt_ecb_wrap + 0x42043094 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_ctx_free + 0x420430a4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x420430b6 0x2 + .text.aes_ctx_alloc + 0x420430b8 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x420430ce 0x2 + .text.aes_setkey_dec_wrap + 0x420430d0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_setkey_enc_wrap + 0x420430e0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_ctr_wrap + 0x420430f0 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x4204310d 0x3 + .text.aes_crypt_ofb_wrap + 0x42043110 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x42043129 0x3 + .text.aes_crypt_cfb128_wrap + 0x4204312c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x42043149 0x3 + .text.aes_crypt_cbc_wrap + 0x4204314c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x42043165 0x3 + .text.aes_crypt_ecb_wrap + 0x42043168 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x4204317d 0x3 + .text.mbedtls_ct_memmove_left + 0x42043180 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x42043180 mbedtls_ct_memmove_left + *fill* 0x420431e5 0x3 + .text.mbedtls_ct_memcpy_offset + 0x420431e8 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x37 (size before relaxing) + 0x420431e8 mbedtls_ct_memcpy_offset + *fill* 0x4204321b 0x1 + .text.cmac_multiply_by_u + 0x4204321c 0x9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + *fill* 0x420432b9 0x3 + .text.cmac_generate_subkeys + 0x420432bc 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x5a (size before relaxing) + *fill* 0x4204330e 0x2 + .text.mbedtls_cipher_cmac_starts + 0x42043310 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x7e (size before relaxing) + 0x42043310 mbedtls_cipher_cmac_starts + *fill* 0x4204338a 0x2 + .text.mbedtls_cipher_cmac_update + 0x4204338c 0xf7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x4204338c mbedtls_cipher_cmac_update + *fill* 0x42043483 0x1 + .text.mbedtls_cipher_cmac_finish + 0x42043484 0x10d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x125 (size before relaxing) + 0x42043484 mbedtls_cipher_cmac_finish + *fill* 0x42043591 0x3 + .text.mbedtls_ctr_increment_counter + 0x42043594 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.block_cipher_df + 0x420435f8 0x19a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x1b2 (size before relaxing) + *fill* 0x42043792 0x2 + .text.ctr_drbg_update_internal + 0x42043794 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x88 (size before relaxing) + .text.mbedtls_ctr_drbg_reseed_internal + 0x42043814 0xc5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xcd (size before relaxing) + *fill* 0x420438d9 0x3 + .text.mbedtls_ctr_drbg_init + 0x420438dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x24 (size before relaxing) + 0x420438dc mbedtls_ctr_drbg_init + .text.mbedtls_ctr_drbg_free + 0x420438fc 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x23 (size before relaxing) + 0x420438fc mbedtls_ctr_drbg_free + *fill* 0x4204391b 0x1 + .text.mbedtls_ctr_drbg_reseed + 0x4204391c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4204391c mbedtls_ctr_drbg_reseed + *fill* 0x42043931 0x3 + .text.mbedtls_ctr_drbg_seed + 0x42043934 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x58 (size before relaxing) + 0x42043934 mbedtls_ctr_drbg_seed + .text.mbedtls_ctr_drbg_random_with_add + 0x42043984 0xc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xd3 (size before relaxing) + 0x42043984 mbedtls_ctr_drbg_random_with_add + *fill* 0x42043a47 0x1 + .text.mbedtls_ctr_drbg_random + 0x42043a48 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x18 (size before relaxing) + 0x42043a48 mbedtls_ctr_drbg_random + .text.ecdh_gen_public_restartable + 0x42043a5c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x2c (size before relaxing) + .text.ecdh_compute_shared_restartable + 0x42043a84 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x53 (size before relaxing) + *fill* 0x42043ac8 0x0 + .text.ecdh_init_internal + 0x42043ac8 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x36 (size before relaxing) + *fill* 0x42043aee 0x2 + .text.ecdh_setup_internal + 0x42043af0 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + *fill* 0x42043b06 0x2 + .text.ecdh_free_internal + 0x42043b08 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x36 (size before relaxing) + *fill* 0x42043b2e 0x2 + .text.ecdh_read_params_internal + 0x42043b30 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x1c (size before relaxing) + .text.ecdh_read_public_internal + 0x42043b48 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + *fill* 0x42043b6f 0x1 + .text.ecdh_get_params_internal + 0x42043b70 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x44 (size before relaxing) + .text.mbedtls_ecdh_gen_public + 0x42043bb0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x42043bb0 mbedtls_ecdh_gen_public + *fill* 0x42043bc9 0x3 + .text.ecdh_make_params_internal + 0x42043bcc 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x5c (size before relaxing) + .text.ecdh_make_public_internal + 0x42043c20 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x3c (size before relaxing) + .text.mbedtls_ecdh_compute_shared + 0x42043c58 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x42043c58 mbedtls_ecdh_compute_shared + *fill* 0x42043c75 0x3 + .text.ecdh_calc_secret_internal + 0x42043c78 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8a (size before relaxing) + *fill* 0x42043cf6 0x2 + .text.mbedtls_ecdh_init + 0x42043cf8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x42043cf8 mbedtls_ecdh_init + *fill* 0x42043d11 0x3 + .text.mbedtls_ecdh_setup + 0x42043d14 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x26 (size before relaxing) + 0x42043d14 mbedtls_ecdh_setup + *fill* 0x42043d36 0x2 + .text.mbedtls_ecdh_free + 0x42043d38 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x42043d38 mbedtls_ecdh_free + *fill* 0x42043d57 0x1 + .text.mbedtls_ecdh_make_params + 0x42043d58 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x42043d58 mbedtls_ecdh_make_params + *fill* 0x42043d85 0x3 + .text.mbedtls_ecdh_read_params + 0x42043d88 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x42 (size before relaxing) + 0x42043d88 mbedtls_ecdh_read_params + *fill* 0x42043dc2 0x2 + .text.mbedtls_ecdh_get_params + 0x42043dc4 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x55 (size before relaxing) + 0x42043dc4 mbedtls_ecdh_get_params + *fill* 0x42043e15 0x3 + .text.mbedtls_ecdh_make_public + 0x42043e18 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x42043e18 mbedtls_ecdh_make_public + *fill* 0x42043e45 0x3 + .text.mbedtls_ecdh_read_public + 0x42043e48 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x42043e48 mbedtls_ecdh_read_public + *fill* 0x42043e66 0x2 + .text.mbedtls_ecdh_calc_secret + 0x42043e68 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x42043e68 mbedtls_ecdh_calc_secret + *fill* 0x42043e91 0x3 + .text.ecp_pick_window_size + 0x42043e94 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .text.mpi_init_many + 0x42043ec4 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x42043edf 0x1 + .text.mpi_free_many + 0x42043ee0 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x42043efb 0x1 + .text.ecp_check_bad_points_mx + 0x42043efc 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xab (size before relaxing) + *fill* 0x42043f90 0x0 + .text.ecp_check_pubkey_mx + 0x42043f90 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x41 (size before relaxing) + *fill* 0x42043fc9 0x3 + .text.mbedtls_mpi_sub_int_mod + 0x42043fcc 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3e (size before relaxing) + *fill* 0x42044007 0x1 + .text.mbedtls_mpi_sub_mod + 0x42044008 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3e (size before relaxing) + *fill* 0x4204403f 0x1 + .text.ecp_modp + 0x42044040 0x99 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x9d (size before relaxing) + *fill* 0x420440d9 0x3 + .text.mbedtls_mpi_mul_mod + 0x420440dc 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2f (size before relaxing) + *fill* 0x42044107 0x1 + .text.mbedtls_mpi_add_mod + 0x42044108 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x42044142 0x2 + .text.ecp_sw_rhs + 0x42044144 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x60 (size before relaxing) + .text.mbedtls_ecp_sw_derive_y + 0x4204419c 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x98 (size before relaxing) + *fill* 0x42044219 0x3 + .text.ecp_check_pubkey_sw + 0x4204421c 0x7b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x9b (size before relaxing) + *fill* 0x42044297 0x1 + .text.ecp_double_add_mxz + 0x42044298 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x164 (size before relaxing) + .text.ecp_randomize_mxz + 0x420443bc 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5a (size before relaxing) + *fill* 0x42044403 0x1 + .text.ecp_randomize_jac + 0x42044404 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x90 (size before relaxing) + .text.mbedtls_ecp_gen_privkey_sw + 0x42044480 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .text.ecp_normalize_mxz + 0x4204449c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x38 (size before relaxing) + .text.ecp_normalize_jac + 0x420444cc 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x92 (size before relaxing) + *fill* 0x42044543 0x1 + .text.mbedtls_mpi_mul_int_mod + 0x42044544 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3a (size before relaxing) + *fill* 0x4204457a 0x2 + .text.mbedtls_mpi_shift_l_mod + 0x4204457c 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3a (size before relaxing) + *fill* 0x420445b2 0x2 + .text.ecp_double_jac + 0x420445b4 0x1fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x25a (size before relaxing) + *fill* 0x420447ae 0x2 + .text.ecp_normalize_jac_many + 0x420447b0 0x165 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1a1 (size before relaxing) + *fill* 0x42044915 0x3 + .text.ecp_safe_invert_jac + 0x42044918 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x46 (size before relaxing) + *fill* 0x4204494e 0x2 + .text.ecp_select_comb + 0x42044950 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x66 (size before relaxing) + *fill* 0x420449aa 0x2 + .text.ecp_comb_recode_core + 0x420449ac 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8e (size before relaxing) + *fill* 0x42044a36 0x2 + .text.ecp_comb_recode_scalar + 0x42044a38 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x91 (size before relaxing) + *fill* 0x42044aad 0x3 + .text.mbedtls_ecp_gen_privkey_mx + 0x42044ab0 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x76 (size before relaxing) + *fill* 0x42044b16 0x2 + .text.mbedtls_ecp_curve_list + 0x42044b18 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42044b18 mbedtls_ecp_curve_list + .text.mbedtls_ecp_grp_id_list + 0x42044b20 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42044b20 mbedtls_ecp_grp_id_list + *fill* 0x42044b5d 0x3 + .text.mbedtls_ecp_curve_info_from_grp_id + 0x42044b60 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1f (size before relaxing) + 0x42044b60 mbedtls_ecp_curve_info_from_grp_id + *fill* 0x42044b7b 0x1 + .text.mbedtls_ecp_curve_info_from_tls_id + 0x42044b7c 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42044b7c mbedtls_ecp_curve_info_from_tls_id + *fill* 0x42044b9e 0x2 + .text.mbedtls_ecp_point_init + 0x42044ba0 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1f (size before relaxing) + 0x42044ba0 mbedtls_ecp_point_init + *fill* 0x42044bb7 0x1 + .text.mbedtls_ecp_group_init + 0x42044bb8 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4f (size before relaxing) + 0x42044bb8 mbedtls_ecp_group_init + *fill* 0x42044bf7 0x1 + .text.mbedtls_ecp_keypair_init + 0x42044bf8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + 0x42044bf8 mbedtls_ecp_keypair_init + .text.mbedtls_ecp_point_free + 0x42044c10 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + 0x42044c10 mbedtls_ecp_point_free + .text.mbedtls_ecp_group_free + 0x42044c28 0x6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x7f (size before relaxing) + 0x42044c28 mbedtls_ecp_group_free + *fill* 0x42044c93 0x1 + .text.mbedtls_ecp_keypair_free + 0x42044c94 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x21 (size before relaxing) + 0x42044c94 mbedtls_ecp_keypair_free + *fill* 0x42044cad 0x3 + .text.mbedtls_ecp_copy + 0x42044cb0 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x32 (size before relaxing) + 0x42044cb0 mbedtls_ecp_copy + *fill* 0x42044cda 0x2 + .text.ecp_mul_mxz + 0x42044cdc 0x141 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x189 (size before relaxing) + *fill* 0x42044e1d 0x3 + .text.mbedtls_ecp_group_copy + 0x42044e20 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42044e20 mbedtls_ecp_group_copy + *fill* 0x42044e31 0x3 + .text.mbedtls_ecp_set_zero + 0x42044e34 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x36 (size before relaxing) + 0x42044e34 mbedtls_ecp_set_zero + *fill* 0x42044e5e 0x2 + .text.ecp_add_mixed + 0x42044e60 0x1e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x234 (size before relaxing) + .text.ecp_precompute_comb + 0x42045044 0x157 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x163 (size before relaxing) + *fill* 0x4204519b 0x1 + .text.ecp_mul_comb_core + 0x4204519c 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xb6 (size before relaxing) + *fill* 0x4204523a 0x2 + .text.ecp_mul_comb_after_precomp + 0x4204523c 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x7e (size before relaxing) + *fill* 0x420452ae 0x2 + .text.ecp_mul_comb + 0x420452b0 0xcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xe0 (size before relaxing) + *fill* 0x4204537d 0x3 + .text.mbedtls_ecp_is_zero + 0x42045380 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x16 (size before relaxing) + 0x42045380 mbedtls_ecp_is_zero + *fill* 0x42045393 0x1 + .text.mbedtls_ecp_point_cmp + 0x42045394 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42 (size before relaxing) + 0x42045394 mbedtls_ecp_point_cmp + *fill* 0x420453ce 0x2 + .text.mbedtls_ecp_point_write_binary + 0x420453d0 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10a (size before relaxing) + 0x420453d0 mbedtls_ecp_point_write_binary + *fill* 0x420454c6 0x2 + .text.mbedtls_ecp_point_read_binary + 0x420454c8 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x136 (size before relaxing) + 0x420454c8 mbedtls_ecp_point_read_binary + *fill* 0x420455de 0x2 + .text.mbedtls_ecp_tls_read_point + 0x420455e0 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x420455e0 mbedtls_ecp_tls_read_point + *fill* 0x4204561b 0x1 + .text.mbedtls_ecp_tls_write_point + 0x4204561c 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4204561c mbedtls_ecp_tls_write_point + *fill* 0x42045656 0x2 + .text.mbedtls_ecp_tls_read_group_id + 0x42045658 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42045658 mbedtls_ecp_tls_read_group_id + *fill* 0x420456ad 0x3 + .text.mbedtls_ecp_tls_write_group + 0x420456b0 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3f (size before relaxing) + 0x420456b0 mbedtls_ecp_tls_write_group + *fill* 0x420456eb 0x1 + .text.mbedtls_ecp_check_pubkey + 0x420456ec 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4d (size before relaxing) + 0x420456ec mbedtls_ecp_check_pubkey + *fill* 0x42045731 0x3 + .text.mbedtls_ecp_check_privkey + 0x42045734 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x90 (size before relaxing) + 0x42045734 mbedtls_ecp_check_privkey + .text.ecp_mul_restartable_internal + 0x420457b0 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x74 (size before relaxing) + .text.mbedtls_ecp_mul_restartable + 0x42045814 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x26 (size before relaxing) + 0x42045814 mbedtls_ecp_mul_restartable + *fill* 0x42045836 0x2 + .text.mbedtls_ecp_mul + 0x42045838 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42045838 mbedtls_ecp_mul + *fill* 0x42045855 0x3 + .text.mbedtls_ecp_mul_shortcuts + 0x42045858 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xe3 (size before relaxing) + *fill* 0x42045914 0x0 + .text.mbedtls_ecp_muladd_restartable + 0x42045914 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8f (size before relaxing) + 0x42045914 mbedtls_ecp_muladd_restartable + *fill* 0x42045987 0x1 + .text.mbedtls_ecp_muladd + 0x42045988 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42045988 mbedtls_ecp_muladd + *fill* 0x420459a5 0x3 + .text.mbedtls_ecp_gen_privkey + 0x420459a8 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x41 (size before relaxing) + 0x420459a8 mbedtls_ecp_gen_privkey + *fill* 0x420459e5 0x3 + .text.mbedtls_ecp_read_key + 0x420459e8 0x122 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x152 (size before relaxing) + 0x420459e8 mbedtls_ecp_read_key + *fill* 0x42045b0a 0x2 + .text.mbedtls_ecp_check_pub_priv + 0x42045b0c 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xbc (size before relaxing) + 0x42045b0c mbedtls_ecp_check_pub_priv + .text.ecp_mod_p255 + 0x42045ba4 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x42045bf5 0x3 + .text.ecp_mod_koblitz + 0x42045bf8 0x17e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x192 (size before relaxing) + *fill* 0x42045d76 0x2 + .text.ecp_mod_p256k1 + 0x42045d78 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x42045d92 0x2 + .text.ecp_mod_p224k1 + 0x42045d94 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x42045dae 0x2 + .text.ecp_mod_p192k1 + 0x42045db0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x42045dca 0x2 + .text.ecp_mod_p521 + 0x42045dcc 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x42045e4a 0x2 + .text.ecp_mod_p384 + 0x42045e4c 0x543 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x547 (size before relaxing) + *fill* 0x4204638f 0x1 + .text.ecp_mod_p256 + 0x42046390 0x3fe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x402 (size before relaxing) + *fill* 0x4204678e 0x2 + .text.ecp_mod_p224 + 0x42046790 0x213 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x217 (size before relaxing) + *fill* 0x420469a3 0x1 + .text.ecp_mod_p192 + 0x420469a4 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xbb (size before relaxing) + *fill* 0x42046a3b 0x1 + .text.ecp_group_load + 0x42046a3c 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x90 (size before relaxing) + .text.ecp_use_curve25519 + 0x42046ac8 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xb8 (size before relaxing) + *fill* 0x42046b59 0x3 + .text.mbedtls_ecp_group_load + 0x42046b5c 0x2fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x306 (size before relaxing) + 0x42046b5c mbedtls_ecp_group_load + *fill* 0x42046e56 0x2 + .text.entropy_update + 0x42046e58 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x84 (size before relaxing) + .text.entropy_gather_internal + 0x42046ecc 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x86 (size before relaxing) + *fill* 0x42046f4a 0x2 + .text.mbedtls_entropy_free + 0x42046f4c 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x28 (size before relaxing) + 0x42046f4c mbedtls_entropy_free + .text.mbedtls_entropy_init + 0x42046f70 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x33 (size before relaxing) + 0x42046f70 mbedtls_entropy_init + *fill* 0x42046f9f 0x1 + .text.mbedtls_entropy_func + 0x42046fa0 0x111 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x131 (size before relaxing) + 0x42046fa0 mbedtls_entropy_func + *fill* 0x420470b1 0x3 + .text.mbedtls_md_info_from_type + 0x420470b4 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x420470b4 mbedtls_md_info_from_type + *fill* 0x42047106 0x2 + .text.mbedtls_md_init + 0x42047108 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x42047108 mbedtls_md_init + *fill* 0x4204711a 0x2 + .text.mbedtls_md_free + 0x4204711c 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x90 (size before relaxing) + 0x4204711c mbedtls_md_free + .text.mbedtls_md_clone + 0x420471a0 0xc1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xc5 (size before relaxing) + 0x420471a0 mbedtls_md_clone + *fill* 0x42047261 0x3 + .text.mbedtls_md_setup + 0x42047264 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x142 (size before relaxing) + 0x42047264 mbedtls_md_setup + *fill* 0x4204737a 0x2 + .text.mbedtls_md_starts + 0x4204737c 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x99 (size before relaxing) + 0x4204737c mbedtls_md_starts + *fill* 0x4204740d 0x3 + .text.mbedtls_md_update + 0x42047410 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x93 (size before relaxing) + 0x42047410 mbedtls_md_update + *fill* 0x42047497 0x1 + .text.mbedtls_md_finish + 0x42047498 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x95 (size before relaxing) + 0x42047498 mbedtls_md_finish + *fill* 0x42047521 0x3 + .text.mbedtls_md + 0x42047524 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x86 (size before relaxing) + 0x42047524 mbedtls_md + *fill* 0x4204759e 0x2 + .text.mbedtls_md_hmac_starts + 0x420475a0 0xd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xe5 (size before relaxing) + 0x420475a0 mbedtls_md_hmac_starts + *fill* 0x42047675 0x3 + .text.mbedtls_md_hmac_update + 0x42047678 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x42047678 mbedtls_md_hmac_update + *fill* 0x420476a9 0x3 + .text.mbedtls_md_hmac_finish + 0x420476ac 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x7e (size before relaxing) + 0x420476ac mbedtls_md_hmac_finish + *fill* 0x4204771a 0x2 + .text.mbedtls_md_hmac_reset + 0x4204771c 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x46 (size before relaxing) + 0x4204771c mbedtls_md_hmac_reset + *fill* 0x4204775a 0x2 + .text.mbedtls_md5 + 0x4204775c 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x40 (size before relaxing) + 0x4204775c mbedtls_md5 + *fill* 0x4204778d 0x3 + .text.mbedtls_md_get_size_from_type + 0x42047790 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x16 (size before relaxing) + *fill* 0x420477a2 0x2 + .text.pk_hashlen_helper + 0x420477a4 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x22 (size before relaxing) + *fill* 0x420477c2 0x2 + .text.mbedtls_pk_free + 0x420477c4 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x1e (size before relaxing) + 0x420477c4 mbedtls_pk_free + *fill* 0x420477df 0x1 + .text.mbedtls_pk_info_from_type + 0x420477e0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x420477e0 mbedtls_pk_info_from_type + .text.mbedtls_pk_setup + 0x42047818 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x42047818 mbedtls_pk_setup + *fill* 0x42047849 0x3 + .text.mbedtls_pk_setup_rsa_alt + 0x4204784c 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4204784c mbedtls_pk_setup_rsa_alt + *fill* 0x4204787d 0x3 + .text.mbedtls_pk_verify_restartable + 0x42047880 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x42047880 mbedtls_pk_verify_restartable + *fill* 0x420478c9 0x3 + .text.mbedtls_pk_verify + 0x420478cc 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x420478cc mbedtls_pk_verify + *fill* 0x420478e9 0x3 + .text.mbedtls_pk_sign_restartable + 0x420478ec 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x5d (size before relaxing) + 0x420478ec mbedtls_pk_sign_restartable + *fill* 0x42047945 0x3 + .text.mbedtls_pk_sign + 0x42047948 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x42047948 mbedtls_pk_sign + *fill* 0x42047971 0x3 + .text.mbedtls_pk_decrypt + 0x42047974 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x42047974 mbedtls_pk_decrypt + *fill* 0x420479a9 0x3 + .text.mbedtls_pk_encrypt + 0x420479ac 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x420479ac mbedtls_pk_encrypt + *fill* 0x420479e1 0x3 + .text.mbedtls_pk_verify_ext + 0x420479e4 0xd3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0xe3 (size before relaxing) + 0x420479e4 mbedtls_pk_verify_ext + *fill* 0x42047ab7 0x1 + .text.mbedtls_pk_ecc_set_group + 0x42047ab8 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x81 (size before relaxing) + 0x42047ab8 mbedtls_pk_ecc_set_group + *fill* 0x42047b35 0x3 + .text.mbedtls_pk_ecc_set_key + 0x42047b38 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x37 (size before relaxing) + 0x42047b38 mbedtls_pk_ecc_set_key + *fill* 0x42047b6b 0x1 + .text.mbedtls_pk_ecc_set_pubkey_from_prv + 0x42047b6c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x42047b6c mbedtls_pk_ecc_set_pubkey_from_prv + .text.mbedtls_pk_ecc_set_pubkey + 0x42047b88 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x28 (size before relaxing) + 0x42047b88 mbedtls_pk_ecc_set_pubkey + .text.rsa_debug + 0x42047bac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.eckey_debug + 0x42047bcc 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x42047be1 0x3 + .text.rsa_alt_sign_wrap + 0x42047be4 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_decrypt_wrap + 0x42047c20 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x42047c49 0x3 + .text.rsa_free_wrap + 0x42047c4c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x42047c5e 0x2 + .text.rsa_alloc_wrap + 0x42047c60 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x42047c76 0x2 + .text.rsa_check_pair_wrap + 0x42047c78 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x42047c89 0x3 + .text.rsa_encrypt_wrap + 0x42047c8c 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x2e (size before relaxing) + *fill* 0x42047cb6 0x2 + .text.rsa_decrypt_wrap + 0x42047cb8 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x2e (size before relaxing) + *fill* 0x42047ce2 0x2 + .text.rsa_sign_wrap + 0x42047ce4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x32 (size before relaxing) + *fill* 0x42047d12 0x2 + .text.rsa_verify_wrap + 0x42047d14 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3b (size before relaxing) + *fill* 0x42047d4b 0x1 + .text.rsa_get_bitlen + 0x42047d4c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .text.eckey_free_wrap + 0x42047d58 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x42047d6a 0x2 + .text.eckey_alloc_wrap + 0x42047d6c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x42047d82 0x2 + .text.eckey_check_pair_wrap + 0x42047d84 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x42047d99 0x3 + .text.ecdsa_sign_wrap + 0x42047d9c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x42047dc1 0x3 + .text.ecdsa_verify_wrap + 0x42047dc4 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x22 (size before relaxing) + *fill* 0x42047de2 0x2 + .text.rsa_alt_free_wrap + 0x42047de4 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x42047df3 0x1 + .text.rsa_alt_alloc_wrap + 0x42047df4 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1e (size before relaxing) + *fill* 0x42047e0e 0x2 + .text.rsa_alt_check_pair + 0x42047e10 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x83 (size before relaxing) + *fill* 0x42047e83 0x1 + .text.pk_get_ecparams + 0x42047e84 0x57 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x5b (size before relaxing) + *fill* 0x42047edb 0x1 + .text.pk_get_pk_alg + 0x42047edc 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x7f (size before relaxing) + *fill* 0x42047f53 0x1 + .text.pk_use_ecparams_rfc8410 + 0x42047f54 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + *fill* 0x42047f7d 0x3 + .text.pk_group_from_specified + 0x42047f80 0x1de esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x20a (size before relaxing) + *fill* 0x4204815e 0x2 + .text.pk_group_id_from_group + 0x42048160 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xd2 (size before relaxing) + *fill* 0x4204820e 0x2 + .text.pk_ecc_group_id_from_specified + 0x42048210 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x55 (size before relaxing) + *fill* 0x4204824d 0x3 + .text.pk_use_ecparams + 0x42048250 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_rfc8410_der + 0x42048288 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x4e (size before relaxing) + *fill* 0x420482d2 0x2 + .text.pk_parse_key_sec1_der + 0x420482d4 0x13f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x14f (size before relaxing) + *fill* 0x42048413 0x1 + .text.pk_parse_key_pkcs8_unencrypted_der + 0x42048414 0x167 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x187 (size before relaxing) + *fill* 0x4204857b 0x1 + .text.mbedtls_pk_parse_key_pkcs8_encrypted_der + 0x4204857c 0x112 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x11a (size before relaxing) + *fill* 0x4204868e 0x2 + .text.mbedtls_pk_parse_subpubkey + 0x42048690 0x132 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x146 (size before relaxing) + 0x42048690 mbedtls_pk_parse_subpubkey + *fill* 0x420487c2 0x2 + .text.mbedtls_pk_parse_key + 0x420487c4 0x2be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x322 (size before relaxing) + 0x420487c4 mbedtls_pk_parse_key + *fill* 0x42048a82 0x2 + .text.mbedtls_pk_parse_public_key + 0x42048a84 0x16e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x1a6 (size before relaxing) + 0x42048a84 mbedtls_pk_parse_public_key + *fill* 0x42048bf2 0x2 + .text.mbedtls_calloc + 0x42048bf4 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x42048bf4 mbedtls_calloc + .text.mbedtls_free + 0x42048c08 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x42048c08 mbedtls_free + *fill* 0x42048c17 0x1 + .text.mbedtls_platform_zeroize + 0x42048c18 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x42048c18 mbedtls_platform_zeroize + .text.mbedtls_zeroize_and_free + 0x42048c30 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x1a (size before relaxing) + 0x42048c30 mbedtls_zeroize_and_free + *fill* 0x42048c43 0x1 + .text.asn1_get_nonzero_mpi + 0x42048c44 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x27 (size before relaxing) + *fill* 0x42048c63 0x1 + .text.rsa_check_context + 0x42048c64 0xca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xea (size before relaxing) + *fill* 0x42048d2e 0x2 + .text.rsa_prepare_blinding + 0x42048d30 0x107 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x132 (size before relaxing) + *fill* 0x42048e37 0x1 + .text.rsa_unblind + 0x42048e38 0x8b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xad (size before relaxing) + *fill* 0x42048ec3 0x1 + .text.mbedtls_md_get_size_from_type + 0x42048ec4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x16 (size before relaxing) + *fill* 0x42048ed6 0x2 + .text.compute_hash + 0x42048ed8 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x25 (size before relaxing) + *fill* 0x42048ef9 0x3 + .text.mgf_mask + 0x42048efc 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xf9 (size before relaxing) + *fill* 0x42048fd5 0x3 + .text.hash_mprime + 0x42048fd8 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x96 (size before relaxing) + *fill* 0x42049056 0x2 + .text.mbedtls_ct_rsaes_pkcs1_v15_unpadding + 0x42049058 0xfc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x108 (size before relaxing) + .text.rsa_rsassa_pkcs1_v15_encode + 0x42049154 0x162 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x166 (size before relaxing) + *fill* 0x420492b6 0x2 + .text.mbedtls_rsa_import + 0x420492b8 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x75 (size before relaxing) + 0x420492b8 mbedtls_rsa_import + *fill* 0x4204931d 0x3 + .text.mbedtls_rsa_import_raw + 0x42049320 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x81 (size before relaxing) + 0x42049320 mbedtls_rsa_import_raw + *fill* 0x42049391 0x3 + .text.mbedtls_rsa_complete + 0x42049394 0x1d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1f5 (size before relaxing) + 0x42049394 mbedtls_rsa_complete + *fill* 0x4204956d 0x3 + .text.mbedtls_rsa_init + 0x42049570 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x42049570 mbedtls_rsa_init + *fill* 0x4204958a 0x2 + .text.mbedtls_rsa_get_bitlen + 0x4204958c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + 0x4204958c mbedtls_rsa_get_bitlen + .text.mbedtls_rsa_check_pubkey + 0x42049598 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x62 (size before relaxing) + 0x42049598 mbedtls_rsa_check_pubkey + *fill* 0x420495ea 0x2 + .text.mbedtls_rsa_parse_pubkey + 0x420495ec 0xc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xe5 (size before relaxing) + 0x420495ec mbedtls_rsa_parse_pubkey + *fill* 0x420496b5 0x3 + .text.mbedtls_rsa_check_privkey + 0x420496b8 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x6b (size before relaxing) + 0x420496b8 mbedtls_rsa_check_privkey + *fill* 0x4204971b 0x1 + .text.mbedtls_rsa_check_pub_priv + 0x4204971c 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x41 (size before relaxing) + 0x4204971c mbedtls_rsa_check_pub_priv + *fill* 0x42049755 0x3 + .text.mbedtls_rsa_public + 0x42049758 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x82 (size before relaxing) + 0x42049758 mbedtls_rsa_public + *fill* 0x420497ca 0x2 + .text.mbedtls_rsa_private + 0x420497cc 0x252 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2e6 (size before relaxing) + 0x420497cc mbedtls_rsa_private + *fill* 0x42049a1e 0x2 + .text.rsa_rsassa_pss_sign_no_mode_check + 0x42049a20 0x17e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x18e (size before relaxing) + *fill* 0x42049b9e 0x2 + .text.rsa_rsassa_pss_sign + 0x42049ba0 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + *fill* 0x42049bdd 0x3 + .text.mbedtls_rsa_rsaes_oaep_encrypt + 0x42049be0 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x100 (size before relaxing) + 0x42049be0 mbedtls_rsa_rsaes_oaep_encrypt + .text.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x42049cd4 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x42049cd4 mbedtls_rsa_rsaes_pkcs1_v15_encrypt + *fill* 0x42049d75 0x3 + .text.mbedtls_rsa_pkcs1_encrypt + 0x42049d78 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x42049d78 mbedtls_rsa_pkcs1_encrypt + *fill* 0x42049db5 0x3 + .text.mbedtls_rsa_rsaes_oaep_decrypt + 0x42049db8 0x1a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1bf (size before relaxing) + 0x42049db8 mbedtls_rsa_rsaes_oaep_decrypt + *fill* 0x42049f5b 0x1 + .text.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x42049f5c 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x5d (size before relaxing) + 0x42049f5c mbedtls_rsa_rsaes_pkcs1_v15_decrypt + *fill* 0x42049fad 0x3 + .text.mbedtls_rsa_pkcs1_decrypt + 0x42049fb0 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x42049fb0 mbedtls_rsa_pkcs1_decrypt + *fill* 0x42049ff5 0x3 + .text.mbedtls_rsa_rsassa_pss_sign + 0x42049ff8 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x42049ff8 mbedtls_rsa_rsassa_pss_sign + *fill* 0x4204a019 0x3 + .text.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x4204a01c 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xd6 (size before relaxing) + 0x4204a01c mbedtls_rsa_rsassa_pkcs1_v15_sign + *fill* 0x4204a0d6 0x2 + .text.mbedtls_rsa_pkcs1_sign + 0x4204a0d8 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4204a0d8 mbedtls_rsa_pkcs1_sign + *fill* 0x4204a122 0x2 + .text.mbedtls_rsa_rsassa_pss_verify_ext + 0x4204a124 0x1a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1b1 (size before relaxing) + 0x4204a124 mbedtls_rsa_rsassa_pss_verify_ext + *fill* 0x4204a2c5 0x3 + .text.mbedtls_rsa_rsassa_pss_verify + 0x4204a2c8 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4204a2c8 mbedtls_rsa_rsassa_pss_verify + *fill* 0x4204a2f9 0x3 + .text.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x4204a2fc 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x9c (size before relaxing) + 0x4204a2fc mbedtls_rsa_rsassa_pkcs1_v15_verify + .text.mbedtls_rsa_pkcs1_verify + 0x4204a388 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x41 (size before relaxing) + 0x4204a388 mbedtls_rsa_pkcs1_verify + *fill* 0x4204a3c1 0x3 + .text.mbedtls_rsa_free + 0x4204a3c4 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x7c (size before relaxing) + 0x4204a3c4 mbedtls_rsa_free + .text.mbedtls_rsa_parse_key + 0x4204a41c 0x172 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1b6 (size before relaxing) + 0x4204a41c mbedtls_rsa_parse_key + *fill* 0x4204a58e 0x2 + .text.mbedtls_rsa_deduce_primes + 0x4204a590 0x1ce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x21e (size before relaxing) + 0x4204a590 mbedtls_rsa_deduce_primes + *fill* 0x4204a75e 0x2 + .text.mbedtls_rsa_deduce_private_exponent + 0x4204a760 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0xc8 (size before relaxing) + 0x4204a760 mbedtls_rsa_deduce_private_exponent + .text.mbedtls_rsa_deduce_crt + 0x4204a800 0x69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x78 (size before relaxing) + 0x4204a800 mbedtls_rsa_deduce_crt + *fill* 0x4204a869 0x3 + .text.mbedtls_rsa_validate_params + 0x4204a86c 0x1be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x206 (size before relaxing) + 0x4204a86c mbedtls_rsa_validate_params + *fill* 0x4204aa2a 0x2 + .text.mbedtls_rsa_validate_crt + 0x4204aa2c 0x12c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x15c (size before relaxing) + 0x4204aa2c mbedtls_rsa_validate_crt + .text.mbedtls_sha1 + 0x4204ab58 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x40 (size before relaxing) + 0x4204ab58 mbedtls_sha1 + *fill* 0x4204ab89 0x3 + .text.mbedtls_sha256 + 0x4204ab8c 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x4a (size before relaxing) + 0x4204ab8c mbedtls_sha256 + *fill* 0x4204abca 0x2 + .text.mbedtls_sha512 + 0x4204abcc 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x4a (size before relaxing) + 0x4204abcc mbedtls_sha512 + *fill* 0x4204ac0a 0x2 + .text.mbedtls_hardware_poll + 0x4204ac0c 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x4204ac0c mbedtls_hardware_poll + *fill* 0x4204ac1f 0x1 + .text.esp_mbedtls_mem_calloc + 0x4204ac20 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x4204ac20 esp_mbedtls_mem_calloc + .text.esp_mbedtls_mem_free + 0x4204ac34 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x4204ac34 esp_mbedtls_mem_free + *fill* 0x4204ac42 0x2 + .text.esp_aes_xts_init + 0x4204ac44 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17 (size before relaxing) + 0x4204ac44 esp_aes_xts_init + *fill* 0x4204ac54 0x0 + .text.esp_aes_xts_free + 0x4204ac54 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17 (size before relaxing) + 0x4204ac54 esp_aes_xts_free + *fill* 0x4204ac64 0x0 + .text.esp_aes_xts_setkey_enc + 0x4204ac64 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x3e (size before relaxing) + 0x4204ac64 esp_aes_xts_setkey_enc + *fill* 0x4204ac9a 0x2 + .text.esp_aes_xts_setkey_dec + 0x4204ac9c 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x3e (size before relaxing) + 0x4204ac9c esp_aes_xts_setkey_dec + *fill* 0x4204acd2 0x2 + .text.esp_aes_crypt_xts + 0x4204acd4 0x176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17e (size before relaxing) + 0x4204acd4 esp_aes_crypt_xts + *fill* 0x4204ae4a 0x2 + .text.esp_aes_init + 0x4204ae4c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4204ae4c esp_aes_init + *fill* 0x4204ae61 0x3 + .text.esp_aes_free + 0x4204ae64 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4204ae64 esp_aes_free + *fill* 0x4204ae76 0x2 + .text.esp_aes_setkey + 0x4204ae78 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4204ae78 esp_aes_setkey + *fill* 0x4204aeb2 0x2 + .text.esp_aes_validate_input + 0x4204aeb4 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_acquire_hardware + 0x4204af1c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x13 (size before relaxing) + 0x4204af1c esp_aes_acquire_hardware + *fill* 0x4204af2b 0x1 + .text.esp_aes_release_hardware + 0x4204af2c 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x14 (size before relaxing) + 0x4204af2c esp_aes_release_hardware + *fill* 0x4204af39 0x3 + .text.esp_aes_crypt_ecb + 0x4204af3c 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x70 (size before relaxing) + 0x4204af3c esp_aes_crypt_ecb + .text.esp_aes_crypt_cbc + 0x4204af94 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xbe (size before relaxing) + 0x4204af94 esp_aes_crypt_cbc + *fill* 0x4204b03a 0x2 + .text.esp_aes_crypt_cfb128 + 0x4204b03c 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x160 (size before relaxing) + 0x4204b03c esp_aes_crypt_cfb128 + .text.esp_aes_crypt_ofb + 0x4204b184 0xed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x109 (size before relaxing) + 0x4204b184 esp_aes_crypt_ofb + *fill* 0x4204b271 0x3 + .text.esp_aes_crypt_ctr + 0x4204b274 0x125 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x141 (size before relaxing) + 0x4204b274 esp_aes_crypt_ctr + *fill* 0x4204b399 0x3 + .text.s_check_dma_capable + 0x4204b39c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_dma_process + 0x4204b3b4 0x11e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x122 (size before relaxing) + *fill* 0x4204b4d2 0x2 + .text.esp_sha_write_digest_state + 0x4204b4d4 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4204b4d4 esp_sha_write_digest_state + *fill* 0x4204b4e3 0x1 + .text.esp_sha_read_digest_state + 0x4204b4e4 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4204b4e4 esp_sha_read_digest_state + *fill* 0x4204b4f3 0x1 + .text.esp_sha_acquire_hardware + 0x4204b4f4 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x13 (size before relaxing) + 0x4204b4f4 esp_sha_acquire_hardware + *fill* 0x4204b503 0x1 + .text.esp_sha_release_hardware + 0x4204b504 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x14 (size before relaxing) + 0x4204b504 esp_sha_release_hardware + *fill* 0x4204b511 0x3 + .text.esp_sha_set_mode + 0x4204b514 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x13 (size before relaxing) + 0x4204b514 esp_sha_set_mode + *fill* 0x4204b523 0x1 + .text.esp_sha_block + 0x4204b524 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x2b (size before relaxing) + 0x4204b524 esp_sha_block + *fill* 0x4204b54c 0x0 + .text.esp_sha_block_mode_fallback + 0x4204b54c 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x5c (size before relaxing) + .text.esp_sha_dma + 0x4204b5a4 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x11e (size before relaxing) + 0x4204b5a4 esp_sha_dma + *fill* 0x4204b6ba 0x2 + .text.rsa_rsassa_pkcs1_v15_encode + 0x4204b6bc 0x152 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + 0x15a (size before relaxing) + *fill* 0x4204b80e 0x2 + .text.esp_ds_rsa_sign + 0x4204b810 0x1dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + 0x1e8 (size before relaxing) + 0x4204b810 esp_ds_rsa_sign + .text.esp_ds_get_data_ctx + 0x4204b9ec 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + 0x4204b9ec esp_ds_get_data_ctx + *fill* 0x4204b9f6 0x2 + .text.esp_ds_get_hmac_key_id + 0x4204b9f8 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + 0x4204b9f8 esp_ds_get_hmac_key_id + *fill* 0x4204ba02 0x2 + .text.esp_ds_get_keylen + 0x4204ba04 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + 0x4204ba04 esp_ds_get_keylen + *fill* 0x4204ba35 0x3 + .text.esp_ds_conn_lock + 0x4204ba38 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .text.esp_ds_release_ds_lock + 0x4204ba68 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + 0x4204ba68 esp_ds_release_ds_lock + .text.esp_ds_set_session_timeout + 0x4204bab4 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + 0x4204bab4 esp_ds_set_session_timeout + *fill* 0x4204bacb 0x1 + .text.esp_ds_init_data_ctx + 0x4204bacc 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + 0x4204bacc esp_ds_init_data_ctx + *fill* 0x4204bb7e 0x2 + .text.mpi_words + 0x4204bb80 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x4204bba2 0x2 + .text.modular_inverse + 0x4204bba4 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.calculate_rinv + 0x4204bc10 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x36 (size before relaxing) + *fill* 0x4204bc3b 0x1 + .text.esp_mpi_isr_initialise + 0x4204bc3c 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x8a (size before relaxing) + *fill* 0x4204bcbe 0x2 + .text.esp_mpi_wait_intr + 0x4204bcc0 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x4204bcfd 0x3 + .text.esp_mpi_exp_mod + 0x4204bd00 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x178 (size before relaxing) + .text.mpi_mult_mpi_failover_mod_mult + 0x4204be3c 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x74 (size before relaxing) + *fill* 0x4204be99 0x3 + .text.mbedtls_mpi_exp_mod + 0x4204be9c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + 0x4204be9c mbedtls_mpi_exp_mod + .text.mbedtls_mpi_mul_mpi + 0x4204beb0 0x127 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x143 (size before relaxing) + 0x4204beb0 mbedtls_mpi_mul_mpi + *fill* 0x4204bfd7 0x1 + .text.mpi_mult_mpi_overlong + 0x4204bfd8 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x78 (size before relaxing) + *fill* 0x4204c03d 0x3 + .text.mbedtls_mpi_mul_int + 0x4204c040 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4204c040 mbedtls_mpi_mul_int + *fill* 0x4204c061 0x3 + .text.esp_mpi_enable_hardware_hw_op + 0x4204c064 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x19 (size before relaxing) + 0x4204c064 esp_mpi_enable_hardware_hw_op + *fill* 0x4204c075 0x3 + .text.esp_mpi_disable_hardware_hw_op + 0x4204c078 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x14 (size before relaxing) + 0x4204c078 esp_mpi_disable_hardware_hw_op + *fill* 0x4204c085 0x3 + .text.esp_mpi_mul_mpi_hw_op + 0x4204c088 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x3a (size before relaxing) + 0x4204c088 esp_mpi_mul_mpi_hw_op + *fill* 0x4204c0b6 0x2 + .text.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x4204c0b8 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x77 (size before relaxing) + 0x4204c0b8 esp_mpi_mult_mpi_failover_mod_mult_hw_op + *fill* 0x4204c11b 0x1 + .text.esp_mpi_exp_mpi_mod_hw_op + 0x4204c11c 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0xa3 (size before relaxing) + 0x4204c11c esp_mpi_exp_mpi_mod_hw_op + *fill* 0x4204c19b 0x1 + .text.esp_internal_sha1_block_process + 0x4204c19c 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x22 (size before relaxing) + *fill* 0x4204c1ba 0x2 + .text.esp_internal_sha_update_state + 0x4204c1bc 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x2a (size before relaxing) + *fill* 0x4204c1e3 0x1 + .text.mbedtls_sha1_init + 0x4204c1e4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4204c1e4 mbedtls_sha1_init + *fill* 0x4204c1f6 0x2 + .text.mbedtls_sha1_free + 0x4204c1f8 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x12 (size before relaxing) + 0x4204c1f8 mbedtls_sha1_free + *fill* 0x4204c207 0x1 + .text.mbedtls_sha1_clone + 0x4204c208 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4204c208 mbedtls_sha1_clone + *fill* 0x4204c21a 0x2 + .text.mbedtls_sha1_starts + 0x4204c21c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4204c21c mbedtls_sha1_starts + *fill* 0x4204c239 0x3 + .text.mbedtls_sha1_update + 0x4204c23c 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x116 (size before relaxing) + 0x4204c23c mbedtls_sha1_update + *fill* 0x4204c336 0x2 + .text.mbedtls_sha1_finish + 0x4204c338 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x83 (size before relaxing) + 0x4204c338 mbedtls_sha1_finish + *fill* 0x4204c3b7 0x1 + .text.esp_internal_sha256_block_process + 0x4204c3b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x24 (size before relaxing) + .text.esp_internal_sha_update_state + 0x4204c3d8 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x2a (size before relaxing) + *fill* 0x4204c3ff 0x1 + .text.mbedtls_sha256_init + 0x4204c400 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4204c400 mbedtls_sha256_init + *fill* 0x4204c412 0x2 + .text.mbedtls_sha256_free + 0x4204c414 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x12 (size before relaxing) + 0x4204c414 mbedtls_sha256_free + *fill* 0x4204c423 0x1 + .text.mbedtls_sha256_clone + 0x4204c424 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4204c424 mbedtls_sha256_clone + *fill* 0x4204c436 0x2 + .text.mbedtls_sha256_starts + 0x4204c438 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4204c438 mbedtls_sha256_starts + *fill* 0x4204c45b 0x1 + .text.mbedtls_sha256_update + 0x4204c45c 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x106 (size before relaxing) + 0x4204c45c mbedtls_sha256_update + *fill* 0x4204c546 0x2 + .text.mbedtls_sha256_finish + 0x4204c548 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x9a (size before relaxing) + 0x4204c548 mbedtls_sha256_finish + *fill* 0x4204c5de 0x2 + .text.esp_internal_sha512_block_process + 0x4204c5e0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x24 (size before relaxing) + .text.esp_internal_sha_update_state + 0x4204c600 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x50 (size before relaxing) + .text.mbedtls_sha512_init + 0x4204c64c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4204c64c mbedtls_sha512_init + *fill* 0x4204c65e 0x2 + .text.mbedtls_sha512_free + 0x4204c660 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x12 (size before relaxing) + 0x4204c660 mbedtls_sha512_free + *fill* 0x4204c66f 0x1 + .text.mbedtls_sha512_clone + 0x4204c670 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4204c670 mbedtls_sha512_clone + *fill* 0x4204c682 0x2 + .text.mbedtls_sha512_starts + 0x4204c684 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4204c684 mbedtls_sha512_starts + *fill* 0x4204c6a5 0x3 + .text.mbedtls_sha512_update + 0x4204c6a8 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x13c (size before relaxing) + 0x4204c6a8 mbedtls_sha512_update + .text.mbedtls_sha512_finish + 0x4204c7d0 0xd7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0xdb (size before relaxing) + 0x4204c7d0 mbedtls_sha512_finish + *fill* 0x4204c8a7 0x1 + .text.gcm_gen_table + 0x4204c8a8 0x149 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x4204c9f1 0x3 + .text.gcm_mult + 0x4204c9f4 0x169 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x4204cb5d 0x3 + .text.increment32_j0 + 0x4204cb60 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x4204cba2 0x2 + .text.esp_gcm_ghash + 0x4204cba4 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x5e (size before relaxing) + *fill* 0x4204cbf6 0x2 + .text.esp_gcm_derive_J0 + 0x4204cbf8 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x70 (size before relaxing) + .text.esp_aes_gcm_setkey + 0x4204cc64 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x86 (size before relaxing) + 0x4204cc64 esp_aes_gcm_setkey + *fill* 0x4204cce2 0x2 + .text.esp_aes_gcm_init + 0x4204cce4 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x1e (size before relaxing) + 0x4204cce4 esp_aes_gcm_init + *fill* 0x4204ccfe 0x2 + .text.esp_aes_gcm_free + 0x4204cd00 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4204cd00 esp_aes_gcm_free + *fill* 0x4204cd26 0x2 + .text.esp_aes_gcm_starts + 0x4204cd28 0xda esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0xe2 (size before relaxing) + 0x4204cd28 esp_aes_gcm_starts + *fill* 0x4204ce02 0x2 + .text.esp_aes_gcm_update_ad + 0x4204ce04 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4204ce04 esp_aes_gcm_update_ad + .text.esp_aes_gcm_update + 0x4204ceb0 0x15c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x170 (size before relaxing) + 0x4204ceb0 esp_aes_gcm_update + .text.esp_aes_gcm_finish + 0x4204d00c 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0xa9 (size before relaxing) + 0x4204d00c esp_aes_gcm_finish + *fill* 0x4204d0b1 0x3 + .text.esp_aes_gcm_crypt_and_tag_partial_hw + 0x4204d0b4 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x5c (size before relaxing) + .text.esp_aes_gcm_crypt_and_tag + 0x4204d104 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4204d104 esp_aes_gcm_crypt_and_tag + *fill* 0x4204d181 0x3 + .text.esp_aes_gcm_auth_decrypt + 0x4204d184 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4204d184 esp_aes_gcm_auth_decrypt + *fill* 0x4204d20e 0x2 + .text.esp_md5_finish + 0x4204d210 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4204d210 esp_md5_finish + *fill* 0x4204d221 0x3 + .text.esp_md5_update + 0x4204d224 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4204d224 esp_md5_update + .text.esp_md5_init + 0x4204d238 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4204d238 esp_md5_init + *fill* 0x4204d246 0x2 + .text.esp_md5_starts + 0x4204d248 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x10 (size before relaxing) + 0x4204d248 esp_md5_starts + .text.esp_md5_free + 0x4204d254 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x12 (size before relaxing) + 0x4204d254 esp_md5_free + *fill* 0x4204d262 0x2 + .text.esp_md5_clone + 0x4204d264 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4204d264 esp_md5_clone + *fill* 0x4204d276 0x2 + .text.aria_a 0x4204d278 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x4204d361 0x3 + .text.aria_fo_xor + 0x4204d364 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x86 (size before relaxing) + *fill* 0x4204d3e6 0x2 + .text.aria_fe_xor + 0x4204d3e8 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x86 (size before relaxing) + *fill* 0x4204d46a 0x2 + .text.aria_rot128 + 0x4204d46c 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x4204d4e3 0x1 + .text.mbedtls_aria_setkey_enc + 0x4204d4e4 0x22e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x242 (size before relaxing) + 0x4204d4e4 mbedtls_aria_setkey_enc + *fill* 0x4204d712 0x2 + .text.mbedtls_aria_setkey_dec + 0x4204d714 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4204d714 mbedtls_aria_setkey_dec + *fill* 0x4204d78a 0x2 + .text.mbedtls_aria_crypt_ecb + 0x4204d78c 0x1c7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x1d3 (size before relaxing) + 0x4204d78c mbedtls_aria_crypt_ecb + *fill* 0x4204d953 0x1 + .text.mbedtls_aria_init + 0x4204d954 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4204d954 mbedtls_aria_init + *fill* 0x4204d966 0x2 + .text.mbedtls_aria_free + 0x4204d968 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x12 (size before relaxing) + 0x4204d968 mbedtls_aria_free + *fill* 0x4204d977 0x1 + .text.mbedtls_aria_crypt_cbc + 0x4204d978 0xbd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4204d978 mbedtls_aria_crypt_cbc + *fill* 0x4204da35 0x3 + .text.mbedtls_aria_crypt_cfb128 + 0x4204da38 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4204da38 mbedtls_aria_crypt_cfb128 + *fill* 0x4204dacd 0x3 + .text.mbedtls_aria_crypt_ctr + 0x4204dad0 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4204dad0 mbedtls_aria_crypt_ctr + .text.asn1_get_sequence_of_cb + 0x4204db3c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x30 (size before relaxing) + .text.mbedtls_asn1_get_tag + 0x4204db68 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4204db68 mbedtls_asn1_get_tag + *fill* 0x4204db99 0x3 + .text.asn1_get_tagged_int + 0x4204db9c 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x96 (size before relaxing) + *fill* 0x4204dc2e 0x2 + .text.mbedtls_asn1_get_bool + 0x4204dc30 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x3a (size before relaxing) + 0x4204dc30 mbedtls_asn1_get_bool + *fill* 0x4204dc66 0x2 + .text.mbedtls_asn1_get_int + 0x4204dc68 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4204dc68 mbedtls_asn1_get_int + *fill* 0x4204dc7d 0x3 + .text.mbedtls_asn1_get_mpi + 0x4204dc80 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x30 (size before relaxing) + 0x4204dc80 mbedtls_asn1_get_mpi + .text.mbedtls_asn1_get_bitstring + 0x4204dcac 0x4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x53 (size before relaxing) + 0x4204dcac mbedtls_asn1_get_bitstring + *fill* 0x4204dcfb 0x1 + .text.mbedtls_asn1_traverse_sequence_of + 0x4204dcfc 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x94 (size before relaxing) + 0x4204dcfc mbedtls_asn1_traverse_sequence_of + .text.mbedtls_asn1_get_bitstring_null + 0x4204dd88 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x3e (size before relaxing) + 0x4204dd88 mbedtls_asn1_get_bitstring_null + *fill* 0x4204ddc2 0x2 + .text.mbedtls_asn1_sequence_free + 0x4204ddc4 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4204ddc4 mbedtls_asn1_sequence_free + *fill* 0x4204dddb 0x1 + .text.mbedtls_asn1_get_sequence_of + 0x4204dddc 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x36 (size before relaxing) + 0x4204dddc mbedtls_asn1_get_sequence_of + *fill* 0x4204de0e 0x2 + .text.mbedtls_asn1_get_alg + 0x4204de10 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x93 (size before relaxing) + 0x4204de10 mbedtls_asn1_get_alg + *fill* 0x4204de97 0x1 + .text.mbedtls_asn1_get_alg_null + 0x4204de98 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x48 (size before relaxing) + 0x4204de98 mbedtls_asn1_get_alg_null + .text.mbedtls_asn1_free_named_data_list_shallow + 0x4204dedc 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4204dedc mbedtls_asn1_free_named_data_list_shallow + *fill* 0x4204def3 0x1 + .text.mbedtls_asn1_write_len_and_tag + 0x4204def4 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x2e (size before relaxing) + *fill* 0x4204df1e 0x2 + .text.mbedtls_asn1_write_mpi + 0x4204df20 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x7e (size before relaxing) + 0x4204df20 mbedtls_asn1_write_mpi + *fill* 0x4204df96 0x2 + .text.mbedtls_ccm_clear_state + 0x4204df98 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + *fill* 0x4204dfba 0x2 + .text.ccm_calculate_first_block_if_ready + 0x4204dfbc 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + *fill* 0x4204e072 0x2 + .text.mbedtls_ccm_crypt + 0x4204e074 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x6e (size before relaxing) + *fill* 0x4204e0de 0x2 + .text.mbedtls_ccm_compare_tags + 0x4204e0e0 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x18 (size before relaxing) + .text.mbedtls_ccm_init + 0x4204e0f4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4204e0f4 mbedtls_ccm_init + *fill* 0x4204e106 0x2 + .text.mbedtls_ccm_setkey + 0x4204e108 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x52 (size before relaxing) + 0x4204e108 mbedtls_ccm_setkey + *fill* 0x4204e14e 0x2 + .text.mbedtls_ccm_free + 0x4204e150 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1b (size before relaxing) + 0x4204e150 mbedtls_ccm_free + *fill* 0x4204e167 0x1 + .text.mbedtls_ccm_starts + 0x4204e168 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x79 (size before relaxing) + 0x4204e168 mbedtls_ccm_starts + *fill* 0x4204e1d9 0x3 + .text.mbedtls_ccm_set_lengths + 0x4204e1dc 0x4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4204e1dc mbedtls_ccm_set_lengths + *fill* 0x4204e22b 0x1 + .text.mbedtls_ccm_update_ad + 0x4204e22c 0xf3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4204e22c mbedtls_ccm_update_ad + *fill* 0x4204e31f 0x1 + .text.mbedtls_ccm_update + 0x4204e320 0x1ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4204e320 mbedtls_ccm_update + .text.mbedtls_ccm_finish + 0x4204e4cc 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4204e4cc mbedtls_ccm_finish + *fill* 0x4204e546 0x2 + .text.ccm_auth_crypt + 0x4204e548 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x6a (size before relaxing) + *fill* 0x4204e5a2 0x2 + .text.ccm_auth_decrypt + 0x4204e5a4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x50 (size before relaxing) + .text.mbedtls_ccm_encrypt_and_tag + 0x4204e5ec 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x30 (size before relaxing) + 0x4204e5ec mbedtls_ccm_encrypt_and_tag + .text.mbedtls_ccm_auth_decrypt + 0x4204e618 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x30 (size before relaxing) + 0x4204e618 mbedtls_ccm_auth_decrypt + .text.derive_mpi + 0x4204e644 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x58 (size before relaxing) + .text.ecdsa_signature_to_asn1 + 0x4204e694 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x88 (size before relaxing) + .text.mbedtls_ecdsa_sign_restartable + 0x4204e710 0x1b9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x209 (size before relaxing) + 0x4204e710 mbedtls_ecdsa_sign_restartable + *fill* 0x4204e8c9 0x3 + .text.mbedtls_ecdsa_sign_det_restartable + 0x4204e8cc 0xc7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xeb (size before relaxing) + 0x4204e8cc mbedtls_ecdsa_sign_det_restartable + *fill* 0x4204e993 0x1 + .text.mbedtls_ecdsa_verify_restartable + 0x4204e994 0x13f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x18f (size before relaxing) + 0x4204e994 mbedtls_ecdsa_verify_restartable + *fill* 0x4204ead3 0x1 + .text.mbedtls_ecdsa_write_signature_restartable + 0x4204ead4 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x7a (size before relaxing) + 0x4204ead4 mbedtls_ecdsa_write_signature_restartable + *fill* 0x4204eb3e 0x2 + .text.mbedtls_ecdsa_write_signature + 0x4204eb40 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4204eb40 mbedtls_ecdsa_write_signature + *fill* 0x4204eb69 0x3 + .text.mbedtls_ecdsa_read_signature_restartable + 0x4204eb6c 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xa9 (size before relaxing) + 0x4204eb6c mbedtls_ecdsa_read_signature_restartable + *fill* 0x4204ebff 0x1 + .text.mbedtls_ecdsa_read_signature + 0x4204ec00 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4204ec00 mbedtls_ecdsa_read_signature + *fill* 0x4204ec19 0x3 + .text.mbedtls_ecdsa_init + 0x4204ec1c 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xe (size before relaxing) + 0x4204ec1c mbedtls_ecdsa_init + *fill* 0x4204ec26 0x2 + .text.mbedtls_ecdsa_free + 0x4204ec28 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xf (size before relaxing) + 0x4204ec28 mbedtls_ecdsa_free + *fill* 0x4204ec34 0x0 + .text.gcm_gen_table_rightshift + 0x4204ec34 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .text.gcm_gen_table + 0x4204ed58 0x158 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x15c (size before relaxing) + .text.gcm_mult_smalltable + 0x4204eeb0 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .text.gcm_mult + 0x4204f070 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + *fill* 0x4204f08a 0x2 + .text.gcm_mask + 0x4204f08c 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0xa4 (size before relaxing) + .text.gcm_incr + 0x4204f12c 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + *fill* 0x4204f173 0x1 + .text.mbedtls_gcm_init_soft + 0x4204f174 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x4204f174 mbedtls_gcm_init_soft + *fill* 0x4204f186 0x2 + .text.mbedtls_gcm_setkey_soft + 0x4204f188 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x7c (size before relaxing) + 0x4204f188 mbedtls_gcm_setkey_soft + .text.mbedtls_gcm_starts_soft + 0x4204f1f4 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0xf1 (size before relaxing) + 0x4204f1f4 mbedtls_gcm_starts_soft + *fill* 0x4204f2dd 0x3 + .text.mbedtls_gcm_update_ad_soft + 0x4204f2e0 0x109 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x10d (size before relaxing) + 0x4204f2e0 mbedtls_gcm_update_ad_soft + *fill* 0x4204f3e9 0x3 + .text.mbedtls_gcm_update_soft + 0x4204f3ec 0x15c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x17c (size before relaxing) + 0x4204f3ec mbedtls_gcm_update_soft + .text.mbedtls_gcm_finish_soft + 0x4204f548 0x115 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x119 (size before relaxing) + 0x4204f548 mbedtls_gcm_finish_soft + *fill* 0x4204f65d 0x3 + .text.mbedtls_gcm_crypt_and_tag_soft + 0x4204f660 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x5a (size before relaxing) + 0x4204f660 mbedtls_gcm_crypt_and_tag_soft + *fill* 0x4204f6ae 0x2 + .text.mbedtls_gcm_auth_decrypt_soft + 0x4204f6b0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x54 (size before relaxing) + 0x4204f6b0 mbedtls_gcm_auth_decrypt_soft + .text.mbedtls_gcm_free_soft + 0x4204f6f8 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x1a (size before relaxing) + 0x4204f6f8 mbedtls_gcm_free_soft + *fill* 0x4204f70e 0x2 + .text.mbedtls_hmac_drbg_init + 0x4204f710 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4204f710 mbedtls_hmac_drbg_init + .text.mbedtls_hmac_drbg_update + 0x4204f728 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xd4 (size before relaxing) + 0x4204f728 mbedtls_hmac_drbg_update + .text.hmac_drbg_reseed_core + 0x4204f7e4 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xbc (size before relaxing) + .text.mbedtls_hmac_drbg_seed_buf + 0x4204f898 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x54 (size before relaxing) + 0x4204f898 mbedtls_hmac_drbg_seed_buf + .text.mbedtls_hmac_drbg_reseed + 0x4204f8dc 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4204f8dc mbedtls_hmac_drbg_reseed + *fill* 0x4204f8f1 0x3 + .text.mbedtls_hmac_drbg_random_with_add + 0x4204f8f4 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xd4 (size before relaxing) + 0x4204f8f4 mbedtls_hmac_drbg_random_with_add + .text.mbedtls_hmac_drbg_random + 0x4204f9bc 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + 0x4204f9bc mbedtls_hmac_drbg_random + .text.mbedtls_hmac_drbg_free + 0x4204f9d0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x20 (size before relaxing) + 0x4204f9d0 mbedtls_hmac_drbg_free + .text.oid_x509_ext_from_asn1 + 0x4204f9ec 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x4204fa23 0x1 + .text.oid_sig_alg_from_asn1 + 0x4204fa24 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x4204fa5b 0x1 + .text.oid_pk_alg_from_asn1 + 0x4204fa5c 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x4204fa93 0x1 + .text.oid_grp_id_from_asn1 + 0x4204fa94 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x4204faca 0x2 + .text.oid_grp_id_algid_from_asn1 + 0x4204facc 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x4204fb03 0x1 + .text.oid_cipher_alg_from_asn1 + 0x4204fb04 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x4204fb3b 0x1 + .text.oid_md_alg_from_asn1 + 0x4204fb3c 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x4204fb6f 0x1 + .text.oid_md_hmac_from_asn1 + 0x4204fb70 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x4204fba7 0x1 + .text.oid_pkcs12_pbe_alg_from_asn1 + 0x4204fba8 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x4204fbdf 0x1 + .text.mbedtls_oid_get_x509_ext_type + 0x4204fbe0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x4204fbe0 mbedtls_oid_get_x509_ext_type + *fill* 0x4204fbf9 0x3 + .text.mbedtls_oid_get_sig_alg + 0x4204fbfc 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x20 (size before relaxing) + 0x4204fbfc mbedtls_oid_get_sig_alg + .text.mbedtls_oid_get_pk_alg + 0x4204fc18 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x4204fc18 mbedtls_oid_get_pk_alg + *fill* 0x4204fc31 0x3 + .text.mbedtls_oid_get_ec_grp + 0x4204fc34 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x4204fc34 mbedtls_oid_get_ec_grp + *fill* 0x4204fc4d 0x3 + .text.mbedtls_oid_get_ec_grp_algid + 0x4204fc50 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x4204fc50 mbedtls_oid_get_ec_grp_algid + *fill* 0x4204fc69 0x3 + .text.mbedtls_oid_get_cipher_alg + 0x4204fc6c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x4204fc6c mbedtls_oid_get_cipher_alg + *fill* 0x4204fc85 0x3 + .text.mbedtls_oid_get_md_alg + 0x4204fc88 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1c (size before relaxing) + 0x4204fc88 mbedtls_oid_get_md_alg + .text.mbedtls_oid_get_oid_by_md + 0x4204fca0 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4204fca0 mbedtls_oid_get_oid_by_md + *fill* 0x4204fcc6 0x2 + .text.mbedtls_oid_get_md_hmac + 0x4204fcc8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x4204fcc8 mbedtls_oid_get_md_hmac + *fill* 0x4204fce1 0x3 + .text.mbedtls_oid_get_pkcs12_pbe_alg + 0x4204fce4 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x21 (size before relaxing) + 0x4204fce4 mbedtls_oid_get_pkcs12_pbe_alg + *fill* 0x4204fd01 0x3 + .text.pem_check_pkcs_padding + 0x4204fd04 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + *fill* 0x4204fd45 0x3 + .text.pem_get_iv + 0x4204fd48 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + *fill* 0x4204fdb5 0x3 + .text.pem_pbkdf1 + 0x4204fdb8 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x102 (size before relaxing) + *fill* 0x4204fe8e 0x2 + .text.pem_aes_decrypt + 0x4204fe90 0x4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x5f (size before relaxing) + *fill* 0x4204fedf 0x1 + .text.mbedtls_pem_init + 0x4204fee0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x4204fee0 mbedtls_pem_init + *fill* 0x4204fef2 0x2 + .text.mbedtls_pem_read_buffer + 0x4204fef4 0x2af esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x2c3 (size before relaxing) + 0x4204fef4 mbedtls_pem_read_buffer + *fill* 0x420501a3 0x1 + .text.mbedtls_pem_free + 0x420501a4 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x26 (size before relaxing) + 0x420501a4 mbedtls_pem_free + *fill* 0x420501c2 0x2 + .text.pkcs12_parse_pbe_params + 0x420501c4 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + *fill* 0x42050227 0x1 + .text.pkcs12_fill_buffer + 0x42050228 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + *fill* 0x42050256 0x2 + .text.mbedtls_md_get_size_from_type + 0x42050258 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x16 (size before relaxing) + *fill* 0x4205026a 0x2 + .text.calculate_hashes + 0x4205026c 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0xb6 (size before relaxing) + *fill* 0x4205030a 0x2 + .text.mbedtls_pkcs12_derivation + 0x4205030c 0x224 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x238 (size before relaxing) + 0x4205030c mbedtls_pkcs12_derivation + .text.pkcs12_pbe_derive_key_iv + 0x42050530 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0xca (size before relaxing) + *fill* 0x420505f2 0x2 + .text.mbedtls_pkcs12_pbe_ext + 0x420505f4 0x126 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x14a (size before relaxing) + 0x420505f4 mbedtls_pkcs12_pbe_ext + *fill* 0x4205071a 0x2 + .text.pkcs5_parse_pbkdf2_params + 0x4205071c 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0xaf (size before relaxing) + *fill* 0x420507c7 0x1 + .text.pkcs5_pbkdf2_hmac + 0x420507c8 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x14c (size before relaxing) + .text.mbedtls_pkcs5_pbkdf2_hmac_ext + 0x420508f8 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x5d (size before relaxing) + 0x420508f8 mbedtls_pkcs5_pbkdf2_hmac_ext + *fill* 0x42050949 0x3 + .text.mbedtls_pkcs5_pbes2_ext + 0x4205094c 0x1da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x1fa (size before relaxing) + 0x4205094c mbedtls_pkcs5_pbes2_ext + *fill* 0x42050b26 0x2 + .text.esp_sha_dma_start + 0x42050b28 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + 0x14 (size before relaxing) + 0x42050b28 esp_sha_dma_start + .text.s_check_dma_capable + 0x42050b38 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .text.esp_aes_isr_initialise + 0x42050b50 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + *fill* 0x42050b69 0x3 + .text.dma_desc_setup_link + 0x42050b6c 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + *fill* 0x42050c17 0x1 + .text.esp_aes_dma_wait_complete + 0x42050c18 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + *fill* 0x42050c61 0x3 + .text.esp_aes_intr_alloc + 0x42050c64 0x6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + 0x6f (size before relaxing) + 0x42050c64 esp_aes_intr_alloc + *fill* 0x42050ccf 0x1 + .text.esp_aes_process_dma + 0x42050cd0 0x2b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + 0x2da (size before relaxing) + 0x42050cd0 esp_aes_process_dma + *fill* 0x42050f86 0x2 + .text.esp_aes_process_dma_ext_ram + 0x42050f88 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + 0x10c (size before relaxing) + .text.crypto_shared_gdma_new_channel + 0x42051088 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0x34 (size before relaxing) + .text.crypto_shared_gdma_init + 0x420510b8 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0xe0 (size before relaxing) + .text.esp_crypto_shared_gdma_start_axi_ahb + 0x42051184 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0xc8 (size before relaxing) + 0x42051184 esp_crypto_shared_gdma_start_axi_ahb + .text.esp_sha_512_t_init_hash + 0x42051240 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + 0x10f (size before relaxing) + 0x42051240 esp_sha_512_t_init_hash + *fill* 0x4205134c 0x0 + .text.mbedtls_base64_encode + 0x4205134c 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x14a (size before relaxing) + 0x4205134c mbedtls_base64_encode + *fill* 0x42051482 0x2 + .text.mbedtls_base64_decode + 0x42051484 0x171 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x42051484 mbedtls_base64_decode + *fill* 0x420515f5 0x3 + .text.esp_aes_dma_start + 0x420515f8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + 0x14 (size before relaxing) + 0x420515f8 esp_aes_dma_start + .text.x509_get_uid + 0x42051608 0x4a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x42051652 0x2 + .text.x509_get_subject_key_id + 0x42051654 0x36 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x3a (size before relaxing) + *fill* 0x4205168a 0x2 + .text.x509_get_certificate_policies + 0x4205168c 0x129 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x12d (size before relaxing) + *fill* 0x420517b5 0x3 + .text.x509_crt_check_san_uri + 0x420517b8 0x2f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x420517e7 0x1 + .text.x509_string_cmp + 0x420517e8 0x7a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x42051862 0x2 + .text.x509_name_cmp + 0x42051864 0x79 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x420518dd 0x3 + .text.x509_crt_check_ee_locally_trusted + 0x420518e0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x3c (size before relaxing) + .text.x509_get_version + 0x42051918 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_dates + 0x4205196c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4c (size before relaxing) + .text.x509_get_basic_constraints + 0x420519b0 0x92 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x96 (size before relaxing) + *fill* 0x42051a42 0x2 + .text.x509_get_ext_key_usage + 0x42051a44 0x26 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x42051a6a 0x2 + .text.x509_get_authority_key_id + 0x42051a6c 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xd0 (size before relaxing) + .text.x509_get_crt_ext + 0x42051b34 0x2a4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x2ac (size before relaxing) + .text.x509_inet_pton_ipv4 + 0x42051dd8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x1c (size before relaxing) + .text.x509_inet_pton_ipv6 + 0x42051df0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x1c (size before relaxing) + .text.mbedtls_pk_get_ec_group_id + 0x42051e08 0x22 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x26 (size before relaxing) + *fill* 0x42051e2a 0x2 + .text.x509_profile_check_key + 0x42051e2c 0x74 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x78 (size before relaxing) + .text.x509_check_wildcard + 0x42051ea0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_cn + 0x42051f10 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_signature + 0x42051f3c 0x59 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x69 (size before relaxing) + *fill* 0x42051f95 0x3 + .text.mbedtls_x509_crt_check_key_usage + 0x42051f98 0x3a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x42051f98 mbedtls_x509_crt_check_key_usage + *fill* 0x42051fd2 0x2 + .text.x509_crt_check_parent + 0x42051fd4 0x3a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x42 (size before relaxing) + *fill* 0x4205200e 0x2 + .text.x509_crt_find_parent_in + 0x42052010 0x5e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x4205206e 0x2 + .text.x509_crt_find_parent + 0x42052070 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_check_extended_key_usage + 0x420520c0 0x4a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x420520c0 mbedtls_x509_crt_check_extended_key_usage + *fill* 0x4205210a 0x2 + .text.mbedtls_x509_crt_is_revoked + 0x4205210c 0x34 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4205210c mbedtls_x509_crt_is_revoked + .text.x509_crt_verifycrl + 0x42052140 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xf5 (size before relaxing) + *fill* 0x42052229 0x3 + .text.x509_crt_verify_chain + 0x4205222c 0x129 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x139 (size before relaxing) + *fill* 0x42052355 0x3 + .text.mbedtls_x509_crt_parse_cn_inet_pton + 0x42052358 0x3a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x42052358 mbedtls_x509_crt_parse_cn_inet_pton + *fill* 0x42052392 0x2 + .text.x509_crt_check_san_ip + 0x42052394 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x44 (size before relaxing) + .text.x509_crt_check_san + 0x420523d4 0x62 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x66 (size before relaxing) + *fill* 0x42052436 0x2 + .text.x509_crt_verify_name + 0x42052438 0x5c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x60 (size before relaxing) + .text.x509_crt_verify_restartable_ca_cb + 0x42052494 0xca esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xde (size before relaxing) + *fill* 0x4205255e 0x2 + .text.mbedtls_x509_crt_verify_restartable + 0x42052560 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x42052560 mbedtls_x509_crt_verify_restartable + .text.mbedtls_x509_crt_init + 0x4205258c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4205258c mbedtls_x509_crt_init + *fill* 0x4205259e 0x2 + .text.mbedtls_x509_crt_free + 0x420525a0 0x68 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x84 (size before relaxing) + 0x420525a0 mbedtls_x509_crt_free + .text.x509_crt_parse_der_core + 0x42052608 0x32c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x384 (size before relaxing) + .text.mbedtls_x509_crt_parse_der_internal + 0x42052934 0x7d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8d (size before relaxing) + *fill* 0x420529b1 0x3 + .text.mbedtls_x509_crt_parse_der + 0x420529b4 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x420529b4 mbedtls_x509_crt_parse_der + *fill* 0x420529cd 0x3 + .text.mbedtls_x509_crt_parse + 0x420529d0 0xea esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xf6 (size before relaxing) + 0x420529d0 mbedtls_x509_crt_parse + *fill* 0x42052aba 0x2 + .text.x509_date_is_valid + 0x42052abc 0xcd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + *fill* 0x42052b89 0x3 + .text.x509_parse_time + 0x42052b8c 0x78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x90 (size before relaxing) + .text.x509_get_attr_type_value + 0x42052c04 0xd1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xd9 (size before relaxing) + *fill* 0x42052cd5 0x3 + .text.x509_get_hash_alg + 0x42052cd8 0x8a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x8e (size before relaxing) + *fill* 0x42052d62 0x2 + .text.x509_get_other_name + 0x42052d64 0x117 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x11f (size before relaxing) + *fill* 0x42052e7b 0x1 + .text.mbedtls_x509_get_serial + 0x42052e7c 0x61 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x42052e7c mbedtls_x509_get_serial + *fill* 0x42052edd 0x3 + .text.mbedtls_x509_get_alg_null + 0x42052ee0 0x16 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1a (size before relaxing) + 0x42052ee0 mbedtls_x509_get_alg_null + *fill* 0x42052ef6 0x2 + .text.mbedtls_x509_get_alg + 0x42052ef8 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x42052ef8 mbedtls_x509_get_alg + *fill* 0x42052f12 0x2 + .text.mbedtls_x509_get_rsassa_pss_params + 0x42052f14 0x1c6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1de (size before relaxing) + 0x42052f14 mbedtls_x509_get_rsassa_pss_params + *fill* 0x420530da 0x2 + .text.mbedtls_x509_get_name + 0x420530dc 0x7e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x82 (size before relaxing) + 0x420530dc mbedtls_x509_get_name + *fill* 0x4205315a 0x2 + .text.mbedtls_x509_get_time + 0x4205315c 0x81 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x85 (size before relaxing) + 0x4205315c mbedtls_x509_get_time + *fill* 0x420531dd 0x3 + .text.mbedtls_x509_get_sig + 0x420531e0 0x3e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x420531e0 mbedtls_x509_get_sig + *fill* 0x4205321e 0x2 + .text.mbedtls_x509_get_sig_alg + 0x42053220 0x82 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x8a (size before relaxing) + 0x42053220 mbedtls_x509_get_sig_alg + *fill* 0x420532a2 0x2 + .text.mbedtls_x509_get_ext + 0x420532a4 0x52 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x420532a4 mbedtls_x509_get_ext + *fill* 0x420532f6 0x2 + .text.mbedtls_x509_get_ns_cert_type + 0x420532f8 0x41 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x420532f8 mbedtls_x509_get_ns_cert_type + *fill* 0x42053339 0x3 + .text.mbedtls_x509_get_key_usage + 0x4205333c 0x57 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x4205333c mbedtls_x509_get_key_usage + *fill* 0x42053393 0x1 + .text.mbedtls_x509_parse_subject_alt_name + 0x42053394 0x152 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x156 (size before relaxing) + 0x42053394 mbedtls_x509_parse_subject_alt_name + *fill* 0x420534e6 0x2 + .text.mbedtls_x509_free_subject_alt_name + 0x420534e8 0xf esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x12 (size before relaxing) + 0x420534e8 mbedtls_x509_free_subject_alt_name + *fill* 0x420534f7 0x1 + .text.mbedtls_x509_get_subject_alt_name_ext + 0x420534f8 0xd5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xdd (size before relaxing) + 0x420534f8 mbedtls_x509_get_subject_alt_name_ext + *fill* 0x420535cd 0x3 + .text.mbedtls_x509_get_subject_alt_name + 0x420535d0 0x39 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x420535d0 mbedtls_x509_get_subject_alt_name + *fill* 0x42053609 0x3 + .text.add_appie + 0x4205360c 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1b (size before relaxing) + *fill* 0x42053623 0x1 + .text.ieee80211_vnd_ie_size$part$0 + 0x42053624 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + *fill* 0x42053656 0x2 + .text.ieee80211_add_tie_param + 0x42053658 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x4205365c ieee80211_add_tie_param + *fill* 0x420536ae 0x2 + .text.ieee80211_reg_netstack_buf_cb + 0x420536b0 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x420536b8 ieee80211_reg_netstack_buf_cb + *fill* 0x420536c7 0x1 + .text.ieee80211_set_hmac_stop + 0x420536c8 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x3a (size before relaxing) + 0x420536d0 ieee80211_set_hmac_stop + *fill* 0x420536fe 0x2 + .text.ieee80211_empty_txq + 0x42053700 0x7c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x84 (size before relaxing) + 0x42053708 ieee80211_empty_txq + .text.is_wapi_alloc_tx_buf + 0x4205377c 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x37 (size before relaxing) + 0x4205377c is_wapi_alloc_tx_buf + *fill* 0x420537af 0x1 + .text.ieee80211_wapi_alloc_tx_buf + 0x420537b0 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x420537b4 ieee80211_wapi_alloc_tx_buf + .text.ieee80211_amsdu_adjust_head + 0x42053800 0xbd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0xcd (size before relaxing) + 0x42053804 ieee80211_amsdu_adjust_head + *fill* 0x420538bd 0x3 + .text.ieee80211_amsdu_length_check + 0x420538c0 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2d (size before relaxing) + 0x420538c0 ieee80211_amsdu_length_check + *fill* 0x420538e9 0x3 + .text.ieee80211_output_init + 0x420538ec 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x33 (size before relaxing) + 0x420538f8 ieee80211_output_init + *fill* 0x42053917 0x1 + .text.ieee80211_send_setup + 0x42053918 0x108 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x12c (size before relaxing) + 0x42053924 ieee80211_send_setup + .text.ieee80211_tx_mgt_cb + 0x42053a20 0x197 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1cb (size before relaxing) + 0x42053a2c ieee80211_tx_mgt_cb + *fill* 0x42053bb7 0x1 + .text.ieee80211_classify + 0x42053bb8 0x190 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1a0 (size before relaxing) + 0x42053bcc ieee80211_classify + .text.ieee80211_add_rates + 0x42053d48 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2e (size before relaxing) + 0x42053d48 ieee80211_add_rates + *fill* 0x42053d72 0x2 + .text.ieee80211_add_xrates + 0x42053d74 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x4e (size before relaxing) + 0x42053d74 ieee80211_add_xrates + *fill* 0x42053dba 0x2 + .text.ieee80211_add_probe_resp_app_ies + 0x42053dbc 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x23 (size before relaxing) + 0x42053dbc ieee80211_add_probe_resp_app_ies + *fill* 0x42053ddb 0x1 + .text.ieee80211_add_beacon_app_ies + 0x42053ddc 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x23 (size before relaxing) + 0x42053ddc ieee80211_add_beacon_app_ies + *fill* 0x42053dfb 0x1 + .text.ieee80211_add_assoc_resp_ies + 0x42053dfc 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x42053dfc ieee80211_add_assoc_resp_ies + *fill* 0x42053e1a 0x2 + .text.ieee80211_add_assoc_req_ies + 0x42053e1c 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x42053e1c ieee80211_add_assoc_req_ies + *fill* 0x42053e3a 0x2 + .text.ieee80211_add_probe_req_ies + 0x42053e3c 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x42053e3c ieee80211_add_probe_req_ies + *fill* 0x42053e5a 0x2 + .text.ieee80211_add_wme_param + 0x42053e5c 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x7a (size before relaxing) + 0x42053e64 ieee80211_add_wme_param + *fill* 0x42053ed2 0x2 + .text.ieee80211_add_dh_param + 0x42053ed4 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x53 (size before relaxing) + 0x42053edc ieee80211_add_dh_param + *fill* 0x42053f1b 0x1 + .text.ieee80211_add_csa + 0x42053f1c 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2c (size before relaxing) + 0x42053f1c ieee80211_add_csa + .text.ieee80211_add_supportedchannels + 0x42053f44 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x43 (size before relaxing) + 0x42053f44 ieee80211_add_supportedchannels + *fill* 0x42053f7f 0x1 + .text.ieee80211_add_extcap + 0x42053f80 0xc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0xe0 (size before relaxing) + 0x42053f84 ieee80211_add_extcap + .text.ieee80211_vnd_ie_set + 0x42054040 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x5e (size before relaxing) + 0x42054040 ieee80211_vnd_ie_set + *fill* 0x42054092 0x2 + .text.ieee80211_vnd_lora_ie_size + 0x42054094 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x44 (size before relaxing) + 0x42054094 ieee80211_vnd_lora_ie_size + .text.ieee80211_vnd_lora_ie_set + 0x420540d0 0x66 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x76 (size before relaxing) + 0x420540d0 ieee80211_vnd_lora_ie_set + *fill* 0x42054136 0x2 + .text.ieee80211_setup_robust_mgmtframe + 0x42054138 0xb9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x42054144 ieee80211_setup_robust_mgmtframe + *fill* 0x420541f1 0x3 + .text.ieee80211_mgmt_output + 0x420541f4 0x224 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x254 (size before relaxing) + 0x42054208 ieee80211_mgmt_output + .text.ieee80211_getcapinfo + 0x42054418 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0xb2 (size before relaxing) + 0x42054420 ieee80211_getcapinfo + *fill* 0x420544ba 0x2 + .text.ieee80211_add_bss_max_idle + 0x420544bc 0x5b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x63 (size before relaxing) + 0x420544bc ieee80211_add_bss_max_idle + *fill* 0x42054517 0x1 + .text.ieee80211_assoc_req_construct + 0x42054518 0x483 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x513 (size before relaxing) + 0x4205453c ieee80211_assoc_req_construct + *fill* 0x4205499b 0x1 + .text.ieee80211_assoc_resp_construct + 0x4205499c 0x2f1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x35d (size before relaxing) + 0x420549a8 ieee80211_assoc_resp_construct + *fill* 0x42054c8d 0x3 + .text.ieee80211_auth_construct + 0x42054c90 0x2b3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2e3 (size before relaxing) + 0x42054c9c ieee80211_auth_construct + *fill* 0x42054f43 0x1 + .text.ieee80211_get_robustmgtframe + 0x42054f44 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x60 (size before relaxing) + 0x42054f44 ieee80211_get_robustmgtframe + .text.ieee80211_deauth_construct + 0x42054f94 0x55 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x5d (size before relaxing) + 0x42054f98 ieee80211_deauth_construct + *fill* 0x42054fe9 0x3 + .text.ieee80211_disassoc_construct + 0x42054fec 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x5c (size before relaxing) + 0x42054ff0 ieee80211_disassoc_construct + .text.ieee80211_output + 0x42055040 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1d (size before relaxing) + 0x42055040 ieee80211_output + *fill* 0x42055059 0x3 + .text.ieee80211_amsdu_send_check + 0x4205505c 0xbe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0xc2 (size before relaxing) + 0x42055068 ieee80211_amsdu_send_check + *fill* 0x4205511a 0x2 + .text.ieee80211_amsdu_encap_check + 0x4205511c 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x70 (size before relaxing) + 0x4205511c ieee80211_amsdu_encap_check + .text.ieee80211_encap_amsdu + 0x42055180 0x1be C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1f6 (size before relaxing) + 0x42055184 ieee80211_encap_amsdu + *fill* 0x4205533e 0x2 + .text.ieee80211_alloc_proberesp + 0x42055340 0x2c6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x342 (size before relaxing) + 0x42055350 ieee80211_alloc_proberesp + *fill* 0x42055606 0x2 + .text.ieee80211_alloc_deauth + 0x42055608 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x51 (size before relaxing) + 0x4205560c ieee80211_alloc_deauth + *fill* 0x42055651 0x3 + .text.ieee80211_output_raw_process + 0x42055654 0x178 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1a4 (size before relaxing) + 0x42055668 ieee80211_output_raw_process + .text.ieee80211_beacon_construct + 0x420557cc 0x27d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2e5 (size before relaxing) + 0x420557cc ieee80211_beacon_construct + *fill* 0x42055a49 0x3 + .text.ieee80211_send_nulldata + 0x42055a4c 0x145 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x179 (size before relaxing) + 0x42055a58 ieee80211_send_nulldata + *fill* 0x42055b91 0x3 + .text.ieee80211_encap_keep_alive_data + 0x42055b94 0xe6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x102 (size before relaxing) + 0x42055ba0 ieee80211_encap_keep_alive_data + *fill* 0x42055c7a 0x2 + .text.ieee80211_send_probereq + 0x42055c7c 0x291 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2f1 (size before relaxing) + 0x42055c88 ieee80211_send_probereq + *fill* 0x42055f0d 0x3 + .text.ieee80211_send_mgmt + 0x42055f10 0x10c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x13c (size before relaxing) + 0x42055f1c ieee80211_send_mgmt + .text.ieee80211_send_proberesp + 0x4205601c 0xf4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x124 (size before relaxing) + 0x42056024 ieee80211_send_proberesp + .text.ieee80211_send_deauth_no_bss + 0x42056110 0x141 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x179 (size before relaxing) + 0x42056118 ieee80211_send_deauth_no_bss + *fill* 0x42056251 0x3 + .text.ieee80211_beacon_alloc + 0x42056254 0x238 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x28c (size before relaxing) + 0x4205626c ieee80211_beacon_alloc + .text.ieee80211_encap_null_data + 0x4205648c 0x125 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x151 (size before relaxing) + 0x42056498 ieee80211_encap_null_data + *fill* 0x420565b1 0x3 + .text.ieee80211_pm_tx_null_process + 0x420565b4 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x86 (size before relaxing) + 0x420565b4 ieee80211_pm_tx_null_process + *fill* 0x42056626 0x2 + .text.is_non_esp_oui + 0x42056628 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x46 (size before relaxing) + *fill* 0x4205666a 0x2 + .text.is_esp_manufacturer_oui + 0x4205666c 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + *fill* 0x420566a7 0x1 + .text.ieee80211_is_action_category_robust + 0x420566a8 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + *fill* 0x420566dd 0x3 + .text.ieee80211_hostapd_beacon_txcb + 0x420566e0 0xca C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0xea (size before relaxing) + 0x420566f8 ieee80211_hostapd_beacon_txcb + *fill* 0x420567aa 0x2 + .text.ieee80211_hostap_send_beacon + 0x420567ac 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x420567be 0x2 + .text.hostap_handle_timer + 0x420567c0 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + 0x420567c0 hostap_handle_timer + *fill* 0x420567d2 0x2 + .text.ap_try_sa_query + 0x420567d4 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x420567e6 0x2 + .text.ap_sa_query_timeout + 0x420567e8 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x420567fa 0x2 + .text.free_mac_info + 0x420567fc 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x36 (size before relaxing) + *fill* 0x4205682a 0x2 + .text.clear_mac_queue + 0x4205682c 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x76 (size before relaxing) + *fill* 0x42056896 0x2 + .text.ieee80211_hostapd_ps_txcb + 0x42056898 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x3a (size before relaxing) + 0x42056898 ieee80211_hostapd_ps_txcb + *fill* 0x420568c6 0x2 + .text.cipher_type_map_public_to_internal + 0x420568c8 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x420568cc cipher_type_map_public_to_internal + *fill* 0x420568e2 0x2 + .text.ieee80211_free_beacon_eb + 0x420568e4 0x6f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x77 (size before relaxing) + 0x420568f0 ieee80211_free_beacon_eb + *fill* 0x42056953 0x1 + .text.ieee80211_hostap_send_beacon_process + 0x42056954 0x33f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x39b (size before relaxing) + 0x42056988 ieee80211_hostap_send_beacon_process + *fill* 0x42056c93 0x1 + .text.hostap_delete_ptk + 0x42056c94 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x44 (size before relaxing) + 0x42056c94 hostap_delete_ptk + .text.ieee80211_hostap_attach + 0x42056cc8 0x1b6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x20e (size before relaxing) + 0x42056ce4 ieee80211_hostap_attach + *fill* 0x42056e7e 0x2 + .text.hostap_deliver_data + 0x42056e80 0x8e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x9a (size before relaxing) + 0x42056e90 hostap_deliver_data + *fill* 0x42056f0e 0x2 + .text.hostap_handle_timer_process + 0x42056f10 0x18a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x1c2 (size before relaxing) + 0x42056f2c hostap_handle_timer_process + *fill* 0x4205709a 0x2 + .text.wifi_ap_reg_rxcb + 0x4205709c 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0xe (size before relaxing) + 0x4205709c wifi_ap_reg_rxcb + *fill* 0x420570a6 0x2 + .text.hostap_query_mac_in_list + 0x420570a8 0x7e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x96 (size before relaxing) + 0x420570ac hostap_query_mac_in_list + *fill* 0x42057126 0x2 + .text.hostap_add_in_mac_list + 0x42057128 0xd2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0xf6 (size before relaxing) + 0x42057134 hostap_add_in_mac_list + *fill* 0x420571fa 0x2 + .text.hostap_del_mac_info_from_list + 0x420571fc 0xde C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0xfe (size before relaxing) + 0x42057204 hostap_del_mac_info_from_list + *fill* 0x420572da 0x2 + .text.ap_rx_cb + 0x420572dc 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x28 (size before relaxing) + 0x420572dc ap_rx_cb + .text.hostap_auth_open + 0x420572fc 0x168 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x1a4 (size before relaxing) + 0x4205730c hostap_auth_open + .text.hostap_recv_ctl + 0x42057464 0x130 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x160 (size before relaxing) + 0x42057468 hostap_recv_ctl + .text.wifi_softap_start + 0x42057594 0x4ce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x566 (size before relaxing) + 0x420575b8 wifi_softap_start + *fill* 0x42057a62 0x2 + .text.wifi_softap_stop + 0x42057a64 0x182 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x1d6 (size before relaxing) + 0x42057a68 wifi_softap_stop + *fill* 0x42057be6 0x2 + .text.create_new_bss_for_sa_query_failed_sta + 0x42057be8 0xb8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0xe0 (size before relaxing) + 0x42057bec create_new_bss_for_sa_query_failed_sta + .text.ap_sa_query_timeout_process + 0x42057ca0 0xc8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0xf8 (size before relaxing) + 0x42057ca8 ap_sa_query_timeout_process + .text.ap_try_sa_query_process + 0x42057d68 0x176 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x192 (size before relaxing) + 0x42057d7c ap_try_sa_query_process + *fill* 0x42057ede 0x2 + .text.hostap_recv_mgmt + 0x42057ee0 0x101a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x1172 (size before relaxing) + 0x42057f54 hostap_recv_mgmt + *fill* 0x42058efa 0x2 + .text.hostap_input + 0x42058efc 0x6b6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x742 (size before relaxing) + 0x42058f20 hostap_input + *fill* 0x420595b2 0x2 + .text.add_mic_ie_bip + 0x420595b4 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x6e (size before relaxing) + 0x420595b8 add_mic_ie_bip + *fill* 0x42059612 0x2 + .text.is_esp_mesh_assoc + 0x42059614 0xd5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0xd9 (size before relaxing) + 0x42059620 is_esp_mesh_assoc + *fill* 0x420596e9 0x3 + .text.ieee80211_phy_deinit + 0x420596ec 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x20 (size before relaxing) + 0x420596ec ieee80211_phy_deinit + .text.ieee80211_phy_mode_show + 0x42059704 0x80 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x42059724 ieee80211_phy_mode_show + .text.ieee80211_setup_ratetable + 0x42059784 0x132 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x14e (size before relaxing) + 0x420597a0 ieee80211_setup_ratetable + *fill* 0x420598b6 0x2 + .text.ieee80211_phy_init + 0x420598b8 0xe1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x10d (size before relaxing) + 0x420598c0 ieee80211_phy_init + *fill* 0x42059999 0x3 + .text.chm_end_op_timeout + 0x4205999c 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x16 (size before relaxing) + *fill* 0x420599ae 0x2 + .text.chm_phy_change_channel$constprop$0 + 0x420599b0 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x43 (size before relaxing) + *fill* 0x420599e7 0x1 + .text.chm_mhz2num + 0x420599e8 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x66 (size before relaxing) + 0x420599f4 chm_mhz2num + *fill* 0x42059a4a 0x2 + .text.chm_deinit + 0x42059a4c 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x42059a50 chm_deinit + *fill* 0x42059a76 0x2 + .text.chm_release_lock + 0x42059a78 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x17 (size before relaxing) + 0x42059a78 chm_release_lock + *fill* 0x42059a8b 0x1 + .text.chm_end_op + 0x42059a8c 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x30 (size before relaxing) + 0x42059a8c chm_end_op + .text.chm_end_op_timeout_process + 0x42059ab4 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x42059ab4 chm_end_op_timeout_process + *fill* 0x42059ad6 0x2 + .text.chm_cancel_op + 0x42059ad8 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x6a (size before relaxing) + 0x42059ad8 chm_cancel_op + *fill* 0x42059b2e 0x2 + .text.chm_acquire_lock + 0x42059b30 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x38 (size before relaxing) + 0x42059b30 chm_acquire_lock + .text.chm_get_current_channel + 0x42059b60 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x42059b60 chm_get_current_channel + *fill* 0x42059b6d 0x3 + .text.chm_check_channel_is_valid + 0x42059b70 0x6e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x72 (size before relaxing) + 0x42059b70 chm_check_channel_is_valid + *fill* 0x42059bde 0x2 + .text.chm_get_snd_chan_mode + 0x42059be0 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x4f (size before relaxing) + 0x42059be0 chm_get_snd_chan_mode + *fill* 0x42059c27 0x1 + .text.chm_set_snd_chan + 0x42059c28 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x1d (size before relaxing) + 0x42059c28 chm_set_snd_chan + *fill* 0x42059c41 0x3 + .text.chm_get_home_channel + 0x42059c44 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x42059c44 chm_get_home_channel + *fill* 0x42059c51 0x3 + .text.chm_set_home_channel + 0x42059c54 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0xba (size before relaxing) + 0x42059c5c chm_set_home_channel + *fill* 0x42059cf6 0x2 + .text.chm_get_chan_info + 0x42059cf8 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x28 (size before relaxing) + 0x42059cf8 chm_get_chan_info + .text.chm_set_current_channel + 0x42059d1c 0xfa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x122 (size before relaxing) + 0x42059d30 chm_set_current_channel + *fill* 0x42059e16 0x2 + .text.chm_init + 0x42059e18 0x117 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x137 (size before relaxing) + 0x42059e20 chm_init + *fill* 0x42059f2f 0x1 + .text.chm_change_channel + 0x42059f30 0xeb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x10b (size before relaxing) + *fill* 0x4205a01b 0x1 + .text.chm_start_op + 0x4205a01c 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x3e (size before relaxing) + 0x4205a01c chm_start_op + *fill* 0x4205a052 0x2 + .text.chm_return_home_channel + 0x4205a054 0x4b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x57 (size before relaxing) + 0x4205a058 chm_return_home_channel + *fill* 0x4205a09f 0x1 + .text.ieee80211_psq_init + 0x4205a0a0 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x1a (size before relaxing) + 0x4205a0a0 ieee80211_psq_init + *fill* 0x4205a0b6 0x2 + .text.ieee80211_gpsq_init + 0x4205a0b8 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x44 (size before relaxing) + 0x4205a0bc ieee80211_gpsq_init + .text.ieee80211_psq_find_max_bss + 0x4205a0f0 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x3b (size before relaxing) + 0x4205a0f0 ieee80211_psq_find_max_bss + *fill* 0x4205a123 0x1 + .text.ieee80211_set_tim + 0x4205a124 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x7a (size before relaxing) + 0x4205a128 ieee80211_set_tim + *fill* 0x4205a19a 0x2 + .text.ieee80211_psq_take_head + 0x4205a19c 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x3f (size before relaxing) + 0x4205a19c ieee80211_psq_take_head + *fill* 0x4205a1d7 0x1 + .text.ieee80211_psq_drop_one_pkt + 0x4205a1d8 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x62 (size before relaxing) + 0x4205a1d8 ieee80211_psq_drop_one_pkt + *fill* 0x4205a226 0x2 + .text.ieee80211_psq_send_one_pkt + 0x4205a228 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x6e (size before relaxing) + 0x4205a228 ieee80211_psq_send_one_pkt + *fill* 0x4205a282 0x2 + .text.ieee80211_psq_is_buff_pkt + 0x4205a284 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x4c (size before relaxing) + 0x4205a284 ieee80211_psq_is_buff_pkt + .text.ieee80211_pwrsave + 0x4205a2c0 0x6b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x7b (size before relaxing) + 0x4205a2c0 ieee80211_pwrsave + *fill* 0x4205a32b 0x1 + .text.pwrsave_flushq + 0x4205a32c 0xbf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0xd3 (size before relaxing) + 0x4205a32c pwrsave_flushq + *fill* 0x4205a3eb 0x1 + .text.ieee80211_node_pwrsave + 0x4205a3ec 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x72 (size before relaxing) + 0x4205a3ec ieee80211_node_pwrsave + *fill* 0x4205a44e 0x2 + .text.ieee80211_pwrsave_node_cleanup + 0x4205a450 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x46 (size before relaxing) + 0x4205a450 ieee80211_pwrsave_node_cleanup + *fill* 0x4205a48a 0x2 + .text.ieee80211_pwrsave_txcb + 0x4205a48c 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x54 (size before relaxing) + 0x4205a48c ieee80211_pwrsave_txcb + .text.ieee80211_getmgtframe + 0x4205a4d4 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + 0x41 (size before relaxing) + 0x4205a4d4 ieee80211_getmgtframe + *fill* 0x4205a50d 0x3 + .text.ieee80211_getbcnframe + 0x4205a510 0x6e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + 0x86 (size before relaxing) + 0x4205a518 ieee80211_getbcnframe + *fill* 0x4205a57e 0x2 + .text.offchan_in_progress + 0x4205a580 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + 0x4205a584 offchan_in_progress + *fill* 0x4205a596 0x2 + .text.offchan_recv_action + 0x4205a598 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + 0x20 (size before relaxing) + 0x4205a598 offchan_recv_action + .text.offchan_send_action_tx_status + 0x4205a5b4 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + 0x42 (size before relaxing) + 0x4205a5b4 offchan_send_action_tx_status + *fill* 0x4205a5ee 0x2 + .text.wifi_log + 0x4205a5f0 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + 0xb0 (size before relaxing) + 0x4205a60c wifi_log + .text.wpa_cipher + 0x4205a698 0x66 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x72 (size before relaxing) + *fill* 0x4205a6fe 0x2 + .text.rsn_cipher + 0x4205a700 0x10a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x10e (size before relaxing) + *fill* 0x4205a80a 0x2 + .text.ieee80211_decap + 0x4205a80c 0x18f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x1b3 (size before relaxing) + 0x4205a814 ieee80211_decap + *fill* 0x4205a99b 0x1 + .text.ieee80211_setup_rates + 0x4205a99c 0xc5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0xcd (size before relaxing) + 0x4205a99c ieee80211_setup_rates + *fill* 0x4205aa61 0x3 + .text.ieee80211_set_max_rate + 0x4205aa64 0x10c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x11c (size before relaxing) + 0x4205aa70 ieee80211_set_max_rate + .text.ieee80211_setup_phy_mode + 0x4205ab70 0xa3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0xab (size before relaxing) + 0x4205ab7c ieee80211_setup_phy_mode + *fill* 0x4205ac13 0x1 + .text.ieee80211_setup_lr_rates + 0x4205ac14 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x66 (size before relaxing) + 0x4205ac14 ieee80211_setup_lr_rates + *fill* 0x4205ac76 0x2 + .text.ieee80211_alloc_challenge + 0x4205ac78 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x44 (size before relaxing) + 0x4205ac7c ieee80211_alloc_challenge + .text.ieee80211_parse_beacon + 0x4205acb4 0x4de C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x50e (size before relaxing) + 0x4205acdc ieee80211_parse_beacon + *fill* 0x4205b192 0x2 + .text.ieee80211_parse_wpa + 0x4205b194 0x108 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x11c (size before relaxing) + 0x4205b194 ieee80211_parse_wpa + .text.ieee80211_rsn_cipher_priority + 0x4205b29c 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x2e (size before relaxing) + 0x4205b2a0 ieee80211_rsn_cipher_priority + *fill* 0x4205b2c6 0x2 + .text.ieee80211_better_rsn_pairwise_cipher + 0x4205b2c8 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x35 (size before relaxing) + 0x4205b2c8 ieee80211_better_rsn_pairwise_cipher + *fill* 0x4205b2f1 0x3 + .text.ieee80211_amsdu_negotiate + 0x4205b2f4 0xc4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0xcc (size before relaxing) + 0x4205b2fc ieee80211_amsdu_negotiate + .text.ieee80211_parse_rsn + 0x4205b3b8 0x84c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x8d8 (size before relaxing) + 0x4205b48c ieee80211_parse_rsn + .text.ieee80211_is_ht_cipher + 0x4205bc04 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x2b (size before relaxing) + 0x4205bc04 ieee80211_is_ht_cipher + *fill* 0x4205bc2b 0x1 + .text.ieee80211_parse_wapi + 0x4205bc2c 0x86 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x8e (size before relaxing) + 0x4205bc30 ieee80211_parse_wapi + *fill* 0x4205bcb2 0x2 + .text.ieee80211_parse_action + 0x4205bcb4 0xc2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0xc6 (size before relaxing) + 0x4205bcb4 ieee80211_parse_action + *fill* 0x4205bd76 0x2 + .text.ieee80211_add_ie_vendor_esp_head + 0x4205bd78 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + 0x4205bd7c ieee80211_add_ie_vendor_esp_head + *fill* 0x4205bda7 0x1 + .text.ieee80211_add_ie_vendor_esp_manufacturer + 0x4205bda8 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + 0x5e (size before relaxing) + 0x4205bda8 ieee80211_add_ie_vendor_esp_manufacturer + *fill* 0x4205bdfe 0x2 + .text.ieee80211_rfid_locp_recv_reset + 0x4205be00 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + 0x11 (size before relaxing) + 0x4205be00 ieee80211_rfid_locp_recv_reset + *fill* 0x4205be0d 0x3 + .text.ieee80211_rfid_locp_recv + 0x4205be10 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + 0x20 (size before relaxing) + 0x4205be10 ieee80211_rfid_locp_recv + .text.addba_stop_timeout + 0x4205be2c 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x22 (size before relaxing) + *fill* 0x4205be4a 0x2 + .text.ampdu_tx_stop + 0x4205be4c 0x7d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x91 (size before relaxing) + *fill* 0x4205bec9 0x3 + .text.ieee80211_ampdu_timeout + 0x4205becc 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x4205bede 0x2 + .text.addba_timeout + 0x4205bee0 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x4205bef2 0x2 + .text.addba_response_txcb + 0x4205bef4 0x12e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x14e (size before relaxing) + *fill* 0x4205c022 0x2 + .text.ieee80211_ampdu_stop_age_timer$part$0 + 0x4205c024 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x2a (size before relaxing) + *fill* 0x4205c046 0x2 + .text.ht_recv_action_ba_addba_response + 0x4205c048 0x158 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x174 (size before relaxing) + .text.ieee80211_add_htcap_body + 0x4205c1a0 0x1a9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x1b1 (size before relaxing) + *fill* 0x4205c349 0x3 + .text.ieee80211_ht_attach + 0x4205c34c 0x240 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x284 (size before relaxing) + 0x4205c380 ieee80211_ht_attach + .text.ampdu_free_rx_ba_index + 0x4205c58c 0x31 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x39 (size before relaxing) + 0x4205c590 ampdu_free_rx_ba_index + *fill* 0x4205c5bd 0x3 + .text.ampdu_rx_stop$constprop$0 + 0x4205c5c0 0xbe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xd2 (size before relaxing) + *fill* 0x4205c67e 0x2 + .text.ht_recv_action_ba_delba + 0x4205c680 0x92 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xa6 (size before relaxing) + *fill* 0x4205c712 0x2 + .text.ampdu_alloc_rx_ba_index + 0x4205c714 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x70 (size before relaxing) + 0x4205c718 ampdu_alloc_rx_ba_index + .text.ampdu_rx_start$constprop$0 + 0x4205c778 0xf4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x110 (size before relaxing) + .text.ht_recv_action_ba_addba_request + 0x4205c86c 0x156 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x17a (size before relaxing) + *fill* 0x4205c9c2 0x2 + .text.ieee80211_ht_deattach + 0x4205c9c4 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x8c (size before relaxing) + 0x4205c9c8 ieee80211_ht_deattach + .text.ieee80211_ampdu_request + 0x4205ca38 0x14d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x161 (size before relaxing) + 0x4205ca4c ieee80211_ampdu_request + *fill* 0x4205cb85 0x3 + .text.ieee80211_ampdu_age_bss$isra$0 + 0x4205cb88 0xcc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xd4 (size before relaxing) + .text.ieee80211_ampdu_age_all + 0x4205cc54 0x7e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x96 (size before relaxing) + 0x4205cc58 ieee80211_ampdu_age_all + *fill* 0x4205ccd2 0x2 + .text.ampdu_process_multicast_address_qos_frame + 0x4205ccd4 0x86 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x8a (size before relaxing) + 0x4205ccd4 ampdu_process_multicast_address_qos_frame + *fill* 0x4205cd5a 0x2 + .text.ieee80211_process_bar_info + 0x4205cd5c 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x36 (size before relaxing) + 0x4205cd5c ieee80211_process_bar_info + *fill* 0x4205cd8e 0x2 + .text.ieee80211_recv_bar + 0x4205cd90 0x57 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x63 (size before relaxing) + 0x4205cd94 ieee80211_recv_bar + *fill* 0x4205cde7 0x1 + .text.ieee80211_ht_node_cleanup + 0x4205cde8 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x3c (size before relaxing) + 0x4205cde8 ieee80211_ht_node_cleanup + .text.ieee80211_ht_node_init + 0x4205ce1c 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x82 (size before relaxing) + 0x4205ce20 ieee80211_ht_node_init + *fill* 0x4205ce8e 0x2 + .text.ieee80211_parse_htcap + 0x4205ce90 0x110 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x120 (size before relaxing) + 0x4205ce9c ieee80211_parse_htcap + .text.ieee80211_has_ht40_bss + 0x4205cfa0 0xaa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xb2 (size before relaxing) + 0x4205cfa0 ieee80211_has_ht40_bss + *fill* 0x4205d04a 0x2 + .text.ieee80211_update_channel + 0x4205d04c 0x3cc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x420 (size before relaxing) + 0x4205d068 ieee80211_update_channel + .text.public_recv_action_ht2040_coex + 0x4205d418 0x206 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x23a (size before relaxing) + *fill* 0x4205d61e 0x2 + .text.ieee80211_ht_updatehtcap + 0x4205d620 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x8c (size before relaxing) + 0x4205d624 ieee80211_ht_updatehtcap + .text.ieee80211_ht_updateparams + 0x4205d698 0x16b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x18f (size before relaxing) + 0x4205d6ac ieee80211_ht_updateparams + *fill* 0x4205d803 0x1 + .text.ieee80211_setup_htrates + 0x4205d804 0xba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xc6 (size before relaxing) + 0x4205d80c ieee80211_setup_htrates + *fill* 0x4205d8be 0x2 + .text.ieee80211_setup_basic_htrates + 0x4205d8c0 0xa4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xb0 (size before relaxing) + 0x4205d8c8 ieee80211_setup_basic_htrates + .text.ieee80211_add_htcap + 0x4205d964 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x4a (size before relaxing) + 0x4205d96c ieee80211_add_htcap + *fill* 0x4205d9a2 0x2 + .text.ieee80211_add_htcap_vendor + 0x4205d9a4 0x31 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x35 (size before relaxing) + 0x4205d9a4 ieee80211_add_htcap_vendor + *fill* 0x4205d9d5 0x3 + .text.ieee80211_add_htinfo_body + 0x4205d9d8 0x10a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x11a (size before relaxing) + 0x4205d9e0 ieee80211_add_htinfo_body + *fill* 0x4205dae2 0x2 + .text.ieee80211_add_htinfo + 0x4205dae4 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x4a (size before relaxing) + 0x4205dae8 ieee80211_add_htinfo + *fill* 0x4205db22 0x2 + .text.ieee80211_add_htinfo_vendor + 0x4205db24 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x60 (size before relaxing) + 0x4205db2c ieee80211_add_htinfo_vendor + .text.ht_action_output + 0x4205db78 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x2d (size before relaxing) + 0x4205db78 ht_action_output + *fill* 0x4205db9d 0x3 + .text.ht_send_action_ba_delba + 0x4205dba0 0xc9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xdd (size before relaxing) + *fill* 0x4205dc69 0x3 + .text.ht_send_action_ba_addba + 0x4205dc6c 0x131 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x149 (size before relaxing) + *fill* 0x4205dd9d 0x3 + .text.ieee80211_decap1 + 0x4205dda0 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x64 (size before relaxing) + 0x4205dda0 ieee80211_decap1 + .text.ieee80211_decap_amsdu + 0x4205de00 0xf6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x11a (size before relaxing) + 0x4205de04 ieee80211_decap_amsdu + *fill* 0x4205def6 0x2 + .text.hostap_ht_operation_update + 0x4205def8 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x43 (size before relaxing) + 0x4205df00 hostap_ht_operation_update + *fill* 0x4205df37 0x1 + .text.wifi_nvs_cfg_item_init + 0x4205df38 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x94 (size before relaxing) + 0x4205df44 wifi_nvs_cfg_item_init + .text.wifi_nvs_cfg_init + 0x4205dfc0 0xd5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0xed0 (size before relaxing) + 0x4205e268 wifi_nvs_cfg_init + .text.wifi_nvs_get + 0x4205ed1c 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0xe (size before relaxing) + 0x4205ed1c wifi_nvs_get + *fill* 0x4205ed26 0x2 + .text.wifi_nvs_commit + 0x4205ed28 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x48 (size before relaxing) + 0x4205ed28 wifi_nvs_commit + .text.wifi_nvs_set + 0x4205ed60 0x16a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x18a (size before relaxing) + 0x4205ed7c wifi_nvs_set + *fill* 0x4205eeca 0x2 + .text.ieee80211_adjust_2nd_chan + 0x4205eecc 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x62 (size before relaxing) + 0x4205eecc ieee80211_adjust_2nd_chan + *fill* 0x4205ef1e 0x2 + .text.wifi_nvs_compare_cfg_diff + 0x4205ef20 0x16a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x182 (size before relaxing) + 0x4205ef20 wifi_nvs_compare_cfg_diff + *fill* 0x4205f08a 0x2 + .text.wifi_set_default_ssid + 0x4205f08c 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x52 (size before relaxing) + 0x4205f090 wifi_set_default_ssid + *fill* 0x4205f0ce 0x2 + .text.wifi_nvs_validate_ap_ssid + 0x4205f0d0 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x22 (size before relaxing) + 0x4205f0d0 wifi_nvs_validate_ap_ssid + *fill* 0x4205f0ea 0x2 + .text.wifi_nvs_validate_ap_password + 0x4205f0ec 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x48 (size before relaxing) + 0x4205f0ec wifi_nvs_validate_ap_password + .text.wifi_nvs_validate_sta_password + 0x4205f124 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x4c (size before relaxing) + 0x4205f124 wifi_nvs_validate_sta_password + .text.wifi_nvs_validate_country + 0x4205f160 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x48 (size before relaxing) + 0x4205f168 wifi_nvs_validate_country + .text.wifi_nvs_validate_ap_chan + 0x4205f1a4 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x52 (size before relaxing) + 0x4205f1a4 wifi_nvs_validate_ap_chan + *fill* 0x4205f1e2 0x2 + .text.wifi_nvs_validate_ap_num + 0x4205f1e4 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x1c (size before relaxing) + 0x4205f1e4 wifi_nvs_validate_ap_num + .text.wifi_nvs_validate_sta_listen_interval + 0x4205f1fc 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x1a (size before relaxing) + 0x4205f1fc wifi_nvs_validate_sta_listen_interval + *fill* 0x4205f212 0x2 + .text.wifi_nvs_get_sta_listen_interval + 0x4205f214 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x11 (size before relaxing) + 0x4205f214 wifi_nvs_get_sta_listen_interval + *fill* 0x4205f221 0x3 + .text.wifi_nvs_reset_current_ap_info + 0x4205f224 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x82 (size before relaxing) + 0x4205f224 wifi_nvs_reset_current_ap_info + *fill* 0x4205f28e 0x2 + .text.wifi_nvs_validate_lr_info + 0x4205f290 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x30 (size before relaxing) + 0x4205f290 wifi_nvs_validate_lr_info + .text.wifi_nvs_load + 0x4205f2bc 0x25c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x2a4 (size before relaxing) + .text.wifi_nvs_deinit + 0x4205f518 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x52 (size before relaxing) + 0x4205f518 wifi_nvs_deinit + *fill* 0x4205f55a 0x2 + .text.wifi_nvs_init + 0x4205f55c 0x81 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0xa1 (size before relaxing) + 0x4205f568 wifi_nvs_init + *fill* 0x4205f5dd 0x3 + .text.wifi_sta_connect_internal_process + 0x4205f5e0 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x29 (size before relaxing) + 0x4205f5e0 wifi_sta_connect_internal_process + *fill* 0x4205f605 0x3 + .text.esp_wifi_ap_get_prof_pmk_internal + 0x4205f608 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4205f608 esp_wifi_ap_get_prof_pmk_internal + *fill* 0x4205f617 0x1 + .text.esp_wifi_sta_update_ap_info_internal + 0x4205f618 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x3d (size before relaxing) + 0x4205f618 esp_wifi_sta_update_ap_info_internal + *fill* 0x4205f645 0x3 + .text.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x4205f648 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1f (size before relaxing) + 0x4205f648 esp_wifi_sta_get_ap_info_prof_pmk_internal + *fill* 0x4205f663 0x1 + .text.esp_wifi_ap_get_prof_ap_ssid_internal + 0x4205f664 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4205f664 esp_wifi_ap_get_prof_ap_ssid_internal + *fill* 0x4205f673 0x1 + .text.esp_wifi_sta_get_prof_ssid_internal + 0x4205f674 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x10 (size before relaxing) + 0x4205f674 esp_wifi_sta_get_prof_ssid_internal + .text.esp_wifi_ap_get_prof_authmode_internal + 0x4205f680 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4205f680 esp_wifi_ap_get_prof_authmode_internal + .text.esp_wifi_ap_get_max_sta_conn + 0x4205f690 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4205f690 esp_wifi_ap_get_max_sta_conn + .text.esp_wifi_ap_get_prof_pairwise_cipher_internal + 0x4205f6a0 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4205f6a0 esp_wifi_ap_get_prof_pairwise_cipher_internal + .text.esp_wifi_ap_get_sae_ext_config_internal + 0x4205f6b0 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4205f6b0 esp_wifi_ap_get_sae_ext_config_internal + .text.esp_wifi_ap_get_gtk_rekeying_config_internal + 0x4205f6c0 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4205f6c0 esp_wifi_ap_get_gtk_rekeying_config_internal + .text.esp_wifi_sta_get_prof_authmode_internal + 0x4205f6d0 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4205f6d0 esp_wifi_sta_get_prof_authmode_internal + *fill* 0x4205f6de 0x2 + .text.esp_wifi_get_pmf_config_internal + 0x4205f6e0 0x43 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x47 (size before relaxing) + 0x4205f6e0 esp_wifi_get_pmf_config_internal + *fill* 0x4205f723 0x1 + .text.esp_wifi_get_config_sae_pwe_h2e_internal + 0x4205f724 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x48 (size before relaxing) + 0x4205f728 esp_wifi_get_config_sae_pwe_h2e_internal + .text.esp_wifi_sta_get_rsnxe + 0x4205f764 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x28 (size before relaxing) + 0x4205f764 esp_wifi_sta_get_rsnxe + .text.esp_wifi_sta_disable_wpa2_authmode_internal + 0x4205f784 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x5a (size before relaxing) + 0x4205f78c esp_wifi_sta_disable_wpa2_authmode_internal + *fill* 0x4205f7ce 0x2 + .text.esp_wifi_sta_get_config_sae_pk_internal + 0x4205f7d0 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4205f7d0 esp_wifi_sta_get_config_sae_pk_internal + .text.esp_wifi_enable_sae_pk_only_mode_internal + 0x4205f7e0 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x42 (size before relaxing) + 0x4205f7e4 esp_wifi_enable_sae_pk_only_mode_internal + *fill* 0x4205f816 0x2 + .text.esp_wifi_sta_disable_owe_trans_internal + 0x4205f818 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x5a (size before relaxing) + 0x4205f820 esp_wifi_sta_disable_owe_trans_internal + *fill* 0x4205f862 0x2 + .text.esp_wifi_ap_notify_node_sae_auth_done + 0x4205f864 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x50 (size before relaxing) + 0x4205f868 esp_wifi_ap_notify_node_sae_auth_done + .text.esp_wifi_ap_is_sta_sae_reauth_node + 0x4205f8ac 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x21 (size before relaxing) + 0x4205f8ac esp_wifi_ap_is_sta_sae_reauth_node + *fill* 0x4205f8c9 0x3 + .text.esp_wifi_sta_get_sae_identifier_internal + 0x4205f8cc 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4205f8cc esp_wifi_sta_get_sae_identifier_internal + *fill* 0x4205f8db 0x1 + .text.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x4205f8dc 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x19 (size before relaxing) + 0x4205f8dc esp_wifi_sta_is_ap_notify_completed_rsne_internal + *fill* 0x4205f8f1 0x3 + .text.esp_wifi_ap_get_prof_password_internal + 0x4205f8f4 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4205f8f4 esp_wifi_ap_get_prof_password_internal + *fill* 0x4205f903 0x1 + .text.wifi_sta_get_prof_password + 0x4205f904 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x4205f904 wifi_sta_get_prof_password + *fill* 0x4205f911 0x3 + .text.esp_wifi_sta_get_prof_password_internal + 0x4205f914 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x4205f914 esp_wifi_sta_get_prof_password_internal + *fill* 0x4205f921 0x3 + .text.esp_wifi_sta_get_reset_nvs_pmk_internal + 0x4205f924 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4205f924 esp_wifi_sta_get_reset_nvs_pmk_internal + *fill* 0x4205f932 0x2 + .text.esp_wifi_sta_set_reset_nvs_pmk_internal + 0x4205f934 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4205f934 esp_wifi_sta_set_reset_nvs_pmk_internal + .text.esp_wifi_sta_prof_is_wpa_internal + 0x4205f944 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x3a (size before relaxing) + 0x4205f944 esp_wifi_sta_prof_is_wpa_internal + *fill* 0x4205f97a 0x2 + .text.esp_wifi_sta_prof_is_wpa2_internal + 0x4205f97c 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x4d (size before relaxing) + 0x4205f980 esp_wifi_sta_prof_is_wpa2_internal + *fill* 0x4205f9c5 0x3 + .text.esp_wifi_sta_prof_is_wapi_internal + 0x4205f9c8 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x22 (size before relaxing) + 0x4205f9c8 esp_wifi_sta_prof_is_wapi_internal + *fill* 0x4205f9e6 0x2 + .text.esp_wifi_sta_prof_is_rsn_internal + 0x4205f9e8 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x4d (size before relaxing) + 0x4205f9ec esp_wifi_sta_prof_is_rsn_internal + *fill* 0x4205fa31 0x3 + .text.esp_wifi_sta_get_pairwise_cipher_internal + 0x4205fa34 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4205fa34 esp_wifi_sta_get_pairwise_cipher_internal + *fill* 0x4205fa42 0x2 + .text.esp_wifi_sta_get_group_cipher_internal + 0x4205fa44 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4205fa44 esp_wifi_sta_get_group_cipher_internal + *fill* 0x4205fa52 0x2 + .text.ieee80211_get_key + 0x4205fa54 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1c (size before relaxing) + 0x4205fa54 ieee80211_get_key + .text.ieee80211_set_key + 0x4205fa6c 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x42 (size before relaxing) + 0x4205fa6c ieee80211_set_key + *fill* 0x4205faa6 0x2 + .text.ieee80211_set_sta_gtk_index + 0x4205faa8 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x27 (size before relaxing) + 0x4205faa8 ieee80211_set_sta_gtk_index + *fill* 0x4205facb 0x1 + .text.ieee80211_set_gtk + 0x4205facc 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x4a (size before relaxing) + 0x4205fad4 ieee80211_set_gtk + *fill* 0x4205fb0e 0x2 + .text.ieee80211_get_ptk + 0x4205fb10 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1e (size before relaxing) + 0x4205fb10 ieee80211_get_ptk + *fill* 0x4205fb2a 0x2 + .text.ieee80211_get_spp + 0x4205fb2c 0x31 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x39 (size before relaxing) + 0x4205fb2c ieee80211_get_spp + *fill* 0x4205fb5d 0x3 + .text.esp_wifi_wpa_ptk_init_done_internal + 0x4205fb60 0x79 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x95 (size before relaxing) + 0x4205fb64 esp_wifi_wpa_ptk_init_done_internal + *fill* 0x4205fbd9 0x3 + .text.esp_wifi_auth_done_internal + 0x4205fbdc 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x4205fbdc esp_wifi_auth_done_internal + *fill* 0x4205fbe9 0x3 + .text.esp_wifi_unregister_wpa_cb_internal + 0x4205fbec 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x25 (size before relaxing) + 0x4205fbec esp_wifi_unregister_wpa_cb_internal + *fill* 0x4205fc09 0x3 + .text.esp_wifi_register_wpa_cb_internal + 0x4205fc0c 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1b (size before relaxing) + 0x4205fc0c esp_wifi_register_wpa_cb_internal + *fill* 0x4205fc1f 0x1 + .text.ieee80211_sta_is_connected + 0x4205fc20 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x4205fc24 ieee80211_sta_is_connected + .text.esp_wifi_get_hostap_private_internal + 0x4205fc38 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4205fc38 esp_wifi_get_hostap_private_internal + *fill* 0x4205fc47 0x1 + .text.esp_wifi_deauthenticate_internal + 0x4205fc48 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x36 (size before relaxing) + 0x4205fc48 esp_wifi_deauthenticate_internal + *fill* 0x4205fc76 0x2 + .text.esp_wifi_get_spp_attrubute_internal + 0x4205fc78 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x28 (size before relaxing) + 0x4205fc78 esp_wifi_get_spp_attrubute_internal + .text.esp_wifi_get_user_init_flag_internal + 0x4205fc9c 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1d (size before relaxing) + 0x4205fc9c esp_wifi_get_user_init_flag_internal + *fill* 0x4205fcb5 0x3 + .text.wifi_set_rx_policy + 0x4205fcb8 0x16b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1b3 (size before relaxing) + 0x4205fcc0 wifi_set_rx_policy + *fill* 0x4205fe23 0x1 + .text.esp_wifi_register_eapol_txdonecb_internal + 0x4205fe24 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4205fe24 esp_wifi_register_eapol_txdonecb_internal + .text.esp_wifi_get_macaddr_internal + 0x4205fe34 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x16 (size before relaxing) + 0x4205fe34 esp_wifi_get_macaddr_internal + *fill* 0x4205fe46 0x2 + .text.esp_wifi_ap_deauth_internal + 0x4205fe48 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x62 (size before relaxing) + 0x4205fe4c esp_wifi_ap_deauth_internal + *fill* 0x4205fe9a 0x2 + .text.wifi_init_key + 0x4205fe9c 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x28 (size before relaxing) + 0x4205fe9c wifi_init_key + .text.esp_wifi_set_ap_key_internal + 0x4205febc 0x15e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x19e (size before relaxing) + 0x4205fec8 esp_wifi_set_ap_key_internal + *fill* 0x4206001a 0x2 + .text.ppInstallKey + 0x4206001c 0x130 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x170 (size before relaxing) + 0x42060024 ppInstallKey + .text.esp_wifi_set_sta_key_internal + 0x4206014c 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x60 (size before relaxing) + 0x4206014c esp_wifi_set_sta_key_internal + .text.esp_wifi_get_sta_key_internal + 0x420601a4 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x49 (size before relaxing) + 0x420601a4 esp_wifi_get_sta_key_internal + *fill* 0x420601e5 0x3 + .text.esp_wifi_set_appie_internal + 0x420601e8 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x60 (size before relaxing) + 0x420601f0 esp_wifi_set_appie_internal + .text.esp_wifi_unset_appie_internal + 0x4206023c 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1a (size before relaxing) + 0x4206023c esp_wifi_unset_appie_internal + *fill* 0x42060252 0x2 + .text.esp_wifi_get_wps_status_internal + 0x42060254 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x10 (size before relaxing) + 0x42060254 esp_wifi_get_wps_status_internal + .text.esp_wifi_sta_pmf_enabled + 0x42060260 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x42060260 esp_wifi_sta_pmf_enabled + *fill* 0x4206026e 0x2 + .text.esp_wifi_sta_get_mgmt_group_cipher + 0x42060270 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x2a (size before relaxing) + 0x42060274 esp_wifi_sta_get_mgmt_group_cipher + *fill* 0x42060296 0x2 + .text.esp_wifi_set_igtk_internal + 0x42060298 0xb8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0xc0 (size before relaxing) + 0x420602ac esp_wifi_set_igtk_internal + .text.ieee80211w_get_active_igtk_key_id + 0x42060350 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x26 (size before relaxing) + 0x42060350 ieee80211w_get_active_igtk_key_id + *fill* 0x4206036a 0x2 + .text.ieee80211w_get_igtk_from_keyidx + 0x4206036c 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x42 (size before relaxing) + 0x42060374 ieee80211w_get_igtk_from_keyidx + *fill* 0x420603a6 0x2 + .text.esp_wifi_skip_supp_pmkcaching + 0x420603a8 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x420603a8 esp_wifi_skip_supp_pmkcaching + *fill* 0x420603b6 0x2 + .text.esp_wifi_register_mgmt_frame_internal + 0x420603b8 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x58 (size before relaxing) + 0x420603bc esp_wifi_register_mgmt_frame_internal + .text.esp_wifi_send_mgmt_frm_internal + 0x42060400 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x84 (size before relaxing) + 0x42060408 esp_wifi_send_mgmt_frm_internal + .text.esp_wifi_sta_connect_internal + 0x42060470 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x3e (size before relaxing) + 0x42060474 esp_wifi_sta_connect_internal + *fill* 0x420604a2 0x2 + .text.esp_wifi_ap_get_transition_disable_internal + 0x420604a4 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x420604a4 esp_wifi_ap_get_transition_disable_internal + .text.esp_wifi_ap_set_group_mgmt_cipher_internal + 0x420604b4 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1f (size before relaxing) + 0x420604b4 esp_wifi_ap_set_group_mgmt_cipher_internal + *fill* 0x420604cb 0x1 + .text.wifi_pmk_is_valid + 0x420604cc 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + *fill* 0x420604f1 0x3 + .text.ieee80211_ioctl_process + 0x420604f4 0xe6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x102 (size before relaxing) + 0x420604fc ieee80211_ioctl_process + *fill* 0x420605da 0x2 + .text.current_task_is_wifi_task + 0x420605dc 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x27 (size before relaxing) + 0x420605e0 current_task_is_wifi_task + *fill* 0x420605ff 0x1 + .text._do_wifi_stop + 0x42060600 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x8c (size before relaxing) + 0x42060608 _do_wifi_stop + .text.wifi_stop_old_mode + 0x42060678 0x45 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4d (size before relaxing) + *fill* 0x420606bd 0x3 + .text._do_wifi_start + 0x420606c0 0xb4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xd8 (size before relaxing) + 0x420606c8 _do_wifi_start + .text.ieee80211_set_phy_bw + 0x42060774 0xe4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x108 (size before relaxing) + 0x42060774 ieee80211_set_phy_bw + .text.ieee80211_protocol_attach + 0x42060858 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x54 (size before relaxing) + 0x42060858 ieee80211_protocol_attach + .text.wifi_station_save_ap_channel + 0x42060898 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x76 (size before relaxing) + 0x42060898 wifi_station_save_ap_channel + *fill* 0x420608fa 0x2 + .text.map_wifi_config_sae_pwe_to_supp + 0x420608fc 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x42060900 map_wifi_config_sae_pwe_to_supp + .text.wifi_station_set_config_local_2$constprop$0 + 0x42060918 0x47e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x51a (size before relaxing) + *fill* 0x42060d96 0x2 + .text.ieee80211_sta_connect + 0x42060d98 0xee C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x11e (size before relaxing) + 0x42060db0 ieee80211_sta_connect + *fill* 0x42060e86 0x2 + .text.ieee80211_sta_disconnect + 0x42060e88 0x9f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xbf (size before relaxing) + 0x42060e8c ieee80211_sta_disconnect + *fill* 0x42060f27 0x1 + .text._do_wifi_disconnect + 0x42060f28 0x8e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xaa (size before relaxing) + *fill* 0x42060fb6 0x2 + .text.wifi_softap_max_support_num + 0x42060fb8 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x1e (size before relaxing) + 0x42060fb8 wifi_softap_max_support_num + *fill* 0x42060fd2 0x2 + .text.wifi_softap_set_config + 0x42060fd4 0x982 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xab6 (size before relaxing) + 0x4206100c wifi_softap_set_config + *fill* 0x42061956 0x2 + .text.chip_enable + 0x42061958 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x4206195c chip_enable + .text.chip_disable + 0x42061980 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x42061984 chip_disable + .text.wifi_reset_mac + 0x420619a8 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x3d (size before relaxing) + 0x420619b0 wifi_reset_mac + *fill* 0x420619dd 0x3 + .text.wifi_hw_start + 0x420619e0 0x12e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x162 (size before relaxing) + 0x420619f8 wifi_hw_start + *fill* 0x42061b0e 0x2 + .text.wifi_txq_empty + 0x42061b10 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x42061b10 wifi_txq_empty + .text.wifi_stop_sw_txq + 0x42061b38 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4c (size before relaxing) + 0x42061b3c wifi_stop_sw_txq + .text.wifi_hw_stop + 0x42061b70 0x114 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x154 (size before relaxing) + 0x42061b80 wifi_hw_stop + .text.wifi_hw_mode_switch + 0x42061c84 0xa7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xcb (size before relaxing) + *fill* 0x42061d2b 0x1 + .text.wifi_set_mode_process + 0x42061d2c 0x13e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x182 (size before relaxing) + 0x42061d34 wifi_set_mode_process + *fill* 0x42061e6a 0x2 + .text.wifi_menuconfig_init + 0x42061e6c 0x1c3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x1db (size before relaxing) + 0x42061ea0 wifi_menuconfig_init + *fill* 0x4206202f 0x1 + .text.wpa_crypto_funcs_init + 0x42062030 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x45 (size before relaxing) + 0x42062038 wpa_crypto_funcs_init + *fill* 0x42062069 0x3 + .text.wifi_crypto_init + 0x4206206c 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x14 (size before relaxing) + 0x4206206c wifi_crypto_init + .text.wifi_hmac_init + 0x4206207c 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4a (size before relaxing) + 0x42062084 wifi_hmac_init + *fill* 0x420620b2 0x2 + .text.wifi_lmac_init + 0x420620b4 0xec C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x118 (size before relaxing) + 0x420620d4 wifi_lmac_init + .text.wifi_deinit + 0x420621a0 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x420621a0 wifi_deinit + .text.wifi_init_process + 0x420621c4 0xb8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xe4 (size before relaxing) + 0x420621c8 wifi_init_process + .text.wifi_deinit_process + 0x4206227c 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x11 (size before relaxing) + 0x4206227c wifi_deinit_process + *fill* 0x42062289 0x3 + .text.wifi_start_process + 0x4206228c 0x73 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x97 (size before relaxing) + 0x4206228c wifi_start_process + *fill* 0x420622ff 0x1 + .text.wifi_stop_process + 0x42062300 0x106 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x13e (size before relaxing) + 0x42062308 wifi_stop_process + *fill* 0x42062406 0x2 + .text.wifi_connect_process + 0x42062408 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x6b (size before relaxing) + 0x42062410 wifi_connect_process + *fill* 0x4206245b 0x1 + .text.wifi_disconnect_process + 0x4206245c 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x7c (size before relaxing) + 0x42062464 wifi_disconnect_process + .text.wifi_set_config_process + 0x420624c0 0x444 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4c4 (size before relaxing) + 0x420624e4 wifi_set_config_process + .text.wifi_set_rxcb_process + 0x42062904 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x2c (size before relaxing) + 0x42062904 wifi_set_rxcb_process + .text.wifi_wps_is_started + 0x42062928 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4206292c wifi_wps_is_started + *fill* 0x42062937 0x1 + .text.wifi_wpa2_is_started + 0x42062938 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4206293c wifi_wpa2_is_started + *fill* 0x42062947 0x1 + .text.wifi_ipc_process + 0x42062948 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x60 (size before relaxing) + 0x4206294c wifi_ipc_process + .text.ieee80211_set_appie + 0x420629a0 0x16f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x187 (size before relaxing) + 0x420629a8 ieee80211_set_appie + *fill* 0x42062b0f 0x1 + .text.wifi_set_appie_process + 0x42062b10 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x1c (size before relaxing) + 0x42062b10 wifi_set_appie_process + .text.wifi_send_mgmt_frame + 0x42062b28 0x150 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x188 (size before relaxing) + 0x42062b3c wifi_send_mgmt_frame + .text.wifi_register_mgmt_frame + 0x42062c78 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x18 (size before relaxing) + 0x42062c78 wifi_register_mgmt_frame + .text.wifi_ap_remove_sta_node_process + 0x42062c8c 0x100 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x128 (size before relaxing) + 0x42062c98 wifi_ap_remove_sta_node_process + .text.wifi_ap_sta_sae_auth_done_process + 0x42062d8c 0xda C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xf2 (size before relaxing) + 0x42062d94 wifi_ap_sta_sae_auth_done_process + *fill* 0x42062e66 0x2 + .text.wifi_on_coex_start_process + 0x42062e68 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x2e (size before relaxing) + 0x42062e68 wifi_on_coex_start_process + *fill* 0x42062e8a 0x2 + .text.wifi_on_coex_schm_phase_process + 0x42062e8c 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x11 (size before relaxing) + 0x42062e8c wifi_on_coex_schm_phase_process + *fill* 0x42062e99 0x3 + .text.wifi_mesh_ps_duty_cycle_get_process + 0x42062e9c 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + 0x42062e9c wifi_mesh_ps_duty_cycle_get_process + *fill* 0x42062ec1 0x3 + .text.ieee80211_ioctl_init + 0x42062ec4 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x3c (size before relaxing) + 0x42062ecc ieee80211_ioctl_init + .text.ieee80211_ioctl_deinit + 0x42062ef0 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x10 (size before relaxing) + 0x42062ef0 ieee80211_ioctl_deinit + .text.ieee80211_ioctl + 0x42062efc 0x1be C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x1f2 (size before relaxing) + 0x42062f10 ieee80211_ioctl + *fill* 0x420630ba 0x2 + .text.config_get_wifi_task_stack_size + 0x420630bc 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x22 (size before relaxing) + 0x420630bc config_get_wifi_task_stack_size + *fill* 0x420630da 0x2 + .text.ieee80211_ampdu_age_handle + 0x420630dc 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x420630eb 0x1 + .text.ieee80211_addba + 0x420630ec 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x420630fb 0x1 + .text.ieee80211_ap_try_sa_query + 0x420630fc 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + 0x42063104 ieee80211_ap_try_sa_query + *fill* 0x42063136 0x2 + .text.ieee80211_ap_sa_query_timeout + 0x42063138 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + 0x42063140 ieee80211_ap_sa_query_timeout + *fill* 0x42063172 0x2 + .text.ieee80211_send_wake_null + 0x42063174 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x420631a9 0x3 + .text.ieee80211_cnx_connect_next_ap + 0x420631ac 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x420631e1 0x3 + .text.ieee80211_sta_retry_assoc + 0x420631e4 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x42063219 0x3 + .text.ieee80211_sta_sa_query_timeout + 0x4206321c 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x42063251 0x3 + .text.ieee80211_sta_try_sa_query + 0x42063254 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x42063289 0x3 + .text.ieee80211_assoc + 0x4206328c 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x420632c1 0x3 + .text.ieee80211_auth + 0x420632c4 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x420632f9 0x3 + .text.ieee80211_chm_dwell + 0x420632fc 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x42063336 0x2 + .text.ieee80211_handshake + 0x42063338 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x4206336d 0x3 + .text.ieee80211_beacon + 0x42063370 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x50 (size before relaxing) + .text.ieee80211_probe_send + 0x420633b4 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x50 (size before relaxing) + .text.ieee80211_csa + 0x420633f8 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x4c (size before relaxing) + .text.ieee80211_scan_enter_op_chan + 0x42063438 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x42063472 0x2 + .text.ieee80211_scan_inter_chan + 0x42063474 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x420634ae 0x2 + .text.ieee80211_timer_connect + 0x420634b0 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x420634e5 0x3 + .text.ieee80211_hostap_handle + 0x420634e8 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x42063522 0x2 + .text.ieee80211_send_beacon + 0x42063524 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x43 (size before relaxing) + *fill* 0x4206355b 0x1 + .text.ieee80211_register_hostap_timer + 0x4206355c 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x42063568 ieee80211_register_hostap_timer + *fill* 0x42063591 0x3 + .text.ieee80211_timer_do_process + 0x42063594 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0xa6 (size before relaxing) + 0x4206359c ieee80211_timer_do_process + *fill* 0x4206362a 0x2 + .text.ieee80211_timer_process + 0x4206362c 0xc5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0xf5 (size before relaxing) + 0x4206363c ieee80211_timer_process + *fill* 0x420636f1 0x3 + .text.gcmp_encap + 0x420636f4 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + 0x70 (size before relaxing) + .text.gcmp_decap + 0x42063760 0x92 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + 0x96 (size before relaxing) + *fill* 0x420637f2 0x2 + .text.ftm_is_responder_supported + 0x420637f4 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + 0x28 (size before relaxing) + 0x420637f4 ftm_is_responder_supported + .text.ftm_responder_cleanup + 0x42063814 0x63 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + 0x67 (size before relaxing) + 0x42063818 ftm_responder_cleanup + *fill* 0x42063877 0x1 + .text.ftm_is_initiator_supported + 0x42063878 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + 0x12 (size before relaxing) + 0x42063878 ftm_is_initiator_supported + *fill* 0x42063886 0x2 + .text.esp_wifi_internal_reg_netstack_buf_cb_local + 0x42063888 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x16 (size before relaxing) + 0x42063888 esp_wifi_internal_reg_netstack_buf_cb_local + *fill* 0x4206389a 0x2 + .text.esp_wifi_send_deauth_local + 0x4206389c 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x14 (size before relaxing) + 0x4206389c esp_wifi_send_deauth_local + .text.esp_wifi_ap_get_sta_aid_local + 0x420638ac 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x7e (size before relaxing) + 0x420638ac esp_wifi_ap_get_sta_aid_local + *fill* 0x42063916 0x2 + .text.wifi_get_init_state + 0x42063918 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x4206391c wifi_get_init_state + *fill* 0x42063926 0x2 + .text.wifi_is_stop_in_progress + 0x42063928 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0xf (size before relaxing) + 0x42063928 wifi_is_stop_in_progress + *fill* 0x42063933 0x1 + .text.wifi_api_lock + 0x42063934 0x4b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x57 (size before relaxing) + 0x42063938 wifi_api_lock + *fill* 0x4206397f 0x1 + .text.wifi_api_unlock + 0x42063980 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x2d (size before relaxing) + 0x42063980 wifi_api_unlock + *fill* 0x420639a1 0x3 + .text.wifi_init_completed + 0x420639a4 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x3a (size before relaxing) + 0x420639a4 wifi_init_completed + *fill* 0x420639ce 0x2 + .text.wifi_station_get_config_local + 0x420639d0 0x15e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x18a (size before relaxing) + *fill* 0x42063b2e 0x2 + .text.wifi_softap_get_config + 0x42063b30 0x156 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x186 (size before relaxing) + 0x42063b30 wifi_softap_get_config + *fill* 0x42063c86 0x2 + .text.esp_wifi_get_mode + 0x42063c88 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x44 (size before relaxing) + 0x42063c88 esp_wifi_get_mode + .text.wifi_deinit_in_caller_task + 0x42063cb8 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x5e (size before relaxing) + 0x42063cbc wifi_deinit_in_caller_task + *fill* 0x42063d02 0x2 + .text.wifi_init_in_caller_task + 0x42063d04 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0xd0 (size before relaxing) + 0x42063d08 wifi_init_in_caller_task + .text.wifi_osi_funcs_register + 0x42063dac 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x62 (size before relaxing) + 0x42063dbc wifi_osi_funcs_register + *fill* 0x42063e02 0x2 + .text.net80211_data_ptr_init + 0x42063e04 0xa7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0xd7 (size before relaxing) + 0x42063e38 net80211_data_ptr_init + *fill* 0x42063eab 0x1 + .text.net80211_softap_funcs_init + 0x42063eac 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x68 (size before relaxing) + 0x42063ecc net80211_softap_funcs_init + .text.net80211_funcs_init + 0x42063f0c 0x1c3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x223 (size before relaxing) + 0x42063f80 net80211_funcs_init + *fill* 0x420640cf 0x1 + .text.net80211_funcs_deinit + 0x420640d0 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x25 (size before relaxing) + 0x420640d0 net80211_funcs_deinit + *fill* 0x420640ed 0x3 + .text.esp_wifi_init_internal + 0x420640f0 0x134 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x188 (size before relaxing) + 0x42064104 esp_wifi_init_internal + .text.esp_wifi_deinit_internal + 0x42064224 0xfc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x150 (size before relaxing) + 0x42064238 esp_wifi_deinit_internal + .text.esp_wifi_set_mode + 0x42064320 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x4e (size before relaxing) + 0x42064324 esp_wifi_set_mode + *fill* 0x4206435e 0x2 + .text.esp_wifi_start + 0x42064360 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x4a (size before relaxing) + 0x42064364 esp_wifi_start + *fill* 0x4206439a 0x2 + .text.esp_wifi_stop + 0x4206439c 0x18f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x1db (size before relaxing) + 0x420643c0 esp_wifi_stop + *fill* 0x4206452b 0x1 + .text.esp_wifi_connect_internal + 0x4206452c 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x62 (size before relaxing) + 0x42064530 esp_wifi_connect_internal + *fill* 0x42064576 0x2 + .text.esp_wifi_set_config + 0x42064578 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x82 (size before relaxing) + 0x4206457c esp_wifi_set_config + *fill* 0x420645e2 0x2 + .text.esp_wifi_get_config + 0x420645e4 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x54 (size before relaxing) + 0x420645e4 esp_wifi_get_config + .text.esp_wifi_get_mac + 0x42064624 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x42064624 esp_wifi_get_mac + .text.esp_wifi_internal_reg_rxcb + 0x4206465c 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x62 (size before relaxing) + 0x42064660 esp_wifi_internal_reg_rxcb + *fill* 0x420646aa 0x2 + .text.esp_wifi_internal_set_sta_ip + 0x420646ac 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x3a (size before relaxing) + 0x420646ac esp_wifi_internal_set_sta_ip + *fill* 0x420646d6 0x2 + .text.wifi_event_post + 0x420646d8 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x47 (size before relaxing) + 0x420646e0 wifi_event_post + *fill* 0x42064717 0x1 + .text.wifi_mesh_event_post + 0x42064718 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x47 (size before relaxing) + 0x42064720 wifi_mesh_event_post + *fill* 0x42064757 0x1 + .text.esp_wifi_vnd_lora_enable + 0x42064758 0xc0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0xd4 (size before relaxing) + 0x42064758 esp_wifi_vnd_lora_enable + .text.esp_wifi_vnd_lora_disable + 0x42064818 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x66 (size before relaxing) + 0x42064818 esp_wifi_vnd_lora_disable + *fill* 0x42064872 0x2 + .text.esp_wifi_get_event_mask + 0x42064874 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x2c (size before relaxing) + 0x42064878 esp_wifi_get_event_mask + .text.esp_wifi_ipc_internal + 0x42064898 0x10a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x12a (size before relaxing) + 0x420648a0 esp_wifi_ipc_internal + *fill* 0x420649a2 0x2 + .text.esp_wifi_internal_set_log_level + 0x420649a4 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x18 (size before relaxing) + 0x420649a4 esp_wifi_internal_set_log_level + .text.esp_wifi_internal_on_coex_start + 0x420649b8 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x4c (size before relaxing) + 0x420649bc esp_wifi_internal_on_coex_start + .text.esp_wifi_internal_on_coex_schm_phase + 0x420649f0 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x4c (size before relaxing) + 0x420649f4 esp_wifi_internal_on_coex_schm_phase + .text.esp_wifi_set_sleep_min_active_time + 0x42064a28 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x12 (size before relaxing) + 0x42064a28 esp_wifi_set_sleep_min_active_time + *fill* 0x42064a36 0x2 + .text.esp_wifi_set_keep_alive_time + 0x42064a38 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x12 (size before relaxing) + 0x42064a38 esp_wifi_set_keep_alive_time + *fill* 0x42064a46 0x2 + .text.esp_wifi_set_sleep_wait_broadcast_data_time + 0x42064a48 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x12 (size before relaxing) + 0x42064a48 esp_wifi_set_sleep_wait_broadcast_data_time + *fill* 0x42064a56 0x2 + .text.esp_wifi_internal_reg_netstack_buf_cb + 0x42064a58 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x2a (size before relaxing) + 0x42064a5c esp_wifi_internal_reg_netstack_buf_cb + *fill* 0x42064a7e 0x2 + .text.esp_wifi_internal_issue_disconnect + 0x42064a80 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x2a (size before relaxing) + 0x42064a84 esp_wifi_internal_issue_disconnect + *fill* 0x42064aa6 0x2 + .text.esp_wifi_ap_get_sta_aid + 0x42064aa8 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x3f (size before relaxing) + 0x42064aac esp_wifi_ap_get_sta_aid + *fill* 0x42064ae3 0x1 + .text.esp_mesh_map_deauth + 0x42064ae4 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x86 (size before relaxing) + 0x42064ae4 esp_mesh_map_deauth + *fill* 0x42064b46 0x2 + .text.esp_mesh_get_running_active_duty_cycle + 0x42064b48 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x46 (size before relaxing) + 0x42064b4c esp_mesh_get_running_active_duty_cycle + *fill* 0x42064b86 0x2 + .text.cnx_sta_connect_led_timer_cb + 0x42064b88 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x1d (size before relaxing) + 0x42064b88 cnx_sta_connect_led_timer_cb + *fill* 0x42064ba1 0x3 + .text.cnx_cal_rc_util + 0x42064ba4 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x54 (size before relaxing) + .text.cnx_get_next_rc + 0x42064bf4 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3e (size before relaxing) + *fill* 0x42064c2a 0x2 + .text.cnx_probe_rc + 0x42064c2c 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x74 (size before relaxing) + .text.cnx_traverse_rc_lis_done + 0x42064c8c 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3c (size before relaxing) + .text.cnx_connect_timeout + 0x42064cbc 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x42064cbc cnx_connect_timeout + *fill* 0x42064cce 0x2 + .text.cnx_connect_next_ap_timeout + 0x42064cd0 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x42064cd0 cnx_connect_next_ap_timeout + *fill* 0x42064ce2 0x2 + .text.cnx_handshake_timeout + 0x42064ce4 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x42064ce4 cnx_handshake_timeout + *fill* 0x42064cf6 0x2 + .text.cnx_csa_fn + 0x42064cf8 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x18 (size before relaxing) + 0x42064cf8 cnx_csa_fn + .text.mgd_probe_send_timeout + 0x42064d0c 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x42064d1e 0x2 + .text.cnx_beacon_timeout + 0x42064d20 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x42064d32 0x2 + .text.cnx_connect_op + 0x42064d34 0x1d3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x217 (size before relaxing) + *fill* 0x42064f07 0x1 + .text.update_ic_params_using_bss$part$0 + 0x42064f08 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x25 (size before relaxing) + *fill* 0x42064f29 0x3 + .text.cnx_connect_to_bss + 0x42064f2c 0x37e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3e2 (size before relaxing) + *fill* 0x420652aa 0x2 + .text.ieee80211_cnx_attach + 0x420652ac 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x4c (size before relaxing) + 0x420652b0 ieee80211_cnx_attach + .text._cnx_start_connect_without_scan + 0x420652e8 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x6e (size before relaxing) + 0x420652ec _cnx_start_connect_without_scan + *fill* 0x42065342 0x2 + .text.cnx_can_do_obss_scan + 0x42065344 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x88 (size before relaxing) + 0x42065354 cnx_can_do_obss_scan + .text.cnx_obss_scan + 0x420653bc 0x9a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xc2 (size before relaxing) + 0x420653d0 cnx_obss_scan + *fill* 0x42065456 0x2 + .text.cnx_obss_scan_timeout + 0x42065458 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x7c (size before relaxing) + 0x42065468 cnx_obss_scan_timeout + .text.cnx_connect_next_ap + 0x420654c0 0x8c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xa4 (size before relaxing) + 0x420654c8 cnx_connect_next_ap + .text.cnx_auth_timeout + 0x4206554c 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x4206554c cnx_auth_timeout + *fill* 0x4206555e 0x2 + .text.cnx_assoc_timeout + 0x42065560 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x42065560 cnx_assoc_timeout + *fill* 0x42065572 0x2 + .text.wl_is_ap_no_lr + 0x42065574 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x42065578 wl_is_ap_no_lr + *fill* 0x42065583 0x1 + .text.wl_clear_ap_no_lr + 0x42065584 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x11 (size before relaxing) + 0x42065584 wl_clear_ap_no_lr + *fill* 0x42065591 0x3 + .text.cnx_csa_fn_process + 0x42065594 0xd7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x107 (size before relaxing) + 0x420655a0 cnx_csa_fn_process + *fill* 0x4206566b 0x1 + .text.cnx_validate_owe_bss + 0x4206566c 0x10a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x13e (size before relaxing) + 0x4206566c cnx_validate_owe_bss + *fill* 0x42065776 0x2 + .text.cnx_bss_init + 0x42065778 0xb0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xcc (size before relaxing) + 0x42065784 cnx_bss_init + .text.cnx_check_bssid_in_blacklist + 0x42065828 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x35 (size before relaxing) + 0x42065828 cnx_check_bssid_in_blacklist + *fill* 0x42065855 0x3 + .text.cnx_remove_from_blacklist + 0x42065858 0x81 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x91 (size before relaxing) + 0x4206585c cnx_remove_from_blacklist + *fill* 0x420658d9 0x3 + .text.cnx_add_to_blacklist + 0x420658dc 0xb4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xd0 (size before relaxing) + 0x420658e8 cnx_add_to_blacklist + .text.cnx_clear_blacklist + 0x42065990 0x5b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x6b (size before relaxing) + 0x42065994 cnx_clear_blacklist + *fill* 0x420659eb 0x1 + .text.cnx_choose_rc + 0x420659ec 0x1ea C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x232 (size before relaxing) + *fill* 0x42065bd6 0x2 + .text.cnx_rc_search + 0x42065bd8 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x44 (size before relaxing) + 0x42065bd8 cnx_rc_search + .text.cnx_do_handoff_internal + 0x42065c10 0xa4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xb8 (size before relaxing) + 0x42065c18 cnx_do_handoff_internal + .text.cnx_add_rc + 0x42065cb4 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x8c (size before relaxing) + 0x42065cb4 cnx_add_rc + .text.cnx_remove_all_rc + 0x42065d38 0x67 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x77 (size before relaxing) + 0x42065d3c cnx_remove_all_rc + *fill* 0x42065d9f 0x1 + .text.cnx_remove_rc + 0x42065da0 0xbe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xda (size before relaxing) + 0x42065da4 cnx_remove_rc + *fill* 0x42065e5e 0x2 + .text.cnx_do_handoff + 0x42065e60 0x37c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x404 (size before relaxing) + .text.cnx_connect_next_ap_timeout_process + 0x420661dc 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x28 (size before relaxing) + 0x420661e0 cnx_connect_next_ap_timeout_process + .text.cnx_start_handoff_cb + 0x420661fc 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x80 (size before relaxing) + 0x42066204 cnx_start_handoff_cb + .text.cnx_sta_connect_cmd + 0x42066260 0x258 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x2d8 (size before relaxing) + 0x42066278 cnx_sta_connect_cmd + .text.cnx_connect_timeout_process + 0x420664b8 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xa4 (size before relaxing) + 0x420664c4 cnx_connect_timeout_process + .text.cnx_auth_timeout_process + 0x42066540 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x61 (size before relaxing) + 0x42066548 cnx_auth_timeout_process + *fill* 0x42066589 0x3 + .text.cnx_assoc_timeout_process + 0x4206658c 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x4a (size before relaxing) + 0x42066590 cnx_assoc_timeout_process + *fill* 0x420665c2 0x2 + .text.cnx_handshake_timeout_process + 0x420665c4 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x72 (size before relaxing) + 0x420665c8 cnx_handshake_timeout_process + *fill* 0x4206661e 0x2 + .text.cnx_bss_alloc + 0x42066620 0x138 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x15c (size before relaxing) + 0x4206662c cnx_bss_alloc + .text.cnx_remove_rc_except + 0x42066758 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x94 (size before relaxing) + 0x4206675c cnx_remove_rc_except + .text.cnx_rc_update_rssi + 0x420667dc 0x67 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x6b (size before relaxing) + 0x420667dc cnx_rc_update_rssi + *fill* 0x42066843 0x1 + .text.cnx_rc_update_state_metric + 0x42066844 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x62 (size before relaxing) + 0x42066844 cnx_rc_update_state_metric + *fill* 0x4206689e 0x2 + .text.cnx_probe_rc_tx_cb + 0x420668a0 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x66 (size before relaxing) + *fill* 0x420668f2 0x2 + .text.cnx_update_bss + 0x420668f4 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x2a (size before relaxing) + 0x420668f4 cnx_update_bss + *fill* 0x42066916 0x2 + .text.send_ap_probe + 0x42066918 0x8c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xac (size before relaxing) + 0x42066918 send_ap_probe + .text.mgd_probe_send_timeout_process + 0x420669a4 0x130 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x15c (size before relaxing) + 0x420669b8 mgd_probe_send_timeout_process + .text.cnx_node_alloc + 0x42066ad4 0xbf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xd7 (size before relaxing) + 0x42066ad4 cnx_node_alloc + *fill* 0x42066b93 0x1 + .text.cnx_node_remove + 0x42066b94 0x135 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x165 (size before relaxing) + 0x42066b94 cnx_node_remove + *fill* 0x42066cc9 0x3 + .text.cnx_sta_pm + 0x42066ccc 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x48 (size before relaxing) + 0x42066ccc cnx_sta_pm + .text.cnx_update_bss_more + 0x42066d08 0x342 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3b2 (size before relaxing) + 0x42066d0c cnx_update_bss_more + *fill* 0x4206704a 0x2 + .text.cnx_beacon_timeout_process + 0x4206704c 0xa0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xcc (size before relaxing) + 0x42067054 cnx_beacon_timeout_process + .text.ic_set_sta + 0x420670ec 0xba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xd2 (size before relaxing) + 0x420670ec ic_set_sta + *fill* 0x420671a6 0x2 + .text.cnx_sta_leave + 0x420671a8 0x2b3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x323 (size before relaxing) + 0x420671bc cnx_sta_leave + *fill* 0x4206745b 0x1 + .text.cnx_sta_associated + 0x4206745c 0x16e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x196 (size before relaxing) + 0x42067470 cnx_sta_associated + *fill* 0x420675ca 0x2 + .text.cnx_node_leave + 0x420675cc 0x1e2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x21a (size before relaxing) + 0x420675dc cnx_node_leave + *fill* 0x420677ae 0x2 + .text.cnx_node_join + 0x420677b0 0x2de C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x332 (size before relaxing) + 0x420677dc cnx_node_join + *fill* 0x42067a8e 0x2 + .text.cnx_start_obss_scan + 0x42067a90 0xd8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xf0 (size before relaxing) + 0x42067aa0 cnx_start_obss_scan + .text.cnx_obss_scan_done_cb + 0x42067b68 0x125 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x14d (size before relaxing) + 0x42067b7c cnx_obss_scan_done_cb + *fill* 0x42067c8d 0x3 + .text.cnx_auth_done + 0x42067c90 0x2de C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x362 (size before relaxing) + 0x42067cbc cnx_auth_done + *fill* 0x42067f6e 0x2 + .text.get_iav_key + 0x42067f70 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + 0x42067f74 get_iav_key + *fill* 0x42067f8e 0x2 + .text.ieee80211_recv_action_vendor_esp_now + 0x42067f90 0x138 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + 0x150 (size before relaxing) + 0x42067fa0 ieee80211_recv_action_vendor_esp_now + .text.ieee80211_recv_action_vendor_spec + 0x420680c8 0x82 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + 0x96 (size before relaxing) + 0x420680c8 ieee80211_recv_action_vendor_spec + *fill* 0x4206814a 0x2 + .text.ieee80211_action_vendor_spec_attach + 0x4206814c 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + 0x32 (size before relaxing) + 0x42068150 ieee80211_action_vendor_spec_attach + *fill* 0x42068176 0x2 + .text.ieee80211_is_action_category_robust + 0x42068178 0x31 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x35 (size before relaxing) + *fill* 0x420681a9 0x3 + .text.send_wake_null_timeout + 0x420681ac 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + 0x420681ac send_wake_null_timeout + *fill* 0x420681be 0x2 + .text.sta_assoc_comeback + 0x420681c0 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x420681d2 0x2 + .text.sta_try_sa_query + 0x420681d4 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x420681e6 0x2 + .text.sta_sa_query_timeout + 0x420681e8 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x420681fa 0x2 + .text.sta_eapol_txdone_cb + 0x420681fc 0xb2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xba (size before relaxing) + 0x42068200 sta_eapol_txdone_cb + *fill* 0x420682ae 0x2 + .text.send_wake_null_timeout_process + 0x420682b0 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x12 (size before relaxing) + 0x420682b0 send_wake_null_timeout_process + *fill* 0x420682be 0x2 + .text.wifi_sta_reg_eapol_txdone_cb + 0x420682c0 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x23 (size before relaxing) + 0x420682c4 wifi_sta_reg_eapol_txdone_cb + *fill* 0x420682db 0x1 + .text.wifi_sta_reg_rxcb + 0x420682dc 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xe (size before relaxing) + 0x420682dc wifi_sta_reg_rxcb + *fill* 0x420682e6 0x2 + .text.sta_michael_mic_failure + 0x420682e8 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x3e (size before relaxing) + 0x420682ec sta_michael_mic_failure + *fill* 0x4206831e 0x2 + .text.ieee80211_wme_standard_ac_to_esp_ac + 0x42068320 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x36 (size before relaxing) + 0x42068328 ieee80211_wme_standard_ac_to_esp_ac + *fill* 0x42068352 0x2 + .text.ieee80211_parse_wmeparams + 0x42068354 0x79 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x7d (size before relaxing) + 0x42068354 ieee80211_parse_wmeparams + *fill* 0x420683cd 0x3 + .text.sta_rx_csa + 0x420683d0 0x22a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x25e (size before relaxing) + 0x420683f4 sta_rx_csa + *fill* 0x420685fa 0x2 + .text.update_cs_thres + 0x420685fc 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xa2 (size before relaxing) + 0x42068604 update_cs_thres + *fill* 0x42068692 0x2 + .text.reset_cs_thres + 0x42068694 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x33 (size before relaxing) + 0x42068694 reset_cs_thres + *fill* 0x420686bb 0x1 + .text.ieee80211_parse_obss_scan_param + 0x420686bc 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x2a (size before relaxing) + 0x420686bc ieee80211_parse_obss_scan_param + *fill* 0x420686e2 0x2 + .text.ieee80211_set_bss_max_idle_period + 0x420686e4 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x4e (size before relaxing) + 0x420686f0 ieee80211_set_bss_max_idle_period + *fill* 0x4206872e 0x2 + .text.sta_recv_ctl + 0x42068730 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + 0x42068730 sta_recv_ctl + *fill* 0x42068742 0x2 + .text.wifi_station_stop + 0x42068744 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xb6 (size before relaxing) + 0x42068748 wifi_station_stop + *fill* 0x420687da 0x2 + .text.sta_bip_check + 0x420687dc 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x90 (size before relaxing) + 0x420687dc sta_bip_check + .text.sta_is_wpa3_enabled + 0x42068854 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x2a (size before relaxing) + 0x42068854 sta_is_wpa3_enabled + *fill* 0x42068876 0x2 + .text.sta_is_11r_enabled + 0x42068878 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x12 (size before relaxing) + 0x42068878 sta_is_11r_enabled + *fill* 0x42068886 0x2 + .text.sta_is_wifi_ent_enabled + 0x42068888 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x12 (size before relaxing) + 0x42068888 sta_is_wifi_ent_enabled + *fill* 0x42068896 0x2 + .text.sta_is_bss_max_idle_enabled + 0x42068898 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x12 (size before relaxing) + 0x42068898 sta_is_bss_max_idle_enabled + *fill* 0x420688a6 0x2 + .text.wifi_station_start + 0x420688a8 0xd0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xf8 (size before relaxing) + 0x420688b4 wifi_station_start + .text.sta_get_owe_data + 0x42068978 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x13 (size before relaxing) + 0x42068978 sta_get_owe_data + *fill* 0x42068987 0x1 + .text.sta_update_power_off_reset_flag + 0x42068988 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x7e (size before relaxing) + 0x42068988 sta_update_power_off_reset_flag + *fill* 0x420689f2 0x2 + .text.ieee80211_sta_new_state + 0x420689f4 0xcd1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xe45 (size before relaxing) + 0x42068ad4 ieee80211_sta_new_state + *fill* 0x420696c5 0x3 + .text.sta_auth_ft + 0x420696c8 0x92 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xae (size before relaxing) + 0x420696d0 sta_auth_ft + *fill* 0x4206975a 0x2 + .text.sta_auth_open + 0x4206975c 0xde C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x10a (size before relaxing) + 0x42069768 sta_auth_open + *fill* 0x4206983a 0x2 + .text.sta_auth_shared + 0x4206983c 0x126 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x146 (size before relaxing) + 0x42069844 sta_auth_shared + *fill* 0x42069962 0x2 + .text.sta_auth_sae + 0x42069964 0x146 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x16a (size before relaxing) + 0x42069968 sta_auth_sae + *fill* 0x42069aaa 0x2 + .text.sta_retry_assoc + 0x42069aac 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x68 (size before relaxing) + 0x42069aac sta_retry_assoc + .text.sta_recv_assoc + 0x42069b04 0x6b7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x75f (size before relaxing) + 0x42069b44 sta_recv_assoc + *fill* 0x4206a1bb 0x1 + .text.sta_sa_query_process_timeout + 0x4206a1bc 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x8c (size before relaxing) + 0x4206a1c4 sta_sa_query_process_timeout + .text.sta_try_sa_query_process + 0x4206a230 0x16a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x18a (size before relaxing) + 0x4206a240 sta_try_sa_query_process + *fill* 0x4206a39a 0x2 + .text.sta_recv_mgmt + 0x4206a39c 0xab3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xbbf (size before relaxing) + 0x4206a3dc sta_recv_mgmt + *fill* 0x4206ae4f 0x1 + .text.ieee80211_proto_attach + 0x4206ae50 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x28 (size before relaxing) + 0x4206ae54 ieee80211_proto_attach + .text.ieee80211_wme_updateparams + 0x4206ae74 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x4f (size before relaxing) + 0x4206ae78 ieee80211_wme_updateparams + *fill* 0x4206aebb 0x1 + .text.ieee80211_mlme_connect_bss + 0x4206aebc 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x5e (size before relaxing) + 0x4206aec0 ieee80211_mlme_connect_bss + *fill* 0x4206af0a 0x2 + .text.sms4_decap + 0x4206af0c 0x7d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + 0x85 (size before relaxing) + *fill* 0x4206af89 0x3 + .text.sms4_encap + 0x4206af8c 0xa4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + 0xac (size before relaxing) + .text.ieee80211_regdomain_get_country + 0x4206b030 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x3e (size before relaxing) + 0x4206b030 ieee80211_regdomain_get_country + *fill* 0x4206b066 0x2 + .text.ieee80211_update_phy_country + 0x4206b068 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x30 (size before relaxing) + 0x4206b068 ieee80211_update_phy_country + .text.ieee80211_regdomain_update + 0x4206b08c 0x142 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x166 (size before relaxing) + 0x4206b090 ieee80211_regdomain_update + *fill* 0x4206b1ce 0x2 + .text.ieee80211_regdomain_update_in_scan + 0x4206b1d0 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x16 (size before relaxing) + 0x4206b1d0 ieee80211_regdomain_update_in_scan + *fill* 0x4206b1e2 0x2 + .text.ieee80211_regdomain_update_in_connect + 0x4206b1e4 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x18 (size before relaxing) + 0x4206b1e4 ieee80211_regdomain_update_in_connect + .text.ieee80211_add_countryie + 0x4206b1f8 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x56 (size before relaxing) + 0x4206b1fc ieee80211_add_countryie + *fill* 0x4206b246 0x2 + .text.ieee80211_regdomain_max_chan + 0x4206b248 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x2f (size before relaxing) + 0x4206b248 ieee80211_regdomain_max_chan + *fill* 0x4206b26f 0x1 + .text.ieee80211_regdomain_ap_max_chan + 0x4206b270 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x22 (size before relaxing) + 0x4206b270 ieee80211_regdomain_ap_max_chan + *fill* 0x4206b28e 0x2 + .text.ieee80211_regdomain_min_chan + 0x4206b290 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x26 (size before relaxing) + 0x4206b290 ieee80211_regdomain_min_chan + *fill* 0x4206b2ae 0x2 + .text.ieee80211_regdomain_ap_min_chan + 0x4206b2b0 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x23 (size before relaxing) + 0x4206b2b0 ieee80211_regdomain_ap_min_chan + *fill* 0x4206b2cb 0x1 + .text.ieee80211_regdomain_chan_in_range + 0x4206b2cc 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x3e (size before relaxing) + 0x4206b2cc ieee80211_regdomain_chan_in_range + *fill* 0x4206b2fe 0x2 + .text.ieee80211_regdomain_check_ap_channel + 0x4206b300 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x44 (size before relaxing) + 0x4206b300 ieee80211_regdomain_check_ap_channel + .text.ieee80211_regdomain_is_active_scan + 0x4206b334 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x33 (size before relaxing) + 0x4206b334 ieee80211_regdomain_is_active_scan + *fill* 0x4206b363 0x1 + .text.ieee80211_get_regdomain + 0x4206b364 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x46 (size before relaxing) + 0x4206b36c ieee80211_get_regdomain + *fill* 0x4206b3a6 0x2 + .text.get_channel_max_bandwidth + 0x4206b3a8 0x96 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0xa2 (size before relaxing) + 0x4206b3ac get_channel_max_bandwidth + *fill* 0x4206b43e 0x2 + .text.ieee80211_is_40mhz_valid_bw + 0x4206b440 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x36 (size before relaxing) + 0x4206b440 ieee80211_is_40mhz_valid_bw + *fill* 0x4206b46a 0x2 + .text.ieee80211_send_sa_query + 0x4206b46c 0xaa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0xbe (size before relaxing) + *fill* 0x4206b516 0x2 + .text.ieee80211_send_sa_query_resp + 0x4206b518 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_send_sa_query_req + 0x4206b53c 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_recv_sa_query_req + 0x4206b560 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_recv_sa_query_resp + 0x4206b584 0xe6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0xfa (size before relaxing) + *fill* 0x4206b66a 0x2 + .text.band2str + 0x4206b66c 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x3a (size before relaxing) + 0x4206b67c band2str + *fill* 0x4206b6a2 0x2 + .text.ieee80211_rate_ref_init + 0x4206b6a4 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x1c (size before relaxing) + 0x4206b6a4 ieee80211_rate_ref_init + .text.ieee80211_freedom_inside_cb + 0x4206b6bc 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x37 (size before relaxing) + 0x4206b6bc ieee80211_freedom_inside_cb + *fill* 0x4206b6e7 0x1 + .text.ieee80211_freedom_init + 0x4206b6e8 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x24 (size before relaxing) + 0x4206b6ec ieee80211_freedom_init + .text.ieee80211_freedom_deinit + 0x4206b704 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x1e (size before relaxing) + 0x4206b704 ieee80211_freedom_deinit + *fill* 0x4206b71a 0x2 + .text.ieee80211_user_ie_init + 0x4206b71c 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x3c (size before relaxing) + 0x4206b720 ieee80211_user_ie_init + .text.ieee80211_ifattach + 0x4206b750 0xca C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x102 (size before relaxing) + 0x4206b750 ieee80211_ifattach + *fill* 0x4206b81a 0x2 + .text.ieee80211_ifdetach + 0x4206b81c 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x2f (size before relaxing) + 0x4206b81c ieee80211_ifdetach + *fill* 0x4206b83b 0x1 + .text.wifi_destroy_softap + 0x4206b83c 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x8c (size before relaxing) + 0x4206b83c wifi_destroy_softap + .text.wifi_destroy_sta + 0x4206b8ac 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x96 (size before relaxing) + 0x4206b8ac wifi_destroy_sta + *fill* 0x4206b922 0x2 + .text.ieee80211_find_elem_match + 0x4206b924 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x4c (size before relaxing) + 0x4206b924 ieee80211_find_elem_match + .text.ieee80211_find_elem + 0x4206b96c 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x1e (size before relaxing) + 0x4206b96c ieee80211_find_elem + *fill* 0x4206b986 0x2 + .text.ieee80211_find_ie + 0x4206b988 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x18 (size before relaxing) + 0x4206b988 ieee80211_find_ie + .text.ieee80211_setup_pmf + 0x4206b99c 0x4b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x5b (size before relaxing) + 0x4206b9ac ieee80211_setup_pmf + *fill* 0x4206b9e7 0x1 + .text.wifi_create_softap + 0x4206b9e8 0x102 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x12a (size before relaxing) + 0x4206b9f0 wifi_create_softap + *fill* 0x4206baea 0x2 + .text.wifi_create_sta + 0x4206baec 0xfe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x12e (size before relaxing) + 0x4206baf4 wifi_create_sta + *fill* 0x4206bbea 0x2 + .text.wifi_mode_set + 0x4206bbec 0x15a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x17e (size before relaxing) + 0x4206bbfc wifi_mode_set + *fill* 0x4206bd46 0x2 + .text.ieee80211_is_robust_mgmt_frm + 0x4206bd48 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x44 (size before relaxing) + 0x4206bd48 ieee80211_is_robust_mgmt_frm + .text.ieee80211_crypto_decap + 0x4206bd88 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0xaa (size before relaxing) + 0x4206bd90 ieee80211_crypto_decap + *fill* 0x4206be2a 0x2 + .text.ieee80211_crypto_bip_encrypt + 0x4206be2c 0x1d2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x1fa (size before relaxing) + 0x4206be30 ieee80211_crypto_bip_encrypt + *fill* 0x4206bffe 0x2 + .text.ieee80211_crypto_aes_128_cmac_decrypt + 0x4206c000 0x145 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x16d (size before relaxing) + 0x4206c010 ieee80211_crypto_aes_128_cmac_decrypt + *fill* 0x4206c145 0x3 + .text.ieee80211_crypto_gmac_decrypt + 0x4206c148 0x1ad C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x1dd (size before relaxing) + 0x4206c158 ieee80211_crypto_gmac_decrypt + *fill* 0x4206c2f5 0x3 + .text.ieee80211_get_cipher_mic_len + 0x4206c2f8 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x4206c2fc ieee80211_get_cipher_mic_len + .text.ccmp_encap + 0x4206c314 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x70 (size before relaxing) + 0x4206c314 ccmp_encap + .text.ccmp_decap + 0x4206c380 0x92 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x96 (size before relaxing) + 0x4206c380 ccmp_decap + *fill* 0x4206c412 0x2 + .text.ieee80211_decrypt_espnow_pkt + 0x4206c414 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x39 (size before relaxing) + 0x4206c414 ieee80211_decrypt_espnow_pkt + *fill* 0x4206c449 0x3 + .text.ieee80211_ccmp_decrypt + 0x4206c44c 0x161 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x16d (size before relaxing) + 0x4206c458 ieee80211_ccmp_decrypt + *fill* 0x4206c5ad 0x3 + .text.ieee80211_send_action_register + 0x4206c5b0 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + 0x4206c5c4 ieee80211_send_action_register + *fill* 0x4206c622 0x2 + .text.ieee80211_send_action + 0x4206c624 0x86 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + 0x9a (size before relaxing) + 0x4206c628 ieee80211_send_action + *fill* 0x4206c6aa 0x2 + .text.ieee80211_recv_action_register + 0x4206c6ac 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + 0x4206c6c0 ieee80211_recv_action_register + *fill* 0x4206c71e 0x2 + .text.ieee80211_recv_action + 0x4206c720 0xab C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + 0xc3 (size before relaxing) + 0x4206c72c ieee80211_recv_action + *fill* 0x4206c7cb 0x1 + .text.tkip_decap + 0x4206c7cc 0x9d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + 0xa5 (size before relaxing) + 0x4206c7cc tkip_decap + *fill* 0x4206c869 0x3 + .text.tkip_encap + 0x4206c86c 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + 0x8c (size before relaxing) + 0x4206c86c tkip_encap + .text.scan_enter_oper_channel + 0x4206c8f0 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x4206c902 0x2 + .text.scan_inter_channel_timeout + 0x4206c904 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x4206c916 0x2 + .text.scan_op_start + 0x4206c918 0x1cf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x20b (size before relaxing) + *fill* 0x4206cae7 0x1 + .text.sta_update_owe_bssid$constprop$0 + 0x4206cae8 0x59 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x71 (size before relaxing) + *fill* 0x4206cb41 0x3 + .text.scan_set_global_scan_times$constprop$0 + 0x4206cb44 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x2a (size before relaxing) + *fill* 0x4206cb6a 0x2 + .text.ieee80211_scan_deattach + 0x4206cb6c 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x2c (size before relaxing) + 0x4206cb6c ieee80211_scan_deattach + .text.scan_reset_default_app_params + 0x4206cb90 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x4b (size before relaxing) + 0x4206cb94 scan_reset_default_app_params + *fill* 0x4206cbcf 0x1 + .text.ieee80211_scan_attach + 0x4206cbd0 0xaa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0xba (size before relaxing) + 0x4206cbe0 ieee80211_scan_attach + *fill* 0x4206cc7a 0x2 + .text.scan_pm_offchan + 0x4206cc7c 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x50 (size before relaxing) + 0x4206cc80 scan_pm_offchan + .text.scan_start + 0x4206ccc0 0xb1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0xd1 (size before relaxing) + 0x4206ccd0 scan_start + *fill* 0x4206cd71 0x3 + .text.scan_flush_all_tx_buf + 0x4206cd74 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x80 (size before relaxing) + 0x4206cd80 scan_flush_all_tx_buf + .text.scan_cancel + 0x4206cde0 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0xa0 (size before relaxing) + 0x4206cde4 scan_cancel + .text.scan_remove_bssid + 0x4206ce68 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x13 (size before relaxing) + 0x4206ce68 scan_remove_bssid + *fill* 0x4206ce77 0x1 + .text.scan_hidden_ssid + 0x4206ce78 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x11 (size before relaxing) + 0x4206ce78 scan_hidden_ssid + *fill* 0x4206ce85 0x3 + .text.scan_set_act_duration + 0x4206ce88 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x12 (size before relaxing) + 0x4206ce88 scan_set_act_duration + *fill* 0x4206ce96 0x2 + .text.scan_set_pas_duration + 0x4206ce98 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x10 (size before relaxing) + 0x4206ce98 scan_set_pas_duration + .text.scan_add_probe_ssid + 0x4206cea4 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x68 (size before relaxing) + 0x4206cea4 scan_add_probe_ssid + .text.scan_remove_probe_ssid + 0x4206cf00 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x2b (size before relaxing) + 0x4206cf00 scan_remove_probe_ssid + *fill* 0x4206cf27 0x1 + .text.scan_prefer_chan + 0x4206cf28 0x1d9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x221 (size before relaxing) + 0x4206cf48 scan_prefer_chan + *fill* 0x4206d101 0x3 + .text.scan_update_scan_history + 0x4206d104 0x166 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x182 (size before relaxing) + 0x4206d114 scan_update_scan_history + *fill* 0x4206d26a 0x2 + .text.scan_build_chan_list + 0x4206d26c 0x7a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x82 (size before relaxing) + 0x4206d274 scan_build_chan_list + *fill* 0x4206d2e6 0x2 + .text.scan_enter_oper_channel_process + 0x4206d2e8 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x3b (size before relaxing) + 0x4206d2f0 scan_enter_oper_channel_process + *fill* 0x4206d317 0x1 + .text.scan_set_desChan + 0x4206d318 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x11 (size before relaxing) + 0x4206d318 scan_set_desChan + *fill* 0x4206d325 0x3 + .text.scan_get_type + 0x4206d328 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x10 (size before relaxing) + 0x4206d328 scan_get_type + .text.scan_add_ssid_do$constprop$0 + 0x4206d334 0x436 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x466 (size before relaxing) + *fill* 0x4206d76a 0x2 + .text.scan_add_ssid$isra$0 + 0x4206d76c 0x142 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x166 (size before relaxing) + *fill* 0x4206d8ae 0x2 + .text.scan_reset_cipher_and_akm + 0x4206d8b0 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x29 (size before relaxing) + 0x4206d8b0 scan_reset_cipher_and_akm + *fill* 0x4206d8d5 0x3 + .text.cnx_get_authtype_strength + 0x4206d8d8 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x4206d8dc cnx_get_authtype_strength + *fill* 0x4206d8f6 0x2 + .text.scan_profile_check + 0x4206d8f8 0x6fc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x7c0 (size before relaxing) + 0x4206d958 scan_profile_check + .text.free_bss_info + 0x4206dff4 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x4c (size before relaxing) + 0x4206dff8 free_bss_info + .text.clear_bss_queue + 0x4206e038 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x76 (size before relaxing) + 0x4206e03c clear_bss_queue + *fill* 0x4206e092 0x2 + .text.scan_done + 0x4206e094 0x216 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x27e (size before relaxing) + *fill* 0x4206e2aa 0x2 + .text.scan_next_channel + 0x4206e2ac 0x1cc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x20c (size before relaxing) + .text.scan_enter_oper_channel_handler + 0x4206e478 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x35 (size before relaxing) + 0x4206e47c scan_enter_oper_channel_handler + *fill* 0x4206e4a1 0x3 + .text.scan_inter_channel_timeout_process + 0x4206e4a4 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x88 (size before relaxing) + 0x4206e4ac scan_inter_channel_timeout_process + .text.scan_op_end + 0x4206e518 0x1c4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x20c (size before relaxing) + .text.scan_start_handler + 0x4206e6dc 0xd3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0xff (size before relaxing) + 0x4206e6ec scan_start_handler + *fill* 0x4206e7af 0x1 + .text.check_bss_queue + 0x4206e7b0 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x60 (size before relaxing) + 0x4206e7b0 check_bss_queue + .text.scan_parse_ht2040_coex + 0x4206e800 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x7c (size before relaxing) + 0x4206e808 scan_parse_ht2040_coex + .text.scan_get_owe_channel_info + 0x4206e870 0x67 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x73 (size before relaxing) + 0x4206e870 scan_get_owe_channel_info + *fill* 0x4206e8d7 0x1 + .text.scan_validate_owe_scenarios + 0x4206e8d8 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x94 (size before relaxing) + 0x4206e8e4 scan_validate_owe_scenarios + .text.scan_parse_beacon + 0x4206e95c 0xb94 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0xd0c (size before relaxing) + 0x4206e9b4 scan_parse_beacon + .text.wep_encap + 0x4206f4f0 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + 0x5a (size before relaxing) + 0x4206f4f0 wep_encap + *fill* 0x4206f546 0x2 + .text.hal_pm_unblock_txq + 0x4206f548 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x20 (size before relaxing) + .text.hal_clear_sta_tsf_active_state + 0x4206f564 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + *fill* 0x4206f57f 0x1 + .text.pm_disable_max_idle_timer + 0x4206f580 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x1b (size before relaxing) + *fill* 0x4206f597 0x1 + .text.pm_incr_coex_active_cnt + 0x4206f598 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + *fill* 0x4206f5b1 0x3 + .text.pm_disable_active_timer + 0x4206f5b4 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x1b (size before relaxing) + *fill* 0x4206f5cb 0x1 + .text.pm_set_state + 0x4206f5cc 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x35 (size before relaxing) + *fill* 0x4206f5f5 0x3 + .text.pm_coex_restart_timeout + 0x4206f5f8 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x4206f607 0x1 + .text.pm_max_idle_timeout + 0x4206f608 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x4206f617 0x1 + .text.pm_beacon_monitor_timeout + 0x4206f618 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x4206f627 0x1 + .text.pm_connectionless_wake_window_timeout + 0x4206f628 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x4206f637 0x1 + .text.pm_connectionless_wake_interval_timeout + 0x4206f638 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x4206f647 0x1 + .text.pm_disconnected_sleep_delay_timeout + 0x4206f648 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x4206f657 0x1 + .text.pm_coex_slice_wifi_timeout + 0x4206f658 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x4206f667 0x1 + .text.pm_sleep_delay_timeout + 0x4206f668 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x4206f677 0x1 + .text.pm_active_timeout + 0x4206f678 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x4206f687 0x1 + .text.pm_dream_timeout + 0x4206f688 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x4206f697 0x1 + .text.pm_is_sleeping + 0x4206f698 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x22 (size before relaxing) + 0x4206f698 pm_is_sleeping + *fill* 0x4206f6b6 0x2 + .text.pm_is_open + 0x4206f6b8 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xf (size before relaxing) + 0x4206f6b8 pm_is_open + *fill* 0x4206f6c3 0x1 + .text.pm_enable_max_idle_timer + 0x4206f6c4 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x46 (size before relaxing) + 0x4206f6c8 pm_enable_max_idle_timer + *fill* 0x4206f6fe 0x2 + .text.pm_is_sending_keep_alive + 0x4206f700 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x12 (size before relaxing) + 0x4206f700 pm_is_sending_keep_alive + *fill* 0x4206f70e 0x2 + .text.pm_set_bss_max_idle + 0x4206f710 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x43 (size before relaxing) + 0x4206f710 pm_set_bss_max_idle + *fill* 0x4206f747 0x1 + .text.pm_noise_check_disable + 0x4206f748 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x11 (size before relaxing) + 0x4206f748 pm_noise_check_disable + *fill* 0x4206f755 0x3 + .text.pm_noise_check_enable + 0x4206f758 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x11 (size before relaxing) + 0x4206f758 pm_noise_check_enable + *fill* 0x4206f765 0x3 + .text.pm_reset_keep_alive + 0x4206f768 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x3e (size before relaxing) + *fill* 0x4206f79e 0x2 + .text.pm_disable_disconnected_sleep_delay_timer + 0x4206f7a0 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x4206f7a4 pm_disable_disconnected_sleep_delay_timer + *fill* 0x4206f7c2 0x2 + .text.pm_enable_disconnected_sleep_delay_timer + 0x4206f7c4 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x52 (size before relaxing) + 0x4206f7c4 pm_enable_disconnected_sleep_delay_timer + *fill* 0x4206f806 0x2 + .text.pm_noise_check + 0x4206f808 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x6c (size before relaxing) + 0x4206f810 pm_noise_check + .text.pm_register_pm_tx_null_cb + 0x4206f86c 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x4206f870 pm_register_pm_tx_null_cb + .text.pm_send_nullfunc + 0x4206f87c 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x54 (size before relaxing) + 0x4206f87c pm_send_nullfunc + .text.pm_beacon_monitor_init + 0x4206f8c4 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x3b (size before relaxing) + 0x4206f8c4 pm_beacon_monitor_init + *fill* 0x4206f8f7 0x1 + .text.pm_disconnected_wake + 0x4206f8f8 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x6a (size before relaxing) + 0x4206f8f8 pm_disconnected_wake + *fill* 0x4206f946 0x2 + .text.pm_disconnected_sleep + 0x4206f948 0x86 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xa6 (size before relaxing) + 0x4206f948 pm_disconnected_sleep + *fill* 0x4206f9ce 0x2 + .text.pm_offchan_is_waiting + 0x4206f9d0 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x4206f9d4 pm_offchan_is_waiting + *fill* 0x4206f9e5 0x3 + .text.pm_offchan_execute_ready_cb + 0x4206f9e8 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x42 (size before relaxing) + 0x4206f9f0 pm_offchan_execute_ready_cb + *fill* 0x4206fa22 0x2 + .text.pm_wake_up + 0x4206fa24 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x4a (size before relaxing) + 0x4206fa2c pm_wake_up + *fill* 0x4206fa62 0x2 + .text.pm_send_probe_start + 0x4206fa64 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x4f (size before relaxing) + 0x4206fa64 pm_send_probe_start + *fill* 0x4206fa9f 0x1 + .text.pm_off_channel + 0x4206faa0 0xd7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x107 (size before relaxing) + 0x4206faa0 pm_off_channel + *fill* 0x4206fb77 0x1 + .text.pm_offchan_ready_or_defer + 0x4206fb78 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x64 (size before relaxing) + 0x4206fb7c pm_offchan_ready_or_defer + .text.pm_wake_done + 0x4206fbc8 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x56 (size before relaxing) + 0x4206fbcc pm_wake_done + *fill* 0x4206fc16 0x2 + .text.pm_coex_separate_connectionless_window + 0x4206fc18 0x29c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x2b4 (size before relaxing) + 0x4206fc24 pm_coex_separate_connectionless_window + .text.pm_go_to_sleep + 0x4206feb4 0x6b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x87 (size before relaxing) + 0x4206fec0 pm_go_to_sleep + *fill* 0x4206ff1f 0x1 + .text.pm_mesh_set_next_tbtt + 0x4206ff20 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x56 (size before relaxing) + 0x4206ff20 pm_mesh_set_next_tbtt + *fill* 0x4206ff62 0x2 + .text.pm_update_at_next_beacon + 0x4206ff64 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x27 (size before relaxing) + 0x4206ff64 pm_update_at_next_beacon + *fill* 0x4206ff7f 0x1 + .text.pm_set_next_tbtt + 0x4206ff80 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x58 (size before relaxing) + 0x4206ff80 pm_set_next_tbtt + .text.pm_set_beacon_filter + 0x4206ffc0 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x64 (size before relaxing) + 0x4206ffc0 pm_set_beacon_filter + .text.pm_beacon_timestamp_statistic + 0x4207000c 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x36 (size before relaxing) + 0x42070010 pm_beacon_timestamp_statistic + *fill* 0x4207003a 0x2 + .text.pm_beacon_misc_process + 0x4207003c 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x12 (size before relaxing) + 0x4207003c pm_beacon_misc_process + *fill* 0x4207004a 0x2 + .text.pm_is_in_wifi_slice_threshold + 0x4207004c 0x4d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x55 (size before relaxing) + 0x4207004c pm_is_in_wifi_slice_threshold + *fill* 0x42070099 0x3 + .text.pm_coex_schm_process + 0x4207009c 0x1bb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x1e7 (size before relaxing) + 0x420700a0 pm_coex_schm_process + *fill* 0x42070257 0x1 + .text.pm_coex_schm_process_restart + 0x42070258 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x14 (size before relaxing) + 0x42070258 pm_coex_schm_process_restart + .text.pm_coex_slice_timeout_process + 0x42070268 0xf7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x11b (size before relaxing) + 0x42070270 pm_coex_slice_timeout_process + *fill* 0x4207035f 0x1 + .text.pm_dream_timeout_process + 0x42070360 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x1b (size before relaxing) + 0x42070360 pm_dream_timeout_process + *fill* 0x42070373 0x1 + .text.pm_sleep_delay_timeout_process + 0x42070374 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x24 (size before relaxing) + 0x42070374 pm_sleep_delay_timeout_process + .text.pm_disconnected_sleep_delay_timeout_process + 0x42070390 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x24 (size before relaxing) + 0x42070390 pm_disconnected_sleep_delay_timeout_process + .text.pm_coex_restart_timeout_process + 0x420703ac 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x2c (size before relaxing) + 0x420703ac pm_coex_restart_timeout_process + .text.pm_tx_data_done_process + 0x420703cc 0xa2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xd6 (size before relaxing) + 0x420703cc pm_tx_data_done_process + *fill* 0x4207046e 0x2 + .text.pm_tx_null_data_done_quick_wake_process + 0x42070470 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x78 (size before relaxing) + 0x42070474 pm_tx_null_data_done_quick_wake_process + .text.pm_tx_null_data_done_process + 0x420704d4 0x1fa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x24e (size before relaxing) + 0x420704d8 pm_tx_null_data_done_process + *fill* 0x420706ce 0x2 + .text.pm_go_to_wake + 0x420706d0 0xde C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x116 (size before relaxing) + 0x420706d0 pm_go_to_wake + *fill* 0x420707ae 0x2 + .text.pm_send_probe_stop + 0x420707b0 0x51 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x65 (size before relaxing) + 0x420707b0 pm_send_probe_stop + *fill* 0x42070801 0x3 + .text.pm_on_channel + 0x42070804 0x9a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xbe (size before relaxing) + 0x42070804 pm_on_channel + *fill* 0x4207089e 0x2 + .text.pm_update_params + 0x420708a0 0x113 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13f (size before relaxing) + 0x420708a0 pm_update_params + *fill* 0x420709b3 0x1 + .text.pm_coex_tbtt_process + 0x420709b4 0x109 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x139 (size before relaxing) + 0x420709b4 pm_coex_tbtt_process + *fill* 0x42070abd 0x3 + .text.pm_active_timeout_process + 0x42070ac0 0x67 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x83 (size before relaxing) + 0x42070ac0 pm_active_timeout_process + *fill* 0x42070b27 0x1 + .text.pm_max_idle_timeout_process + 0x42070b28 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x60 (size before relaxing) + 0x42070b28 pm_max_idle_timeout_process + .text.pm_send_sleep_null_cb + 0x42070b74 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x42070b74 pm_send_sleep_null_cb + *fill* 0x42070b86 0x2 + .text.pm_send_wake_null_cb + 0x42070b88 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x42070b88 pm_send_wake_null_cb + *fill* 0x42070b9a 0x2 + .text.pm_on_coex_schm_process_restart + 0x42070b9c 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xf (size before relaxing) + 0x42070b9c pm_on_coex_schm_process_restart + *fill* 0x42070ba7 0x1 + .text.pm_on_coex_schm_status_config + 0x42070ba8 0x8c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xa0 (size before relaxing) + 0x42070ba8 pm_on_coex_schm_status_config + .text.pm_on_coex_start + 0x42070c34 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x56 (size before relaxing) + 0x42070c38 pm_on_coex_start + *fill* 0x42070c76 0x2 + .text.pm_on_data_tx_done + 0x42070c78 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x18 (size before relaxing) + 0x42070c78 pm_on_data_tx_done + .text.pm_on_sample_beacon + 0x42070c8c 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x43 (size before relaxing) + 0x42070c90 pm_on_sample_beacon + *fill* 0x42070cc7 0x1 + .text.pm_on_probe_resp_rx + 0x42070cc8 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x82 (size before relaxing) + 0x42070ccc pm_on_probe_resp_rx + *fill* 0x42070d3a 0x2 + .text.pm_disconnected_start + 0x42070d3c 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x98 (size before relaxing) + 0x42070d3c pm_disconnected_start + .text.pm_disconnected_stop + 0x42070db0 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x74 (size before relaxing) + 0x42070db0 pm_disconnected_stop + .text.pm_start + 0x42070e04 0x1f8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x254 (size before relaxing) + 0x42070e0c pm_start + .text.pm_stop 0x42070ffc 0x226 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x29a (size before relaxing) + 0x4207101c pm_stop + *fill* 0x42071222 0x2 + .text.pm_attach + 0x42071224 0x18a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x1d2 (size before relaxing) + 0x42071260 pm_attach + *fill* 0x420713ae 0x2 + .text.pm_deattach + 0x420713b0 0x99 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xcd (size before relaxing) + 0x420713b0 pm_deattach + *fill* 0x42071449 0x3 + .text.pm_set_sleep_min_active_time + 0x4207144c 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xe (size before relaxing) + 0x4207144c pm_set_sleep_min_active_time + *fill* 0x42071456 0x2 + .text.pm_set_keep_alive_time + 0x42071458 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xe (size before relaxing) + 0x42071458 pm_set_keep_alive_time + *fill* 0x42071462 0x2 + .text.pm_get_keep_alive_time + 0x42071464 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xe (size before relaxing) + 0x42071464 pm_get_keep_alive_time + *fill* 0x4207146e 0x2 + .text.pm_set_sleep_wait_broadcast_data_time + 0x42071470 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xf (size before relaxing) + 0x42071470 pm_set_sleep_wait_broadcast_data_time + *fill* 0x4207147b 0x1 + .text.pm_enable_sta_disconnected_power_management + 0x4207147c 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x31 (size before relaxing) + 0x4207147c pm_enable_sta_disconnected_power_management + *fill* 0x420714a9 0x3 + .text.pm_beacon_add_total_counter + 0x420714ac 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x24 (size before relaxing) + 0x420714ac pm_beacon_add_total_counter + .text.pm_beacon_add_loss_counter + 0x420714c8 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x24 (size before relaxing) + 0x420714c8 pm_beacon_add_loss_counter + .text.pm_get_tx_blocks_retention_mask + 0x420714e4 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x2c (size before relaxing) + 0x420714e4 pm_get_tx_blocks_retention_mask + .text.ic_get_addr + 0x42071508 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x4207150c ic_get_addr + *fill* 0x4207151d 0x3 + .text.ic_get_ptk_alg + 0x42071520 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x42071520 ic_get_ptk_alg + .text.ic_disable_crypto + 0x42071534 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x2a (size before relaxing) + 0x42071534 ic_disable_crypto + *fill* 0x42071556 0x2 + .text.ic_del_ptk_and_gtk_alg + 0x42071558 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x1d (size before relaxing) + 0x42071558 ic_del_ptk_and_gtk_alg + *fill* 0x42071571 0x3 + .text.ic_set_key + 0x42071574 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x4e (size before relaxing) + 0x42071574 ic_set_key + *fill* 0x420715ba 0x2 + .text.ic_get_key + 0x420715bc 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x54 (size before relaxing) + 0x420715bc ic_get_key + .text.ic_obtain_key + 0x42071604 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x74 (size before relaxing) + 0x42071604 ic_obtain_key + .text.ic_tx_pkt + 0x4207166c 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x15 (size before relaxing) + 0x4207166c ic_tx_pkt + *fill* 0x4207167d 0x3 + .text.esp_wifi_internal_free_rx_buffer + 0x42071680 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x42071684 esp_wifi_internal_free_rx_buffer + *fill* 0x42071692 0x2 + .text.ic_register_tx_cb + 0x42071694 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x19 (size before relaxing) + 0x42071694 ic_register_tx_cb + *fill* 0x420716a9 0x3 + .text.ic_register_rx_cb + 0x420716ac 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x16 (size before relaxing) + 0x420716ac ic_register_rx_cb + *fill* 0x420716be 0x2 + .text.ic_register_timer_post_cb + 0x420716c0 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x420716c0 ic_register_timer_post_cb + .text.ic_register_michael_mic_failure_cb + 0x420716d0 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x420716d0 ic_register_michael_mic_failure_cb + .text.ic_register_config_cb + 0x420716e0 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x420716e0 ic_register_config_cb + .text.ic_is_mgmt_hwdecr_enabled + 0x420716f4 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x420716f4 ic_is_mgmt_hwdecr_enabled + .text.ic_register_pm_tx_null_cb + 0x42071704 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x42071704 ic_register_pm_tx_null_cb + .text.ic_register_net80211_tx_cb + 0x42071718 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x42071718 ic_register_net80211_tx_cb + .text.ic_register_timer_cb + 0x4207172c 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x4207172c ic_register_timer_cb + .text.ic_enable_sniffer + 0x42071740 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x42071740 ic_enable_sniffer + *fill* 0x4207174e 0x2 + .text.ic_disable_sniffer + 0x42071750 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x42071750 ic_disable_sniffer + *fill* 0x4207175e 0x2 + .text.ic_set_vif + 0x42071760 0x177 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x1bb (size before relaxing) + 0x42071774 ic_set_vif + *fill* 0x420718d7 0x1 + .text.ic_get_next_tbtt + 0x420718d8 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x420718d8 ic_get_next_tbtt + *fill* 0x420718e5 0x3 + .text.ic_del_rx_ba + 0x420718e8 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x420718e8 ic_del_rx_ba + *fill* 0x420718f6 0x2 + .text.ic_add_rx_ba + 0x420718f8 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x20 (size before relaxing) + 0x420718f8 ic_add_rx_ba + .text.ic_reset_tbtt + 0x42071914 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0xf (size before relaxing) + 0x42071914 ic_reset_tbtt + *fill* 0x4207191f 0x1 + .text.ic_del_key_all + 0x42071920 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x42071920 ic_del_key_all + .text.ic_del_key + 0x42071930 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x42071930 ic_del_key + *fill* 0x4207193e 0x2 + .text.ic_set_ac_param + 0x42071940 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x1e (size before relaxing) + 0x42071940 ic_set_ac_param + *fill* 0x4207195a 0x2 + .text.ic_ampdu_op + 0x4207195c 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x42071964 ic_ampdu_op + .text.ic_set_trc + 0x42071988 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0xc4 (size before relaxing) + 0x4207198c ic_set_trc + .text.ic_deinit + 0x42071a30 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x2f (size before relaxing) + 0x42071a30 ic_deinit + *fill* 0x42071a4f 0x1 + .text.ic_init 0x42071a50 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x98 (size before relaxing) + 0x42071a58 ic_init + .text.ic_set_interrupt_handler + 0x42071ac4 0x4b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x57 (size before relaxing) + 0x42071ac8 ic_set_interrupt_handler + *fill* 0x42071b0f 0x1 + .text.ic_clear_interrupt_handler + 0x42071b10 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x45 (size before relaxing) + 0x42071b10 ic_clear_interrupt_handler + *fill* 0x42071b4d 0x3 + .text.ic_enable_rx + 0x42071b50 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x1e (size before relaxing) + 0x42071b50 ic_enable_rx + *fill* 0x42071b6a 0x2 + .text.ic_disable_rx + 0x42071b6c 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x20 (size before relaxing) + 0x42071b6c ic_disable_rx + .text.ic_set_beacon_int + 0x42071b84 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x42071b84 ic_set_beacon_int + *fill* 0x42071b92 0x2 + .text.ic_set_mac + 0x42071b94 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x42071b94 ic_set_mac + .text.ic_set_bssid + 0x42071ba4 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x42071ba4 ic_set_bssid + .text.ic_set_current_channel + 0x42071bb4 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x42071bb4 ic_set_current_channel + *fill* 0x42071bc3 0x1 + .text.ic_get_pp_hdl + 0x42071bc4 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x42071bc4 ic_get_pp_hdl + *fill* 0x42071bd1 0x3 + .text.ic_set_rx_policy_ubssid_check + 0x42071bd4 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x1c (size before relaxing) + 0x42071bd4 ic_set_rx_policy_ubssid_check + .text.ic_set_rx_policy + 0x42071bec 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x1d (size before relaxing) + 0x42071bec ic_set_rx_policy + *fill* 0x42071c05 0x3 + .text.ic_set_sta_auth_flag + 0x42071c08 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x42071c08 ic_set_sta_auth_flag + *fill* 0x42071c16 0x2 + .text.ic_set_interface + 0x42071c18 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x42071c18 ic_set_interface + .text.ic_trc_set_per_pkt_rate + 0x42071c28 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x42071c28 ic_trc_set_per_pkt_rate + *fill* 0x42071c37 0x1 + .text.ic_trc_update_ifx_phy_mode + 0x42071c38 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x42071c38 ic_trc_update_ifx_phy_mode + *fill* 0x42071c47 0x1 + .text.ic_stop_hw_txq + 0x42071c48 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x42071c48 ic_stop_hw_txq + *fill* 0x42071c55 0x3 + .text.ic_stop_sw_txq + 0x42071c58 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x2a (size before relaxing) + 0x42071c5c ic_stop_sw_txq + *fill* 0x42071c7a 0x2 + .text.ic_txq_empty + 0x42071c7c 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x42071c7c ic_txq_empty + *fill* 0x42071c89 0x3 + .text.ic_create_wifi_task + 0x42071c8c 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x42071c8c ic_create_wifi_task + *fill* 0x42071c99 0x3 + .text.ic_delete_wifi_task + 0x42071c9c 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x42071c9c ic_delete_wifi_task + *fill* 0x42071ca9 0x3 + .text.ic_update_sta_tsf + 0x42071cac 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x2a (size before relaxing) + 0x42071cac ic_update_sta_tsf + *fill* 0x42071cce 0x2 + .text.ic_set_sleep_min_active_time + 0x42071cd0 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x42071cd0 ic_set_sleep_min_active_time + *fill* 0x42071cde 0x2 + .text.ic_set_keep_alive_time + 0x42071ce0 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x42071ce0 ic_set_keep_alive_time + *fill* 0x42071cee 0x2 + .text.ic_get_keep_alive_time + 0x42071cf0 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x42071cf0 ic_get_keep_alive_time + *fill* 0x42071cfd 0x3 + .text.ic_set_sleep_wait_broadcast_data_time + 0x42071d00 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x42071d00 ic_set_sleep_wait_broadcast_data_time + *fill* 0x42071d0e 0x2 + .text.pp_delete_task_manually + 0x42071d10 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x40 (size before relaxing) + .text.xswap 0x42071d4c 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x22 (size before relaxing) + 0x42071d4c xswap + *fill* 0x42071d66 0x2 + .text.pp_register_net80211_tx_cb + 0x42071d68 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x42071d6c pp_register_net80211_tx_cb + .text.pp_register_config_cb + 0x42071d78 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x42071d7c pp_register_config_cb + .text.pp_register_timer_cb + 0x42071d88 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x42071d8c pp_register_timer_cb + .text.pp_register_michael_mic_failure_cb + 0x42071d98 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x42071d9c pp_register_michael_mic_failure_cb + .text.pp_default_event_handler + 0x42071da8 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x28 (size before relaxing) + 0x42071db0 pp_default_event_handler + .text.ppRegisterRxCallback + 0x42071dcc 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x42071dd0 ppRegisterRxCallback + .text.ppRegisterTxCallback + 0x42071dec 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x4a (size before relaxing) + 0x42071dec ppRegisterTxCallback + *fill* 0x42071e32 0x2 + .text.ppUnregisterTxCallback + 0x42071e34 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x44 (size before relaxing) + 0x42071e34 ppUnregisterTxCallback + .text.pp_unregister_tx_cb + 0x42071e74 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x14 (size before relaxing) + 0x42071e74 pp_unregister_tx_cb + .text.ppCheckTxQIdle + 0x42071e84 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x42071e88 ppCheckTxQIdle + *fill* 0x42071ea3 0x1 + .text.ppCheckTxConnTrafficIdle + 0x42071ea4 0xd1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xf1 (size before relaxing) + 0x42071ea4 ppCheckTxConnTrafficIdle + *fill* 0x42071f75 0x3 + .text.ppAssembleMicHdr + 0x42071f78 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x8c (size before relaxing) + 0x42071f78 ppAssembleMicHdr + .text.ppCalTkipMic + 0x42071ff0 0xfc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x120 (size before relaxing) + 0x42071ff4 ppCalTkipMic + .text.ppTxFragmentProc + 0x420720ec 0x72e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x776 (size before relaxing) + 0x42072110 ppTxFragmentProc + *fill* 0x4207281a 0x2 + .text.ppClearRxFragment + 0x4207281c 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x37 (size before relaxing) + 0x42072820 ppClearRxFragment + *fill* 0x42072847 0x1 + .text.ppFillAMPDUBar + 0x42072848 0x100 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x114 (size before relaxing) + 0x4207284c ppFillAMPDUBar + .text.ppReSendBar + 0x42072948 0xd6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xf2 (size before relaxing) + 0x4207294c ppReSendBar + *fill* 0x42072a1e 0x2 + .text.pp_create_task + 0x42072a20 0x183 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x1af (size before relaxing) + 0x42072a4c pp_create_task + *fill* 0x42072ba3 0x1 + .text.pp_deattach + 0x42072ba4 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x42 (size before relaxing) + 0x42072ba4 pp_deattach + *fill* 0x42072bda 0x2 + .text.ppInitTxq + 0x42072bdc 0x4b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x4f (size before relaxing) + 0x42072be0 ppInitTxq + *fill* 0x42072c27 0x1 + .text.ppTxqEmpty + 0x42072c28 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x50 (size before relaxing) + 0x42072c2c ppTxqEmpty + .text.pp_delete_task + 0x42072c74 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x8e (size before relaxing) + 0x42072c78 pp_delete_task + *fill* 0x42072cea 0x2 + .text.ppCheckTxIdle + 0x42072cec 0xb1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xb9 (size before relaxing) + 0x42072cf0 ppCheckTxIdle + *fill* 0x42072d9d 0x3 + .text.ppCalTxopDur + 0x42072da0 0x11a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x126 (size before relaxing) + 0x42072da4 ppCalTxopDur + *fill* 0x42072eba 0x2 + .text.ppPrepareBarFrame + 0x42072ebc 0xba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xce (size before relaxing) + 0x42072ec8 ppPrepareBarFrame + *fill* 0x42072f76 0x2 + .text.pp_attach + 0x42072f78 0xc4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xec (size before relaxing) + 0x42072f80 pp_attach + .text.ppClearTxq + 0x4207303c 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x53 (size before relaxing) + 0x42073040 ppClearTxq + *fill* 0x42073083 0x1 + .text.pp_stop_sw_txq + 0x42073084 0x7f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x97 (size before relaxing) + 0x42073088 pp_stop_sw_txq + *fill* 0x42073103 0x1 + .text.ppGetTaskHdl + 0x42073104 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xe (size before relaxing) + 0x42073104 ppGetTaskHdl + *fill* 0x4207310e 0x2 + .text.esf_buf_alloc_dynamic_default_handler + 0x42073110 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x21 (size before relaxing) + 0x42073114 esf_buf_alloc_dynamic_default_handler + *fill* 0x4207312d 0x3 + .text.esf_buf_alloc_default_handler + 0x42073130 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x21 (size before relaxing) + 0x42073134 esf_buf_alloc_default_handler + *fill* 0x4207314d 0x3 + .text.esf_buf_recycle_default_handler + 0x42073150 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x22 (size before relaxing) + 0x42073154 esf_buf_recycle_default_handler + *fill* 0x4207316e 0x2 + .text.esf_buf_setup_static + 0x42073170 0x55 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x61 (size before relaxing) + 0x42073178 esf_buf_setup_static + *fill* 0x420731c5 0x3 + .text.esf_buf_free_static + 0x420731c8 0x82 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x96 (size before relaxing) + 0x420731c8 esf_buf_free_static + *fill* 0x4207324a 0x2 + .text.esf_buf_setdown + 0x4207324c 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x1b (size before relaxing) + 0x4207324c esf_buf_setdown + *fill* 0x42073263 0x1 + .text.esf_buf_setup + 0x42073264 0x19f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x1df (size before relaxing) + 0x42073290 esf_buf_setup + *fill* 0x42073403 0x1 + .text.offchan_in_progress + 0x42073404 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + *fill* 0x42073413 0x1 + .text.lmacGetTxFrame + 0x42073414 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x42073418 lmacGetTxFrame + *fill* 0x42073436 0x2 + .text.lmacSetAcParam + 0x42073438 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x45 (size before relaxing) + 0x42073438 lmacSetAcParam + *fill* 0x42073479 0x3 + .text.lmacInitAc + 0x4207347c 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x45 (size before relaxing) + 0x4207347c lmacInitAc + *fill* 0x420734bd 0x3 + .text.lmacInit + 0x420734c0 0x9d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xbd (size before relaxing) + 0x420734c8 lmacInit + *fill* 0x4207355d 0x3 + .text.lmacEndRetryAMPDUFail + 0x42073560 0x75 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x81 (size before relaxing) + 0x42073568 lmacEndRetryAMPDUFail + *fill* 0x420735d5 0x3 + .text.lmacDebugTxDrop + 0x420735d8 0x73 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x77 (size before relaxing) + 0x420735e0 dbg_cnt_lmac_drop + *fill* 0x4207364b 0x1 + .text.lmac_record_txtime + 0x4207364c 0x122 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x126 (size before relaxing) + 0x42073658 lmac_record_txtime + *fill* 0x4207376e 0x2 + .text.lmacDiscardMSDU + 0x42073770 0x90 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x9c (size before relaxing) + 0x42073774 lmacDiscardMSDU + .text.lmacRetryTxFrame + 0x42073800 0xa4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xb4 (size before relaxing) + 0x4207380c lmacRetryTxFrame + .text.lmacProcessTxopQComplete + 0x420738a4 0x13a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x152 (size before relaxing) + 0x420738c0 lmacProcessTxopQComplete + *fill* 0x420739de 0x2 + .text.lmacProcessShortRetryFail + 0x420739e0 0x1f3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x21b (size before relaxing) + 0x42073a04 lmacProcessShortRetryFail + *fill* 0x42073bd3 0x1 + .text.lmacProcessCtsTimeout + 0x42073bd4 0x66 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x7a (size before relaxing) + 0x42073bdc lmacProcessCtsTimeout + *fill* 0x42073c3a 0x2 + .text.lmacProcessLongRetryFail + 0x42073c3c 0x162 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x18a (size before relaxing) + 0x42073c4c lmacProcessLongRetryFail + *fill* 0x42073d9e 0x2 + .text.lmacProcessCollision + 0x42073da0 0xc6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xe6 (size before relaxing) + 0x42073db0 lmacProcessCollision + *fill* 0x42073e66 0x2 + .text.lmacProcessCollisions_task + 0x42073e68 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x62 (size before relaxing) + 0x42073e68 lmacProcessCollisions_task + *fill* 0x42073eba 0x2 + .text.lmacProcessAckTimeout + 0x42073ebc 0x100 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x124 (size before relaxing) + 0x42073ecc lmacProcessAckTimeout + .text.lmacProcessTxRtsError + 0x42073fbc 0xc2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xe2 (size before relaxing) + 0x42073fcc lmacProcessTxRtsError + *fill* 0x4207407e 0x2 + .text.lmacProcessTxseckiderr + 0x42074080 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x2a (size before relaxing) + 0x42074080 lmacProcessTxseckiderr + *fill* 0x420740a2 0x2 + .text.lmacProcessTxError + 0x420740a4 0xa6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xca (size before relaxing) + 0x420740ac lmacProcessTxError + *fill* 0x4207414a 0x2 + .text.lmacDisableTransmit + 0x4207414c 0x82 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x9e (size before relaxing) + 0x42074150 lmacDisableTransmit + *fill* 0x420741ce 0x2 + .text.lmacProcessTxTimeout + 0x420741d0 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x56 (size before relaxing) + 0x420741d0 lmacProcessTxTimeout + *fill* 0x4207421a 0x2 + .text.lmacStopTransmit + 0x4207421c 0xce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xfa (size before relaxing) + 0x4207421c lmacStopTransmit + *fill* 0x420742ea 0x2 + .text.lmac_stop_hw_txq + 0x420742ec 0x51 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x61 (size before relaxing) + 0x420742f4 lmac_stop_hw_txq + *fill* 0x4207433d 0x3 + .text.pm_coex_reconnect_policy + 0x42074340 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + 0x1a (size before relaxing) + 0x42074340 pm_coex_reconnect_policy + *fill* 0x42074356 0x2 + .text.pm_coex_set_reconnect_policy + 0x42074358 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + 0x3f (size before relaxing) + 0x4207435c pm_coex_set_reconnect_policy + *fill* 0x4207438b 0x1 + .text.pm_coex_recalculate_wifi_time_slice + 0x4207438c 0x18b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + 0x1ab (size before relaxing) + 0x42074394 pm_coex_recalculate_wifi_time_slice + *fill* 0x42074517 0x1 + .text.pm_coex_update_wifi_time_slice_state + 0x42074518 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + 0x78 (size before relaxing) + 0x4207451c pm_coex_update_wifi_time_slice_state + .text.rc11NRate2SchedIdx + 0x42074584 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + *fill* 0x420745ce 0x2 + .text.rc11GRate2SchedIdx + 0x420745d0 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc11BRate2SchedIdx + 0x420745ec 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcUpdateAMPDUParam + 0x42074608 0x94 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x98 (size before relaxing) + 0x42074614 rcUpdateAMPDUParam + .text.rcGet11NHighestRateIdx + 0x4207469c 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x70 (size before relaxing) + 0x420746a0 rcGet11NHighestRateIdx + .text.rcGet11GHighestRateIdx + 0x42074708 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x60 (size before relaxing) + 0x4207470c rcGet11GHighestRateIdx + .text.rcGet11BHighestRateIdx + 0x42074764 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x40 (size before relaxing) + 0x42074768 rcGet11BHighestRateIdx + .text.rcGetHighestRateIdx + 0x420747a0 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x59 (size before relaxing) + 0x420747a0 rcGetHighestRateIdx + *fill* 0x420747e9 0x3 + .text.rcUpdatePhyMode + 0x420747ec 0x2ad C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x2bd (size before relaxing) + 0x42074848 rcUpdatePhyMode + *fill* 0x42074a99 0x3 + .text.rcTxUpdatePer + 0x42074a9c 0x7b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x42074aa4 rcTxUpdatePer + *fill* 0x42074b17 0x1 + .text.trc_set_per_pkt_rate + 0x42074b18 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x1c (size before relaxing) + 0x42074b18 trc_set_per_pkt_rate + .text.rcUpdateRate + 0x42074b30 0x202 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x21e (size before relaxing) + 0x42074b50 rcUpdateRate + *fill* 0x42074d32 0x2 + .text.rcReachRetryLimit + 0x42074d34 0xd0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0xe4 (size before relaxing) + 0x42074d54 rcReachRetryLimit + .text.rcAttach + 0x42074e04 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x8a (size before relaxing) + 0x42074e04 rcAttach + *fill* 0x42074e5a 0x2 + .text.rc_disable_trc + 0x42074e5c 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x6a (size before relaxing) + 0x42074e64 rc_disable_trc + *fill* 0x42074eba 0x2 + .text.rc_disable_trc_by_interface + 0x42074ebc 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x1f (size before relaxing) + 0x42074ebc rc_disable_trc_by_interface + *fill* 0x42074ed7 0x1 + .text.trc_init + 0x42074ed8 0x98 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0xb0 (size before relaxing) + 0x42074edc trc_init + .text.trc_update_ifx_phy_mode + 0x42074f70 0x80 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x9c (size before relaxing) + 0x42074f74 trc_update_ifx_phy_mode + .text.trc_deinit + 0x42074ff0 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x31 (size before relaxing) + 0x42074ff0 trc_deinit + *fill* 0x42075019 0x3 + .text.rc_set_per_conn_fix_rate + 0x4207501c 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x76 (size before relaxing) + 0x42075024 rc_set_per_conn_fix_rate + *fill* 0x4207508e 0x2 + .text.rc_enable_trc + 0x42075090 0xce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0xf2 (size before relaxing) + 0x42075098 rc_enable_trc + *fill* 0x4207515e 0x2 + .text.dbg_lmac_ps_statis_reset + 0x42075160 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x1a (size before relaxing) + 0x42075160 dbg_lmac_ps_statis_reset + *fill* 0x42075172 0x2 + .text.wDev_ftm_set_t1t4 + 0x42075174 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x42075178 wDev_ftm_set_t1t4 + *fill* 0x4207518a 0x2 + .text.wdev_csi_rx_process + 0x4207518c 0xd3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xeb (size before relaxing) + 0x42075194 wdev_csi_rx_process + *fill* 0x4207525f 0x1 + .text.wDev_SnifferRxData + 0x42075260 0x1f0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x21c (size before relaxing) + 0x42075264 wDev_SnifferRxData + .text.wDev_IndicateCtrlFrame + 0x42075450 0xb0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xcc (size before relaxing) + 0x42075454 wDev_IndicateCtrlFrame + .text.wDev_SnifferRxAmpdu + 0x42075500 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x86 (size before relaxing) + 0x42075500 wDev_SnifferRxAmpdu + *fill* 0x42075576 0x2 + .text.wDev_SetCurChannel + 0x42075578 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x18 (size before relaxing) + 0x42075578 wDev_SetCurChannel + .text.wDev_Set_Beacon_Int + 0x4207558c 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x42075590 wDev_Set_Beacon_Int + *fill* 0x4207559a 0x2 + .text.wDev_Reset_TBTT + 0x4207559c 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x4207559c wDev_Reset_TBTT + *fill* 0x420755aa 0x2 + .text.wDev_reset_bcnSendTick + 0x420755ac 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x420755b0 wDev_reset_bcnSendTick + .text.wDev_Get_Next_TBTT + 0x420755bc 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3e (size before relaxing) + 0x420755bc wDev_Get_Next_TBTT + *fill* 0x420755ea 0x2 + .text.wdev_set_promis_misc_pkt + 0x420755ec 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x2e (size before relaxing) + 0x420755ec wdev_set_promis_misc_pkt + *fill* 0x42075612 0x2 + .text.wdev_set_promis_ctrl_pkt + 0x42075614 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3d (size before relaxing) + 0x42075618 wdev_set_promis_ctrl_pkt + *fill* 0x42075649 0x3 + .text.wdev_set_promis + 0x4207564c 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x8a (size before relaxing) + 0x42075654 wdev_set_promis + *fill* 0x420756b6 0x2 + .text.wDev_ftm_record_t1t4 + 0x420756b8 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x420756bc wDev_ftm_record_t1t4 + .text.wDev_ftm_record_t2t3 + 0x420756e0 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x420756e4 wDev_ftm_record_t2t3 + .text.wDev_record_ftm_data_local + 0x42075708 0x8c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x98 (size before relaxing) + 0x42075708 wDev_record_ftm_data_local + .text.wDev_Rxbuf_Deinit + 0x42075794 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x6a (size before relaxing) + 0x42075798 wDev_Rxbuf_Deinit + *fill* 0x420757f2 0x2 + .text.wDev_Rxbuf_Init + 0x420757f4 0x1f8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x234 (size before relaxing) + 0x42075814 wDev_Rxbuf_Init + .text.wDev_disable_low_rate + 0x420759ec 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x420759ec wDev_disable_low_rate + *fill* 0x420759f7 0x1 + .text.wDev_enable_low_rate + 0x420759f8 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x420759f8 wDev_enable_low_rate + *fill* 0x42075a03 0x1 + .text.wDev_Insert_KeyEntry + 0x42075a04 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x7a (size before relaxing) + 0x42075a04 wDev_Insert_KeyEntry + *fill* 0x42075a6e 0x2 + .text.wDev_remove_KeyEntry + 0x42075a70 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x36 (size before relaxing) + 0x42075a70 wDev_remove_KeyEntry + *fill* 0x42075a9e 0x2 + .text.wDev_remove_KeyEntry_all_cnx + 0x42075aa0 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x35 (size before relaxing) + 0x42075aa0 wDev_remove_KeyEntry_all_cnx + *fill* 0x42075acd 0x3 + .text.wDev_Crypto_Disable + 0x42075ad0 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x27 (size before relaxing) + 0x42075ad0 wDev_Crypto_Disable + *fill* 0x42075aef 0x1 + .text.wdev_is_mgmt_hwdecr_enabled + 0x42075af0 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x14 (size before relaxing) + 0x42075af0 wdev_is_mgmt_hwdecr_enabled + .text.wdev_data_init + 0x42075b00 0xfb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x147 (size before relaxing) + 0x42075b54 wdev_data_init + *fill* 0x42075bfb 0x1 + .text.wdev_funcs_init + 0x42075bfc 0x721 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x809 (size before relaxing) + 0x42075e3c wdev_funcs_init + *fill* 0x4207631d 0x3 + .text.wdev_funcs_deinit + 0x42076320 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x25 (size before relaxing) + 0x42076320 wdev_funcs_deinit + *fill* 0x4207633d 0x3 + .text.empty_func_p_void_r_float + 0x42076340 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x42076344 empty_func_p_void_r_float + .text.pm_beacon_offset_funcs_empty_init + 0x4207634c 0x73 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x77 (size before relaxing) + 0x42076374 pm_beacon_offset_funcs_empty_init + *fill* 0x420763bf 0x1 + .text.pm_funcs_init + 0x420763c0 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x52 (size before relaxing) + 0x420763c4 pm_funcs_init + *fill* 0x42076402 0x2 + .text.pm_funcs_deinit + 0x42076404 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x25 (size before relaxing) + 0x42076404 pm_funcs_deinit + *fill* 0x42076421 0x3 + .text.hal_agreement_add_rx_ba + 0x42076424 0x121 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + 0x129 (size before relaxing) + 0x42076444 hal_agreement_add_rx_ba + *fill* 0x42076545 0x3 + .text.hal_agreement_del_rx_ba + 0x42076548 0x77 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + 0x8b (size before relaxing) + 0x4207654c hal_agreement_del_rx_ba + *fill* 0x420765bf 0x1 + .text.hal_ba_session_restore_by_hw_index + 0x420765c0 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + 0x98 (size before relaxing) + 0x420765c0 hal_ba_session_restore_by_hw_index + .text.hal_coex_pti_init + 0x42076644 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x42076648 hal_coex_pti_init + *fill* 0x4207665f 0x1 + .text.hal_set_rx_beacon_pti + 0x42076660 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x48 (size before relaxing) + 0x42076668 hal_set_rx_beacon_pti + .text.hal_set_rx_beacon_time + 0x420766a4 0x41 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x420766ac hal_set_rx_beacon_time + *fill* 0x420766e5 0x3 + .text.hal_set_rx_active_pti + 0x420766e8 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x420766ec hal_set_rx_active_pti + *fill* 0x42076709 0x3 + .text.hal_set_rx_ack_pti + 0x4207670c 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x28 (size before relaxing) + 0x4207670c hal_set_rx_ack_pti + .text.hal_set_wifi_default_pti + 0x42076730 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x2e (size before relaxing) + 0x42076730 hal_set_wifi_default_pti + *fill* 0x42076756 0x2 + .text.hal_crypto_clr_key_entry + 0x42076758 0xbc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x42076784 hal_crypto_clr_key_entry + .text.hal_crypto_set_key_entry + 0x42076814 0x16a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x192 (size before relaxing) + 0x42076820 hal_crypto_set_key_entry + *fill* 0x4207697e 0x2 + .text.hal_crypto_is_key_valid + 0x42076980 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x1b (size before relaxing) + 0x42076980 hal_crypto_is_key_valid + *fill* 0x42076997 0x1 + .text.hal_crypto_get_key_entry + 0x42076998 0x92 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0xa6 (size before relaxing) + 0x4207699c hal_crypto_get_key_entry + *fill* 0x42076a2a 0x2 + .text.hal_crypto_init + 0x42076a2c 0x5c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x60 (size before relaxing) + 0x42076a44 hal_crypto_init + .text.hal_crypto_mgmt_rx_enabled + 0x42076a88 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x21 (size before relaxing) + 0x42076a88 hal_crypto_mgmt_rx_enabled + *fill* 0x42076aa1 0x3 + .text.hal_crypto_enable + 0x42076aa4 0x8a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x9a (size before relaxing) + 0x42076ab4 hal_crypto_enable + *fill* 0x42076b2e 0x2 + .text.hal_crypto_disable + 0x42076b30 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x47 (size before relaxing) + 0x42076b30 hal_crypto_disable + *fill* 0x42076b67 0x1 + .text.hal_mac_tx_set_ppdu + 0x42076b68 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x5e (size before relaxing) + 0x42076b74 hal_mac_tx_set_ppdu + *fill* 0x42076bb6 0x2 + .text.hal_mac_set_txq_invalid + 0x42076bb8 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x29 (size before relaxing) + 0x42076bbc hal_mac_set_txq_invalid + *fill* 0x42076bdd 0x3 + .text.hal_mac_is_txq_valid + 0x42076be0 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x1d (size before relaxing) + 0x42076be0 hal_mac_is_txq_valid + *fill* 0x42076bf9 0x3 + .text.hal_mac_tx_set_cca + 0x42076bfc 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x28 (size before relaxing) + 0x42076c00 hal_mac_tx_set_cca + .text.hal_mac_disable_low_rate + 0x42076c20 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x4d (size before relaxing) + 0x42076c38 hal_mac_disable_low_rate + *fill* 0x42076c69 0x3 + .text.hal_mac_enable_low_rate + 0x42076c6c 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x46 (size before relaxing) + 0x42076c70 hal_mac_enable_low_rate + *fill* 0x42076c9e 0x2 + .text.mac_rxbuf_init + 0x42076ca0 0x8e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x92 (size before relaxing) + 0x42076cb8 mac_rxbuf_init + *fill* 0x42076d2e 0x2 + .text.mac_txrx_init + 0x42076d30 0x266 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x26e (size before relaxing) + 0x42076d84 mac_txrx_init + *fill* 0x42076f96 0x2 + .text.hal_mac_set_rxq_policy + 0x42076f98 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x42076f9c hal_mac_set_rxq_policy + .text.mac_last_rxbuf_init + 0x42076fc8 0x157 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x15f (size before relaxing) + 0x42077030 mac_last_rxbuf_init + *fill* 0x4207711f 0x1 + .text.hal_deinit + 0x42077120 0x7e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x8e (size before relaxing) + 0x42077130 hal_deinit + *fill* 0x4207719e 0x2 + .text.hal_mac_set_addr + 0x420771a0 0x69 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x6d (size before relaxing) + 0x420771a4 hal_mac_set_addr + *fill* 0x42077209 0x3 + .text.hal_mac_set_bssid + 0x4207720c 0xa5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0xad (size before relaxing) + 0x4207721c hal_mac_set_bssid + *fill* 0x420772b1 0x3 + .text.hal_mac_rx_set_policy + 0x420772b4 0xc2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0xd6 (size before relaxing) + 0x420772bc hal_mac_rx_set_policy + *fill* 0x42077376 0x2 + .text.hal_init + 0x42077378 0x159 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x1a9 (size before relaxing) + 0x42077384 hal_init + *fill* 0x420774d1 0x3 + .text.hal_mac_tsf_reset + 0x420774d4 0xf5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0xfd (size before relaxing) + 0x420774ec hal_mac_tsf_reset + *fill* 0x420775c9 0x3 + .text.hal_enable_sta_beacon_filter + 0x420775cc 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x48 (size before relaxing) + 0x420775d0 hal_enable_sta_beacon_filter + .text.hal_disable_sta_beacon_filter + 0x4207760c 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x36 (size before relaxing) + 0x4207760c hal_disable_sta_beacon_filter + *fill* 0x42077636 0x2 + .text.hal_set_sta_beacon_filter + 0x42077638 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x2f (size before relaxing) + 0x4207763c hal_set_sta_beacon_filter + *fill* 0x42077663 0x1 + .text.mac_tx_set_plcp1 + 0x42077664 0xdd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x42077674 mac_tx_set_plcp1 + *fill* 0x42077741 0x3 + .text.mac_tx_set_htsig + 0x42077744 0x1f1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x1fd (size before relaxing) + 0x42077754 mac_tx_set_htsig + *fill* 0x42077935 0x3 + .text.hal_mac_fill_hwtxop + 0x42077938 0x5b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x5f (size before relaxing) + 0x4207793c hal_mac_fill_hwtxop + *fill* 0x42077993 0x1 + .text.mac_tx_set_txop_q + 0x42077994 0xe5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0xf5 (size before relaxing) + 0x420779a0 mac_tx_set_txop_q + *fill* 0x42077a79 0x3 + .text.hal_mac_get_txq_state + 0x42077a7c 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x42077a84 hal_mac_get_txq_state + .text.hal_mac_clr_txq_state + 0x42077ac0 0x65 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x42077acc hal_mac_clr_txq_state + *fill* 0x42077b25 0x3 + .text.hal_mac_get_txq_pmd + 0x42077b28 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x42077b30 hal_mac_get_txq_pmd + *fill* 0x42077b6f 0x1 + .text.hal_attenna_init + 0x42077b70 0x80 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x84 (size before relaxing) + 0x42077b74 hal_attenna_init + .text.hal_mac_rate_autoack_init + 0x42077bf0 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x42077bfc hal_mac_rate_autoack_init + *fill* 0x42077c16 0x2 + .text.hal_sniffer_enable + 0x42077c18 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + 0x42077c1c hal_sniffer_enable + .text.hal_sniffer_disable + 0x42077ca0 0x84 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + 0x8c (size before relaxing) + 0x42077ca0 hal_sniffer_disable + .text.hal_sniffer_rx_set_promis + 0x42077d24 0xaf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + 0xbf (size before relaxing) + 0x42077d24 hal_sniffer_rx_set_promis + *fill* 0x42077dd3 0x1 + .text.hal_sniffer_set_promis_misc_pkt + 0x42077dd4 0xb4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + 0xb8 (size before relaxing) + 0x42077ddc hal_sniffer_set_promis_misc_pkt + .text.hal_enable_sta_tsf + 0x42077e88 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x1e (size before relaxing) + 0x42077e88 hal_enable_sta_tsf + *fill* 0x42077ea2 0x2 + .text.hal_disable_sta_tsf + 0x42077ea4 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x20 (size before relaxing) + 0x42077ea8 hal_disable_sta_tsf + .text.hal_disable_softap_tsf + 0x42077ec0 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x20 (size before relaxing) + 0x42077ec0 hal_disable_softap_tsf + .text.hal_timer_update_by_rtc + 0x42077ed8 0x59 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x5d (size before relaxing) + 0x42077ee4 hal_timer_update_by_rtc + *fill* 0x42077f31 0x3 + .text.hal_set_sta_tsf + 0x42077f34 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x33 (size before relaxing) + 0x42077f34 hal_set_sta_tsf + *fill* 0x42077f5b 0x1 + .text.hal_enable_sta_tbtt + 0x42077f5c 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x48 (size before relaxing) + 0x42077f64 hal_enable_sta_tbtt + .text.hal_disable_sta_tbtt + 0x42077fa0 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x36 (size before relaxing) + 0x42077fa4 hal_disable_sta_tbtt + *fill* 0x42077fce 0x2 + .text.hal_set_sta_tbtt + 0x42077fd0 0x91 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x99 (size before relaxing) + 0x42077fe0 hal_set_sta_tbtt + *fill* 0x42078061 0x3 + .text.hal_set_sta_tbtt_interval + 0x42078064 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x24 (size before relaxing) + 0x42078064 hal_set_sta_tbtt_interval + .text.hal_set_sta_tbtt_ahead_time + 0x42078084 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x1f (size before relaxing) + 0x42078084 hal_set_sta_tbtt_ahead_time + *fill* 0x4207809f 0x1 + .text.hal_set_sta_tsf_wakeup + 0x420780a0 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x31 (size before relaxing) + 0x420780a0 hal_set_sta_tsf_wakeup + *fill* 0x420780c9 0x3 + .text.hal_tsf_get_tbttstart + 0x420780cc 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x10 (size before relaxing) + 0x420780cc hal_tsf_get_tbttstart + .text.RC_GetDuration + 0x420780d8 0x69 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + 0x71 (size before relaxing) + *fill* 0x42078141 0x3 + .text.RC_GetCtsTime + 0x42078144 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + 0x4d (size before relaxing) + 0x42078144 RC_GetCtsTime + *fill* 0x4207818d 0x3 + .text.pp_timer_resample + 0x42078190 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x19 (size before relaxing) + *fill* 0x420781a5 0x3 + .text.pp_timer_coex_restart + 0x420781a8 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x420781b7 0x1 + .text.pp_timer_max_idle + 0x420781b8 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x420781c7 0x1 + .text.pp_timer_beacon_monitor_tbtt + 0x420781c8 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + *fill* 0x420781db 0x1 + .text.pp_timer_beacon_monitor + 0x420781dc 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + *fill* 0x420781ef 0x1 + .text.pp_timer_connectionless_wake_window + 0x420781f0 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x420781ff 0x1 + .text.pp_timer_connectionless_wake_interval + 0x42078200 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4207820f 0x1 + .text.pp_timer_disconnected_sleep_delay + 0x42078210 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4207821f 0x1 + .text.pp_timer_sleep_delay + 0x42078220 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4207822f 0x1 + .text.pp_timer_coex_slice + 0x42078230 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4207823f 0x1 + .text.pp_timer_active + 0x42078240 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4207824f 0x1 + .text.pp_timer_dream + 0x42078250 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4207825f 0x1 + .text.pp_timer_noise_check + 0x42078260 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4207826f 0x1 + .text.pp_timer_register_post_cb + 0x42078270 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x42078274 pp_timer_register_post_cb + .text.pp_timer_process + 0x42078280 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x1e (size before relaxing) + 0x42078280 pp_timer_process + *fill* 0x4207829a 0x2 + .text.mpi_ll_write_to_mem_block + 0x4207829c 0x36 esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x420782d2 0x2 + .text.mpi_ll_read_from_mem_block + 0x420782d4 0x22 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x26 (size before relaxing) + *fill* 0x420782f6 0x2 + .text.mpi_hal_enable_hardware_hw_op + 0x420782f8 0x1a esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x420782f8 mpi_hal_enable_hardware_hw_op + *fill* 0x42078312 0x2 + .text.mpi_hal_interrupt_enable + 0x42078314 0x21 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x42078314 mpi_hal_interrupt_enable + *fill* 0x42078335 0x3 + .text.mpi_hal_clear_interrupt + 0x42078338 0xf esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x42078338 mpi_hal_clear_interrupt + *fill* 0x42078347 0x1 + .text.mpi_hal_set_mode + 0x42078348 0xd esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x42078348 mpi_hal_set_mode + *fill* 0x42078355 0x3 + .text.mpi_hal_write_to_mem_block + 0x42078358 0x12 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x16 (size before relaxing) + 0x42078358 mpi_hal_write_to_mem_block + *fill* 0x4207836a 0x2 + .text.mpi_hal_write_at_offset + 0x4207836c 0x14 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4207836c mpi_hal_write_at_offset + .text.mpi_hal_write_m_prime + 0x42078380 0xd esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x42078380 mpi_hal_write_m_prime + *fill* 0x4207838d 0x3 + .text.mpi_hal_write_rinv + 0x42078390 0xf esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x42078390 mpi_hal_write_rinv + *fill* 0x4207839f 0x1 + .text.mpi_hal_enable_constant_time + 0x420783a0 0x21 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x420783a0 mpi_hal_enable_constant_time + *fill* 0x420783c1 0x3 + .text.mpi_hal_enable_search + 0x420783c4 0x21 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x420783c4 mpi_hal_enable_search + *fill* 0x420783e5 0x3 + .text.mpi_hal_set_search_position + 0x420783e8 0xd esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x420783e8 mpi_hal_set_search_position + *fill* 0x420783f5 0x3 + .text.mpi_hal_start_op + 0x420783f8 0x1a esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x420783f8 mpi_hal_start_op + *fill* 0x42078412 0x2 + .text.mpi_hal_wait_op_complete + 0x42078414 0x13 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x16 (size before relaxing) + 0x42078414 mpi_hal_wait_op_complete + *fill* 0x42078427 0x1 + .text.mpi_hal_read_result_hw_op + 0x42078428 0x13 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x17 (size before relaxing) + 0x42078428 mpi_hal_read_result_hw_op + *fill* 0x4207843b 0x1 + .text.sha_hal_set_mode + 0x4207843c 0xd esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x4207843c sha_hal_set_mode + *fill* 0x42078449 0x3 + .text.sha_hal_hash_block + 0x4207844c 0x3c esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x4207844c sha_hal_hash_block + .text.sha_hal_hash_dma + 0x42078488 0x29 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x42078488 sha_hal_hash_dma + *fill* 0x420784b1 0x3 + .text.sha_hal_wait_idle + 0x420784b4 0x10 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x420784b4 sha_hal_wait_idle + .text.sha_hal_read_digest + 0x420784c4 0x34 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x3c (size before relaxing) + 0x420784c4 sha_hal_read_digest + .text.sha_hal_write_digest + 0x420784f8 0x24 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x28 (size before relaxing) + 0x420784f8 sha_hal_write_digest + .text.sha_hal_sha512_init_hash + 0x4207851c 0x28 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x4207851c sha_hal_sha512_init_hash + .text.aes_ll_write_key + 0x42078544 0x50 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_ll_set_iv + 0x42078594 0x2b esp-idf/hal/libhal.a(aes_hal.c.obj) + *fill* 0x420785bf 0x1 + .text.aes_ll_read_iv + 0x420785c0 0x2b esp-idf/hal/libhal.a(aes_hal.c.obj) + *fill* 0x420785eb 0x1 + .text.aes_hal_setkey + 0x420785ec 0x2c esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x30 (size before relaxing) + 0x420785ec aes_hal_setkey + .text.aes_hal_transform_dma_start + 0x42078618 0x1f esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x42078618 aes_hal_transform_dma_start + *fill* 0x42078637 0x1 + .text.aes_hal_transform_dma_finish + 0x42078638 0x17 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x42078638 aes_hal_transform_dma_finish + *fill* 0x4207864f 0x1 + .text.aes_hal_mode_init + 0x42078650 0x1a esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x42078650 aes_hal_mode_init + *fill* 0x4207866a 0x2 + .text.aes_hal_set_iv + 0x4207866c 0xa esp-idf/hal/libhal.a(aes_hal.c.obj) + 0xe (size before relaxing) + 0x4207866c aes_hal_set_iv + *fill* 0x42078676 0x2 + .text.aes_hal_read_iv + 0x42078678 0xa esp-idf/hal/libhal.a(aes_hal.c.obj) + 0xe (size before relaxing) + 0x42078678 aes_hal_read_iv + *fill* 0x42078682 0x2 + .text.aes_hal_wait_done + 0x42078684 0x10 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x42078684 aes_hal_wait_done + .text.hmac_ll_config_output + 0x42078694 0x4d esp-idf/hal/libhal.a(hmac_hal.c.obj) + *fill* 0x420786e1 0x3 + .text.hmac_hal_start + 0x420786e4 0x1a esp-idf/hal/libhal.a(hmac_hal.c.obj) + 0x420786e4 hmac_hal_start + *fill* 0x420786fe 0x2 + .text.hmac_hal_configure + 0x42078700 0x5e esp-idf/hal/libhal.a(hmac_hal.c.obj) + 0x62 (size before relaxing) + 0x42078700 hmac_hal_configure + *fill* 0x4207875e 0x2 + .text.hmac_hal_clean + 0x42078760 0x22 esp-idf/hal/libhal.a(hmac_hal.c.obj) + 0x42078760 hmac_hal_clean + *fill* 0x42078782 0x2 + .text.ds_acquire_enable + 0x42078784 0x1f esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + 0x2b (size before relaxing) + *fill* 0x420787a3 0x1 + .text.ds_disable_release + 0x420787a4 0x1c esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + 0x2c (size before relaxing) + .text.esp_ds_start_sign + 0x420787c0 0xfd esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + 0x129 (size before relaxing) + 0x420787c0 esp_ds_start_sign + *fill* 0x420788bd 0x3 + .text.esp_ds_finish_sign + 0x420788c0 0x66 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + 0x72 (size before relaxing) + 0x420788c0 esp_ds_finish_sign + *fill* 0x42078926 0x2 + .text.ets_timer_setfn + 0x42078928 0x5a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x42078928 ets_timer_setfn + 0x42078928 os_timer_setfn + *fill* 0x42078982 0x2 + .text.ets_timer_done + 0x42078984 0x1a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x1e (size before relaxing) + 0x42078984 os_timer_done + 0x42078984 ets_timer_done + *fill* 0x4207899e 0x2 + .text.init_timer_task + 0x420789a0 0x79 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x42078a19 0x3 + .text.timer_process_alarm + 0x42078a1c 0x120 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.timer_task + 0x42078b3c 0x17 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1b (size before relaxing) + *fill* 0x42078b53 0x1 + .text.deinit_timer_task + 0x42078b54 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x42078b6e 0x2 + .text.esp_timer_create + 0x42078b70 0x7d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x42078b70 esp_timer_create + *fill* 0x42078bed 0x3 + .text.esp_timer_delete + 0x42078bf0 0x65 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x42078bf0 esp_timer_delete + *fill* 0x42078c55 0x3 + .text.esp_timer_init + 0x42078c58 0x36 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x3e (size before relaxing) + 0x42078c58 esp_timer_init + *fill* 0x42078c8e 0x2 + .text.__esp_system_init_fn_esp_timer_init_os + 0x42078c90 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xd (size before relaxing) + *fill* 0x42078c9a 0x2 + .text.phy_digital_regs_load + 0x42078c9c 0x1c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.phy_digital_regs_store + 0x42078cb8 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x42078cd6 0x2 + .text.load_cal_data_from_nvs_handle + 0x42078cd8 0x128 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x138 (size before relaxing) + .text.store_cal_data_to_nvs_handle + 0x42078e00 0xea esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xfa (size before relaxing) + *fill* 0x42078eea 0x2 + .text.esp_phy_disable + 0x42078eec 0x3c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x48 (size before relaxing) + 0x42078eec esp_phy_disable + .text.esp_wifi_bt_power_domain_off + 0x42078f28 0x48 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x42078f28 esp_wifi_bt_power_domain_off + 0x42078f28 esp_wifi_power_domain_off + .text.esp_phy_modem_init + 0x42078f70 0x39 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x42078f70 esp_phy_modem_init + *fill* 0x42078fa9 0x3 + .text.esp_phy_modem_deinit + 0x42078fac 0x3f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x42078fac esp_phy_modem_deinit + *fill* 0x42078feb 0x1 + .text.esp_phy_get_init_data + 0x42078fec 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x42078fec esp_phy_get_init_data + .text.esp_phy_load_cal_data_from_nvs + 0x42078ff4 0x4c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x50 (size before relaxing) + 0x42078ff4 esp_phy_load_cal_data_from_nvs + .text.esp_phy_store_cal_data_to_nvs + 0x42079040 0x24 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x2c (size before relaxing) + 0x42079040 esp_phy_store_cal_data_to_nvs + .text.esp_phy_load_cal_and_init + 0x42079064 0x166 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x182 (size before relaxing) + 0x42079064 esp_phy_load_cal_and_init + *fill* 0x420791ca 0x2 + .text.esp_phy_enable + 0x420791cc 0x5f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x73 (size before relaxing) + 0x420791cc esp_phy_enable + *fill* 0x4207922b 0x1 + .text.phy_get_lock + 0x4207922c 0xa esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4207922c phy_get_lock + *fill* 0x42079236 0x2 + .text.phy_get_modem_str + 0x42079238 0x29 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + *fill* 0x42079261 0x3 + .text.phy_enabled_modem_contains + 0x42079264 0x19 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x42079264 phy_enabled_modem_contains + *fill* 0x4207927d 0x3 + .text.phy_track_pll_internal + 0x42079280 0x2e esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x32 (size before relaxing) + *fill* 0x420792ae 0x2 + .text.phy_track_pll_timer_callback + 0x420792b0 0x20 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x24 (size before relaxing) + .text.phy_track_pll + 0x420792d0 0x3c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x40 (size before relaxing) + 0x420792d0 phy_track_pll + .text.phy_track_pll_init + 0x4207930c 0x5b esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x5f (size before relaxing) + 0x4207930c phy_track_pll_init + *fill* 0x42079367 0x1 + .text.phy_track_pll_deinit + 0x42079368 0x43 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x42079368 phy_track_pll_deinit + *fill* 0x420793ab 0x1 + .text.phy_set_modem_flag + 0x420793ac 0x1d esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x420793ac phy_set_modem_flag + *fill* 0x420793c9 0x3 + .text.phy_clr_modem_flag + 0x420793cc 0x4e esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x52 (size before relaxing) + 0x420793cc phy_clr_modem_flag + *fill* 0x4207941a 0x2 + .text.phy_get_modem_flag + 0x4207941c 0x11 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4207941c phy_get_modem_flag + *fill* 0x4207942d 0x3 + .text.phy_ant_clr_update_flag + 0x42079430 0xd esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x42079430 phy_ant_clr_update_flag + *fill* 0x4207943d 0x3 + .text.phy_ant_update + 0x42079440 0x5c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x64 (size before relaxing) + 0x42079440 phy_ant_update + .text.kill_oldest_dhcps_pool + 0x4207949c 0x62 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x420794fe 0x2 + .text.dhcps_option_ip + 0x42079500 0x48 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.parse_options + 0x42079548 0x8d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x420795d5 0x3 + .text.create_msg + 0x420795d8 0x36 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x4207960e 0x2 + .text.add_offer_options + 0x42079610 0x17d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x191 (size before relaxing) + *fill* 0x4207978d 0x3 + .text.dhcps_response_ip_set + 0x42079790 0x82 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x86 (size before relaxing) + *fill* 0x42079812 0x2 + .text.dhcps_poll_set + 0x42079814 0xdf esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x420798f3 0x1 + .text.dhcps_new + 0x420798f4 0x4a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x420798f4 dhcps_new + *fill* 0x4207993e 0x2 + .text.dhcps_delete + 0x42079940 0x1e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x42079940 dhcps_delete + *fill* 0x4207995e 0x2 + .text.dhcps_tmr + 0x42079960 0x76 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x420799d6 0x2 + .text.parse_msg + 0x420799d8 0x1c0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1cc (size before relaxing) + .text.dhcps_pbuf_alloc + 0x42079b98 0x1d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x42079b98 dhcps_pbuf_alloc + *fill* 0x42079bb5 0x3 + .text.send_offer + 0x42079bb8 0x8f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xa7 (size before relaxing) + *fill* 0x42079c47 0x1 + .text.send_ack + 0x42079c48 0xa4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xbc (size before relaxing) + .text.send_nak + 0x42079cec 0xb3 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xcb (size before relaxing) + *fill* 0x42079d9f 0x1 + .text.handle_dhcp + 0x42079da0 0xcc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xdf (size before relaxing) + *fill* 0x42079e6c 0x0 + .text.dhcps_start + 0x42079e6c 0xcf esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xe3 (size before relaxing) + 0x42079e6c dhcps_start + *fill* 0x42079f3b 0x1 + .text.dhcps_stop + 0x42079f3c 0x79 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x81 (size before relaxing) + 0x42079f3c dhcps_stop + *fill* 0x42079fb5 0x3 + .text.esp_netif_action_start + 0x42079fb8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x42079fb8 esp_netif_action_start + *fill* 0x42079fc2 0x2 + .text.esp_netif_action_stop + 0x42079fc4 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x42079fc4 esp_netif_action_stop + *fill* 0x42079fce 0x2 + .text.esp_netif_action_connected + 0x42079fd0 0x11a esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x13a (size before relaxing) + 0x42079fd0 esp_netif_action_connected + *fill* 0x4207a0ea 0x2 + .text.esp_netif_action_disconnected + 0x4207a0ec 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x4207a0ec esp_netif_action_disconnected + *fill* 0x4207a0f6 0x2 + .text.esp_netif_action_got_ip + 0x4207a0f8 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x66 (size before relaxing) + 0x4207a0f8 esp_netif_action_got_ip + *fill* 0x4207a15a 0x2 + .text.low_level_output + 0x4207a15c 0x99 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0xa5 (size before relaxing) + *fill* 0x4207a1f5 0x3 + .text.wlanif_input + 0x4207a1f8 0x4c esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x54 (size before relaxing) + 0x4207a1f8 wlanif_input + .text.wlanif_init + 0x4207a244 0x48 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4c (size before relaxing) + 0x4207a244 wlanif_init + .text.wlanif_init_sta + 0x4207a28c 0x18 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x1c (size before relaxing) + 0x4207a28c wlanif_init_sta + .text.esp_pbuf_free + 0x4207a2a4 0x13 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x17 (size before relaxing) + *fill* 0x4207a2b7 0x1 + .text.esp_pbuf_allocate + 0x4207a2b8 0x38 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x40 (size before relaxing) + 0x4207a2b8 esp_pbuf_allocate + .text.wpa_attach + 0x4207a2f0 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x26 (size before relaxing) + 0x4207a2f0 wpa_attach + *fill* 0x4207a30e 0x2 + .text.wpa_config_done + 0x4207a310 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb (size before relaxing) + 0x4207a310 wpa_config_done + *fill* 0x4207a318 0x0 + .text.wpa_ap_get_wpa_ie + 0x4207a318 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x32 (size before relaxing) + 0x4207a318 wpa_ap_get_wpa_ie + *fill* 0x4207a346 0x2 + .text.wpa_ap_rx_eapol + 0x4207a348 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x2d (size before relaxing) + 0x4207a348 wpa_ap_rx_eapol + *fill* 0x4207a371 0x3 + .text.wpa_deattach + 0x4207a374 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x32 (size before relaxing) + 0x4207a374 wpa_deattach + *fill* 0x4207a3a2 0x2 + .text.wpa_config_reload + 0x4207a3a4 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + *fill* 0x4207a3b1 0x3 + .text.wpa_parse_wpa_ie_wrapper + 0x4207a3b4 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x48 (size before relaxing) + 0x4207a3b4 wpa_parse_wpa_ie_wrapper + .text.hostap_sta_join + 0x4207a3f0 0x114 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x12c (size before relaxing) + .text.wpa_sta_disconnected_cb + 0x4207a504 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xa2 (size before relaxing) + *fill* 0x4207a592 0x2 + .text.wpa_sta_connected_cb + 0x4207a594 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xe (size before relaxing) + *fill* 0x4207a59e 0x2 + .text.wpa_install_key + 0x4207a5a0 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4207a5a0 wpa_install_key + *fill* 0x4207a5c3 0x1 + .text.wpa_get_key + 0x4207a5c4 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4207a5c4 wpa_get_key + *fill* 0x4207a5e1 0x3 + .text.wpa_deauthenticate + 0x4207a5e4 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xe (size before relaxing) + 0x4207a5e4 wpa_deauthenticate + *fill* 0x4207a5ef 0x1 + .text.wpa_config_profile + 0x4207a5f0 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x61 (size before relaxing) + 0x4207a5f0 wpa_config_profile + *fill* 0x4207a639 0x3 + .text.wpa_config_bss + 0x4207a63c 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x48 (size before relaxing) + 0x4207a63c wpa_config_bss + .text.wpa_sta_connect + 0x4207a674 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x5c (size before relaxing) + 0x4207a674 wpa_sta_connect + .text.wpa_config_assoc_ie + 0x4207a6c8 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4207a6c8 wpa_config_assoc_ie + *fill* 0x4207a6f2 0x2 + .text.wpa_neg_complete + 0x4207a6f4 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb (size before relaxing) + 0x4207a6f4 wpa_neg_complete + *fill* 0x4207a6fc 0x0 + .literal.ieee80211_handle_rx_frm + 0x4207a6fc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_supplicant_unset_all_appie + 0x4207a700 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_supplicant_common_deinit + 0x4207a700 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_supplicant_common_init + 0x4207a704 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_set_assoc_ie + 0x4207a70c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x10 (size before relaxing) + .literal.wps_get_wps_sm_cb + 0x4207a718 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wpa3_check_sae_rejected_groups + 0x4207a71c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4 (size before relaxing) + .literal.wpa3_parse_sae_commit + 0x4207a71c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x2c (size before relaxing) + .literal.wpa3_parse_sae_confirm + 0x4207a728 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.wpa3_build_sae_commit + 0x4207a730 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x80 (size before relaxing) + .literal.wpa3_build_sae_confirm + 0x4207a740 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x18 (size before relaxing) + .literal.wpa3_build_sae_msg + 0x4207a744 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.esp_wpa3_free_sae_data + 0x4207a744 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.wpa3_parse_sae_msg + 0x4207a744 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xc (size before relaxing) + .literal.esp_wifi_register_wpa3_cb + 0x4207a744 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.wpa3_hostap_post_evt + 0x4207a74c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.wpa3_hostap_handle_auth + 0x4207a758 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.wpa3_hostap_auth_init + 0x4207a758 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x1c (size before relaxing) + .literal.wpa3_hostap_auth_deinit + 0x4207a768 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4 (size before relaxing) + .literal.esp_send_sae_auth_reply + 0x4207a768 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.wpa3_process_rx_commit + 0x4207a76c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x28 (size before relaxing) + .literal.wpa3_process_rx_confirm + 0x4207a76c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x38 (size before relaxing) + .literal.esp_wpa3_hostap_task + 0x4207a76c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_register_wpa3_ap_cb + 0x4207a76c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.owe_build_dhie + 0x4207a770 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x8 (size before relaxing) + .literal.owe_deinit + 0x4207a770 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x10 (size before relaxing) + .literal.esp_wifi_register_owe_cb + 0x4207a774 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .literal.hostapd_get_hapd_data + 0x4207a77c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.hostap_init + 0x4207a780 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0xa0 (size before relaxing) + .literal.hostapd_cleanup + 0x4207a794 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x1c (size before relaxing) + .literal.hostap_deinit + 0x4207a794 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_build_rsnxe + 0x4207a794 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.esp_send_assoc_resp + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x18 (size before relaxing) + .literal.hostap_new_assoc_sta + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x2c (size before relaxing) + .literal.wpa_ap_remove + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x14 (size before relaxing) + .literal.ecp_opp + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc (size before relaxing) + .literal.crypto_alloc_key + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_init + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x14 (size before relaxing) + .literal.crypto_ec_deinit + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_point_init + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_prime_len + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_order_len + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_prime_len_bits + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_get_a + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x14 (size before relaxing) + .literal.crypto_ec_point_deinit + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_point_to_bin + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc (size before relaxing) + .literal.crypto_ec_point_from_bin + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_add + 0x4207a798 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_mul + 0x4207a798 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_invert + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_compute_y_sqr + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4c (size before relaxing) + .literal.crypto_ec_point_solve_y_coord + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x30 (size before relaxing) + .literal.crypto_ec_point_is_at_infinity + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_is_on_curve + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x28 (size before relaxing) + .literal.crypto_ec_point_cmp + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_key_set_pub + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x38 (size before relaxing) + .literal.crypto_ec_key_group + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ecdh_deinit + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ecdh_init + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x40 (size before relaxing) + .literal.crypto_ecdh_get_pubkey + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_key_parse_pub + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_key_deinit + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ecdh_set_peerkey + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x74 (size before relaxing) + .literal.crypto_ec_key_verify_signature + 0x4207a7a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.timeout_exists + 0x4207a7a0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_remove_blocking_timeout + 0x4207a7a4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0xc (size before relaxing) + .literal.eloop_run_timer + 0x4207a7a8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x8 (size before relaxing) + .literal.eloop_remove_timeout + 0x4207a7ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x10 (size before relaxing) + .literal.eloop_init + 0x4207a7ac 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x20 (size before relaxing) + .literal.eloop_register_timeout + 0x4207a7bc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x2c (size before relaxing) + .literal.eloop_cancel_timeout + 0x4207a7c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x8 (size before relaxing) + .literal.eloop_run + 0x4207a7c0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x2c (size before relaxing) + .literal.eloop_run_wrapper + 0x4207a7c4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4 (size before relaxing) + .literal.eloop_destroy + 0x4207a7c4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x24 (size before relaxing) + .literal.hostapd_derive_psk + 0x4207a7c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xc (size before relaxing) + .literal.hostapd_setup_sae_pt + 0x4207a7c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_setup_wpa_psk + 0x4207a7c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x8 (size before relaxing) + .literal.hostapd_get_psk + 0x4207a7c8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_config_clear_wpa_psk + 0x4207a7cc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.hostapd_config_free_bss + 0x4207a7cc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_get_sm + 0x4207a7cc 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_auth_add_sm + 0x4207a7d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_del_sm + 0x4207a7d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_use_aes_cmac + 0x4207a7d4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_receive_error_report + 0x4207a7d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_free_sta_sm + 0x4207a7d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION_Enter + 0x4207a7d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.ieee80211w_kde_len + 0x4207a7d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_sm_ptk_update + 0x4207a7d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_gmk_to_gtk + 0x4207a7d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_gtk_update + 0x4207a7d8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .literal.wpa_group_gtk_init + 0x4207a7e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_set_key + 0x4207a7e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.wpa_group_config_group_keys + 0x4207a7e0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_group_setkeysdone + 0x4207a7e4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_init_gmk_and_counter + 0x4207a7e4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1c (size before relaxing) + .literal.wpa_group_ensure_init + 0x4207a7e8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION2_Enter + 0x4207a7e8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_replay_counter_valid + 0x4207a7e8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_replay_counter_mark_invalid + 0x4207a7e8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_derive_ptk + 0x4207a7e8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_verify_key_mic + 0x4207a7ec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sta_disconnect + 0x4207a7ec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_DISCONNECT_Enter + 0x4207a7ec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITDONE_Enter + 0x4207a7ec 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.ieee80211w_kde_add + 0x4207a7f0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.resend_eapol_handle + 0x4207a7f4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_for_each_sta + 0x4207a7f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_setkeys + 0x4207a7f8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_group_sm_step + 0x4207a7fc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_rekey_gtk + 0x4207a7fc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_group_init + 0x4207a800 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.wpa_auth_pmksa_free_cb + 0x4207a800 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_init + 0x4207a804 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3c (size before relaxing) + .literal.wpa_auth_sta_init + 0x4207a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_sta_deinit + 0x4207a808 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_auth_pmksa_add_sae + 0x4207a80c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_add_sae_pmkid + 0x4207a80c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.__wpa_send_eapol + 0x4207a80c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x80 (size before relaxing) + .literal.wpa_send_eapol + 0x4207a80c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKSTART_Enter + 0x4207a80c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITNEGOTIATING_Enter + 0x4207a810 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x30 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter + 0x4207a818 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_Step + 0x4207a818 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1c (size before relaxing) + .literal.wpa_remove_ptk + 0x4207a818 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_INITIALIZE_Enter + 0x4207a818 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deinit + 0x4207a818 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.wpa_auth_uses_sae + 0x4207a818 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_get_psk + 0x4207a818 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter + 0x4207a818 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x44 (size before relaxing) + .literal.sm_WPA_PTK_INITPSK_Enter + 0x4207a820 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_Step + 0x4207a820 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x78 (size before relaxing) + .literal.wpa_sm_step + 0x4207a820 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_group_update_sta + 0x4207a820 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_rekey_ptk + 0x4207a820 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_sta_associated + 0x4207a820 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_receive + 0x4207a820 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x88 (size before relaxing) + .literal.hostap_eapol_resend_process + 0x4207a824 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_parse_generic + 0x4207a824 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x14 (size before relaxing) + .literal.wpa_write_wpa_ie + 0x4207a830 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_write_rsn_ie + 0x4207a830 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x18 (size before relaxing) + .literal.wpa_write_rsnxe + 0x4207a830 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_gen_wpa_ie + 0x4207a830 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x18 (size before relaxing) + .literal.wpa_add_kde + 0x4207a830 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_validate_wpa_ie + 0x4207a830 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x54 (size before relaxing) + .literal.wpa_parse_kde_ies + 0x4207a830 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal._pmksa_cache_free_entry + 0x4207a830 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_set_expiration + 0x4207a830 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_link_entry + 0x4207a834 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_free_entry + 0x4207a834 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_expire + 0x4207a834 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_auth_create_entry + 0x4207a834 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x20 (size before relaxing) + .literal.pmksa_cache_auth_deinit + 0x4207a83c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_auth_get + 0x4207a83c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_auth_add_entry + 0x4207a83c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_auth_add + 0x4207a83c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_auth_init + 0x4207a83c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4 (size before relaxing) + .literal.ap_sta_hash_del + 0x4207a83c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x8 (size before relaxing) + .literal.ap_get_sta + 0x4207a83c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x4 (size before relaxing) + .literal.ap_free_sta + 0x4207a83c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x20 (size before relaxing) + .literal.ap_sta_add + 0x4207a83c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x14 (size before relaxing) + .literal.sae_check_big_sync + 0x4207a83c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x8 (size before relaxing) + .literal.check_sae_rejected_groups + 0x4207a840 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x4 (size before relaxing) + .literal.auth_build_sae_commit + 0x4207a840 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x20 (size before relaxing) + .literal.auth_sae_send_commit + 0x4207a840 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.auth_build_sae_confirm + 0x4207a840 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.auth_sae_send_confirm + 0x4207a840 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.sae_accept_sta + 0x4207a840 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.sae_sm_step + 0x4207a844 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x54 (size before relaxing) + .literal.handle_auth_sae + 0x4207a84c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x78 (size before relaxing) + .literal.auth_sae_queue + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x18 (size before relaxing) + .literal.wpabuf_put_le16 + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x4 (size before relaxing) + .literal.comeback_token_hash + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x4 (size before relaxing) + .literal.check_comeback_token + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0xc (size before relaxing) + .literal.auth_build_token_req + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x40 (size before relaxing) + .literal.sae_parse_token_container + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_akm_suite_selector + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.hkdf_extract + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_pwd_seed + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_cn_confirm + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_cn_confirm_ffc + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.hkdf_expand + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_derive_commit_element_ffc + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_k_ffc + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.debug_print_bignum + 0x4207a864 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sswu 0x4207a864 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c8 (size before relaxing) + .literal.sae_cn_confirm_ecc + 0x4207a894 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_max_min_addr + 0x4207a894 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_pwd_seed_key + 0x4207a894 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x14 (size before relaxing) + .literal.sae_parse_password_identifier + 0x4207a894 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_test_pwd_seed_ffc + 0x4207a894 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x34 (size before relaxing) + .literal.sae_derive_pwe_ffc + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_test_pwd_seed_ecc + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x28 (size before relaxing) + .literal.sae_derive_pwe_ecc + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x7c (size before relaxing) + .literal.sae_derive_commit_element_ecc + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_commit + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.wpabuf_put_le16 + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_put_data + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_put_str + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_parse_rejected_groups + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x14 (size before relaxing) + .literal.sae_derive_k_ecc + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_kdf_hash + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_commit_scalar + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x20 (size before relaxing) + .literal.sae_parse_commit_element_ffc + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3c (size before relaxing) + .literal.sae_parse_commit_element_ecc + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.sae_parse_commit_element + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_clear_temp_data + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x40 (size before relaxing) + .literal.sae_clear_data + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_set_group + 0x4207a898 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x34 (size before relaxing) + .literal.sae_derive_pt_ecc + 0x4207a898 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x64 (size before relaxing) + .literal.sae_derive_pt_ffc + 0x4207a8a0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .literal.sae_derive_keys + 0x4207a8a8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x64 (size before relaxing) + .literal.sae_derive_pwe_from_pt_ecc + 0x4207a8b0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x58 (size before relaxing) + .literal.sae_derive_pwe_from_pt_ffc + 0x4207a8b4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x60 (size before relaxing) + .literal.sae_deinit_pt + 0x4207a8b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_derive_pt_group + 0x4207a8b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_derive_pt + 0x4207a8b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_prepare_commit + 0x4207a8b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_prepare_commit_pt + 0x4207a8b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_process_commit + 0x4207a8b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_write_commit + 0x4207a8b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x68 (size before relaxing) + .literal.sae_group_allowed + 0x4207a8b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_commit + 0x4207a8b8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3c (size before relaxing) + .literal.sae_write_confirm + 0x4207a8bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_check_confirm + 0x4207a8bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.dragonfly_get_rand_1_to_p_1 + 0x4207a8bc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x28 (size before relaxing) + .literal.dragonfly_get_rand_2_to_r_1 + 0x4207a8c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0xc (size before relaxing) + .literal.dragonfly_get_random_qr_qnr + 0x4207a8c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x1c (size before relaxing) + .literal.dragonfly_is_quadratic_residue_blind + 0x4207a8c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x34 (size before relaxing) + .literal.dragonfly_generate_scalar + 0x4207a8c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x18 (size before relaxing) + .literal.dragonfly_sqrt + 0x4207a8c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x28 (size before relaxing) + .literal.wpa_kck_len + 0x4207a8c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.wpa_kek_len + 0x4207a8c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.rsn_selector_to_bitfield + 0x4207a8c0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x28 (size before relaxing) + .literal.rsn_key_mgmt_to_bitfield + 0x4207a8d8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x24 (size before relaxing) + .literal.wpa_selector_to_bitfield + 0x4207a8e0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_key_mgmt_to_bitfield + 0x4207a8f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.wpa_mic_len + 0x4207a8f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_cipher_valid_mgmt_group + 0x4207a8f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_parse_wpa_ie_rsnxe + 0x4207a8f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_parse_wpa_ie_rsn + 0x4207a8f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.wpa_parse_wpa_ie_wpa + 0x4207a8f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_use_akm_defined + 0x4207a8f0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.wpa_use_aes_key_wrap + 0x4207a8f4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_eapol_key_mic + 0x4207a8f4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x2c (size before relaxing) + .literal.wpa_akm_to_suite + 0x4207a8f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x28 (size before relaxing) + .literal.wpa_compare_rsn_ie + 0x4207a8f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.rsn_pmkid + 0x4207a8f8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.wpa_cipher_key_len + 0x4207a900 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_pmk_to_ptk + 0x4207a900 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x54 (size before relaxing) + .literal.wpa_cipher_to_suite + 0x4207a900 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x34 (size before relaxing) + .literal.hmac_sha256_kdf + 0x4207a900 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0x28 (size before relaxing) + .literal.dh_groups_get + 0x4207a904 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.sha256_prf_bits + 0x4207a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x14 (size before relaxing) + .literal.sha256_prf + 0x4207a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x4 (size before relaxing) + .literal.sha1_prf + 0x4207a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x14 (size before relaxing) + .literal._pmksa_cache_free_entry + 0x4207a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_free_entry + 0x4207a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_expiration + 0x4207a908 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_expire + 0x4207a90c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_flush + 0x4207a90c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_add_entry + 0x4207a90c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x20 (size before relaxing) + .literal.pmksa_cache_add + 0x4207a90c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x28 (size before relaxing) + .literal.pmksa_cache_clone_entry + 0x4207a910 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_deinit + 0x4207a910 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x14 (size before relaxing) + .literal.pmksa_cache_get + 0x4207a910 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_get_opportunistic + 0x4207a910 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_current + 0x4207a910 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_init + 0x4207a910 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.wpa_key_mgmt_supports_caching + 0x4207a910 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_supplicant_verify_eapol_key_mic + 0x4207a910 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2c (size before relaxing) + .literal.is_wpa2_enterprise_connection + 0x4207a910 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_derive_ptk + 0x4207a914 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_check_group_cipher + 0x4207a918 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_decrypt_key_data + 0x4207a918 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sm_set_seq + 0x4207a918 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_install_igtk + 0x4207a91c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.ieee80211w_set_keys + 0x4207a91c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_get_key + 0x4207a91c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_gtk_in_use + 0x4207a91c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sm_pmksa_free_cb + 0x4207a91c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpabuf_put_le16 + 0x4207a91c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_put_data + 0x4207a91c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.cipher_type_map_supp_to_public + 0x4207a91c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.cipher_type_map_public_to_supp + 0x4207a91c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_eapol_key_send + 0x4207a91c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sm_key_request + 0x4207a91c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x34 (size before relaxing) + .literal.wpa_sm_rekey_ptk + 0x4207a924 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_send_4_of_4 + 0x4207a924 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_supplicant_send_2_of_2 + 0x4207a924 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_supplicant_send_2_of_4 + 0x4207a924 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_rsn + 0x4207a924 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_wpa + 0x4207a924 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_pairwise_gtk + 0x4207a924 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_report_ie_mismatch + 0x4207a924 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_validate_ie + 0x4207a924 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sm_set_state + 0x4207a924 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_key_neg_complete + 0x4207a928 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_set_pmk_from_pmksa + 0x4207a928 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_get_pmk + 0x4207a928 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x30 (size before relaxing) + .literal.wpa_supplicant_process_1_of_4 + 0x4207a92c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x48 (size before relaxing) + .literal.wpa_sm_init + 0x4207a92c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sm_notify_assoc + 0x4207a930 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_set_profile + 0x4207a930 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_set_pmk + 0x4207a930 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_set_passphrase + 0x4207a938 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4c (size before relaxing) + .literal.set_assoc_ie + 0x4207a938 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sm_set_key + 0x4207a938 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_supplicant_install_ptk + 0x4207a938 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_process_3_of_4 + 0x4207a93c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x30 (size before relaxing) + .literal.wpa_supplicant_install_gtk + 0x4207a93c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2 + 0x4207a93c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_sm_rx_eapol + 0x4207a93c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x44 (size before relaxing) + .literal.wpa_supplicant_activate_ptk + 0x4207a948 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_send_4_of_4_txcallback + 0x4207a948 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_supplicant_clr_countermeasures + 0x4207a948 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_stop_countermeasures + 0x4207a948 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_michael_mic_failure + 0x4207a948 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x30 (size before relaxing) + .literal.eapol_txcb + 0x4207a94c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sta_in_4way_handshake + 0x4207a94c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sta_cur_pmksa_matches_akm + 0x4207a94c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sta_clear_curr_pmksa + 0x4207a94c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.get_wpa_sm + 0x4207a94c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_set_ap_rsnxe + 0x4207a94c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sm_set_assoc_rsnxe + 0x4207a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_set_bss + 0x4207a950 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x94 (size before relaxing) + .literal.wpa_sm_drop_sa + 0x4207a95c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_sm_deinit + 0x4207a95c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sm_notify_disassoc + 0x4207a95c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.owe_build_assoc_req + 0x4207a95c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x34 (size before relaxing) + .literal.owe_process_assoc_resp + 0x4207a95c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x74 (size before relaxing) + .literal.wpa_sm_pmksa_cache_flush + 0x4207a960 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_parse_generic + 0x4207a960 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x18 (size before relaxing) + .literal.wpa_gen_wpa_ie_rsn + 0x4207a960 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x38 (size before relaxing) + .literal.wpa_gen_wpa_ie_wpa + 0x4207a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xc (size before relaxing) + .literal.wpa_parse_wpa_ie + 0x4207a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xc (size before relaxing) + .literal.wpa_gen_wpa_ie + 0x4207a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_gen_rsnxe + 0x4207a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_parse_ies + 0x4207a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_alloc + 0x4207a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_free + 0x4207a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_clear_free + 0x4207a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_put_data + 0x4207a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_alloc_copy + 0x4207a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_zeropad + 0x4207a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x14 (size before relaxing) + .literal.d_permute + 0x4207a974 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .literal.d_check_char + 0x4207a978 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x14 (size before relaxing) + .literal.wpabuf_put_data + 0x4207a980 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x8 (size before relaxing) + .literal.sae_pk_valid_password + 0x4207a980 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x18 (size before relaxing) + .literal.sae_pk_base32_decode + 0x4207a984 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0xc (size before relaxing) + .literal.sae_pk_set_password + 0x4207a984 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x24 (size before relaxing) + .literal.sae_hash + 0x4207a984 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4 (size before relaxing) + .literal.sae_pk_valid_fingerprint + 0x4207a984 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x20 (size before relaxing) + .literal.sae_pk_hash_sig_data + 0x4207a984 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x3c (size before relaxing) + .literal.sae_check_confirm_pk + 0x4207a984 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x48 (size before relaxing) + .literal.eap_client_get_eap_state + 0x4207a988 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.disable_wpa_wpa2 + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_alloc_eapol + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xc (size before relaxing) + .literal.wpa_free_eapol + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ether_send + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_send_eapol + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x18 (size before relaxing) + .literal.wpa_supplicant_transition_disable + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sm_alloc_eapol + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_free_eapol + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_deauthenticate + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x8 (size before relaxing) + .literal.crypto_rng_wrapper + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_init + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_init_set + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_deinit + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_init_uint + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_to_bin + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_add + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mod + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_exptmod + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_inverse + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_sub + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_div + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mulmod + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_sqrmod + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_rshift + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_cmp + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_zero + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_one + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_odd + 0x4207a98c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_rand + 0x4207a98c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_legendre + 0x4207a990 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x28 (size before relaxing) + .literal.crypto_bignum_addmod + 0x4207a990 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.aes_wrap + 0x4207a990 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x24 (size before relaxing) + .literal.aes_unwrap + 0x4207a990 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x24 (size before relaxing) + .literal.pad_block + 0x4207a990 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x8 (size before relaxing) + .literal.aes_s2v + 0x4207a990 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x3c (size before relaxing) + .literal.aes_siv_decrypt + 0x4207a994 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x14 (size before relaxing) + .literal.ieee802_11_parse_extension + 0x4207a994 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x10 (size before relaxing) + .literal.ieee802_11_parse_vendor_specific + 0x4207a994 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0xc (size before relaxing) + .literal.ieee802_11_parse_elems + 0x4207a998 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_coex_common_timer_done_wrapper + 0x4207a998 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_timer_setfn_wrapper + 0x4207a998 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_spin_lock_create_wrapper + 0x4207a998 0xc esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x10 (size before relaxing) + .literal.esp_coex_common_semphr_create_wrapper + 0x4207a9a4 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_common_semphr_delete_wrapper + 0x4207a9a8 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_common_semphr_take_wrapper + 0x4207a9ac 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x8 (size before relaxing) + .literal.esp_coex_common_semphr_give_wrapper + 0x4207a9b0 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_common_clk_slowclk_cal_get_wrapper + 0x4207a9b4 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xc (size before relaxing) + .literal.lib_printf + 0x4207a9bc 0xc esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x10 (size before relaxing) + .literal.pp_printf + 0x4207a9c8 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.net80211_printf + 0x4207a9cc 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.esp_crypto_sha1_mbedtls + 0x4207a9d0 0x8 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + 0x24 (size before relaxing) + .literal.esp_crypto_bas64_encode_mbedtls + 0x4207a9d8 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + 0x4 (size before relaxing) + .literal.esp_crypto_sha1 + 0x4207a9d8 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + 0x4 (size before relaxing) + .literal.esp_crypto_base64_encode + 0x4207a9d8 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + 0x4 (size before relaxing) + .literal.ds_ll_configure_iv + 0x4207a9d8 0x4 esp-idf/hal/libhal.a(ds_hal.c.obj) + .literal.ds_ll_check_signature + 0x4207a9dc 0x4 esp-idf/hal/libhal.a(ds_hal.c.obj) + .literal.ds_ll_write_private_key_params + 0x4207a9e0 0x4 esp-idf/hal/libhal.a(ds_hal.c.obj) + 0xc (size before relaxing) + .literal.ds_hal_start + 0x4207a9e4 0x4 esp-idf/hal/libhal.a(ds_hal.c.obj) + .literal.ds_hal_finish + 0x4207a9e8 0x8 esp-idf/hal/libhal.a(ds_hal.c.obj) + .literal.ds_hal_configure_iv + 0x4207a9f0 0x0 esp-idf/hal/libhal.a(ds_hal.c.obj) + 0x4 (size before relaxing) + .literal.ds_hal_write_message + 0x4207a9f0 0x4 esp-idf/hal/libhal.a(ds_hal.c.obj) + 0x8 (size before relaxing) + .literal.ds_hal_write_private_key_params + 0x4207a9f4 0x0 esp-idf/hal/libhal.a(ds_hal.c.obj) + 0x4 (size before relaxing) + .literal.ds_hal_start_sign + 0x4207a9f4 0x4 esp-idf/hal/libhal.a(ds_hal.c.obj) + .literal.ds_hal_busy + 0x4207a9f8 0x0 esp-idf/hal/libhal.a(ds_hal.c.obj) + 0x4 (size before relaxing) + .literal.ds_hal_read_result + 0x4207a9f8 0x4 esp-idf/hal/libhal.a(ds_hal.c.obj) + 0xc (size before relaxing) + .literal.ethip6_output + 0x4207a9fc 0x4 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x14 (size before relaxing) + .literal._ZdaPv + 0x4207aa00 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + 0x4 (size before relaxing) + .literal._ZSt15get_new_handlerv + 0x4207aa00 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .literal._ZnajRKSt9nothrow_t + 0x4207aa04 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + 0xc (size before relaxing) + .literal._ZdlPv + 0x4207aa04 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + 0x4 (size before relaxing) + .literal.__cxa_begin_catch + 0x4207aa04 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + 0x10 (size before relaxing) + .literal.__cxa_end_catch + 0x4207aa0c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + 0x14 (size before relaxing) + .literal._ZL15eh_globals_dtorPv + 0x4207aa0c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + 0x8 (size before relaxing) + .literal.__cxa_get_globals_fast + 0x4207aa0c 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .literal.__cxa_get_globals + 0x4207aa1c 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + 0x1c (size before relaxing) + .literal.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE + 0x4207aa20 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + 0x10 (size before relaxing) + .literal._ZN10__cxxabiv111__terminateEPFvvE + 0x4207aa28 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + 0xc (size before relaxing) + .literal._ZSt13get_terminatev + 0x4207aa2c 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .literal.unlikely._ZSt9terminatev + 0x4207aa30 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + 0x8 (size before relaxing) + .literal._Znaj + 0x4207aa30 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + 0x4 (size before relaxing) + .literal._Znwj + 0x4207aa30 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + 0x1c (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x4207aa3c 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x4207aa40 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x4207aa40 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .literal._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x4207aa44 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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_ + 0x4207aa44 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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 + 0x4207aa44 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNKSt9bad_alloc4whatEv + 0x4207aa44 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .literal._ZNSt9bad_allocD2Ev + 0x4207aa48 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZNSt9bad_allocD0Ev + 0x4207aa48 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD2Ev + 0x4207aa48 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD0Ev + 0x4207aa4c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x4207aa4c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x4207aa4c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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 + 0x4207aa4c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x4207aa4c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZdlPvj + 0x4207aa4c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + 0x4 (size before relaxing) + .literal._Z12abort_returnIiET_v + 0x4207aa4c 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap__Unwind_DeleteException + 0x4207aa4c 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap___gxx_personality_v0 + 0x4207aa4c 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap___cxa_allocate_exception + 0x4207aa4c 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap___cxa_throw + 0x4207aa4c 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.lib_printf + 0x4207aa4c 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x10 (size before relaxing) + .literal.phy_printf + 0x4207aa50 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal 0x4207aa54 0xb4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + 0x20c (size before relaxing) + .literal 0x4207ab08 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + 0x10 (size before relaxing) + .literal 0x4207ab0c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + 0xc (size before relaxing) + .literal 0x4207ab0c 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + 0x30 (size before relaxing) + .literal 0x4207ab1c 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + 0x28 (size before relaxing) + .literal 0x4207ab2c 0x44 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + 0xb4 (size before relaxing) + .literal 0x4207ab70 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + 0x38 (size before relaxing) + .literal 0x4207ab74 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + 0x20 (size before relaxing) + .literal 0x4207ab74 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + 0xc (size before relaxing) + .literal 0x4207ab74 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + 0x38 (size before relaxing) + .literal 0x4207ab84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + 0x18 (size before relaxing) + .literal 0x4207ab84 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + 0xc (size before relaxing) + .literal 0x4207ab84 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + 0x1c (size before relaxing) + .literal 0x4207ab88 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + 0x2c (size before relaxing) + .literal 0x4207ab8c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + 0xc (size before relaxing) + .literal 0x4207ab8c 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + 0x14 (size before relaxing) + .literal 0x4207ab90 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + 0x1c (size before relaxing) + .literal 0x4207ab94 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + 0x14 (size before relaxing) + .literal 0x4207aba4 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + 0xc (size before relaxing) + .literal 0x4207aba4 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + 0x8 (size before relaxing) + .literal 0x4207aba4 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + 0x10 (size before relaxing) + .literal 0x4207aba4 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + 0x14 (size before relaxing) + .literal 0x4207aba8 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + 0x44 (size before relaxing) + .literal 0x4207abac 0x148 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + 0x154 (size before relaxing) + .literal 0x4207acf4 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + 0x8 (size before relaxing) + .literal 0x4207acf8 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + 0x20 (size before relaxing) + .literal 0x4207ad04 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + 0x30 (size before relaxing) + .literal 0x4207ad08 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + 0x4 (size before relaxing) + .literal 0x4207ad08 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + 0x8 (size before relaxing) + .literal 0x4207ad08 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + 0x8 (size before relaxing) + .literal 0x4207ad0c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + 0x8 (size before relaxing) + .literal 0x4207ad0c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + 0x8 (size before relaxing) + .literal 0x4207ad0c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + 0x8 (size before relaxing) + .literal 0x4207ad0c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + 0x8 (size before relaxing) + .literal 0x4207ad0c 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .literal 0x4207ad10 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + 0x50 (size before relaxing) + .literal 0x4207ad1c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + 0x4 (size before relaxing) + .literal 0x4207ad1c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + 0x4 (size before relaxing) + .literal 0x4207ad1c 0x1c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + 0xa8 (size before relaxing) + .literal 0x4207ad38 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + 0x4 (size before relaxing) + .literal 0x4207ad38 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + 0xd0 (size before relaxing) + .literal 0x4207ad58 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + 0x178 (size before relaxing) + .literal 0x4207adb8 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + 0x148 (size before relaxing) + .literal 0x4207add0 0x38 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + 0x1a0 (size before relaxing) + .literal 0x4207ae08 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + 0x90 (size before relaxing) + .literal 0x4207ae2c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + 0xc (size before relaxing) + .literal 0x4207ae2c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + 0x24 (size before relaxing) + .literal 0x4207ae2c 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + 0x8 (size before relaxing) + .literal 0x4207ae2c 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + 0xc (size before relaxing) + .literal 0x4207ae30 0x44 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + 0x1e4 (size before relaxing) + .literal 0x4207ae74 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + 0x14 (size before relaxing) + .literal 0x4207ae74 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + 0x14 (size before relaxing) + .literal 0x4207ae74 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + 0xc (size before relaxing) + .literal 0x4207ae78 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + 0x4 (size before relaxing) + .literal 0x4207ae78 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + 0x4 (size before relaxing) + .literal 0x4207ae78 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + 0x78 (size before relaxing) + .literal.esp_supplicant_init + 0x4207ae9c 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x78 (size before relaxing) + .literal.esp_event_handler_register + 0x4207aef4 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_handler_instance_register + 0x4207aef8 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_handler_unregister + 0x4207aef8 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_post + 0x4207aef8 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_loop_create_default + 0x4207aef8 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x10 (size before relaxing) + .literal.handler_instances_remove + 0x4207aefc 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x10 (size before relaxing) + .literal.base_node_remove_handler + 0x4207aefc 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xc (size before relaxing) + .literal.loop_node_remove_handler + 0x4207aefc 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x10 (size before relaxing) + .literal.loop_remove_handler + 0x4207af00 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x8 (size before relaxing) + .literal.handler_instances_remove_all + 0x4207af00 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x8 (size before relaxing) + .literal.base_node_remove_all_handler + 0x4207af00 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xc (size before relaxing) + .literal.loop_node_remove_all_handler + 0x4207af00 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xc (size before relaxing) + .literal.handler_instances_add + 0x4207af00 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x24 (size before relaxing) + .literal.base_node_add_handler + 0x4207af08 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x24 (size before relaxing) + .literal.loop_node_add_handler + 0x4207af0c 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x28 (size before relaxing) + .literal.esp_event_loop_create + 0x4207af10 0x2c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x70 (size before relaxing) + .literal.esp_event_loop_run + 0x4207af3c 0x28 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x54 (size before relaxing) + .literal.esp_event_loop_run_task + 0x4207af64 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x18 (size before relaxing) + .literal.esp_event_loop_delete + 0x4207af6c 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x3c (size before relaxing) + .literal.esp_event_handler_register_with_internal + 0x4207af74 0x10 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x50 (size before relaxing) + .literal.esp_event_handler_register_with + 0x4207af84 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_handler_instance_register_with + 0x4207af84 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_post_to + 0x4207af84 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x48 (size before relaxing) + .literal.find_and_unregister_handler + 0x4207af88 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xc (size before relaxing) + .literal.esp_event_handler_unregister_with_internal + 0x4207af88 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x44 (size before relaxing) + .literal.esp_event_handler_unregister_with + 0x4207af94 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_clk_tree_src_get_freq_hz + 0x4207af94 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x68 (size before relaxing) + .literal.gdma_acquire_group_handle + 0x4207afd8 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x28 (size before relaxing) + .literal.gdma_acquire_pair_handle + 0x4207aff4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x24 (size before relaxing) + .literal.gdma_release_group_handle + 0x4207aff4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x30 (size before relaxing) + .literal.gdma_release_pair_handle + 0x4207b000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x20 (size before relaxing) + .literal.gdma_del_rx_channel + 0x4207b008 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x24 (size before relaxing) + .literal.gdma_del_tx_channel + 0x4207b010 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x24 (size before relaxing) + .literal.do_allocate_gdma_channel + 0x4207b010 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0xc8 (size before relaxing) + .literal.gdma_new_ahb_channel + 0x4207b048 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0xc (size before relaxing) + .literal.gdma_del_channel + 0x4207b04c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x18 (size before relaxing) + .literal.gdma_get_group_channel_id + 0x4207b050 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x14 (size before relaxing) + .literal.gdma_connect + 0x4207b054 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x4c (size before relaxing) + .literal.gdma_disconnect + 0x4207b064 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x34 (size before relaxing) + .literal.gdma_config_transfer + 0x4207b06c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x44 (size before relaxing) + .literal.periph_ll_get_clk_en_mask + 0x4207b07c 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x3c (size before relaxing) + .literal.periph_ll_get_rst_en_mask + 0x4207b09c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x38 (size before relaxing) + .literal.periph_ll_get_clk_en_reg + 0x4207b0a0 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_ll_get_rst_en_reg + 0x4207b0b4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x14 (size before relaxing) + .literal.periph_ll_enable_clk_clear_rst + 0x4207b0c4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_ll_reset + 0x4207b0c4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_module_enable + 0x4207b0c4 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.set_ocode_by_efuse + 0x4207b0dc 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x1c (size before relaxing) + .literal.get_dig1v3_dbias_by_efuse + 0x4207b0f0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x1c (size before relaxing) + .literal.get_dig_dbias_by_efuse + 0x4207b100 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x14 (size before relaxing) + .literal.get_rtc_dbias_by_efuse + 0x4207b104 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x1c (size before relaxing) + .literal.rtc_set_stored_dbias + 0x4207b10c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x24 (size before relaxing) + .literal.calibrate_ocode + 0x4207b11c 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x50 (size before relaxing) + .literal.rtc_init + 0x4207b150 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x104 (size before relaxing) + .literal.s_sar_power_acquire + 0x4207b1e8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x30 (size before relaxing) + .literal.s_sar_power_release + 0x4207b200 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x4c (size before relaxing) + .literal.sar_periph_ctrl_init + 0x4207b214 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xc (size before relaxing) + .literal.sar_periph_ctrl_pwdet_power_acquire + 0x4207b214 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x4 (size before relaxing) + .literal.sar_periph_ctrl_pwdet_power_release + 0x4207b214 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x4 (size before relaxing) + .literal.temperature_sensor_ll_set_range + 0x4207b214 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x4 (size before relaxing) + .literal.s_sleep_hook_register + 0x4207b214 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x20 (size before relaxing) + .literal.esp_deep_sleep_register_phy_hook + 0x4207b220 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x8 (size before relaxing) + .literal.esp_sleep_sub_mode_config + 0x4207b224 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x38 (size before relaxing) + .literal.phy_set_pwdet_power + 0x4207b234 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0xc (size before relaxing) + .literal.esp_phy_efuse_get_chip_ver_pkg + 0x4207b238 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.esp_get_free_heap_size + 0x4207b23c 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x8 (size before relaxing) + .literal.esp_get_free_internal_heap_size + 0x4207b240 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x8 (size before relaxing) + .literal.esp_vApplicationIdleHook + 0x4207b244 0x8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_register_freertos_idle_hook_for_cpu + 0x4207b24c 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_register_freertos_tick_hook_for_cpu + 0x4207b250 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_register_freertos_tick_hook + 0x4207b254 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x4 (size before relaxing) + .literal.esp_deregister_freertos_idle_hook_for_cpu + 0x4207b254 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x10 (size before relaxing) + .literal.panic_print_char_uart + 0x4207b254 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_char_usb_serial_jtag + 0x4207b258 0xc esp-idf/esp_system/libesp_system.a(panic.c.obj) + .literal.panic_print_char + 0x4207b264 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_str + 0x4207b264 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.print_abort_details + 0x4207b264 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_hex + 0x4207b268 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_dec + 0x4207b268 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.esp_panic_handler_disable_timg_wdts + 0x4207b26c 0x14 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x20 (size before relaxing) + .literal.disable_all_wdts + 0x4207b280 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x14 (size before relaxing) + .literal.esp_panic_handler_enable_rtc_wdt + 0x4207b284 0x18 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x20 (size before relaxing) + .literal.esp_panic_handler_feed_wdts + 0x4207b29c 0xc esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x40 (size before relaxing) + .literal.esp_panic_handler_increment_entry_count + 0x4207b2a8 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.esp_panic_handler + 0x4207b2b0 0x30 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xa4 (size before relaxing) + .literal.esp_timer_impl_early_init + 0x4207b2e0 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x34 (size before relaxing) + .literal.esp_timer_impl_init + 0x4207b308 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x4c (size before relaxing) + .literal.mutex_delete_wrapper + 0x4207b334 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_thread_semphr_free + 0x4207b334 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.get_time_wrapper + 0x4207b334 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_clock_disable_wrapper + 0x4207b338 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_clock_enable_wrapper + 0x4207b33c 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_reset_mac_wrapper + 0x4207b340 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.esp_phy_enable_wrapper + 0x4207b344 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.esp_phy_disable_wrapper + 0x4207b348 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_post_wrapper + 0x4207b348 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.task_create_wrapper + 0x4207b348 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.task_create_pinned_to_core_wrapper + 0x4207b348 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.event_group_wait_bits_wrapper + 0x4207b348 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.queue_recv_wrapper + 0x4207b34c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.queue_send_to_front_wrapper + 0x4207b34c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_to_back_wrapper + 0x4207b34c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_wrapper + 0x4207b34c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.queue_delete_wrapper + 0x4207b34c 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .literal.queue_create_wrapper + 0x4207b350 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x14 (size before relaxing) + .literal.recursive_mutex_create_wrapper + 0x4207b35c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.mutex_create_wrapper + 0x4207b35c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_thread_semphr_get_wrapper + 0x4207b35c 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x1c (size before relaxing) + .literal.esp_cpu_intr_disable + 0x4207b368 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.esp_cpu_intr_enable + 0x4207b36c 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.set_isr_wrapper + 0x4207b370 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.set_intr_wrapper + 0x4207b370 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_create_queue + 0x4207b374 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .literal.wifi_create_queue_wrapper + 0x4207b374 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_delete_queue + 0x4207b374 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.wifi_delete_queue_wrapper + 0x4207b374 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_ap_receive + 0x4207b374 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.wifi_driver_start + 0x4207b37c 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x14 (size before relaxing) + .literal.wifi_free + 0x4207b38c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.wifi_transmit + 0x4207b38c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_create_if_driver + 0x4207b38c 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_get_if_mac + 0x4207b398 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_register_if_rxcb + 0x4207b398 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x3c (size before relaxing) + .literal.other_cpu_startup_idle_hook_cb + 0x4207b3ac 0x4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.main_task + 0x4207b3b0 0x34 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x60 (size before relaxing) + .literal.esp_startup_start_app + 0x4207b3e4 0x28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x38 (size before relaxing) + .literal.esp_startup_start_app_other_cores + 0x4207b40c 0x8 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x18 (size before relaxing) + .literal.gdma_ahb_hal_set_strategy + 0x4207b414 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x4 (size before relaxing) + .literal.gdma_ll_rx_set_burst_size + 0x4207b414 0x10 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x14 (size before relaxing) + .literal.gdma_ll_tx_set_burst_size + 0x4207b424 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x14 (size before relaxing) + .literal.gdma_ahb_hal_set_burst_size + 0x4207b424 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x8 (size before relaxing) + .literal.gdma_ahb_hal_init + 0x4207b424 0x44 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .literal.multi_heap_register_impl + 0x4207b468 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_info_impl + 0x4207b478 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x24 (size before relaxing) + .literal.control_construct + 0x4207b48c 0x28 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3c (size before relaxing) + .literal.default_walker + 0x4207b4b4 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + .literal.tlsf_walk_pool + 0x4207b4c0 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x14 (size before relaxing) + .literal.tlsf_fit_size + 0x4207b4d0 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_add_pool + 0x4207b4d0 0x1c esp-idf/heap/libheap.a(tlsf.c.obj) + 0x44 (size before relaxing) + .literal.tlsf_create + 0x4207b4ec 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.tlsf_create_with_pool + 0x4207b4f0 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.log_level_set + 0x4207b4f0 0x20 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x24 (size before relaxing) + .literal.log_level_get + 0x4207b510 0x10 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x1c (size before relaxing) + .literal.esp_log_level_set + 0x4207b520 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x4 (size before relaxing) + .literal.esp_time_impl_get_time_since_boot + 0x4207b520 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .literal.esp_time_impl_get_time + 0x4207b528 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x4 (size before relaxing) + .literal.esp_sync_timekeeping_timers + 0x4207b528 0x10 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x1c (size before relaxing) + .literal.esp_flash_read_chip_id + 0x4207b538 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_app_enable_os_functions + 0x4207b53c 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .literal.xt_int_has_handler + 0x4207b548 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .literal.xt_set_interrupt_handler + 0x4207b550 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0xc (size before relaxing) + .literal.esp_supplicant_deinit + 0x4207b554 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x14 (size before relaxing) + .text.esp_supplicant_init + 0x4207b554 0xba esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xce (size before relaxing) + 0x4207b554 esp_supplicant_init + *fill* 0x4207b60e 0x2 + .text.esp_supplicant_deinit + 0x4207b610 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x26 (size before relaxing) + 0x4207b610 esp_supplicant_deinit + *fill* 0x4207b62a 0x2 + .text.ieee80211_handle_rx_frm + 0x4207b62c 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_supplicant_unset_all_appie + 0x4207b64c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4207b64c esp_supplicant_unset_all_appie + .text.esp_supplicant_common_deinit + 0x4207b668 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x1e (size before relaxing) + 0x4207b668 esp_supplicant_common_deinit + *fill* 0x4207b683 0x1 + .text.esp_supplicant_common_init + 0x4207b684 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x34 (size before relaxing) + 0x4207b684 esp_supplicant_common_init + .text.esp_set_assoc_ie + 0x4207b6b4 0x4b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4207b6b4 esp_set_assoc_ie + *fill* 0x4207b6ff 0x1 + .text.wps_get_wps_sm_cb + 0x4207b700 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + 0x4207b700 wps_get_wps_sm_cb + *fill* 0x4207b70a 0x2 + .text.wpa3_check_sae_rejected_groups + 0x4207b70c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text.wpa3_parse_sae_commit + 0x4207b750 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xf4 (size before relaxing) + .text.wpa3_parse_sae_confirm + 0x4207b83c 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x41 (size before relaxing) + *fill* 0x4207b879 0x3 + .text.wpa3_build_sae_commit + 0x4207b87c 0x275 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x2a1 (size before relaxing) + *fill* 0x4207baf1 0x3 + .text.wpa3_build_sae_confirm + 0x4207baf4 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x68 (size before relaxing) + .text.wpa3_build_sae_msg + 0x4207bb50 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text.esp_wpa3_free_sae_data + 0x4207bbac 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4e (size before relaxing) + 0x4207bbac esp_wpa3_free_sae_data + *fill* 0x4207bbf2 0x2 + .text.wpa3_parse_sae_msg + 0x4207bbf4 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x30 (size before relaxing) + .text.esp_wifi_register_wpa3_cb + 0x4207bc20 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4207bc20 esp_wifi_register_wpa3_cb + *fill* 0x4207bc31 0x3 + .text.wpa3_hostap_post_evt + 0x4207bc34 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4207bc34 wpa3_hostap_post_evt + *fill* 0x4207bce6 0x2 + .text.wpa3_hostap_handle_auth + 0x4207bce8 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xaa (size before relaxing) + *fill* 0x4207bd8a 0x2 + .text.wpa3_hostap_auth_init + 0x4207bd8c 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4207bd8c wpa3_hostap_auth_init + .text.wpa3_hostap_auth_deinit + 0x4207be24 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4207be24 wpa3_hostap_auth_deinit + .text.esp_send_sae_auth_reply + 0x4207be3c 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4207be3c esp_send_sae_auth_reply + *fill* 0x4207beb9 0x3 + .text.wpa3_process_rx_commit + 0x4207bebc 0xe2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xfa (size before relaxing) + *fill* 0x4207bf9e 0x2 + .text.wpa3_process_rx_confirm + 0x4207bfa0 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x104 (size before relaxing) + .text.esp_wpa3_hostap_task + 0x4207c08c 0xab esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xb3 (size before relaxing) + *fill* 0x4207c137 0x1 + .text.esp_wifi_register_wpa3_ap_cb + 0x4207c138 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4207c138 esp_wifi_register_wpa3_ap_cb + *fill* 0x4207c143 0x1 + .text.owe_build_dhie + 0x4207c144 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x18 (size before relaxing) + 0x4207c144 owe_build_dhie + .text.owe_deinit + 0x4207c158 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x36 (size before relaxing) + 0x4207c158 owe_deinit + *fill* 0x4207c186 0x2 + .text.esp_wifi_register_owe_cb + 0x4207c188 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x4207c188 esp_wifi_register_owe_cb + *fill* 0x4207c199 0x3 + .text.hostapd_get_hapd_data + 0x4207c19c 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x4207c19c hostapd_get_hapd_data + *fill* 0x4207c1a6 0x2 + .text.hostap_init + 0x4207c1a8 0x2bc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x2f8 (size before relaxing) + 0x4207c1a8 hostap_init + .text.hostapd_cleanup + 0x4207c464 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x7a (size before relaxing) + 0x4207c464 hostapd_cleanup + *fill* 0x4207c4d6 0x2 + .text.hostap_deinit + 0x4207c4d8 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x50 (size before relaxing) + 0x4207c4d8 hostap_deinit + *fill* 0x4207c51d 0x3 + .text.esp_wifi_build_rsnxe + 0x4207c520 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x4207c520 esp_wifi_build_rsnxe + *fill* 0x4207c572 0x2 + .text.esp_send_assoc_resp + 0x4207c574 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x78 (size before relaxing) + 0x4207c574 esp_send_assoc_resp + .text.hostap_new_assoc_sta + 0x4207c5e0 0x10a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x11e (size before relaxing) + 0x4207c5e0 hostap_new_assoc_sta + *fill* 0x4207c6ea 0x2 + .text.wpa_ap_remove + 0x4207c6ec 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x5e (size before relaxing) + 0x4207c6ec wpa_ap_remove + *fill* 0x4207c742 0x2 + .text.ecp_opp 0x4207c744 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3a (size before relaxing) + *fill* 0x4207c77a 0x2 + .text.crypto_alloc_key + 0x4207c77c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x18 (size before relaxing) + .text.crypto_ec_init + 0x4207c790 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x44 (size before relaxing) + 0x4207c790 crypto_ec_init + .text.crypto_ec_deinit + 0x4207c7cc 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4207c7cc crypto_ec_deinit + *fill* 0x4207c7e3 0x1 + .text.crypto_ec_point_init + 0x4207c7e4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1c (size before relaxing) + 0x4207c7e4 crypto_ec_point_init + .text.crypto_ec_prime_len + 0x4207c7fc 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x4207c7fc crypto_ec_prime_len + .text.crypto_ec_order_len + 0x4207c808 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x4207c808 crypto_ec_order_len + *fill* 0x4207c815 0x3 + .text.crypto_ec_prime_len_bits + 0x4207c818 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x4207c818 crypto_ec_prime_len_bits + .text.crypto_ec_get_a + 0x4207c824 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4a (size before relaxing) + 0x4207c824 crypto_ec_get_a + *fill* 0x4207c862 0x2 + .text.crypto_ec_point_deinit + 0x4207c864 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x4207c864 crypto_ec_point_deinit + *fill* 0x4207c876 0x2 + .text.crypto_ec_point_to_bin + 0x4207c878 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4a (size before relaxing) + 0x4207c878 crypto_ec_point_to_bin + *fill* 0x4207c8ba 0x2 + .text.crypto_ec_point_from_bin + 0x4207c8bc 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x64 (size before relaxing) + 0x4207c8bc crypto_ec_point_from_bin + .text.crypto_ec_point_add + 0x4207c910 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3e (size before relaxing) + 0x4207c910 crypto_ec_point_add + *fill* 0x4207c946 0x2 + .text.crypto_ec_point_mul + 0x4207c948 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x63 (size before relaxing) + 0x4207c948 crypto_ec_point_mul + *fill* 0x4207c997 0x1 + .text.crypto_ec_point_invert + 0x4207c998 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x18 (size before relaxing) + 0x4207c998 crypto_ec_point_invert + .text.crypto_ec_point_compute_y_sqr + 0x4207c9ac 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x102 (size before relaxing) + 0x4207c9ac crypto_ec_point_compute_y_sqr + *fill* 0x4207ca7a 0x2 + .text.crypto_ec_point_solve_y_coord + 0x4207ca7c 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc2 (size before relaxing) + 0x4207ca7c crypto_ec_point_solve_y_coord + *fill* 0x4207cb1e 0x2 + .text.crypto_ec_point_is_at_infinity + 0x4207cb20 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x4207cb20 crypto_ec_point_is_at_infinity + .text.crypto_ec_point_is_on_curve + 0x4207cb2c 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x9c (size before relaxing) + 0x4207cb2c crypto_ec_point_is_on_curve + .text.crypto_ec_point_cmp + 0x4207cbb0 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4207cbb0 crypto_ec_point_cmp + *fill* 0x4207cbc1 0x3 + .text.crypto_ec_key_set_pub + 0x4207cbc4 0xab esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xd6 (size before relaxing) + 0x4207cbc4 crypto_ec_key_set_pub + *fill* 0x4207cc6f 0x1 + .text.crypto_ec_key_group + 0x4207cc70 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x2d (size before relaxing) + 0x4207cc70 crypto_ec_key_group + *fill* 0x4207cc99 0x3 + .text.crypto_ecdh_deinit + 0x4207cc9c 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4207cc9c crypto_ecdh_deinit + *fill* 0x4207ccb3 0x1 + .text.crypto_ecdh_init + 0x4207ccb4 0x89 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xb1 (size before relaxing) + 0x4207ccb4 crypto_ecdh_init + *fill* 0x4207cd3d 0x3 + .text.crypto_ecdh_get_pubkey + 0x4207cd40 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x50 (size before relaxing) + 0x4207cd40 crypto_ecdh_get_pubkey + .text.crypto_ec_key_parse_pub + 0x4207cd8c 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x38 (size before relaxing) + 0x4207cd8c crypto_ec_key_parse_pub + .text.crypto_ec_key_deinit + 0x4207cdbc 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x4207cdbc crypto_ec_key_deinit + *fill* 0x4207cdce 0x2 + .text.crypto_ecdh_set_peerkey + 0x4207cdd0 0x1f5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x225 (size before relaxing) + 0x4207cdd0 crypto_ecdh_set_peerkey + *fill* 0x4207cfc5 0x3 + .text.crypto_ec_key_verify_signature + 0x4207cfc8 0x75 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x81 (size before relaxing) + 0x4207cfc8 crypto_ec_key_verify_signature + *fill* 0x4207d03d 0x3 + .text.timeout_exists + 0x4207d040 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_remove_blocking_timeout + 0x4207d064 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x42 (size before relaxing) + *fill* 0x4207d0a2 0x2 + .text.eloop_run_timer + 0x4207d0a4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_remove_timeout + 0x4207d0bc 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4c (size before relaxing) + .text.eloop_init + 0x4207d104 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4207d104 eloop_init + *fill* 0x4207d172 0x2 + .text.eloop_register_timeout + 0x4207d174 0x172 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x176 (size before relaxing) + 0x4207d174 eloop_register_timeout + *fill* 0x4207d2e6 0x2 + .text.eloop_cancel_timeout + 0x4207d2e8 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4207d2e8 eloop_cancel_timeout + *fill* 0x4207d322 0x2 + .text.eloop_run + 0x4207d324 0x146 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4207d324 eloop_run + *fill* 0x4207d46a 0x2 + .text.eloop_run_wrapper + 0x4207d46c 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0xd (size before relaxing) + *fill* 0x4207d476 0x2 + .text.eloop_destroy + 0x4207d478 0xbe esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0xc2 (size before relaxing) + 0x4207d478 eloop_destroy + *fill* 0x4207d536 0x2 + .text.hostapd_derive_psk + 0x4207d538 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + *fill* 0x4207d566 0x2 + .text.hostapd_setup_sae_pt + 0x4207d568 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x62 (size before relaxing) + 0x4207d568 hostapd_setup_sae_pt + *fill* 0x4207d5c6 0x2 + .text.hostapd_setup_wpa_psk + 0x4207d5c8 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x3e (size before relaxing) + 0x4207d5c8 hostapd_setup_wpa_psk + *fill* 0x4207d602 0x2 + .text.hostapd_get_psk + 0x4207d604 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4207d604 hostapd_get_psk + *fill* 0x4207d63b 0x1 + .text.hostapd_config_clear_wpa_psk + 0x4207d63c 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4207d63c hostapd_config_clear_wpa_psk + *fill* 0x4207d659 0x3 + .text.hostapd_config_free_bss + 0x4207d65c 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x1f (size before relaxing) + 0x4207d65c hostapd_config_free_bss + *fill* 0x4207d677 0x1 + .text.wpa_auth_get_sm + 0x4207d678 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207d69d 0x3 + .text.wpa_auth_add_sm + 0x4207d6a0 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207d6df 0x1 + .text.wpa_auth_del_sm + 0x4207d6e0 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207d70e 0x2 + .text.wpa_use_aes_cmac + 0x4207d710 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207d723 0x1 + .text.wpa_receive_error_report + 0x4207d724 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .text.wpa_free_sta_sm + 0x4207d730 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x46 (size before relaxing) + *fill* 0x4207d772 0x2 + .text.sm_WPA_PTK_AUTHENTICATION_Enter + 0x4207d774 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207d7a9 0x3 + .text.ieee80211w_kde_len + 0x4207d7ac 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207d7d1 0x3 + .text.wpa_auth_sm_ptk_update + 0x4207d7d4 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207d7f7 0x1 + .text.wpa_gmk_to_gtk + 0x4207d7f8 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x57 (size before relaxing) + *fill* 0x4207d84b 0x1 + .text.wpa_gtk_update + 0x4207d84c 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xa0 (size before relaxing) + .text.wpa_group_gtk_init + 0x4207d8dc 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_set_key + 0x4207d910 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x6e (size before relaxing) + *fill* 0x4207d97a 0x2 + .text.wpa_group_config_group_keys + 0x4207d97c 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x6b (size before relaxing) + *fill* 0x4207d9df 0x1 + .text.wpa_group_setkeysdone + 0x4207d9e0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .text.wpa_group_init_gmk_and_counter + 0x4207da00 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x7a (size before relaxing) + *fill* 0x4207da6e 0x2 + .text.wpa_group_ensure_init + 0x4207da70 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x32 (size before relaxing) + *fill* 0x4207da9a 0x2 + .text.sm_WPA_PTK_AUTHENTICATION2_Enter + 0x4207da9c 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x42 (size before relaxing) + *fill* 0x4207dada 0x2 + .text.wpa_replay_counter_valid + 0x4207dadc 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207db0d 0x3 + .text.wpa_replay_counter_mark_invalid + 0x4207db10 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207db3d 0x3 + .text.wpa_derive_ptk + 0x4207db40 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_verify_key_mic + 0x4207db6c 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x7c (size before relaxing) + .text.wpa_sta_disconnect + 0x4207dbe4 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207dbf3 0x1 + .text.sm_WPA_PTK_DISCONNECT_Enter + 0x4207dbf4 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_PTKINITDONE_Enter + 0x4207dc28 0x9b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xab (size before relaxing) + *fill* 0x4207dcc3 0x1 + .text.ieee80211w_kde_add + 0x4207dcc4 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x84 (size before relaxing) + .text.resend_eapol_handle + 0x4207dd38 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4207dd38 resend_eapol_handle + .text.wpa_auth_for_each_sta + 0x4207dd50 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x30 (size before relaxing) + 0x4207dd50 wpa_auth_for_each_sta + .text.wpa_group_setkeys + 0x4207dd7c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_group_sm_step + 0x4207ddc0 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_rekey_gtk + 0x4207de14 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3c (size before relaxing) + .text.wpa_group_init + 0x4207de4c 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5e (size before relaxing) + *fill* 0x4207dea2 0x2 + .text.wpa_auth_pmksa_free_cb + 0x4207dea4 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207deb6 0x2 + .text.wpa_init + 0x4207deb8 0xb3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xb7 (size before relaxing) + 0x4207deb8 wpa_init + *fill* 0x4207df6b 0x1 + .text.wpa_auth_sta_init + 0x4207df6c 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4207df6c wpa_auth_sta_init + .text.wpa_auth_sta_deinit + 0x4207df9c 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x42 (size before relaxing) + 0x4207df9c wpa_auth_sta_deinit + *fill* 0x4207dfd7 0x1 + .text.wpa_auth_pmksa_add_sae + 0x4207dfd8 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3d (size before relaxing) + 0x4207dfd8 wpa_auth_pmksa_add_sae + *fill* 0x4207e011 0x3 + .text.wpa_auth_add_sae_pmkid + 0x4207e014 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4207e014 wpa_auth_add_sae_pmkid + *fill* 0x4207e036 0x2 + .text.__wpa_send_eapol + 0x4207e038 0x37e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x392 (size before relaxing) + 0x4207e038 __wpa_send_eapol + *fill* 0x4207e3b6 0x2 + .text.wpa_send_eapol + 0x4207e3b8 0x6f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x73 (size before relaxing) + *fill* 0x4207e427 0x1 + .text.sm_WPA_PTK_PTKSTART_Enter + 0x4207e428 0x104 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_PTKINITNEGOTIATING_Enter + 0x4207e52c 0x19b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1ab (size before relaxing) + *fill* 0x4207e6c7 0x1 + .text.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter + 0x4207e6c8 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xfc (size before relaxing) + .text.sm_WPA_PTK_GROUP_Step + 0x4207e7b4 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xbc (size before relaxing) + .text.wpa_remove_ptk + 0x4207e868 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3a (size before relaxing) + 0x4207e868 wpa_remove_ptk + *fill* 0x4207e89e 0x2 + .text.sm_WPA_PTK_INITIALIZE_Enter + 0x4207e8a0 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5e (size before relaxing) + *fill* 0x4207e8fa 0x2 + .text.wpa_deinit + 0x4207e8fc 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x46 (size before relaxing) + 0x4207e8fc wpa_deinit + *fill* 0x4207e93a 0x2 + .text.wpa_auth_uses_sae + 0x4207e93c 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4207e93c wpa_auth_uses_sae + *fill* 0x4207e956 0x2 + .text.wpa_auth_get_psk + 0x4207e958 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4e (size before relaxing) + *fill* 0x4207e9a2 0x2 + .text.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter + 0x4207e9a4 0x17e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18a (size before relaxing) + *fill* 0x4207eb22 0x2 + .text.sm_WPA_PTK_INITPSK_Enter + 0x4207eb24 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4207eb8d 0x3 + .text.sm_WPA_PTK_Step + 0x4207eb90 0x250 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x280 (size before relaxing) + .text.wpa_sm_step + 0x4207ede0 0xad esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xb5 (size before relaxing) + *fill* 0x4207ee8d 0x3 + .text.wpa_group_update_sta + 0x4207ee90 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_rekey_ptk + 0x4207eed0 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x16 (size before relaxing) + *fill* 0x4207eee2 0x2 + .text.wpa_auth_sta_associated + 0x4207eee4 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x7d (size before relaxing) + 0x4207eee4 wpa_auth_sta_associated + *fill* 0x4207ef5d 0x3 + .text.wpa_receive + 0x4207ef60 0x3ee esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x422 (size before relaxing) + 0x4207ef60 wpa_receive + *fill* 0x4207f34e 0x2 + .text.hostap_eapol_resend_process + 0x4207f350 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x2c (size before relaxing) + 0x4207f350 hostap_eapol_resend_process + .text.wpa_parse_generic + 0x4207f378 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + *fill* 0x4207f4ae 0x2 + .text.wpa_write_wpa_ie + 0x4207f4b0 0xc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0xc6 (size before relaxing) + *fill* 0x4207f572 0x2 + .text.wpa_write_rsn_ie + 0x4207f574 0x261 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x265 (size before relaxing) + 0x4207f574 wpa_write_rsn_ie + *fill* 0x4207f7d5 0x3 + .text.wpa_write_rsnxe + 0x4207f7d8 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x4207f7d8 wpa_write_rsnxe + *fill* 0x4207f812 0x2 + .text.wpa_auth_gen_wpa_ie + 0x4207f814 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x94 (size before relaxing) + 0x4207f814 wpa_auth_gen_wpa_ie + .text.wpa_add_kde + 0x4207f89c 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x4207f89c wpa_add_kde + .text.wpa_validate_wpa_ie + 0x4207f8e4 0x321 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x339 (size before relaxing) + 0x4207f8e4 wpa_validate_wpa_ie + *fill* 0x4207fc05 0x3 + .text.wpa_parse_kde_ies + 0x4207fc08 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x96 (size before relaxing) + 0x4207fc08 wpa_parse_kde_ies + *fill* 0x4207fc9a 0x2 + .text._pmksa_cache_free_entry + 0x4207fc9c 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x2b (size before relaxing) + *fill* 0x4207fcc3 0x1 + .text.pmksa_cache_set_expiration + 0x4207fcc4 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x40 (size before relaxing) + .text.pmksa_cache_link_entry + 0x4207fd00 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + *fill* 0x4207fd5e 0x2 + .text.pmksa_cache_free_entry + 0x4207fd60 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4207fd60 pmksa_cache_free_entry + *fill* 0x4207fdd2 0x2 + .text.pmksa_cache_expire + 0x4207fdd4 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x3a (size before relaxing) + *fill* 0x4207fe07 0x1 + .text.pmksa_cache_auth_create_entry + 0x4207fe08 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4207fe08 pmksa_cache_auth_create_entry + .text.pmksa_cache_auth_deinit + 0x4207fed4 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4a (size before relaxing) + 0x4207fed4 pmksa_cache_auth_deinit + *fill* 0x4207ff1a 0x2 + .text.pmksa_cache_auth_get + 0x4207ff1c 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4207ff1c pmksa_cache_auth_get + *fill* 0x4207ff76 0x2 + .text.pmksa_cache_auth_add_entry + 0x4207ff78 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x49 (size before relaxing) + 0x4207ff78 pmksa_cache_auth_add_entry + *fill* 0x4207ffb9 0x3 + .text.pmksa_cache_auth_add + 0x4207ffbc 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x3b (size before relaxing) + 0x4207ffbc pmksa_cache_auth_add + *fill* 0x4207fff3 0x1 + .text.pmksa_cache_auth_init + 0x4207fff4 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4207fff4 pmksa_cache_auth_init + .text.ap_sta_hash_del + 0x42080010 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_get_sta + 0x4208005c 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x4208005c ap_get_sta + *fill* 0x42080086 0x2 + .text.ap_free_sta + 0x42080088 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x6e (size before relaxing) + 0x42080088 ap_free_sta + *fill* 0x420800ee 0x2 + .text.ap_sta_add + 0x420800f0 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x6c (size before relaxing) + 0x420800f0 ap_sta_add + .text.sae_check_big_sync + 0x42080154 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x42080181 0x3 + .text.check_sae_rejected_groups + 0x42080184 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x54 (size before relaxing) + .text.auth_build_sae_commit + 0x420801d4 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xfc (size before relaxing) + .text.auth_sae_send_commit + 0x420802c4 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x7e (size before relaxing) + *fill* 0x4208033e 0x2 + .text.auth_build_sae_confirm + 0x42080340 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x2c (size before relaxing) + .text.auth_sae_send_confirm + 0x42080364 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x38 (size before relaxing) + .text.sae_accept_sta + 0x42080394 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x50 (size before relaxing) + 0x42080394 sae_accept_sta + .text.sae_sm_step + 0x420803e0 0x1ce esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x202 (size before relaxing) + *fill* 0x420805ae 0x2 + .text.handle_auth_sae + 0x420805b0 0x2e7 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x31f (size before relaxing) + 0x420805b0 handle_auth_sae + *fill* 0x42080897 0x1 + .text.auth_sae_queue + 0x42080898 0xd7 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x42080898 auth_sae_queue + *fill* 0x4208096f 0x1 + .text.wpabuf_put_le16 + 0x42080970 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .text.comeback_token_hash + 0x42080988 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x26 (size before relaxing) + 0x42080988 comeback_token_hash + *fill* 0x420809aa 0x2 + .text.check_comeback_token + 0x420809ac 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x8e (size before relaxing) + 0x420809ac check_comeback_token + *fill* 0x42080a32 0x2 + .text.auth_build_token_req + 0x42080a34 0x112 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x13a (size before relaxing) + 0x42080a34 auth_build_token_req + *fill* 0x42080b46 0x2 + .text.sae_parse_token_container + 0x42080b48 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_parse_akm_suite_selector + 0x42080b64 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x42080bca 0x2 + .text.hkdf_extract + 0x42080bcc 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x42080bed 0x3 + .text.sae_pwd_seed + 0x42080bf0 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x42080c31 0x3 + .text.sae_cn_confirm + 0x42080c34 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x90 (size before relaxing) + .text.sae_cn_confirm_ffc + 0x42080cbc 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x72 (size before relaxing) + *fill* 0x42080d26 0x2 + .text.hkdf_expand + 0x42080d28 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2d (size before relaxing) + *fill* 0x42080d51 0x3 + .text.sae_derive_commit_element_ffc + 0x42080d54 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x56 (size before relaxing) + *fill* 0x42080da2 0x2 + .text.sae_derive_k_ffc + 0x42080da4 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x90 (size before relaxing) + .text.debug_print_bignum + 0x42080e1c 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2a (size before relaxing) + *fill* 0x42080e42 0x2 + .text.sswu 0x42080e44 0x7cd esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x925 (size before relaxing) + *fill* 0x42081611 0x3 + .text.sae_cn_confirm_ecc + 0x42081614 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x71 (size before relaxing) + *fill* 0x4208167d 0x3 + .text.sae_max_min_addr + 0x42081680 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_pwd_seed_key + 0x420816a4 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x420816ee 0x2 + .text.sae_parse_password_identifier + 0x420816f0 0xc9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x420817b9 0x3 + .text.sae_test_pwd_seed_ffc + 0x420817bc 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x138 (size before relaxing) + .text.sae_derive_pwe_ffc + 0x420818d4 0x13e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x156 (size before relaxing) + *fill* 0x42081a12 0x2 + .text.sae_test_pwd_seed_ecc + 0x42081a14 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc2 (size before relaxing) + *fill* 0x42081aba 0x2 + .text.sae_derive_pwe_ecc + 0x42081abc 0x359 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x39d (size before relaxing) + *fill* 0x42081e15 0x3 + .text.sae_derive_commit_element_ecc + 0x42081e18 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_derive_commit + 0x42081e70 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xb2 (size before relaxing) + *fill* 0x42081f12 0x2 + .text.wpabuf_put_le16 + 0x42081f14 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.wpabuf_put_data + 0x42081f2c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.wpabuf_put_str + 0x42081f48 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1a (size before relaxing) + *fill* 0x42081f5e 0x2 + .text.sae_parse_rejected_groups + 0x42081f60 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x92 (size before relaxing) + *fill* 0x42081fe2 0x2 + .text.sae_derive_k_ecc + 0x42081fe4 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x9c (size before relaxing) + .text.sae_kdf_hash + 0x42082068 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x4208208d 0x3 + .text.sae_parse_commit_scalar + 0x42082090 0x95 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa5 (size before relaxing) + *fill* 0x42082125 0x3 + .text.sae_parse_commit_element_ffc + 0x42082128 0xfa esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x122 (size before relaxing) + *fill* 0x42082222 0x2 + .text.sae_parse_commit_element_ecc + 0x42082224 0x9d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa9 (size before relaxing) + *fill* 0x420822c1 0x3 + .text.sae_parse_commit_element + 0x420822c4 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x27 (size before relaxing) + *fill* 0x420822e8 0x0 + .text.sae_clear_temp_data + 0x420822e8 0x8f esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc3 (size before relaxing) + 0x420822e8 sae_clear_temp_data + *fill* 0x42082377 0x1 + .text.sae_clear_data + 0x42082378 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x33 (size before relaxing) + 0x42082378 sae_clear_data + *fill* 0x420823a3 0x1 + .text.sae_set_group + 0x420823a4 0xc5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xe5 (size before relaxing) + 0x420823a4 sae_set_group + *fill* 0x42082469 0x3 + .text.sae_derive_pt_ecc + 0x4208246c 0x17c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1cc (size before relaxing) + .text.sae_derive_pt_ffc + 0x420825e8 0x1d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x226 (size before relaxing) + *fill* 0x420827be 0x2 + .text.sae_derive_keys + 0x420827c0 0x252 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x282 (size before relaxing) + *fill* 0x42082a12 0x2 + .text.sae_derive_pwe_from_pt_ecc + 0x42082a14 0x135 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x175 (size before relaxing) + 0x42082a14 sae_derive_pwe_from_pt_ecc + *fill* 0x42082b49 0x3 + .text.sae_derive_pwe_from_pt_ffc + 0x42082b4c 0x14a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18a (size before relaxing) + 0x42082b4c sae_derive_pwe_from_pt_ffc + *fill* 0x42082c96 0x2 + .text.sae_deinit_pt + 0x42082c98 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x33 (size before relaxing) + 0x42082c98 sae_deinit_pt + *fill* 0x42082cc3 0x1 + .text.sae_derive_pt_group + 0x42082cc4 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x86 (size before relaxing) + *fill* 0x42082d3e 0x2 + .text.sae_derive_pt + 0x42082d40 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x42082d40 sae_derive_pt + *fill* 0x42082d8a 0x2 + .text.sae_prepare_commit + 0x42082d8c 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x60 (size before relaxing) + 0x42082d8c sae_prepare_commit + .text.sae_prepare_commit_pt + 0x42082de8 0x11e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x142 (size before relaxing) + 0x42082de8 sae_prepare_commit_pt + *fill* 0x42082f06 0x2 + .text.sae_process_commit + 0x42082f08 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x56 (size before relaxing) + 0x42082f08 sae_process_commit + *fill* 0x42082f56 0x2 + .text.sae_write_commit + 0x42082f58 0x1bc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x20c (size before relaxing) + 0x42082f58 sae_write_commit + .text.sae_group_allowed + 0x42083114 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x42083114 sae_group_allowed + *fill* 0x42083185 0x3 + .text.sae_parse_commit + 0x42083188 0x13a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x15a (size before relaxing) + 0x42083188 sae_parse_commit + *fill* 0x420832c2 0x2 + .text.sae_write_confirm + 0x420832c4 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xae (size before relaxing) + 0x420832c4 sae_write_confirm + *fill* 0x42083362 0x2 + .text.sae_check_confirm + 0x42083364 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x42083364 sae_check_confirm + .text.dragonfly_get_rand_1_to_p_1 + 0x42083428 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x86 (size before relaxing) + *fill* 0x42083496 0x2 + .text.dragonfly_get_rand_2_to_r_1 + 0x42083498 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x3a (size before relaxing) + *fill* 0x420834ca 0x2 + .text.dragonfly_get_random_qr_qnr + 0x420834cc 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x91 (size before relaxing) + 0x420834cc dragonfly_get_random_qr_qnr + *fill* 0x4208354d 0x3 + .text.dragonfly_is_quadratic_residue_blind + 0x42083550 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x110 (size before relaxing) + 0x42083550 dragonfly_is_quadratic_residue_blind + .text.dragonfly_generate_scalar + 0x42083640 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x60 (size before relaxing) + 0x42083640 dragonfly_generate_scalar + .text.dragonfly_sqrt + 0x42083690 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0xbc (size before relaxing) + 0x42083690 dragonfly_sqrt + .text.wpa_kck_len + 0x42083730 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x4208375e 0x2 + .text.wpa_kek_len + 0x42083760 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x4208379d 0x3 + .text.rsn_selector_to_bitfield + 0x420837a0 0x85 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x42083825 0x3 + .text.rsn_key_mgmt_to_bitfield + 0x42083828 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x420838a5 0x3 + .text.wpa_selector_to_bitfield + 0x420838a8 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x42083909 0x3 + .text.wpa_key_mgmt_to_bitfield + 0x4208390c 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x42083952 0x2 + .text.wpa_mic_len + 0x42083954 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x42083954 wpa_mic_len + *fill* 0x42083972 0x2 + .text.wpa_cipher_valid_mgmt_group + 0x42083974 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x42083974 wpa_cipher_valid_mgmt_group + *fill* 0x420839a2 0x2 + .text.wpa_parse_wpa_ie_rsnxe + 0x420839a4 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x36 (size before relaxing) + 0x420839a4 wpa_parse_wpa_ie_rsnxe + *fill* 0x420839d6 0x2 + .text.wpa_parse_wpa_ie_rsn + 0x420839d8 0x1c5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x1cd (size before relaxing) + 0x420839d8 wpa_parse_wpa_ie_rsn + *fill* 0x42083b9d 0x3 + .text.wpa_parse_wpa_ie_wpa + 0x42083ba0 0x191 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x195 (size before relaxing) + 0x42083ba0 wpa_parse_wpa_ie_wpa + *fill* 0x42083d31 0x3 + .text.wpa_use_akm_defined + 0x42083d34 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x42083d34 wpa_use_akm_defined + .text.wpa_use_aes_key_wrap + 0x42083d7c 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x42083d7c wpa_use_aes_key_wrap + *fill* 0x42083dda 0x2 + .text.wpa_eapol_key_mic + 0x42083ddc 0xf2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xfa (size before relaxing) + 0x42083ddc wpa_eapol_key_mic + *fill* 0x42083ece 0x2 + .text.wpa_akm_to_suite + 0x42083ed0 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x42083ed0 wpa_akm_to_suite + *fill* 0x42083f41 0x3 + .text.wpa_compare_rsn_ie + 0x42083f44 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x42083f44 wpa_compare_rsn_ie + *fill* 0x42083f7a 0x2 + .text.rsn_pmkid + 0x42083f7c 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x5b (size before relaxing) + 0x42083f7c rsn_pmkid + *fill* 0x42083fd3 0x1 + .text.wpa_cipher_key_len + 0x42083fd4 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x42083fd4 wpa_cipher_key_len + *fill* 0x42084031 0x3 + .text.wpa_pmk_to_ptk + 0x42084034 0x183 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18f (size before relaxing) + 0x42084034 wpa_pmk_to_ptk + *fill* 0x420841b7 0x1 + .text.wpa_cipher_to_suite + 0x420841b8 0x89 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x420841b8 wpa_cipher_to_suite + *fill* 0x42084241 0x3 + .text.hmac_sha256_kdf + 0x42084244 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0xe8 (size before relaxing) + 0x42084244 hmac_sha256_kdf + .text.dh_groups_get + 0x42084324 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x42084324 dh_groups_get + *fill* 0x4208434a 0x2 + .text.sha256_prf_bits + 0x4208434c 0xe2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0xea (size before relaxing) + 0x4208434c sha256_prf_bits + *fill* 0x4208442e 0x2 + .text.sha256_prf + 0x42084430 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x42084430 sha256_prf + .text.sha1_prf + 0x42084450 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x42084450 sha1_prf + *fill* 0x420844ea 0x2 + .text._pmksa_cache_free_entry + 0x420844ec 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10 (size before relaxing) + *fill* 0x420844f9 0x3 + .text.pmksa_cache_free_entry + 0x420844fc 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x4208451a 0x2 + .text.pmksa_cache_set_expiration + 0x4208451c 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3f (size before relaxing) + *fill* 0x42084557 0x1 + .text.pmksa_cache_expire + 0x42084558 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3f (size before relaxing) + *fill* 0x42084590 0x0 + .text.pmksa_cache_flush + 0x42084590 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x42084590 pmksa_cache_flush + *fill* 0x420845e7 0x1 + .text.pmksa_cache_add_entry + 0x420845e8 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10c (size before relaxing) + 0x420845e8 pmksa_cache_add_entry + .text.pmksa_cache_add + 0x420846f0 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x420846f0 pmksa_cache_add + *fill* 0x420847be 0x2 + .text.pmksa_cache_clone_entry + 0x420847c0 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x42084803 0x1 + .text.pmksa_cache_deinit + 0x42084804 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3b (size before relaxing) + 0x42084804 pmksa_cache_deinit + *fill* 0x4208483b 0x1 + .text.pmksa_cache_get + 0x4208483c 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4208483c pmksa_cache_get + *fill* 0x42084875 0x3 + .text.pmksa_cache_get_opportunistic + 0x42084878 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x42084878 pmksa_cache_get_opportunistic + *fill* 0x420848a6 0x2 + .text.pmksa_cache_set_current + 0x420848a8 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x66 (size before relaxing) + 0x420848a8 pmksa_cache_set_current + *fill* 0x42084906 0x2 + .text.pmksa_cache_init + 0x42084908 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x42084908 pmksa_cache_init + *fill* 0x4208492a 0x2 + .text.wpa_key_mgmt_supports_caching + 0x4208492c 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x42084963 0x1 + .text.wpa_supplicant_verify_eapol_key_mic + 0x42084964 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xec (size before relaxing) + .text.is_wpa2_enterprise_connection + 0x42084a48 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2c (size before relaxing) + .text.wpa_derive_ptk + 0x42084a70 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_supplicant_check_group_cipher + 0x42084aa4 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3a (size before relaxing) + *fill* 0x42084ada 0x2 + .text.wpa_supplicant_decrypt_key_data + 0x42084adc 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc0 (size before relaxing) + .text.wpa_sm_set_seq + 0x42084b94 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x42084bd3 0x1 + .text.wpa_supplicant_install_igtk + 0x42084bd4 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x52 (size before relaxing) + *fill* 0x42084c22 0x2 + .text.ieee80211w_set_keys + 0x42084c24 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x48 (size before relaxing) + .text.wpa_sm_get_key + 0x42084c64 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x42084c81 0x3 + .text.wpa_supplicant_gtk_in_use + 0x42084c84 0xb1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xb5 (size before relaxing) + *fill* 0x42084d35 0x3 + .text.wpa_sm_pmksa_free_cb + 0x42084d38 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpabuf_put_le16 + 0x42084d6c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpabuf_put_data + 0x42084d84 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.cipher_type_map_supp_to_public + 0x42084da0 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x42084da0 cipher_type_map_supp_to_public + *fill* 0x42084e36 0x2 + .text.cipher_type_map_public_to_supp + 0x42084e38 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x42084e38 cipher_type_map_public_to_supp + *fill* 0x42084eae 0x2 + .text.wpa_eapol_key_send + 0x42084eb0 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8a (size before relaxing) + 0x42084eb0 wpa_eapol_key_send + *fill* 0x42084f36 0x2 + .text.wpa_sm_key_request + 0x42084f38 0x132 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x13a (size before relaxing) + *fill* 0x4208506a 0x2 + .text.wpa_sm_rekey_ptk + 0x4208506c 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x12 (size before relaxing) + *fill* 0x4208507a 0x2 + .text.wpa_supplicant_send_4_of_4 + 0x4208507c 0xee esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xf2 (size before relaxing) + *fill* 0x4208516a 0x2 + .text.wpa_supplicant_send_2_of_2 + 0x4208516c 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xf4 (size before relaxing) + .text.wpa_supplicant_send_2_of_4 + 0x4208525c 0x124 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x128 (size before relaxing) + 0x4208525c wpa_supplicant_send_2_of_4 + .text.wpa_supplicant_process_1_of_2_rsn + 0x42085380 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8c (size before relaxing) + .text.wpa_supplicant_process_1_of_2_wpa + 0x42085400 0xf6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x106 (size before relaxing) + *fill* 0x420854f6 0x2 + .text.wpa_supplicant_pairwise_gtk + 0x420854f8 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x6e (size before relaxing) + 0x420854f8 wpa_supplicant_pairwise_gtk + *fill* 0x4208555e 0x2 + .text.wpa_report_ie_mismatch + 0x42085560 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x42085560 wpa_report_ie_mismatch + *fill* 0x4208556f 0x1 + .text.wpa_supplicant_validate_ie + 0x42085570 0xf2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x42085662 0x2 + .text.wpa_sm_set_state + 0x42085664 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + 0x42085664 wpa_sm_set_state + .text.wpa_supplicant_key_neg_complete + 0x42085684 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x32 (size before relaxing) + 0x42085684 wpa_supplicant_key_neg_complete + *fill* 0x420856ae 0x2 + .text.wpa_sm_set_pmk_from_pmksa + 0x420856b0 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x420856b0 wpa_sm_set_pmk_from_pmksa + *fill* 0x420856df 0x1 + .text.wpa_supplicant_get_pmk + 0x420856e0 0x170 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x17c (size before relaxing) + .text.wpa_supplicant_process_1_of_4 + 0x42085850 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x15c (size before relaxing) + 0x42085850 wpa_supplicant_process_1_of_4 + .text.wpa_sm_init + 0x42085990 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x58 (size before relaxing) + 0x42085990 wpa_sm_init + .text.wpa_sm_notify_assoc + 0x420859e0 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x420859e0 wpa_sm_notify_assoc + *fill* 0x42085a56 0x2 + .text.wpa_set_profile + 0x42085a58 0xcf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x42085a58 wpa_set_profile + *fill* 0x42085b27 0x1 + .text.wpa_set_pmk + 0x42085b28 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x62 (size before relaxing) + 0x42085b28 wpa_set_pmk + *fill* 0x42085b86 0x2 + .text.wpa_set_passphrase + 0x42085b88 0xb3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xd3 (size before relaxing) + 0x42085b88 wpa_set_passphrase + *fill* 0x42085c3b 0x1 + .text.set_assoc_ie + 0x42085c3c 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x36 (size before relaxing) + 0x42085c3c set_assoc_ie + *fill* 0x42085c6f 0x1 + .text.wpa_sm_set_key + 0x42085c70 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x74 (size before relaxing) + 0x42085c70 wpa_sm_set_key + .text.wpa_supplicant_install_ptk + 0x42085ce0 0x94 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xa8 (size before relaxing) + .text.wpa_supplicant_process_3_of_4 + 0x42085d74 0x10b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x12a (size before relaxing) + *fill* 0x42085e7f 0x1 + .text.wpa_supplicant_install_gtk + 0x42085e80 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xf0 (size before relaxing) + .text.wpa_supplicant_process_1_of_2 + 0x42085f6c 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xd4 (size before relaxing) + .text.wpa_sm_rx_eapol + 0x42086024 0x2a2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2ba (size before relaxing) + 0x42086024 wpa_sm_rx_eapol + *fill* 0x420862c6 0x2 + .text.wpa_supplicant_activate_ptk + 0x420862c8 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x55 (size before relaxing) + *fill* 0x42086315 0x3 + .text.wpa_supplicant_send_4_of_4_txcallback + 0x42086318 0x8f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x9b (size before relaxing) + *fill* 0x420863a7 0x1 + .text.wpa_supplicant_clr_countermeasures + 0x420863a8 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x420863a8 wpa_supplicant_clr_countermeasures + *fill* 0x420863b5 0x3 + .text.wpa_supplicant_stop_countermeasures + 0x420863b8 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x33 (size before relaxing) + 0x420863b8 wpa_supplicant_stop_countermeasures + *fill* 0x420863e4 0x0 + .text.wpa_michael_mic_failure + 0x420863e4 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xa0 (size before relaxing) + 0x420863e4 wpa_michael_mic_failure + .text.eapol_txcb + 0x42086468 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xb7 (size before relaxing) + 0x42086468 eapol_txcb + *fill* 0x4208651c 0x0 + .text.wpa_sta_in_4way_handshake + 0x4208651c 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4208651c wpa_sta_in_4way_handshake + *fill* 0x4208654b 0x1 + .text.wpa_sta_cur_pmksa_matches_akm + 0x4208654c 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x29 (size before relaxing) + 0x4208654c wpa_sta_cur_pmksa_matches_akm + *fill* 0x42086571 0x3 + .text.wpa_sta_clear_curr_pmksa + 0x42086574 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x23 (size before relaxing) + 0x42086574 wpa_sta_clear_curr_pmksa + *fill* 0x42086594 0x0 + .text.get_wpa_sm + 0x42086594 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x42086594 get_wpa_sm + .text.wpa_sm_set_ap_rsnxe + 0x4208659c 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x98 (size before relaxing) + 0x4208659c wpa_sm_set_ap_rsnxe + .text.wpa_sm_set_assoc_rsnxe + 0x42086624 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x42086624 wpa_sm_set_assoc_rsnxe + *fill* 0x42086672 0x2 + .text.wpa_set_bss + 0x42086674 0x268 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2a8 (size before relaxing) + 0x42086674 wpa_set_bss + .text.wpa_sm_drop_sa + 0x420868dc 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x420868dc wpa_sm_drop_sa + *fill* 0x4208692a 0x2 + .text.wpa_sm_deinit + 0x4208692c 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x43 (size before relaxing) + 0x4208692c wpa_sm_deinit + *fill* 0x4208696b 0x1 + .text.wpa_sm_notify_disassoc + 0x4208696c 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x32 (size before relaxing) + 0x4208696c wpa_sm_notify_disassoc + *fill* 0x42086996 0x2 + .text.owe_build_assoc_req + 0x42086998 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xcc (size before relaxing) + 0x42086998 owe_build_assoc_req + .text.owe_process_assoc_resp + 0x42086a40 0x209 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x255 (size before relaxing) + 0x42086a40 owe_process_assoc_resp + *fill* 0x42086c49 0x3 + .text.wpa_sm_pmksa_cache_flush + 0x42086c4c 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x42086c4c wpa_sm_pmksa_cache_flush + *fill* 0x42086c62 0x2 + .text.wpa_parse_generic + 0x42086c64 0x16e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x42086dd2 0x2 + .text.wpa_gen_wpa_ie_rsn + 0x42086dd4 0x2a4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x2a8 (size before relaxing) + .text.wpa_gen_wpa_ie_wpa + 0x42087078 0xf2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xfa (size before relaxing) + *fill* 0x4208716a 0x2 + .text.wpa_parse_wpa_ie + 0x4208716c 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x49 (size before relaxing) + 0x4208716c wpa_parse_wpa_ie + *fill* 0x420871b1 0x3 + .text.wpa_gen_wpa_ie + 0x420871b4 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x44 (size before relaxing) + 0x420871b4 wpa_gen_wpa_ie + .text.wpa_gen_rsnxe + 0x420871f4 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x420871f4 wpa_gen_rsnxe + .text.wpa_supplicant_parse_ies + 0x42087260 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x42087260 wpa_supplicant_parse_ies + *fill* 0x420872f6 0x2 + .text.wpabuf_alloc + 0x420872f8 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x420872f8 wpabuf_alloc + *fill* 0x42087316 0x2 + .text.wpabuf_free + 0x42087318 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x42087318 wpabuf_free + .text.wpabuf_clear_free + 0x42087334 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x42087334 wpabuf_clear_free + *fill* 0x4208734f 0x1 + .text.wpabuf_put_data + 0x42087350 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_alloc_copy + 0x4208736c 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x1e (size before relaxing) + 0x4208736c wpabuf_alloc_copy + *fill* 0x42087386 0x2 + .text.wpabuf_zeropad + 0x42087388 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x44 (size before relaxing) + 0x42087388 wpabuf_zeropad + .text.d_permute + 0x420873c0 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x420873d6 0x2 + .text.d_check_char + 0x420873d8 0x67 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x6b (size before relaxing) + *fill* 0x4208743f 0x1 + .text.wpabuf_put_data + 0x42087440 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.sae_pk_valid_password + 0x4208745c 0xde esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4208745c sae_pk_valid_password + *fill* 0x4208753a 0x2 + .text.sae_pk_base32_decode + 0x4208753c 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4208753c sae_pk_base32_decode + .text.sae_pk_set_password + 0x4208762c 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x122 (size before relaxing) + 0x4208762c sae_pk_set_password + *fill* 0x42087746 0x2 + .text.sae_hash + 0x42087748 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x42087748 sae_hash + *fill* 0x42087769 0x3 + .text.sae_pk_valid_fingerprint + 0x4208776c 0xd1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0xdd (size before relaxing) + *fill* 0x4208783d 0x3 + .text.sae_pk_hash_sig_data + 0x42087840 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x158 (size before relaxing) + .text.sae_check_confirm_pk + 0x42087978 0x199 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x1b9 (size before relaxing) + 0x42087978 sae_check_confirm_pk + *fill* 0x42087b11 0x3 + .text.eap_client_get_eap_state + 0x42087b14 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + 0x42087b14 eap_client_get_eap_state + .text.disable_wpa_wpa2 + 0x42087b2c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xb (size before relaxing) + *fill* 0x42087b34 0x0 + .text.wpa_alloc_eapol + 0x42087b34 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x42087b34 wpa_alloc_eapol + *fill* 0x42087ba2 0x2 + .text.wpa_free_eapol + 0x42087ba4 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x42087ba4 wpa_free_eapol + .text.wpa_ether_send + 0x42087bb4 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x49 (size before relaxing) + 0x42087bb4 wpa_ether_send + *fill* 0x42087bf9 0x3 + .text.hostapd_send_eapol + 0x42087bfc 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x61 (size before relaxing) + 0x42087bfc hostapd_send_eapol + *fill* 0x42087c59 0x3 + .text.wpa_supplicant_transition_disable + 0x42087c5c 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x56 (size before relaxing) + 0x42087c5c wpa_supplicant_transition_disable + *fill* 0x42087cac 0x0 + .text.wpa_sm_alloc_eapol + 0x42087cac 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1c (size before relaxing) + 0x42087cac wpa_sm_alloc_eapol + .text.wpa_sm_free_eapol + 0x42087cc4 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xe (size before relaxing) + 0x42087cc4 wpa_sm_free_eapol + *fill* 0x42087cce 0x2 + .text.wpa_sm_deauthenticate + 0x42087cd0 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1e (size before relaxing) + 0x42087cd0 wpa_sm_deauthenticate + *fill* 0x42087cea 0x2 + .text.crypto_rng_wrapper + 0x42087cec 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + *fill* 0x42087cfd 0x3 + .text.crypto_bignum_init + 0x42087d00 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x1a (size before relaxing) + 0x42087d00 crypto_bignum_init + *fill* 0x42087d16 0x2 + .text.crypto_bignum_init_set + 0x42087d18 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x2c (size before relaxing) + 0x42087d18 crypto_bignum_init_set + .text.crypto_bignum_deinit + 0x42087d40 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x16 (size before relaxing) + 0x42087d40 crypto_bignum_deinit + *fill* 0x42087d52 0x2 + .text.crypto_bignum_init_uint + 0x42087d54 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x34 (size before relaxing) + 0x42087d54 crypto_bignum_init_uint + .text.crypto_bignum_to_bin + 0x42087d80 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x52 (size before relaxing) + 0x42087d80 crypto_bignum_to_bin + *fill* 0x42087dce 0x2 + .text.crypto_bignum_add + 0x42087dd0 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x42087dd0 crypto_bignum_add + .text.crypto_bignum_mod + 0x42087de4 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x42087de4 crypto_bignum_mod + .text.crypto_bignum_exptmod + 0x42087df8 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x1c (size before relaxing) + 0x42087df8 crypto_bignum_exptmod + .text.crypto_bignum_inverse + 0x42087e10 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x42087e10 crypto_bignum_inverse + .text.crypto_bignum_sub + 0x42087e24 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x42087e24 crypto_bignum_sub + .text.crypto_bignum_div + 0x42087e38 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x1a (size before relaxing) + 0x42087e38 crypto_bignum_div + *fill* 0x42087e4e 0x2 + .text.crypto_bignum_mulmod + 0x42087e50 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x2e (size before relaxing) + 0x42087e50 crypto_bignum_mulmod + *fill* 0x42087e7a 0x2 + .text.crypto_bignum_sqrmod + 0x42087e7c 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x3c (size before relaxing) + 0x42087e7c crypto_bignum_sqrmod + .text.crypto_bignum_rshift + 0x42087eac 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x26 (size before relaxing) + 0x42087eac crypto_bignum_rshift + *fill* 0x42087ece 0x2 + .text.crypto_bignum_cmp + 0x42087ed0 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x42087ed0 crypto_bignum_cmp + *fill* 0x42087ee1 0x3 + .text.crypto_bignum_is_zero + 0x42087ee4 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x42087ee4 crypto_bignum_is_zero + *fill* 0x42087ef9 0x3 + .text.crypto_bignum_is_one + 0x42087efc 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x42087efc crypto_bignum_is_one + *fill* 0x42087f11 0x3 + .text.crypto_bignum_is_odd + 0x42087f14 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x42087f14 crypto_bignum_is_odd + *fill* 0x42087f2b 0x1 + .text.crypto_bignum_rand + 0x42087f2c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x42087f2c crypto_bignum_rand + .text.crypto_bignum_legendre + 0x42087f48 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x94 (size before relaxing) + 0x42087f48 crypto_bignum_legendre + .text.crypto_bignum_addmod + 0x42087fc0 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x3f (size before relaxing) + 0x42087fc0 crypto_bignum_addmod + *fill* 0x42087ff7 0x1 + .text.aes_wrap + 0x42087ff8 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0xce (size before relaxing) + 0x42087ff8 aes_wrap + *fill* 0x420880c2 0x2 + .text.aes_unwrap + 0x420880c4 0xe6 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0xea (size before relaxing) + 0x420880c4 aes_unwrap + *fill* 0x420881aa 0x2 + .text.pad_block + 0x420881ac 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x420881d7 0x1 + .text.aes_s2v 0x420881d8 0x109 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x131 (size before relaxing) + *fill* 0x420882e1 0x3 + .text.aes_siv_decrypt + 0x420882e4 0xe6 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0xee (size before relaxing) + 0x420882e4 aes_siv_decrypt + *fill* 0x420883ca 0x2 + .text.ieee802_11_parse_extension + 0x420883cc 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + *fill* 0x42088439 0x3 + .text.ieee802_11_parse_vendor_specific + 0x4208843c 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_parse_elems + 0x420884a0 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x420884a0 ieee802_11_parse_elems + *fill* 0x4208850d 0x3 + .text.esp_coex_common_timer_done_wrapper + 0x42088510 0xa esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xe (size before relaxing) + 0x42088510 esp_coex_common_timer_done_wrapper + *fill* 0x4208851a 0x2 + .text.esp_coex_common_timer_setfn_wrapper + 0x4208851c 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x12 (size before relaxing) + 0x4208851c esp_coex_common_timer_setfn_wrapper + *fill* 0x4208852a 0x2 + .text.esp_coex_common_spin_lock_create_wrapper + 0x4208852c 0x28 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4208852c esp_coex_common_spin_lock_create_wrapper + .text.esp_coex_common_semphr_create_wrapper + 0x42088554 0x11 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x42088554 esp_coex_common_semphr_create_wrapper + *fill* 0x42088565 0x3 + .text.esp_coex_common_semphr_delete_wrapper + 0x42088568 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x42088568 esp_coex_common_semphr_delete_wrapper + *fill* 0x42088576 0x2 + .text.esp_coex_common_semphr_take_wrapper + 0x42088578 0x1f esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x42088578 esp_coex_common_semphr_take_wrapper + *fill* 0x42088597 0x1 + .text.esp_coex_common_semphr_give_wrapper + 0x42088598 0x15 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x42088598 esp_coex_common_semphr_give_wrapper + *fill* 0x420885ad 0x3 + .text.esp_coex_common_clk_slowclk_cal_get_wrapper + 0x420885b0 0x21 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x420885b0 esp_coex_common_clk_slowclk_cal_get_wrapper + *fill* 0x420885d1 0x3 + .text.lib_printf + 0x420885d4 0x73 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + *fill* 0x42088647 0x1 + .text.pp_printf + 0x42088648 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x42088648 pp_printf + *fill* 0x42088672 0x2 + .text.net80211_printf + 0x42088674 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x42088674 net80211_printf + *fill* 0x4208869e 0x2 + .text.esp_crypto_sha1_mbedtls + 0x420886a0 0x50 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + 0x5c (size before relaxing) + .text.esp_crypto_bas64_encode_mbedtls + 0x420886f0 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + 0x18 (size before relaxing) + .text.esp_crypto_sha1 + 0x42088704 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + 0x14 (size before relaxing) + 0x42088704 esp_crypto_sha1 + .text.esp_crypto_base64_encode + 0x42088714 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + 0x18 (size before relaxing) + 0x42088714 esp_crypto_base64_encode + .text.misc_nvs_load + 0x42088728 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0xa0 (size before relaxing) + 0x42088734 misc_nvs_load + .text.misc_nvs_deinit + 0x420887b0 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0x4c (size before relaxing) + 0x420887b4 misc_nvs_deinit + .text.misc_nvs_init + 0x420887f0 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0x34 (size before relaxing) + 0x420887f0 misc_nvs_init + .text.ds_ll_configure_iv + 0x42088818 0x21 esp-idf/hal/libhal.a(ds_hal.c.obj) + *fill* 0x42088839 0x3 + .text.ds_ll_check_signature + 0x4208883c 0x25 esp-idf/hal/libhal.a(ds_hal.c.obj) + *fill* 0x42088861 0x3 + .text.ds_ll_write_private_key_params + 0x42088864 0x2f esp-idf/hal/libhal.a(ds_hal.c.obj) + *fill* 0x42088893 0x1 + .text.ds_hal_start + 0x42088894 0xf esp-idf/hal/libhal.a(ds_hal.c.obj) + 0x42088894 ds_hal_start + *fill* 0x420888a3 0x1 + .text.ds_hal_finish + 0x420888a4 0x1a esp-idf/hal/libhal.a(ds_hal.c.obj) + 0x420888a4 ds_hal_finish + *fill* 0x420888be 0x2 + .text.ds_hal_configure_iv + 0x420888c0 0xa esp-idf/hal/libhal.a(ds_hal.c.obj) + 0xe (size before relaxing) + 0x420888c0 ds_hal_configure_iv + *fill* 0x420888ca 0x2 + .text.ds_hal_write_message + 0x420888cc 0x12 esp-idf/hal/libhal.a(ds_hal.c.obj) + 0x420888cc ds_hal_write_message + *fill* 0x420888de 0x2 + .text.ds_hal_write_private_key_params + 0x420888e0 0xa esp-idf/hal/libhal.a(ds_hal.c.obj) + 0xe (size before relaxing) + 0x420888e0 ds_hal_write_private_key_params + *fill* 0x420888ea 0x2 + .text.ds_hal_start_sign + 0x420888ec 0xf esp-idf/hal/libhal.a(ds_hal.c.obj) + 0x420888ec ds_hal_start_sign + *fill* 0x420888fb 0x1 + .text.ds_hal_busy + 0x420888fc 0x12 esp-idf/hal/libhal.a(ds_hal.c.obj) + 0x420888fc ds_hal_busy + *fill* 0x4208890e 0x2 + .text.ds_hal_read_result + 0x42088910 0x1c esp-idf/hal/libhal.a(ds_hal.c.obj) + 0x20 (size before relaxing) + 0x42088910 ds_hal_read_result + .text.ethip6_output + 0x4208892c 0x7c esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x80 (size before relaxing) + 0x4208892c ethip6_output + .text._ZdaPv 0x420889a8 0xe C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + 0x420889a8 operator delete[](void*) + *fill* 0x420889b6 0x2 + .text._ZSt15get_new_handlerv + 0x420889b8 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + 0x420889b8 std::get_new_handler() + .text._ZnajRKSt9nothrow_t + 0x420889c8 0x23 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + 0x420889c8 operator new[](unsigned int, std::nothrow_t const&) + *fill* 0x420889eb 0x1 + .text._ZdlPv 0x420889ec 0xe C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + 0x420889ec operator delete(void*) + *fill* 0x420889fa 0x2 + .text.__cxa_begin_catch + 0x420889fc 0x55 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + 0x420889fc __cxa_begin_catch + *fill* 0x42088a51 0x3 + .text.__cxa_end_catch + 0x42088a54 0x5e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + 0x42088a54 __cxa_end_catch + *fill* 0x42088ab2 0x2 + .text._ZL15eh_globals_dtorPv + 0x42088ab4 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .text.__cxa_get_globals_fast + 0x42088ad8 0x1e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + 0x42088ad8 __cxa_get_globals_fast + *fill* 0x42088af6 0x2 + .text.__cxa_get_globals + 0x42088af8 0x42 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + 0x42088af8 __cxa_get_globals + *fill* 0x42088b3a 0x2 + .text.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE + 0x42088b3c 0x1d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + *fill* 0x42088b59 0x3 + .text._ZN10__cxxabiv111__terminateEPFvvE + 0x42088b5c 0x1a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + 0x42088b5c __cxxabiv1::__terminate(void (*)()) + *fill* 0x42088b76 0x2 + .text._ZSt13get_terminatev + 0x42088b78 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + 0x42088b78 std::get_terminate() + .text.unlikely._ZSt9terminatev + 0x42088b88 0xf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + 0x42088b88 std::terminate() + *fill* 0x42088b97 0x1 + .text._Znaj 0x42088b98 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + 0x42088b98 operator new[](unsigned int) + .text._Znwj 0x42088ba8 0x3f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + 0x42088ba8 operator new(unsigned int) + *fill* 0x42088be7 0x1 + .text._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x42088be8 0x12 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + 0x42088be8 __cxxabiv1::__si_class_type_info::~__si_class_type_info() + 0x42088be8 __cxxabiv1::__si_class_type_info::~__si_class_type_info() + *fill* 0x42088bfa 0x2 + .text._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x42088bfc 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + 0x42088bfc __cxxabiv1::__si_class_type_info::~__si_class_type_info() + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x42088c14 0x2e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + *fill* 0x42088c42 0x2 + .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x42088c44 0x78 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + 0x42088c44 __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_ + 0x42088cbc 0x2c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + 0x42088cbc __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 + 0x42088ce8 0x2a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + 0x42088ce8 __cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const + *fill* 0x42088d12 0x2 + .text._ZNKSt9bad_alloc4whatEv + 0x42088d14 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + 0x42088d14 std::bad_alloc::what() const + .text._ZNSt9bad_allocD2Ev + 0x42088d1c 0x12 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + 0x42088d1c std::bad_alloc::~bad_alloc() + 0x42088d1c std::bad_alloc::~bad_alloc() + *fill* 0x42088d2e 0x2 + .text._ZNSt9bad_allocD0Ev + 0x42088d30 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + 0x42088d30 std::bad_alloc::~bad_alloc() + .text._ZN10__cxxabiv117__class_type_infoD2Ev + 0x42088d48 0x12 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x42088d48 __cxxabiv1::__class_type_info::~__class_type_info() + 0x42088d48 __cxxabiv1::__class_type_info::~__class_type_info() + *fill* 0x42088d5a 0x2 + .text._ZN10__cxxabiv117__class_type_infoD0Ev + 0x42088d5c 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x42088d5c __cxxabiv1::__class_type_info::~__class_type_info() + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x42088d74 0x2e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + *fill* 0x42088da2 0x2 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x42088da4 0x1e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x42088da4 __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const + *fill* 0x42088dc2 0x2 + .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x42088dc4 0x36 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x42088dc4 __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* 0x42088dfa 0x2 + .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x42088dfc 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x42088dfc __cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const + .text._ZdlPvj 0x42088e24 0xe C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + 0x42088e24 operator delete(void*, unsigned int) + *fill* 0x42088e32 0x2 + .text._Z12abort_returnIiET_v + 0x42088e34 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + *fill* 0x42088e3d 0x3 + .text.__wrap__Unwind_DeleteException + 0x42088e40 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x42088e40 __wrap__Unwind_DeleteException + *fill* 0x42088e49 0x3 + .text.__wrap___gxx_personality_v0 + 0x42088e4c 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x42088e4c __wrap___gxx_personality_v0 + *fill* 0x42088e52 0x2 + .text.__wrap___cxa_allocate_exception + 0x42088e54 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x42088e54 __wrap___cxa_allocate_exception + *fill* 0x42088e5d 0x3 + .text.__wrap___cxa_throw + 0x42088e60 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x42088e60 __wrap___cxa_throw + *fill* 0x42088e69 0x3 + .text.wait_hw_freq_busy + 0x42088e6c 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x2a (size before relaxing) + 0x42088e70 wait_hw_freq_busy + *fill* 0x42088e92 0x2 + .text.ram_txpwr_cal_track + 0x42088e94 0x12e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x13a (size before relaxing) + 0x42088ea8 ram_txpwr_cal_track + *fill* 0x42088fc2 0x2 + .text.ram_bt_track_tx_power + 0x42088fc4 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x1c (size before relaxing) + 0x42088fc4 ram_bt_track_tx_power + .text.ram_wifi_track_tx_power + 0x42088fdc 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x1c (size before relaxing) + 0x42088fdc ram_wifi_track_tx_power + .text.ulp_ext_code_set + 0x42088ff4 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x6a (size before relaxing) + 0x42088ff4 ulp_ext_code_set + *fill* 0x42089056 0x2 + .text.ulp_code_track + 0x42089058 0x70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x87 (size before relaxing) + 0x42089060 ulp_code_track + *fill* 0x420890c8 0x0 + .text.rfpll_cap_track + 0x420890c8 0x9f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0xc7 (size before relaxing) + 0x420890cc rfpll_cap_track + *fill* 0x42089167 0x1 + .text.txpwr_offset + 0x42089168 0x6f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x7f (size before relaxing) + 0x42089170 txpwr_offset + *fill* 0x420891d7 0x1 + .text.phy_param_track_tot + 0x420891d8 0x6c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x78 (size before relaxing) + 0x420891dc phy_param_track_tot + .text.phy_change_channel + 0x42089244 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x17 (size before relaxing) + 0x42089244 phy_change_channel + *fill* 0x42089254 0x0 + .text.phy_bbpll_en_usb + 0x42089254 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x12 (size before relaxing) + 0x42089254 phy_bbpll_en_usb + *fill* 0x42089262 0x2 + .text.phy_init_param_set + 0x42089264 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x15 (size before relaxing) + 0x42089264 phy_init_param_set + *fill* 0x42089275 0x3 + .text.ant_tx_cfg + 0x42089278 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x22 (size before relaxing) + 0x42089278 ant_tx_cfg + *fill* 0x4208928e 0x2 + .text.ant_rx_cfg + 0x42089290 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x2e (size before relaxing) + 0x42089290 ant_rx_cfg + *fill* 0x420892b2 0x2 + .text.phy_set_tx_seed + 0x420892b4 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x420892b8 phy_set_tx_seed + *fill* 0x420892d6 0x2 + .text.phy_get_romfunc_addr + 0x420892d8 0x142 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x14a (size before relaxing) + 0x42089354 phy_get_romfunc_addr + *fill* 0x4208941a 0x2 + .text.bb_init 0x4208941c 0xd3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x15b (size before relaxing) + 0x42089428 bb_init + *fill* 0x420894ef 0x1 + .text.pwr_limit_force + 0x420894f0 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x5c (size before relaxing) + 0x420894f8 pwr_limit_force + .text.register_chipv7_phy_init_param + 0x42089540 0x120 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x130 (size before relaxing) + 0x42089544 register_chipv7_phy_init_param + .text.phy_rfcal_data_sub + 0x42089660 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x50 (size before relaxing) + 0x42089664 phy_rfcal_data_sub + .text.rf_cal_data_recovery + 0x420896a8 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x31 (size before relaxing) + 0x420896ac rf_cal_data_recovery + *fill* 0x420896d1 0x3 + .text.phy_rfcal_data_check_value + 0x420896d4 0x313 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x34b (size before relaxing) + 0x420896d8 phy_rfcal_data_check_value + *fill* 0x420899e7 0x1 + .text.rf_cal_data_backup + 0x420899e8 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x15 (size before relaxing) + 0x420899e8 rf_cal_data_backup + *fill* 0x420899f9 0x3 + .text.phy_rfcal_data_check + 0x420899fc 0x63 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x6f (size before relaxing) + 0x420899fc phy_rfcal_data_check + *fill* 0x42089a5f 0x1 + .text.get_chip_version + 0x42089a60 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x1c (size before relaxing) + 0x42089a60 get_chip_version + *fill* 0x42089a71 0x3 + .text.rf_init 0x42089a74 0xe8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x130 (size before relaxing) + 0x42089a80 rf_init + .text.register_chipv7_phy + 0x42089b5c 0x176 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x1f1 (size before relaxing) + 0x42089b64 register_chipv7_phy + *fill* 0x42089cd2 0x2 + .text.get_phy_version_str + 0x42089cd4 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x40 (size before relaxing) + 0x42089ce8 get_phy_version_str + .text.get_bias_ref_code + 0x42089d08 0x6b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x6f (size before relaxing) + 0x42089d08 get_bias_ref_code + *fill* 0x42089d73 0x1 + .text.phy_get_vdd33 + 0x42089d74 0x82 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x8e (size before relaxing) + 0x42089d74 phy_get_vdd33 + *fill* 0x42089df6 0x2 + .text.txcal_debuge_mode + 0x42089df8 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + 0x6c (size before relaxing) + 0x42089df8 txcal_debuge_mode + .text.txcal_work_mode + 0x42089e5c 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + 0x36 (size before relaxing) + 0x42089e5c txcal_work_mode + *fill* 0x42089e86 0x2 + .text.save_pbus_reg + 0x42089e88 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + 0x66 (size before relaxing) + 0x42089ea0 save_pbus_reg + *fill* 0x42089eea 0x2 + .text.set_pbus_mem + 0x42089eec 0x25c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + 0x280 (size before relaxing) + 0x42089f3c set_pbus_mem + .text.wr_rf_freq_mem + 0x4208a148 0x67 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x4208a150 wr_rf_freq_mem + *fill* 0x4208a1af 0x1 + .text.freq_i2c_write_set + 0x4208a1b0 0x5e8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x5f0 (size before relaxing) + 0x4208a21c freq_i2c_write_set + .text.pll_cap_mem_update + 0x4208a798 0x88 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x90 (size before relaxing) + 0x4208a7a0 pll_cap_mem_update + .text.get_rf_freq_init + 0x4208a820 0x152 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x192 (size before relaxing) + 0x4208a828 get_rf_freq_init + *fill* 0x4208a972 0x2 + .text.freq_get_i2c_data + 0x4208a974 0x1a3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x1a7 (size before relaxing) + 0x4208a97c freq_get_i2c_data + *fill* 0x4208ab17 0x1 + .text.freq_i2c_data_write + 0x4208ab18 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x52 (size before relaxing) + 0x4208ab18 freq_i2c_data_write + *fill* 0x4208ab5e 0x2 + .text.set_chan_freq_hw_init + 0x4208ab60 0xa6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0xce (size before relaxing) + 0x4208ab70 set_chan_freq_hw_init + *fill* 0x4208ac06 0x2 + .text.set_chan_freq_sw_start + 0x4208ac08 0xd2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0xf1 (size before relaxing) + 0x4208ac14 set_chan_freq_sw_start + *fill* 0x4208acda 0x2 + .text.phy_set_most_tpw + 0x4208acdc 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x26 (size before relaxing) + 0x4208acdc phy_set_most_tpw + *fill* 0x4208acfa 0x2 + .text.phy_11p_set + 0x4208acfc 0x1b6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x1c2 (size before relaxing) + 0x4208ad04 phy_11p_set + *fill* 0x4208aeb2 0x2 + .text.ant_dft_cfg + 0x4208aeb4 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x29 (size before relaxing) + 0x4208aeb8 ant_dft_cfg + *fill* 0x4208aed9 0x3 + .text.ant_wifitx_cfg + 0x4208aedc 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x46 (size before relaxing) + 0x4208aee0 ant_wifitx_cfg + *fill* 0x4208af1a 0x2 + .text.ant_wifirx_cfg + 0x4208af1c 0x89 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x99 (size before relaxing) + 0x4208af24 ant_wifirx_cfg + *fill* 0x4208afa5 0x3 + .text.ant_bttx_cfg + 0x4208afa8 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x43 (size before relaxing) + 0x4208afac ant_bttx_cfg + *fill* 0x4208afe3 0x1 + .text.ant_btrx_cfg + 0x4208afe4 0x85 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x99 (size before relaxing) + 0x4208afe8 ant_btrx_cfg + *fill* 0x4208b069 0x3 + .text.phy_enable_low_rate + 0x4208b06c 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x44 (size before relaxing) + 0x4208b074 phy_enable_low_rate + .text.phy_disable_low_rate + 0x4208b0ac 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x44 (size before relaxing) + 0x4208b0ac phy_disable_low_rate + .text.set_rx_sense + 0x4208b0e4 0x1dc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x1f0 (size before relaxing) + 0x4208b114 set_rx_sense + .text.restart_cal + 0x4208b2c0 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x62 (size before relaxing) + 0x4208b2c0 restart_cal + *fill* 0x4208b31e 0x2 + .text.write_rfpll_sdm + 0x4208b320 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x66 (size before relaxing) + 0x4208b320 write_rfpll_sdm + *fill* 0x4208b382 0x2 + .text.wait_rfpll_cal_end + 0x4208b384 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x52 (size before relaxing) + 0x4208b388 wait_rfpll_cal_end + *fill* 0x4208b3c6 0x2 + .text.rfpll_set_freq + 0x4208b3c8 0x65 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x4208b3cc rfpll_set_freq + *fill* 0x4208b42d 0x3 + .text.correct_rfpll_offset + 0x4208b430 0x95 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0xa5 (size before relaxing) + 0x4208b434 correct_rfpll_offset + *fill* 0x4208b4c5 0x3 + .text.ram_write_pll_cap + 0x4208b4c8 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x38 (size before relaxing) + 0x4208b4c8 ram_write_pll_cap + .text.read_pll_cap + 0x4208b4fc 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x3a (size before relaxing) + 0x4208b4fc read_pll_cap + *fill* 0x4208b532 0x2 + .text.rfpll_cap_correct + 0x4208b534 0x1c8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x1f0 (size before relaxing) + 0x4208b538 rfpll_cap_correct + .text.rfpll_cap_init_cal + 0x4208b6fc 0xc2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0xd6 (size before relaxing) + 0x4208b6fc rfpll_cap_init_cal + *fill* 0x4208b7be 0x2 + .text.set_rfpll_freq + 0x4208b7c0 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x74 (size before relaxing) + 0x4208b7c0 set_rfpll_freq + .text.set_rf_freq_offset + 0x4208b808 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x1a (size before relaxing) + 0x4208b808 set_rf_freq_offset + *fill* 0x4208b81b 0x1 + .text.set_channel_rfpll_freq + 0x4208b81c 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x5c (size before relaxing) + 0x4208b820 set_channel_rfpll_freq + .text.phy_set_freq + 0x4208b864 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x22 (size before relaxing) + 0x4208b864 phy_set_freq + *fill* 0x4208b87a 0x2 + .text.chip_v7_set_chan_misc + 0x4208b87c 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x6a (size before relaxing) + 0x4208b888 chip_v7_set_chan_misc + *fill* 0x4208b8d6 0x2 + .text.chip_v7_set_chan + 0x4208b8d8 0xc4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0xf8 (size before relaxing) + 0x4208b8dc chip_v7_set_chan + .text.chip_v7_set_chan_offset + 0x4208b99c 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x82 (size before relaxing) + 0x4208b99c chip_v7_set_chan_offset + *fill* 0x4208ba06 0x2 + .text.chip_v7_set_chan_ana + 0x4208ba08 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x28 (size before relaxing) + 0x4208ba08 chip_v7_set_chan_ana + .text.set_chanfreq + 0x4208ba24 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x2e (size before relaxing) + 0x4208ba24 set_chanfreq + *fill* 0x4208ba46 0x2 + .text.tsens_read_init_new + 0x4208ba48 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + 0x76 (size before relaxing) + 0x4208ba54 tsens_read_init_new + *fill* 0x4208baaa 0x2 + .text.ram_tsens_code_read + 0x4208baac 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + 0x3c (size before relaxing) + 0x4208baac ram_tsens_code_read + .text.ram_tsens_temp_read + 0x4208badc 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + 0x1b (size before relaxing) + 0x4208bae0 ram_tsens_temp_read + *fill* 0x4208baf3 0x1 + .text.ram_temp_to_power + 0x4208baf4 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + 0x3c (size before relaxing) + 0x4208baf4 ram_temp_to_power + .text.get_temp_init + 0x4208bb2c 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + 0x4c (size before relaxing) + 0x4208bb2c get_temp_init + .text.ram_set_chan_cal_interp + 0x4208bb70 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + 0x6c (size before relaxing) + 0x4208bb70 ram_set_chan_cal_interp + .text.chan14_mic_cfg + 0x4208bbd8 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + 0x5e (size before relaxing) + 0x4208bbdc chan14_mic_cfg + *fill* 0x4208bc1f 0x1 + .text.get_rc_dout + 0x4208bc20 0xfb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + 0x103 (size before relaxing) + 0x4208bc20 get_rc_dout + *fill* 0x4208bd1b 0x1 + .text.rc_cal 0x4208bd1c 0x17e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + 0x1ae (size before relaxing) + 0x4208bd38 rc_cal + *fill* 0x4208be9a 0x2 + .text.get_sar_sig_ref + 0x4208be9c 0x31 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x35 (size before relaxing) + 0x4208be9c get_sar_sig_ref + *fill* 0x4208becd 0x3 + .text.pwdet_tone_start + 0x4208bed0 0x6d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x7d (size before relaxing) + 0x4208bed8 pwdet_tone_start + *fill* 0x4208bf3d 0x3 + .text.get_tone_sar_dout + 0x4208bf40 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x3f (size before relaxing) + 0x4208bf40 get_tone_sar_dout + *fill* 0x4208bf73 0x1 + .text.get_fm_sar_dout + 0x4208bf74 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x22 (size before relaxing) + 0x4208bf74 get_fm_sar_dout + *fill* 0x4208bf8a 0x2 + .text.txtone_linear_pwr + 0x4208bf8c 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x4b (size before relaxing) + 0x4208bf8c txtone_linear_pwr + *fill* 0x4208bfc7 0x1 + .text.get_power_db + 0x4208bfc8 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x42 (size before relaxing) + 0x4208bfc8 get_power_db + *fill* 0x4208bffe 0x2 + .text.ram_read_sar2_code + 0x4208c000 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x21 (size before relaxing) + 0x4208c000 ram_read_sar2_code + *fill* 0x4208c01d 0x3 + .text.gen_rx_gain_table + 0x4208c020 0x116 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + 0x126 (size before relaxing) + 0x4208c02c gen_rx_gain_table + *fill* 0x4208c136 0x2 + .text.wr_rx_gain_mem + 0x4208c138 0x1ed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + 0x201 (size before relaxing) + 0x4208c140 wr_rx_gain_mem + *fill* 0x4208c325 0x3 + .text.set_rx_gain_param + 0x4208c328 0x178 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + 0x1ac (size before relaxing) + 0x4208c334 set_rx_gain_param + .text.set_rx_gain_table + 0x4208c4a0 0x2b2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + 0x336 (size before relaxing) + 0x4208c4e4 set_rx_gain_table + *fill* 0x4208c752 0x2 + .text.dig_gain_check + 0x4208c754 0x45 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x49 (size before relaxing) + 0x4208c754 dig_gain_check + *fill* 0x4208c799 0x3 + .text.bt_chan_pwr_interp + 0x4208c79c 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x4208c7a0 bt_chan_pwr_interp + *fill* 0x4208c812 0x2 + .text.ram_get_chan_target_power + 0x4208c814 0x87 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x8f (size before relaxing) + 0x4208c818 ram_get_chan_target_power + *fill* 0x4208c89b 0x1 + .text.ram_bt_get_tx_gain + 0x4208c89c 0xeb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0xff (size before relaxing) + 0x4208c8a0 ram_bt_get_tx_gain + *fill* 0x4208c987 0x1 + .text.ram_wifi_get_tx_gain + 0x4208c988 0xf3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x10b (size before relaxing) + 0x4208c98c ram_wifi_get_tx_gain + *fill* 0x4208ca7b 0x1 + .text.ram_wifi_set_tx_gain + 0x4208ca7c 0x104 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x118 (size before relaxing) + 0x4208caa8 ram_wifi_set_tx_gain + .text.bt_tx_gain_init + 0x4208cb80 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x47 (size before relaxing) + 0x4208cb84 bt_tx_gain_init + *fill* 0x4208cba7 0x1 + .text.tx_gain_set + 0x4208cba8 0xfe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x11a (size before relaxing) + 0x4208cbbc tx_gain_set + *fill* 0x4208cca6 0x2 + .text.txiq_set_reg + 0x4208cca8 0x6a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x6e (size before relaxing) + 0x4208cca8 txiq_set_reg + *fill* 0x4208cd12 0x2 + .text.rxiq_set_reg + 0x4208cd14 0x8c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x90 (size before relaxing) + 0x4208cd1c rxiq_set_reg + .text.start_tx_tone_step + 0x4208cda0 0x14d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x15d (size before relaxing) + 0x4208cdb4 start_tx_tone_step + *fill* 0x4208ceed 0x3 + .text.stop_tx_tone + 0x4208cef0 0x80 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x98 (size before relaxing) + 0x4208cef4 stop_tx_tone + .text.read_hw_noisefloor + 0x4208cf70 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x4208cf74 read_hw_noisefloor + *fill* 0x4208cf8a 0x2 + .text.phy_freq_correct + 0x4208cf8c 0x189 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x195 (size before relaxing) + 0x4208cfb8 phy_freq_correct + *fill* 0x4208d115 0x3 + .text.force_txrx_off + 0x4208d118 0x6b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x83 (size before relaxing) + 0x4208d11c force_txrx_off + *fill* 0x4208d183 0x1 + .text.rxiq_get_mis + 0x4208d184 0x12e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x13a (size before relaxing) + 0x4208d1a0 rxiq_get_mis + *fill* 0x4208d2b2 0x2 + .text.rxiq_cover_mg_mp + 0x4208d2b4 0xcc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0xf8 (size before relaxing) + 0x4208d2b4 rxiq_cover_mg_mp + .text.rfcal_rxiq + 0x4208d380 0x5e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x7e (size before relaxing) + 0x4208d380 rfcal_rxiq + *fill* 0x4208d3de 0x2 + .text.get_rfcal_rxiq_data + 0x4208d3e0 0xe8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0xfc (size before relaxing) + 0x4208d3e4 get_rfcal_rxiq_data + .text.pbus_rx_dco_cal + 0x4208d4c8 0x354 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x37c (size before relaxing) + 0x4208d4dc pbus_rx_dco_cal + .text.rxdc_est_min + 0x4208d81c 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x5a (size before relaxing) + 0x4208d81c rxdc_est_min + *fill* 0x4208d872 0x2 + .text.pbus_rx_dco_cal_1step + 0x4208d874 0x3ce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x3f6 (size before relaxing) + 0x4208d874 pbus_rx_dco_cal_1step + *fill* 0x4208dc42 0x2 + .text.set_rx_gain_cal_iq + 0x4208dc44 0x2d2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x342 (size before relaxing) + 0x4208dc60 set_rx_gain_cal_iq + *fill* 0x4208df16 0x2 + .text.rx_chan_dc_sort + 0x4208df18 0x91 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x95 (size before relaxing) + 0x4208df18 rx_chan_dc_sort + *fill* 0x4208dfa9 0x3 + .text.set_rx_gain_cal_dc + 0x4208dfac 0x2af C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x2d7 (size before relaxing) + 0x4208dfb0 set_rx_gain_cal_dc + *fill* 0x4208e25b 0x1 + .text.spur_coef_cfg_new + 0x4208e25c 0x150 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x168 (size before relaxing) + 0x4208e268 spur_coef_cfg_new + .text.phy_2448m_spur_pwr + 0x4208e3ac 0x136 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x176 (size before relaxing) + 0x4208e3b8 phy_2448m_spur_pwr + *fill* 0x4208e4e2 0x2 + .text.phy_i2c_init2 + 0x4208e4e4 0x264 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0x26c (size before relaxing) + 0x4208e4e4 phy_i2c_init2 + .text.phy_get_i2c_data + 0x4208e748 0x81 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0x85 (size before relaxing) + 0x4208e748 phy_get_i2c_data + *fill* 0x4208e7c9 0x3 + .text.i2c_bbpll_set + 0x4208e7cc 0x9e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0xa6 (size before relaxing) + 0x4208e7cc i2c_bbpll_set + *fill* 0x4208e86a 0x2 + .text.bias_reg_set + 0x4208e86c 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0x6c (size before relaxing) + 0x4208e86c bias_reg_set + .text.txdc_cal_v70 + 0x4208e8d0 0x17f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x193 (size before relaxing) + 0x4208e8e0 txdc_cal_v70 + *fill* 0x4208ea4f 0x1 + .text.bt_txdc_cal + 0x4208ea50 0xa8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xbc (size before relaxing) + 0x4208ea54 bt_txdc_cal + .text.txdc_cal_init + 0x4208eaf8 0x7f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x8b (size before relaxing) + 0x4208eaf8 txdc_cal_init + *fill* 0x4208eb77 0x1 + .text.txiq_get_mis_pwr + 0x4208eb78 0xa3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xcb (size before relaxing) + 0x4208eb7c txiq_get_mis_pwr + *fill* 0x4208ec1b 0x1 + .text.txiq_cover + 0x4208ec1c 0x129 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x155 (size before relaxing) + 0x4208ec1c txiq_cover + *fill* 0x4208ed45 0x3 + .text.get_power_atten + 0x4208ed48 0xc4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xd8 (size before relaxing) + 0x4208ed4c get_power_atten + .text.rfcal_txiq + 0x4208ee0c 0x139 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x171 (size before relaxing) + 0x4208ee0c rfcal_txiq + *fill* 0x4208ef45 0x3 + .text.bt_txiq_cal + 0x4208ef48 0x8e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xaa (size before relaxing) + 0x4208ef4c bt_txiq_cal + *fill* 0x4208efd6 0x2 + .text.txiq_cal_init + 0x4208efd8 0x5b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x7b (size before relaxing) + 0x4208efdc txiq_cal_init + *fill* 0x4208f033 0x1 + .text.pwdet_ref_code + 0x4208f034 0x71 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x8d (size before relaxing) + 0x4208f040 pwdet_ref_code + *fill* 0x4208f0a5 0x3 + .text.pwdet_code_cal + 0x4208f0a8 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x42 (size before relaxing) + 0x4208f0a8 pwdet_code_cal + *fill* 0x4208f0ce 0x2 + .text.rfcal_txcap + 0x4208f0d0 0x117 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x137 (size before relaxing) + 0x4208f0d8 rfcal_txcap + *fill* 0x4208f1e7 0x1 + .text.tx_cap_init + 0x4208f1e8 0xbb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xe7 (size before relaxing) + 0x4208f1ec tx_cap_init + *fill* 0x4208f2a3 0x1 + .text.rfcal_pwrctrl + 0x4208f2a4 0x192 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x1ba (size before relaxing) + 0x4208f2a8 rfcal_pwrctrl + *fill* 0x4208f436 0x2 + .text.tx_pwctrl_init_cal + 0x4208f438 0x105 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x121 (size before relaxing) + 0x4208f438 tx_pwctrl_init_cal + *fill* 0x4208f53d 0x3 + .text.tx_pwctrl_init + 0x4208f540 0x74 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xab (size before relaxing) + 0x4208f548 tx_pwctrl_init + *fill* 0x4208f5b4 0x0 + .text.bt_tx_pwctrl_init + 0x4208f5b4 0x164 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x190 (size before relaxing) + 0x4208f5bc bt_tx_pwctrl_init + .text.bt_txpwr_freq + 0x4208f718 0x76 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x8a (size before relaxing) + 0x4208f718 bt_txpwr_freq + *fill* 0x4208f78e 0x2 + .text.lib_printf + 0x4208f790 0x73 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + *fill* 0x4208f803 0x1 + .text.phy_printf + 0x4208f804 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x4208f804 phy_printf + *fill* 0x4208f82e 0x2 + .text 0x4208f830 0xeba C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + 0x4208f868 _strtod_l + 0x42090544 _strtod_r + 0x4209055c strtod_l + 0x42090574 strtod + 0x42090590 strtof_l + 0x42090638 strtof + *fill* 0x420906ea 0x2 + .text 0x420906ec 0x14e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + 0x420907f8 _strtol_r + 0x4209080c strtol_l + *fill* 0x4209083a 0x2 + .text 0x4209083c 0x12a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + 0x42090924 _strtoul_r + 0x42090938 strtoul_l + *fill* 0x42090966 0x2 + .text 0x42090968 0xda C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + 0x42090968 _fclose_r + 0x42090a30 fclose + *fill* 0x42090a42 0x2 + .text 0x42090a44 0x1b2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + 0x42090a44 __sflush_r + 0x42090b78 _fflush_r + 0x42090bd0 fflush + *fill* 0x42090bf6 0x2 + .text 0x42090bf8 0x237 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + 0x23a (size before relaxing) + 0x42090d18 __sfp_lock_acquire + 0x42090d28 __sfp_lock_release + 0x42090d38 __sfp + 0x42090de0 __sinit + 0x42090e04 __fp_lock_all + 0x42090e1c __fp_unlock_all + *fill* 0x42090e2f 0x1 + .text 0x42090e30 0xcc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + 0x42090e30 _fopen_r + 0x42090ee8 fopen + .text 0x42090efc 0xe8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + 0x42090efc _fread_r + 0x42090fcc fread + .text 0x42090fe4 0x31 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + 0x42090fe4 _fseek_r + 0x42090ffc fseek + *fill* 0x42091015 0x3 + .text 0x42091018 0x2ab C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + 0x42091018 __sfvwrite_r + *fill* 0x420912c3 0x1 + .text 0x420912c4 0x98 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + 0x420912c4 _fwrite_r + 0x42091344 fwrite + .text 0x4209135c 0x5e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + 0x4209135c _printf_r + 0x42091388 printf + *fill* 0x420913ba 0x2 + .text 0x420913bc 0x86 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + 0x420913bc _puts_r + 0x42091430 puts + *fill* 0x42091442 0x2 + .text 0x42091444 0x111 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + 0x42091464 __srefill_r + *fill* 0x42091555 0x3 + .text 0x42091558 0xdf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + 0x42091558 _snprintf_r + 0x420915c4 snprintf + *fill* 0x42091637 0x1 + .text 0x42091638 0xa7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + 0x42091638 _sprintf_r + 0x42091684 sprintf + *fill* 0x420916df 0x1 + .text 0x420916e0 0xc4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + 0x420916e0 sscanf + 0x42091748 _sscanf_r + .text 0x420917a4 0xc6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + 0x420917a4 __sread + 0x420917d8 __seofread + 0x420917e0 __swrite + 0x4209181c __sseek + 0x42091858 __sclose + *fill* 0x4209186a 0x2 + .text 0x4209186c 0x3d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + 0x4209186c vprintf + 0x42091890 _vprintf_r + *fill* 0x420918a9 0x3 + .text 0x420918ac 0x81 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + 0x420918ac _vsnprintf_r + 0x42091904 vsnprintf + *fill* 0x4209192d 0x3 + .text 0x42091930 0xa4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + 0x42091930 __swsetup_r + .text 0x420919d4 0xae C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + 0x420919d4 _asprintf_r + 0x42091a24 asprintf + *fill* 0x42091a82 0x2 + .text 0x42091a84 0x2e2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + 0x42091a84 _fseeko_r + 0x42091d50 fseeko + *fill* 0x42091d66 0x2 + .text 0x42091d68 0x242 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + 0x42091d68 _strerror_r + 0x42091f7c strerror + 0x42091f94 strerror_l + *fill* 0x42091faa 0x2 + .text 0x42091fac 0x34 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + 0x42091fac time + .text 0x42091fe0 0x64 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + 0x42091fe0 _setlocale_r + 0x42092020 __locale_mb_cur_max + 0x42092030 setlocale + .text 0x42092044 0xc4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + 0x42092044 _reclaim_reent + .text 0x42092108 0xd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + 0x42092108 __errno + *fill* 0x42092115 0x3 + .text 0x42092118 0x15 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + 0x42092118 close + *fill* 0x4209212d 0x3 + .text 0x42092130 0x19 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + 0x42092130 fcntl + *fill* 0x42092149 0x3 + .text 0x4209214c 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + 0x4209214c gettimeofday + .text 0x42092164 0x4c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + 0x42092164 open + .text 0x420921b0 0x19 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + 0x420921b0 read + *fill* 0x420921c9 0x3 + .text 0x420921cc 0x19 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + 0x420921cc write + *fill* 0x420921e5 0x3 + .text 0x420921e8 0xa C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + 0x420921e8 nan + *fill* 0x420921f2 0x2 + .text 0x420921f4 0x541 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + 0x420922a8 __hexdig_fun + 0x420922e4 __gethex + *fill* 0x42092735 0x3 + .text 0x42092738 0x1f8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + 0x42092784 __match + 0x420927b4 __hexnan + .text 0x42092930 0x3c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + 0x42092930 _mbtowc_r + 0x4209294c __ascii_mbtowc + .text 0x4209296c 0xa44 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + 0x4209296c _Balloc + 0x420929f4 _Bfree + 0x42092a34 __multadd + 0x42092abc __s2b + 0x42092b50 __hi0bits + 0x42092ba0 __lo0bits + 0x42092c0c __i2b + 0x42092c34 __multiply + 0x42092db0 __pow5mult + 0x42092e5c __lshift + 0x42092f64 __mcmp + 0x42092fa0 __mdiff + 0x420930ec __ulp + 0x42093138 __b2d + 0x420931c4 __d2b + 0x4209327c __ratio + 0x420932d0 _mprec_log10 + 0x42093308 __copybits + 0x42093360 __any_on + .text 0x420933b0 0x3f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + 0x420933b0 _wctomb_r + 0x420933cc __ascii_wctomb + *fill* 0x420933ef 0x1 + .text 0x420933f0 0x1e7d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + 0x42093448 _sungetc_r + 0x420934c4 __ssrefill_r + 0x42093504 _sfread_r + 0x42093578 __ssvfiscanf_r + *fill* 0x4209526d 0x3 + .text 0x42095270 0x303e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + 0x42095740 _svfprintf_r + *fill* 0x420982ae 0x2 + .text 0x420982b0 0x2261 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + 0x42098308 __ssvfscanf_r + *fill* 0x4209a511 0x3 + .text 0x4209a514 0x31b5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + 0x4209a9e4 _vfprintf_r + 0x4209d614 vfprintf + *fill* 0x4209d6c9 0x3 + .text 0x4209d6cc 0x220d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + 0x4209db9c __sprint_r + 0x4209dbc0 _vfiprintf_r + 0x4209f824 vfiprintf + *fill* 0x4209f8d9 0x3 + .text 0x4209f8dc 0xf3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + 0x4209f8dc __swhatbuf_r + 0x4209f948 __smakebuf_r + *fill* 0x4209f9cf 0x1 + .text 0x4209f9d0 0x1a0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + 0x4209f9d0 __submore + 0x4209fa3c _ungetc_r + 0x4209fb5c ungetc + .text 0x4209fb70 0x2b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + 0x4209fb70 __localeconv_l + 0x4209fb7c _localeconv_r + 0x4209fb8c localeconv + *fill* 0x4209fb9b 0x1 + .text 0x4209fb9c 0x5f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + 0x4209fb9c frexp + *fill* 0x4209fbfb 0x1 + .text 0x4209fbfc 0xdcb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + 0x4209fd34 _dtoa_r + *fill* 0x420a09c7 0x1 + .text 0x420a09c8 0x188 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + 0x420a0b0c _strtoll_r + 0x420a0b20 strtoll_l + 0x420a0b38 strtoll + .text 0x420a0b50 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + 0x420a0c8c _strtoull_r + 0x420a0ca0 strtoull_l + 0x420a0cb8 strtoull + .text 0x420a0cd0 0x4c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + 0x420a0cd0 _mbrtowc_r + 0x420a0d04 mbrtowc + .text 0x420a0d1c 0x11 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + 0x420a0d1c iswspace + *fill* 0x420a0d2d 0x3 + .text 0x420a0d30 0x1c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + 0x420a0d30 iswspace_l + .text 0x420a0d4c 0x2285 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + 0x420a121c __ssprint_r + 0x420a1328 _svfiprintf_r + *fill* 0x420a2fd1 0x0 + *fill* 0x420a2fd1 0x3 + .text.init_efuse_secure + 0x420a2fd4 0x7 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + *fill* 0x420a2fdb 0x0 + *fill* 0x420a2fdb 0x1 + .text.esp_efuse_startup_include_func + 0x420a2fdc 0x5 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x420a2fdc esp_efuse_startup_include_func + *fill* 0x420a2fe1 0x0 + *fill* 0x420a2fe1 0x3 + .text.esp_efuse_get_field_size + 0x420a2fe4 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x420a2fe4 esp_efuse_get_field_size + *fill* 0x420a3008 0x0 + .text.get_mask + 0x420a3008 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x420a3026 0x2 + .text.check_range_of_bits + 0x420a3028 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x420a303c 0x0 + .text.esp_efuse_utility_get_number_of_items + 0x420a303c 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x420a303c esp_efuse_utility_get_number_of_items + *fill* 0x420a304e 0x0 + *fill* 0x420a304e 0x0 + *fill* 0x420a304e 0x0 + *fill* 0x420a304e 0x2 + .text.esp_efuse_utility_check_errors + 0x420a3050 0x7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x420a3050 esp_efuse_utility_check_errors + *fill* 0x420a3057 0x0 + *fill* 0x420a3057 0x0 + *fill* 0x420a3057 0x0 + *fill* 0x420a3057 0x0 + *fill* 0x420a3057 0x0 + *fill* 0x420a3057 0x0 + *fill* 0x420a3057 0x0 + *fill* 0x420a3057 0x0 + *fill* 0x420a3057 0x0 + *fill* 0x420a3057 0x1 + .text.esp_system_include_startup_funcs + 0x420a3058 0x5 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x420a3058 esp_system_include_startup_funcs + *fill* 0x420a305d 0x0 + *fill* 0x420a305d 0x0 + *fill* 0x420a305d 0x0 + *fill* 0x420a305d 0x0 + *fill* 0x420a305d 0x0 + *fill* 0x420a305d 0x0 + *fill* 0x420a305d 0x0 + *fill* 0x420a305d 0x0 + *fill* 0x420a305d 0x3 + .text.get_cache_error + 0x420a3060 0x38 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + *fill* 0x420a3098 0x0 + .text.panic_soc_check_pseudo_cause + 0x420a3098 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x420a3098 panic_soc_check_pseudo_cause + *fill* 0x420a309f 0x0 + *fill* 0x420a309f 0x1 + .text.panic_get_address + 0x420a30a0 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x420a30a0 panic_get_address + *fill* 0x420a30a7 0x1 + .text.panic_get_cause + 0x420a30a8 0x8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x420a30a8 panic_get_cause + .text.panic_set_address + 0x420a30b0 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x420a30b0 panic_set_address + *fill* 0x420a30b7 0x0 + *fill* 0x420a30b7 0x0 + *fill* 0x420a30b7 0x0 + *fill* 0x420a30b7 0x0 + *fill* 0x420a30b7 0x0 + *fill* 0x420a30b7 0x0 + *fill* 0x420a30b7 0x1 + .text.uart_hal_write_txfifo + 0x420a30b8 0x3a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x420a30b8 uart_hal_write_txfifo + *fill* 0x420a30f2 0x0 + *fill* 0x420a30f2 0x0 + *fill* 0x420a30f2 0x0 + *fill* 0x420a30f2 0x0 + *fill* 0x420a30f2 0x0 + *fill* 0x420a30f2 0x0 + *fill* 0x420a30f2 0x0 + *fill* 0x420a30f2 0x0 + *fill* 0x420a30f2 0x0 + *fill* 0x420a30f2 0x0 + *fill* 0x420a30f2 0x0 + *fill* 0x420a30f2 0x2 + .text.heap_caps_match + 0x420a30f4 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x420a30f4 heap_caps_match + *fill* 0x420a3122 0x0 + *fill* 0x420a3122 0x0 + *fill* 0x420a3122 0x0 + *fill* 0x420a3122 0x0 + *fill* 0x420a3122 0x0 + *fill* 0x420a3122 0x0 + *fill* 0x420a3122 0x0 + *fill* 0x420a3122 0x0 + *fill* 0x420a3122 0x2 + .text.s_compare_reserved_regions + 0x420a3124 0xc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x420a3130 0x0 + *fill* 0x420a3130 0x0 + *fill* 0x420a3130 0x0 + .text.__esp_system_init_fn_esp_security_init + 0x420a3130 0x7 esp-idf/esp_security/libesp_security.a(init.c.obj) + *fill* 0x420a3137 0x1 + .text.esp_security_init_include_impl + 0x420a3138 0x5 esp-idf/esp_security/libesp_security.a(init.c.obj) + 0x420a3138 esp_security_init_include_impl + *fill* 0x420a313d 0x0 + *fill* 0x420a313d 0x0 + *fill* 0x420a313d 0x0 + *fill* 0x420a313d 0x0 + *fill* 0x420a313d 0x3 + .text.esp_intr_get_cpu + 0x420a3140 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x420a3140 esp_intr_get_cpu + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x0 + *fill* 0x420a315a 0x2 + .text.esp_sleep_gpio_include + 0x420a315c 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x420a315c esp_sleep_gpio_include + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x0 + *fill* 0x420a3161 0x3 + .text.esp_libc_init_funcs + 0x420a3164 0x5 esp-idf/newlib/libnewlib.a(init.c.obj) + 0x420a3164 esp_libc_init_funcs + *fill* 0x420a3169 0x0 + *fill* 0x420a3169 0x3 + .text.esp_libc_include_pthread_impl + 0x420a316c 0x5 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x420a316c esp_libc_include_pthread_impl + *fill* 0x420a3171 0x3 + .text.esp_libc_include_getentropy_impl + 0x420a3174 0x5 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + 0x420a3174 esp_libc_include_getentropy_impl + *fill* 0x420a3179 0x0 + *fill* 0x420a3179 0x0 + *fill* 0x420a3179 0x0 + *fill* 0x420a3179 0x0 + *fill* 0x420a3179 0x0 + *fill* 0x420a3179 0x0 + *fill* 0x420a3179 0x0 + *fill* 0x420a3179 0x3 + .text.esp_libc_include_syscalls_impl + 0x420a317c 0x5 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x420a317c esp_libc_include_syscalls_impl + *fill* 0x420a3181 0x3 + .text.syscall_not_implemented + 0x420a3184 0xb esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + 0x420a3184 _kill_r + 0x420a3184 _system_r + 0x420a3184 _isatty_r + 0x420a3184 _getpid_r + *fill* 0x420a318f 0x0 + *fill* 0x420a318f 0x1 + .text.esp_libc_include_reent_syscalls_impl + 0x420a3190 0x5 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + 0x420a3190 esp_libc_include_reent_syscalls_impl + *fill* 0x420a3195 0x0 + *fill* 0x420a3195 0x0 + *fill* 0x420a3195 0x0 + *fill* 0x420a3195 0x3 + .text.esp_libc_include_init_funcs + 0x420a3198 0x5 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x420a3198 esp_libc_include_init_funcs + *fill* 0x420a319d 0x0 + *fill* 0x420a319d 0x3 + .text.pthread_include_pthread_impl + 0x420a31a0 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x420a31a0 pthread_include_pthread_impl + *fill* 0x420a31a5 0x3 + .text.pthread_include_pthread_cond_var_impl + 0x420a31a8 0x5 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x420a31a8 pthread_include_pthread_cond_var_impl + *fill* 0x420a31ad 0x3 + .text.find_value + 0x420a31b0 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x420a31c4 0x0 + *fill* 0x420a31c4 0x0 + *fill* 0x420a31c4 0x0 + *fill* 0x420a31c4 0x0 + .text.pthread_include_pthread_local_storage_impl + 0x420a31c4 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x420a31c4 pthread_include_pthread_local_storage_impl + *fill* 0x420a31c9 0x3 + .text.pthread_include_pthread_rwlock_impl + 0x420a31cc 0x5 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x420a31cc pthread_include_pthread_rwlock_impl + *fill* 0x420a31d1 0x3 + .text.pthread_include_pthread_semaphore_impl + 0x420a31d4 0x5 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x420a31d4 pthread_include_pthread_semaphore_impl + *fill* 0x420a31d9 0x3 + .text.__cxa_guard_dummy + 0x420a31dc 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x420a31dc __cxa_guard_dummy + *fill* 0x420a31e1 0x3 + .text.__cxx_init_dummy + 0x420a31e4 0x5 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + 0x420a31e4 __cxx_init_dummy + *fill* 0x420a31e9 0x0 + *fill* 0x420a31e9 0x0 + *fill* 0x420a31e9 0x3 + .text.esp_timer_init_include_func + 0x420a31ec 0x5 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x420a31ec esp_timer_init_include_func + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x0 + *fill* 0x420a31f1 0x3 + .text.uart_vfs_include_dev_init + 0x420a31f4 0x5 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x420a31f4 uart_vfs_include_dev_init + *fill* 0x420a31f9 0x0 + *fill* 0x420a31f9 0x0 + *fill* 0x420a31f9 0x0 + *fill* 0x420a31f9 0x0 + *fill* 0x420a31f9 0x0 + *fill* 0x420a31f9 0x0 + *fill* 0x420a31f9 0x0 + *fill* 0x420a31f9 0x3 + .text.usb_serial_jtag_connection_monitor_include + 0x420a31fc 0x5 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + 0x420a31fc usb_serial_jtag_connection_monitor_include + *fill* 0x420a3201 0x0 + *fill* 0x420a3201 0x3 + .text.usb_serial_jtag_close + 0x420a3204 0x7 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x0 + *fill* 0x420a320b 0x1 + .text.usb_serial_jtag_vfs_include_dev_init + 0x420a320c 0x5 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + 0x420a320c usb_serial_jtag_vfs_include_dev_init + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x0 + *fill* 0x420a3211 0x3 + .text.esp_vfs_include_console_register + 0x420a3214 0x5 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + 0x420a3214 esp_vfs_include_console_register + *fill* 0x420a3219 0x0 + *fill* 0x420a3219 0x3 + .text.is_path_prefix_valid + 0x420a321c 0x31 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x420a324d 0x3 + .text.esp_vfs_safe_fd_isset + 0x420a3250 0x3c esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + *fill* 0x420a328c 0x0 + .text.vfs_include_syscalls_impl + 0x420a328c 0x5 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x420a328c vfs_include_syscalls_impl + *fill* 0x420a3291 0x0 + *fill* 0x420a3291 0x0 + *fill* 0x420a3291 0x0 + *fill* 0x420a3291 0x0 + *fill* 0x420a3291 0x0 + *fill* 0x420a3291 0x0 + *fill* 0x420a3291 0x0 + *fill* 0x420a3291 0x0 + *fill* 0x420a3291 0x3 + .text.esp_vfs_include_nullfs_register + 0x420a3294 0x5 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x420a3294 esp_vfs_include_nullfs_register + *fill* 0x420a3299 0x3 + .text.nvs_sec_provider_include_impl + 0x420a329c 0x5 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x420a329c nvs_sec_provider_include_impl + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x0 + *fill* 0x420a32a1 0x3 + .text.SPIFFS_errno + 0x420a32a4 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x420a32a4 SPIFFS_errno + .text.SPIFFS_clearerr + 0x420a32ac 0xa esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x420a32ac SPIFFS_clearerr + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x0 + *fill* 0x420a32b6 0x2 + .text.spiffs_cache_page_get + 0x420a32b8 0x4a esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + *fill* 0x420a3302 0x2 + .text.spiffs_cache_page_free + 0x420a3304 0x6c esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .text.spiffs_cache_page_allocate + 0x420a3370 0x45 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + *fill* 0x420a33b5 0x0 + *fill* 0x420a33b5 0x0 + *fill* 0x420a33b5 0x0 + *fill* 0x420a33b5 0x3 + .text.spiffs_cache_page_get_by_fd + 0x420a33b8 0x46 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x420a33b8 spiffs_cache_page_get_by_fd + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x0 + *fill* 0x420a33fe 0x2 + .text.set_message_header_size + 0x420a3400 0xb esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + *fill* 0x420a340b 0x1 + .text.fail_message + 0x420a340c 0xd esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + *fill* 0x420a3419 0x0 + *fill* 0x420a3419 0x3 + .text.mqtt_get_total_length + 0x420a341c 0x37 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x420a341c mqtt_get_total_length + *fill* 0x420a3453 0x1 + .text.mqtt_get_publish_topic + 0x420a3454 0x4c esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x420a3454 mqtt_get_publish_topic + .text.mqtt_get_publish_data + 0x420a34a0 0x8e esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x420a34a0 mqtt_get_publish_data + *fill* 0x420a352e 0x2 + .text.mqtt_get_suback_data + 0x420a3530 0x18 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x420a3530 mqtt_get_suback_data + .text.mqtt_get_id + 0x420a3548 0xba esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + 0x420a3548 mqtt_get_id + *fill* 0x420a3602 0x0 + *fill* 0x420a3602 0x0 + *fill* 0x420a3602 0x0 + *fill* 0x420a3602 0x0 + *fill* 0x420a3602 0x0 + *fill* 0x420a3602 0x0 + *fill* 0x420a3602 0x2 + .text.outbox_get + 0x420a3604 0x16 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x420a3604 outbox_get + *fill* 0x420a361a 0x2 + .text.outbox_dequeue + 0x420a361c 0x23 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x420a361c outbox_dequeue + *fill* 0x420a363f 0x0 + *fill* 0x420a363f 0x1 + .text.outbox_item_get_data + 0x420a3640 0x1a esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x420a3640 outbox_item_get_data + *fill* 0x420a365a 0x0 + *fill* 0x420a365a 0x0 + *fill* 0x420a365a 0x2 + .text.outbox_item_get_pending + 0x420a365c 0xe esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + 0x420a365c outbox_item_get_pending + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x0 + *fill* 0x420a366a 0x2 + .text.get_decimal_point + 0x420a366c 0x7 esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x420a3673 0x1 + .text.parse_hex4 + 0x420a3674 0x55 esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x420a36c9 0x0 + *fill* 0x420a36c9 0x3 + .text.buffer_skip_whitespace + 0x420a36cc 0x38 esp-idf/json/libjson.a(cJSON.c.obj) + *fill* 0x420a3704 0x0 + *fill* 0x420a3704 0x0 + *fill* 0x420a3704 0x0 + *fill* 0x420a3704 0x0 + *fill* 0x420a3704 0x0 + *fill* 0x420a3704 0x0 + *fill* 0x420a3704 0x0 + *fill* 0x420a3704 0x0 + *fill* 0x420a3704 0x0 + *fill* 0x420a3704 0x0 + *fill* 0x420a3704 0x0 + *fill* 0x420a3704 0x0 + .text.is_ota_partition + 0x420a3704 0x2e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x420a3732 0x2 + .text.set_new_state_otadata + 0x420a3734 0x7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x0 + *fill* 0x420a373b 0x1 + .text.bootloader_common_ota_select_invalid + 0x420a373c 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x420a373c bootloader_common_ota_select_invalid + *fill* 0x420a3760 0x0 + *fill* 0x420a3760 0x0 + .text.bootloader_common_select_otadata + 0x420a3760 0x66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x420a3760 bootloader_common_select_otadata + *fill* 0x420a37c6 0x0 + *fill* 0x420a37c6 0x0 + *fill* 0x420a37c6 0x0 + *fill* 0x420a37c6 0x0 + *fill* 0x420a37c6 0x0 + *fill* 0x420a37c6 0x0 + *fill* 0x420a37c6 0x2 + .text.bootloader_debug_buffer + 0x420a37c8 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x420a37c8 bootloader_debug_buffer + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x0 + *fill* 0x420a37cd 0x3 + .text.s_mem_caps_check + 0x420a37d0 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x420a37ea 0x2 + .text.s_find_available_region + 0x420a37ec 0x2a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x420a3816 0x2 + .text.s_is_enclosed + 0x420a3818 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x420a3835 0x3 + .text.s_is_overlapped + 0x420a3838 0x1c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + *fill* 0x420a3854 0x0 + .text.spi_flash_chip_list_check + 0x420a3854 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x420a3854 spi_flash_chip_list_check + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x0 + *fill* 0x420a3859 0x3 + .text.uart_hal_get_sclk + 0x420a385c 0x2a esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x420a385c uart_hal_get_sclk + *fill* 0x420a3886 0x2 + .text.uart_hal_get_baudrate + 0x420a3888 0x38 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x420a3888 uart_hal_get_baudrate + .text.uart_hal_set_stop_bits + 0x420a38c0 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x420a38c0 uart_hal_set_stop_bits + .text.uart_hal_get_stop_bits + 0x420a38e0 0x11 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x420a38e0 uart_hal_get_stop_bits + *fill* 0x420a38f1 0x3 + .text.uart_hal_set_data_bit_num + 0x420a38f4 0x1f esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x420a38f4 uart_hal_set_data_bit_num + *fill* 0x420a3913 0x1 + .text.uart_hal_get_data_bit_num + 0x420a3914 0x11 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x420a3914 uart_hal_get_data_bit_num + *fill* 0x420a3925 0x3 + .text.uart_hal_set_parity + 0x420a3928 0x35 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x420a3928 uart_hal_set_parity + *fill* 0x420a395d 0x3 + .text.uart_hal_get_parity + 0x420a3960 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x420a3960 uart_hal_get_parity + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x0 + *fill* 0x420a3986 0x2 + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_EEET_SE_SE_T0_ + 0x420a3988 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x420a399a 0x0 + *fill* 0x420a399a 0x2 + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZ9nvs_closeEUlRS1_E_EEET_SA_SA_T0_ + 0x420a399c 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x420a39ae 0x0 + *fill* 0x420a39ae 0x0 + *fill* 0x420a39ae 0x0 + *fill* 0x420a39ae 0x2 + .text._ZN14NVSHandleEntryD2Ev + 0x420a39b0 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x420a39b0 NVSHandleEntry::~NVSHandleEntry() + 0x420a39b0 NVSHandleEntry::~NVSHandleEntry() + *fill* 0x420a39c0 0x0 + *fill* 0x420a39c0 0x0 + *fill* 0x420a39c0 0x0 + .text._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x420a39c0 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x420a39c0 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x420a39e2 0x0 + *fill* 0x420a39e2 0x0 + *fill* 0x420a39e2 0x2 + .text._ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ + 0x420a39e4 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x420a39e4 intrusive_list::push_back(NVSHandleEntry*) + *fill* 0x420a3a05 0x0 + *fill* 0x420a3a05 0x0 + *fill* 0x420a3a05 0x3 + .text._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x420a3a08 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x420a3a08 int nvs::NVSHandle::set_item(char const*, signed char) + *fill* 0x420a3a24 0x0 + .text._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x420a3a24 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x420a3a24 int nvs::NVSHandle::set_item(char const*, unsigned char) + *fill* 0x420a3a40 0x0 + .text._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x420a3a40 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x420a3a40 int nvs::NVSHandle::set_item(char const*, unsigned short) + *fill* 0x420a3a5c 0x0 + .text._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x420a3a5c 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x420a3a5c int nvs::NVSHandle::set_item(char const*, unsigned long) + *fill* 0x420a3a76 0x0 + *fill* 0x420a3a76 0x2 + .text._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x420a3a78 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x420a3a78 int nvs::NVSHandle::get_item(char const*, signed char&) + *fill* 0x420a3a90 0x0 + .text._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x420a3a90 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x420a3a90 int nvs::NVSHandle::get_item(char const*, unsigned char&) + *fill* 0x420a3aa8 0x0 + .text._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x420a3aa8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x420a3aa8 int nvs::NVSHandle::get_item(char const*, unsigned short&) + *fill* 0x420a3ac0 0x0 + .text._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x420a3ac0 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x420a3ac0 int nvs::NVSHandle::get_item(char const*, unsigned long&) + *fill* 0x420a3ad8 0x0 + .text._ZSt9__find_ifIPmN9__gnu_cxx5__ops10_Iter_predIZN3nvs4Page4loadEPNS4_9PartitionEmEUlmE_EEET_SA_SA_T0_St26random_access_iterator_tag + 0x420a3ad8 0x72 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x420a3b4a 0x0 + *fill* 0x420a3b4a 0x2 + .text._ZN3nvs4Page20updateFirstUsedEntryEjj + 0x420a3b4c 0x55 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x420a3b4c nvs::Page::updateFirstUsedEntry(unsigned int, unsigned int) + *fill* 0x420a3ba1 0x0 + *fill* 0x420a3ba1 0x3 + .text._ZN3nvs4Page14alterPageStateENS0_9PageStateE + 0x420a3ba4 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x420a3ba4 nvs::Page::alterPageState(nvs::Page::PageState) + .text._ZNK3nvs4Page9readEntryEjRNS_4ItemE + 0x420a3bcc 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x420a3bcc nvs::Page::readEntry(unsigned int, nvs::Item&) const + *fill* 0x420a3bf6 0x0 + *fill* 0x420a3bf6 0x0 + *fill* 0x420a3bf6 0x0 + *fill* 0x420a3bf6 0x0 + *fill* 0x420a3bf6 0x0 + *fill* 0x420a3bf6 0x0 + *fill* 0x420a3bf6 0x2 + .text._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x420a3bf8 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x420a3bf8 CompressedEnumTable::set(unsigned int, nvs::Page::EntryState) + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + *fill* 0x420a3c30 0x0 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ + 0x420a3c30 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x420a3c30 intrusive_list::push_back(nvs::Storage::BlobIndexNode*) + *fill* 0x420a3c51 0x3 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x420a3c54 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x420a3c54 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x420a3c76 0x0 + *fill* 0x420a3c76 0x2 + .text._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x420a3c78 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x420a3c78 CompressedEnumTable::set(unsigned int, bool) + *fill* 0x420a3cae 0x2 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x420a3cb0 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x420a3cb0 intrusive_list::push_back(nvs::Storage::NamespaceEntry*) + *fill* 0x420a3cd1 0x0 + *fill* 0x420a3cd1 0x3 + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ + 0x420a3cd4 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x420a3cd4 intrusive_list::push_back(nvs::Storage::UsedPageNode*) + *fill* 0x420a3cf5 0x0 + *fill* 0x420a3cf5 0x3 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE + 0x420a3cf8 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x420a3cf8 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x420a3d1a 0x0 + *fill* 0x420a3d1a 0x0 + *fill* 0x420a3d1a 0x0 + *fill* 0x420a3d1a 0x0 + *fill* 0x420a3d1a 0x2 + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE + 0x420a3d1c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x420a3d1c intrusive_list::erase(intrusive_list::iterator) + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x0 + *fill* 0x420a3d3e 0x2 + .text._ZNK3nvs15NVSHandleSimple18get_partition_nameEv + 0x420a3d40 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x420a3d40 nvs::NVSHandleSimple::get_partition_name() const + *fill* 0x420a3d52 0x0 + *fill* 0x420a3d52 0x2 + .text._ZN3nvs12NVSPartition18get_partition_nameEv + 0x420a3d54 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x420a3d54 nvs::NVSPartition::get_partition_name() + *fill* 0x420a3d5e 0x2 + .text._ZN3nvs12NVSPartition11get_addressEv + 0x420a3d60 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x420a3d60 nvs::NVSPartition::get_address() + *fill* 0x420a3d69 0x3 + .text._ZN3nvs12NVSPartition8get_sizeEv + 0x420a3d6c 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x420a3d6c nvs::NVSPartition::get_size() + *fill* 0x420a3d75 0x3 + .text._ZN3nvs12NVSPartition12get_readonlyEv + 0x420a3d78 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x420a3d78 nvs::NVSPartition::get_readonly() + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x0 + *fill* 0x420a3d82 0x2 + .text._ZN14intrusive_listIN3nvs12NVSPartitionEE9push_backEPS1_ + 0x420a3d84 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x420a3d84 intrusive_list::push_back(nvs::NVSPartition*) + *fill* 0x420a3da5 0x3 + .text._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + 0x420a3da8 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x420a3da8 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x420a3dca 0x2 + .text._ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ + 0x420a3dcc 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x420a3dcc intrusive_list::push_back(nvs::Storage*) + *fill* 0x420a3ded 0x3 + .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x420a3df0 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x420a3df0 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x420a3e11 0x0 + *fill* 0x420a3e11 0x3 + .text._ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE + 0x420a3e14 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x420a3e14 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x420a3e36 0x0 + *fill* 0x420a3e36 0x2 + .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ + 0x420a3e38 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x420a3e38 intrusive_list::push_back(nvs::NVSHandleSimple*) + *fill* 0x420a3e59 0x0 + *fill* 0x420a3e59 0x0 + *fill* 0x420a3e59 0x0 + *fill* 0x420a3e59 0x3 + .text._ZN3nvs4Lock4initEv + 0x420a3e5c 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x420a3e5c nvs::Lock::init() + *fill* 0x420a3e63 0x1 + .text._ZN3nvs8HashListC2Ev + 0x420a3e64 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x420a3e64 nvs::HashList::HashList() + 0x420a3e64 nvs::HashList::HashList() + *fill* 0x420a3e71 0x3 + .text._ZN3nvs8HashList13HashListBlockC2Ev + 0x420a3e74 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x420a3e74 nvs::HashList::HashListBlock::HashListBlock() + 0x420a3e74 nvs::HashList::HashListBlock::HashListBlock() + *fill* 0x420a3e99 0x0 + *fill* 0x420a3e99 0x3 + .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x420a3e9c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x420a3e9c intrusive_list::erase(intrusive_list::iterator) + *fill* 0x420a3ebe 0x0 + *fill* 0x420a3ebe 0x0 + *fill* 0x420a3ebe 0x0 + *fill* 0x420a3ebe 0x2 + .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ + 0x420a3ec0 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x420a3ec0 intrusive_list::push_back(nvs::HashList::HashListBlock*) + *fill* 0x420a3ee1 0x0 + *fill* 0x420a3ee1 0x0 + *fill* 0x420a3ee1 0x0 + *fill* 0x420a3ee1 0x0 + *fill* 0x420a3ee1 0x3 + .text._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x420a3ee4 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x420a3ee4 intrusive_list::push_back(nvs::Page*) + *fill* 0x420a3f05 0x3 + .text._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x420a3f08 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x420a3f08 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x420a3f29 0x0 + *fill* 0x420a3f29 0x0 + *fill* 0x420a3f29 0x0 + *fill* 0x420a3f29 0x3 + .text._ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ + 0x420a3f2c 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x420a3f2c intrusive_list::push_front(nvs::Page*) + *fill* 0x420a3f4c 0x0 + *fill* 0x420a3f4c 0x0 + *fill* 0x420a3f4c 0x0 + *fill* 0x420a3f4c 0x0 + *fill* 0x420a3f4c 0x0 + .text.lwip_poll_should_wake + 0x420a3f4c 0x46 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x0 + *fill* 0x420a3f92 0x2 + .text.lwip_htons + 0x420a3f94 0x14 esp-idf/lwip/liblwip.a(def.c.obj) + 0x420a3f94 lwip_htons + .text.lwip_htonl + 0x420a3fa8 0x26 esp-idf/lwip/liblwip.a(def.c.obj) + 0x420a3fa8 lwip_htonl + *fill* 0x420a3fce 0x2 + .text.lwip_strnicmp + 0x420a3fd0 0x49 esp-idf/lwip/liblwip.a(def.c.obj) + 0x420a3fd0 lwip_strnicmp + *fill* 0x420a4019 0x0 + *fill* 0x420a4019 0x0 + *fill* 0x420a4019 0x0 + *fill* 0x420a4019 0x3 + .text.mem_init + 0x420a401c 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x420a401c mem_init + *fill* 0x420a4021 0x3 + .text.mem_trim + 0x420a4024 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x420a4024 mem_trim + *fill* 0x420a4029 0x0 + *fill* 0x420a4029 0x0 + *fill* 0x420a4029 0x0 + *fill* 0x420a4029 0x0 + *fill* 0x420a4029 0x3 + .text.memp_init + 0x420a402c 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x420a402c memp_init + .text.netif_null_output_ip6 + 0x420a4040 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_null_output_ip4 + 0x420a4048 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + *fill* 0x420a4050 0x0 + .text.pbuf_init_alloced_pbuf + 0x420a4050 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x420a406f 0x1 + .text.pbuf_skip_const + 0x420a4070 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x420a408f 0x0 + *fill* 0x420a408f 0x0 + *fill* 0x420a408f 0x0 + *fill* 0x420a408f 0x0 + *fill* 0x420a408f 0x0 + *fill* 0x420a408f 0x0 + *fill* 0x420a408f 0x0 + *fill* 0x420a408f 0x0 + *fill* 0x420a408f 0x1 + .text.pbuf_clen + 0x420a4090 0x16 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x420a4090 pbuf_clen + *fill* 0x420a40a6 0x0 + *fill* 0x420a40a6 0x0 + *fill* 0x420a40a6 0x0 + *fill* 0x420a40a6 0x0 + *fill* 0x420a40a6 0x0 + *fill* 0x420a40a6 0x0 + *fill* 0x420a40a6 0x0 + *fill* 0x420a40a6 0x0 + *fill* 0x420a40a6 0x0 + *fill* 0x420a40a6 0x0 + *fill* 0x420a40a6 0x0 + *fill* 0x420a40a6 0x2 + .text.raw_bind_netif + 0x420a40a8 0x17 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x420a40a8 raw_bind_netif + *fill* 0x420a40bf 0x0 + *fill* 0x420a40bf 0x1 + .text.raw_recv + 0x420a40c0 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + 0x420a40c0 raw_recv + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x0 + *fill* 0x420a40ca 0x2 + .text.tcp_bind_netif + 0x420a40cc 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x420a40cc tcp_bind_netif + *fill* 0x420a40e3 0x0 + *fill* 0x420a40e3 0x0 + *fill* 0x420a40e3 0x0 + *fill* 0x420a40e3 0x0 + *fill* 0x420a40e3 0x1 + .text.tcp_arg 0x420a40e4 0xa esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x420a40e4 tcp_arg + *fill* 0x420a40ee 0x0 + *fill* 0x420a40ee 0x0 + *fill* 0x420a40ee 0x0 + *fill* 0x420a40ee 0x2 + .text.tcp_accept + 0x420a40f0 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x420a40f0 tcp_accept + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x0 + *fill* 0x420a40ff 0x1 + .text.udp_bind_netif + 0x420a4100 0x17 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x420a4100 udp_bind_netif + *fill* 0x420a4117 0x0 + *fill* 0x420a4117 0x1 + .text.udp_recv + 0x420a4118 0xe esp-idf/lwip/liblwip.a(udp.c.obj) + 0x420a4118 udp_recv + *fill* 0x420a4126 0x0 + *fill* 0x420a4126 0x0 + *fill* 0x420a4126 0x2 + .text.dhcp_set_state + 0x420a4128 0x17 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x0 + *fill* 0x420a413f 0x1 + .text.dhcp_supplied_address + 0x420a4140 0x38 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x420a4140 dhcp_supplied_address + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + *fill* 0x420a4178 0x0 + .text.igmp_remove_group + 0x420a4178 0x22 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x420a419a 0x0 + *fill* 0x420a419a 0x0 + *fill* 0x420a419a 0x0 + *fill* 0x420a419a 0x0 + *fill* 0x420a419a 0x0 + *fill* 0x420a419a 0x0 + *fill* 0x420a419a 0x0 + *fill* 0x420a419a 0x2 + .text.igmp_lookfor_group + 0x420a419c 0x17 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x420a419c igmp_lookfor_group + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x0 + *fill* 0x420a41b3 0x1 + .text.ip4_addr_isbroadcast_u32 + 0x420a41b4 0x46 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x420a41b4 ip4_addr_isbroadcast_u32 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x0 + *fill* 0x420a41fa 0x2 + .text.mld6_remove_group + 0x420a41fc 0x2c esp-idf/lwip/liblwip.a(mld6.c.obj) + *fill* 0x420a4228 0x0 + *fill* 0x420a4228 0x0 + *fill* 0x420a4228 0x0 + .text.mld6_lookfor_group + 0x420a4228 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x420a4228 mld6_lookfor_group + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x0 + *fill* 0x420a425d 0x3 + .text.nd6_restart_netif + 0x420a4260 0xa esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x420a4260 nd6_restart_netif + *fill* 0x420a426a 0x0 + *fill* 0x420a426a 0x0 + *fill* 0x420a426a 0x0 + *fill* 0x420a426a 0x0 + *fill* 0x420a426a 0x0 + *fill* 0x420a426a 0x0 + *fill* 0x420a426a 0x2 + .text.lwip_setsockopt_impl_ext + 0x420a426c 0xde esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + 0x420a426c lwip_setsockopt_impl_ext + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x0 + *fill* 0x420a434a 0x2 + .text.acd_add 0x420a434c 0x9 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + 0x420a434c acd_add + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x0 + *fill* 0x420a4355 0x3 + .text.dns_init + 0x420a4358 0x5 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x420a4358 dns_init + *fill* 0x420a435d 0x0 + *fill* 0x420a435d 0x0 + *fill* 0x420a435d 0x0 + *fill* 0x420a435d 0x3 + .text.lwip_standard_chksum + 0x420a4360 0x5e esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x420a4360 lwip_standard_chksum + *fill* 0x420a43be 0x0 + *fill* 0x420a43be 0x0 + *fill* 0x420a43be 0x0 + *fill* 0x420a43be 0x0 + *fill* 0x420a43be 0x0 + *fill* 0x420a43be 0x2 + .text.esp_netif_reset_ip_info + 0x420a43c0 0x15 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x0 + *fill* 0x420a43d5 0x3 + .text.esp_netif_get_io_driver + 0x420a43d8 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420a43d8 esp_netif_get_io_driver + *fill* 0x420a43df 0x0 + *fill* 0x420a43df 0x0 + *fill* 0x420a43df 0x0 + *fill* 0x420a43df 0x0 + *fill* 0x420a43df 0x0 + *fill* 0x420a43df 0x0 + *fill* 0x420a43df 0x1 + .text.esp_netif_free_rx_buffer + 0x420a43e0 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420a43e0 esp_netif_free_rx_buffer + *fill* 0x420a43ee 0x0 + *fill* 0x420a43ee 0x0 + *fill* 0x420a43ee 0x2 + .text.esp_netif_dhcpc_get_status + 0x420a43f0 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420a43f0 esp_netif_dhcpc_get_status + *fill* 0x420a4411 0x0 + *fill* 0x420a4411 0x3 + .text.esp_netif_is_netif_up + 0x420a4414 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420a4414 esp_netif_is_netif_up + *fill* 0x420a4430 0x0 + *fill* 0x420a4430 0x0 + .text.esp_netif_is_valid_static_ip + 0x420a4430 0x19 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420a4430 esp_netif_is_valid_static_ip + *fill* 0x420a4449 0x3 + .text.esp_netif_get_flags + 0x420a444c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420a444c esp_netif_get_flags + .text.esp_netif_get_ifkey + 0x420a4454 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420a4454 esp_netif_get_ifkey + .text.esp_netif_get_desc + 0x420a445c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420a445c esp_netif_get_desc + .text.esp_netif_get_event_id + 0x420a4464 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x420a4464 esp_netif_get_event_id + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x0 + *fill* 0x420a4481 0x3 + .text.WPA_PUT_BE64 + 0x420a4484 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + *fill* 0x420a44b3 0x1 + .text.inc32 0x420a44b4 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + *fill* 0x420a44ee 0x2 + .text.xor_block + 0x420a44f0 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + *fill* 0x420a4519 0x0 + *fill* 0x420a4519 0x0 + *fill* 0x420a4519 0x0 + *fill* 0x420a4519 0x0 + *fill* 0x420a4519 0x0 + *fill* 0x420a4519 0x0 + *fill* 0x420a4519 0x0 + *fill* 0x420a4519 0x3 + .text.hex2num 0x420a451c 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.inc_byte_array + 0x420a4554 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x420a4554 inc_byte_array + *fill* 0x420a4572 0x2 + .text.buf_shift_right + 0x420a4574 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x420a4574 buf_shift_right + *fill* 0x420a45b3 0x0 + *fill* 0x420a45b3 0x0 + *fill* 0x420a45b3 0x0 + *fill* 0x420a45b3 0x1 + .text.int_array_len + 0x420a45b4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x420a45b4 int_array_len + *fill* 0x420a45cc 0x0 + .text.os_reltime_initialized + 0x420a45cc 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x420a45cc os_reltime_initialized + *fill* 0x420a45e6 0x2 + .text.xor_aes_block + 0x420a45e8 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x0 + *fill* 0x420a4611 0x3 + .text.ieee80211_ftm_attach + 0x420a4614 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x420a4614 ieee80211_ftm_attach + *fill* 0x420a461b 0x1 + .text.ftm_initiator_cleanup + 0x420a461c 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x420a461c ftm_initiator_cleanup + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x0 + *fill* 0x420a4621 0x3 + .text.esp_tls_internal_event_tracker_capture + 0x420a4624 0x4f esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + 0x420a4624 esp_tls_internal_event_tracker_capture + *fill* 0x420a4673 0x0 + *fill* 0x420a4673 0x0 + *fill* 0x420a4673 0x0 + *fill* 0x420a4673 0x0 + *fill* 0x420a4673 0x0 + *fill* 0x420a4673 0x0 + *fill* 0x420a4673 0x0 + *fill* 0x420a4673 0x0 + *fill* 0x420a4673 0x0 + *fill* 0x420a4673 0x0 + *fill* 0x420a4673 0x1 + .text.esp_transport_get_default_parent + 0x420a4674 0x5 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + *fill* 0x420a4679 0x0 + *fill* 0x420a4679 0x0 + *fill* 0x420a4679 0x0 + *fill* 0x420a4679 0x3 + .text.esp_transport_connect + 0x420a467c 0x22 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a467c esp_transport_connect + *fill* 0x420a469e 0x2 + .text.esp_transport_read + 0x420a46a0 0x22 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a46a0 esp_transport_read + *fill* 0x420a46c2 0x2 + .text.esp_transport_write + 0x420a46c4 0x22 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a46c4 esp_transport_write + *fill* 0x420a46e6 0x2 + .text.esp_transport_poll_read + 0x420a46e8 0x1e esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a46e8 esp_transport_poll_read + *fill* 0x420a4706 0x2 + .text.esp_transport_poll_write + 0x420a4708 0x1e esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a4708 esp_transport_poll_write + *fill* 0x420a4726 0x2 + .text.esp_transport_close + 0x420a4728 0x1d esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a4728 esp_transport_close + *fill* 0x420a4745 0x3 + .text.esp_transport_get_context_data + 0x420a4748 0xa esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a4748 esp_transport_get_context_data + *fill* 0x420a4752 0x2 + .text.esp_transport_set_context_data + 0x420a4754 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a4754 esp_transport_set_context_data + *fill* 0x420a4764 0x0 + .text.esp_transport_get_default_port + 0x420a4764 0xe esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a4764 esp_transport_get_default_port + *fill* 0x420a4772 0x2 + .text.esp_transport_set_default_port + 0x420a4774 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a4774 esp_transport_set_default_port + .text.esp_transport_set_async_connect_func + 0x420a4784 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a4784 esp_transport_set_async_connect_func + .text.esp_transport_set_parent_transport_func + 0x420a4794 0x10 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a4794 esp_transport_set_parent_transport_func + .text.esp_transport_get_error_handle + 0x420a47a4 0xe esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a47a4 esp_transport_get_error_handle + *fill* 0x420a47b2 0x2 + .text.esp_transport_get_errno + 0x420a47b4 0x25 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a47b4 esp_transport_get_errno + *fill* 0x420a47d9 0x0 + *fill* 0x420a47d9 0x3 + .text.esp_transport_capture_errno + 0x420a47dc 0x12 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a47dc esp_transport_capture_errno + *fill* 0x420a47ee 0x2 + .text.esp_transport_get_socket + 0x420a47f0 0x1d esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + 0x420a47f0 esp_transport_get_socket + *fill* 0x420a480d 0x3 + .text.base_get_socket + 0x420a4810 0x19 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + *fill* 0x420a4829 0x0 + *fill* 0x420a4829 0x0 + *fill* 0x420a4829 0x0 + *fill* 0x420a4829 0x0 + *fill* 0x420a4829 0x0 + *fill* 0x420a4829 0x0 + *fill* 0x420a4829 0x3 + .text.esp_transport_ssl_set_keep_alive + 0x420a482c 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x420a482c esp_transport_ssl_set_keep_alive + *fill* 0x420a483a 0x2 + .text.esp_transport_ssl_set_interface_name + 0x420a483c 0xe esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + 0x420a483c esp_transport_ssl_set_interface_name + *fill* 0x420a484a 0x0 + *fill* 0x420a484a 0x0 + *fill* 0x420a484a 0x0 + *fill* 0x420a484a 0x0 + *fill* 0x420a484a 0x0 + *fill* 0x420a484a 0x0 + *fill* 0x420a484a 0x0 + *fill* 0x420a484a 0x2 + .text.ws_get_socket + 0x420a484c 0x2d esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x0 + *fill* 0x420a4879 0x3 + .text.ciphersuite_is_removed + 0x420a487c 0x7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + *fill* 0x420a4883 0x0 + *fill* 0x420a4883 0x0 + *fill* 0x420a4883 0x1 + .text.mbedtls_ssl_get_ciphersuite_sig_pk_alg + 0x420a4884 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x420a4884 mbedtls_ssl_get_ciphersuite_sig_pk_alg + .text.mbedtls_ssl_get_ciphersuite_sig_alg + 0x420a48c8 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x420a48c8 mbedtls_ssl_get_ciphersuite_sig_alg + *fill* 0x420a48ea 0x2 + .text.mbedtls_ssl_ciphersuite_uses_ec + 0x420a48ec 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x420a48ec mbedtls_ssl_ciphersuite_uses_ec + *fill* 0x420a4915 0x3 + .text.mbedtls_ct_uint_lt + 0x420a4918 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + *fill* 0x420a4955 0x3 + .text.ssl_transform_aead_dynamic_iv_is_explicit + 0x420a4958 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + *fill* 0x420a4969 0x3 + .text.ssl_get_hs_total_len + 0x420a496c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + *fill* 0x420a4989 0x0 + *fill* 0x420a4989 0x3 + .text.ssl_record_is_in_progress + 0x420a498c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + *fill* 0x420a499d 0x3 + .text.ssl_transform_get_explicit_iv_len + 0x420a49a0 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + *fill* 0x420a49ac 0x0 + *fill* 0x420a49ac 0x0 + *fill* 0x420a49ac 0x0 + .text.mbedtls_ssl_set_timer + 0x420a49ac 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x420a49ac mbedtls_ssl_set_timer + *fill* 0x420a49c2 0x2 + .text.mbedtls_ssl_check_timer + 0x420a49c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x420a49c4 mbedtls_ssl_check_timer + *fill* 0x420a49e4 0x0 + *fill* 0x420a49e4 0x0 + *fill* 0x420a49e4 0x0 + *fill* 0x420a49e4 0x0 + .text.mbedtls_ssl_update_handshake_status + 0x420a49e4 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x420a49e4 mbedtls_ssl_update_handshake_status + *fill* 0x420a4a0e 0x2 + .text.mbedtls_ssl_update_in_pointers + 0x420a4a10 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x420a4a10 mbedtls_ssl_update_in_pointers + *fill* 0x420a4a2b 0x0 + *fill* 0x420a4a2b 0x0 + *fill* 0x420a4a2b 0x0 + *fill* 0x420a4a2b 0x0 + *fill* 0x420a4a2b 0x1 + .text.mbedtls_ssl_get_bytes_avail + 0x420a4a2c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x420a4a2c mbedtls_ssl_get_bytes_avail + *fill* 0x420a4a3e 0x2 + .text.mbedtls_ssl_write_version + 0x420a4a40 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x420a4a40 mbedtls_ssl_write_version + *fill* 0x420a4a57 0x0 + *fill* 0x420a4a57 0x0 + *fill* 0x420a4a57 0x0 + *fill* 0x420a4a57 0x0 + *fill* 0x420a4a57 0x0 + *fill* 0x420a4a57 0x0 + *fill* 0x420a4a57 0x0 + *fill* 0x420a4a57 0x1 + .text.mbedtls_ssl_read_version + 0x420a4a58 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x420a4a58 mbedtls_ssl_read_version + *fill* 0x420a4a75 0x0 + *fill* 0x420a4a75 0x0 + *fill* 0x420a4a75 0x0 + *fill* 0x420a4a75 0x0 + *fill* 0x420a4a75 0x3 + .text.mbedtls_ssl_pend_fatal_alert + 0x420a4a78 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x420a4a78 mbedtls_ssl_pend_fatal_alert + .text.mbedtls_ssl_own_cert + 0x420a4a88 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x420a4aa3 0x1 + .text.mbedtls_ssl_tls12_sig_alg_is_supported + 0x420a4aa4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x420a4acc 0x0 + *fill* 0x420a4acc 0x0 + .text.mbedtls_ssl_get_base_mode + 0x420a4acc 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x420a4b02 0x2 + .text.mbedtls_ssl_get_actual_mode + 0x420a4b04 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x420a4b1e 0x2 + .text.mbedtls_ssl_has_set_hostname_been_called + 0x420a4b20 0xd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x420a4b2d 0x0 + *fill* 0x420a4b2d 0x3 + .text.ssl_parse_certificate_coordinate + 0x420a4b30 0x49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x0 + *fill* 0x420a4b79 0x3 + .text.mbedtls_ssl_add_hs_hdr_to_checksum + 0x420a4b7c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4b7c mbedtls_ssl_add_hs_hdr_to_checksum + *fill* 0x420a4ba4 0x0 + *fill* 0x420a4ba4 0x0 + .text.mbedtls_ssl_conf_endpoint + 0x420a4ba4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4ba4 mbedtls_ssl_conf_endpoint + .text.mbedtls_ssl_conf_transport + 0x420a4bac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4bac mbedtls_ssl_conf_transport + .text.mbedtls_ssl_conf_authmode + 0x420a4bb4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4bb4 mbedtls_ssl_conf_authmode + .text.mbedtls_ssl_conf_rng + 0x420a4bbc 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4bbc mbedtls_ssl_conf_rng + *fill* 0x420a4bc5 0x3 + .text.mbedtls_ssl_set_bio + 0x420a4bc8 0xd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4bc8 mbedtls_ssl_set_bio + *fill* 0x420a4bd5 0x3 + .text.mbedtls_ssl_conf_ciphersuites + 0x420a4bd8 0x7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4bd8 mbedtls_ssl_conf_ciphersuites + *fill* 0x420a4bdf 0x1 + .text.mbedtls_ssl_conf_ca_chain + 0x420a4be0 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4be0 mbedtls_ssl_conf_ca_chain + *fill* 0x420a4beb 0x0 + *fill* 0x420a4beb 0x0 + *fill* 0x420a4beb 0x0 + *fill* 0x420a4beb 0x0 + *fill* 0x420a4beb 0x0 + *fill* 0x420a4beb 0x0 + *fill* 0x420a4beb 0x1 + .text.mbedtls_ssl_conf_renegotiation + 0x420a4bec 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4bec mbedtls_ssl_conf_renegotiation + .text.mbedtls_ssl_conf_session_tickets + 0x420a4bf4 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4bf4 mbedtls_ssl_conf_session_tickets + *fill* 0x420a4c0f 0x1 + .text.mbedtls_ssl_get_verify_result + 0x420a4c10 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4c10 mbedtls_ssl_get_verify_result + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + *fill* 0x420a4c2c 0x0 + .text.mbedtls_ssl_sig_from_pk_alg + 0x420a4c2c 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4c2c mbedtls_ssl_sig_from_pk_alg + *fill* 0x420a4c4a 0x2 + .text.mbedtls_ssl_pk_alg_from_sig + 0x420a4c4c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4c4c mbedtls_ssl_pk_alg_from_sig + *fill* 0x420a4c66 0x2 + .text.mbedtls_ssl_md_alg_from_hash + 0x420a4c68 0x46 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4c68 mbedtls_ssl_md_alg_from_hash + *fill* 0x420a4cae 0x2 + .text.mbedtls_ssl_hash_from_md_alg + 0x420a4cb0 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4cb0 mbedtls_ssl_hash_from_md_alg + *fill* 0x420a4cf5 0x3 + .text.mbedtls_ssl_check_curve_tls_id + 0x420a4cf8 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4cf8 mbedtls_ssl_check_curve_tls_id + *fill* 0x420a4d21 0x0 + *fill* 0x420a4d21 0x0 + *fill* 0x420a4d21 0x0 + *fill* 0x420a4d21 0x0 + *fill* 0x420a4d21 0x0 + *fill* 0x420a4d21 0x0 + *fill* 0x420a4d21 0x0 + *fill* 0x420a4d21 0x0 + *fill* 0x420a4d21 0x0 + *fill* 0x420a4d21 0x0 + *fill* 0x420a4d21 0x0 + *fill* 0x420a4d21 0x3 + .text.mbedtls_ssl_validate_ciphersuite + 0x420a4d24 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x420a4d24 mbedtls_ssl_validate_ciphersuite + *fill* 0x420a4d49 0x0 + *fill* 0x420a4d49 0x0 + *fill* 0x420a4d49 0x0 + *fill* 0x420a4d49 0x0 + *fill* 0x420a4d49 0x0 + *fill* 0x420a4d49 0x3 + .text.mbedtls_ssl_own_key + 0x420a4d4c 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + *fill* 0x420a4d67 0x1 + .text.mbedtls_ssl_own_cert + 0x420a4d68 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + *fill* 0x420a4d83 0x1 + .text.mbedtls_ssl_tls12_sig_alg_is_supported + 0x420a4d84 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + *fill* 0x420a4dac 0x0 + .text.mbedtls_ssl_ciphersuite_no_pfs + 0x420a4dac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_own_key + 0x420a4dcc 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + *fill* 0x420a4de7 0x1 + .text.mbedtls_ssl_own_cert + 0x420a4de8 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + *fill* 0x420a4e03 0x1 + .text.mbedtls_ssl_tls12_sig_alg_is_supported + 0x420a4e04 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_extended_ms_ext + 0x420a4e2c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_session_ticket_ext + 0x420a4e54 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_max_fragment_length_ext + 0x420a4e7c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_supported_point_formats_ext + 0x420a4eac 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x0 + *fill* 0x420a4ee2 0x2 + .text.mbedtls_net_init + 0x420a4ee4 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x420a4ee4 mbedtls_net_init + *fill* 0x420a4eed 0x0 + *fill* 0x420a4eed 0x0 + *fill* 0x420a4eed 0x0 + *fill* 0x420a4eed 0x3 + .text.mbedtls_ssl_tls12_named_group_is_ecdhe + 0x420a4ef0 0x91 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + *fill* 0x420a4f81 0x0 + *fill* 0x420a4f81 0x0 + *fill* 0x420a4f81 0x0 + *fill* 0x420a4f81 0x0 + *fill* 0x420a4f81 0x0 + *fill* 0x420a4f81 0x0 + *fill* 0x420a4f81 0x0 + *fill* 0x420a4f81 0x3 + .text.mbedtls_mpi_init + 0x420a4f84 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x420a4f84 mbedtls_mpi_init + *fill* 0x420a4f97 0x0 + *fill* 0x420a4f97 0x0 + *fill* 0x420a4f97 0x0 + *fill* 0x420a4f97 0x0 + *fill* 0x420a4f97 0x1 + .text.mbedtls_mpi_get_bit + 0x420a4f98 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x420a4f98 mbedtls_mpi_get_bit + *fill* 0x420a4fbe 0x2 + .text.mbedtls_mpi_lsb + 0x420a4fc0 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x420a4fc0 mbedtls_mpi_lsb + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + *fill* 0x420a4ff4 0x0 + .text.mbedtls_ct_uint_lt + 0x420a4ff4 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + *fill* 0x420a5031 0x3 + .text.mbedtls_mpi_core_clz + 0x420a5034 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x420a5034 mbedtls_mpi_core_clz + *fill* 0x420a503c 0x0 + *fill* 0x420a503c 0x0 + .text.mbedtls_mpi_core_cond_assign + 0x420a503c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x420a503c mbedtls_mpi_core_cond_assign + *fill* 0x420a506a 0x2 + .text.mbedtls_mpi_core_cond_swap + 0x420a506c 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x420a506c mbedtls_mpi_core_cond_swap + *fill* 0x420a50ab 0x0 + *fill* 0x420a50ab 0x0 + *fill* 0x420a50ab 0x1 + .text.mbedtls_mpi_core_add + 0x420a50ac 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x420a50ac mbedtls_mpi_core_add + *fill* 0x420a50da 0x2 + .text.mbedtls_mpi_core_sub + 0x420a50dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x420a50dc mbedtls_mpi_core_sub + .text.mbedtls_mpi_core_mla + 0x420a510c 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x420a510c mbedtls_mpi_core_mla + *fill* 0x420a5242 0x2 + .text.mbedtls_mpi_core_montmul_init + 0x420a5244 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x420a5244 mbedtls_mpi_core_montmul_init + *fill* 0x420a5270 0x0 + *fill* 0x420a5270 0x0 + *fill* 0x420a5270 0x0 + *fill* 0x420a5270 0x0 + .text.mbedtls_mpi_core_sub_int + 0x420a5270 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x420a5270 mbedtls_mpi_core_sub_int + *fill* 0x420a5293 0x0 + *fill* 0x420a5293 0x1 + .text.mbedtls_ct_uint_lt + 0x420a5294 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x420a52d1 0x3 + .text.add_pkcs_padding + 0x420a52d4 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x420a52f1 0x0 + *fill* 0x420a52f1 0x3 + .text.add_one_and_zeros_padding + 0x420a52f4 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x420a531b 0x0 + *fill* 0x420a531b 0x1 + .text.add_zeros_and_len_padding + 0x420a531c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + *fill* 0x420a5344 0x0 + .text.mbedtls_ct_uint_lt + 0x420a5344 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + *fill* 0x420a5381 0x3 + .text.mbedtls_ct_memcmp + 0x420a5384 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x420a5384 mbedtls_ct_memcmp + *fill* 0x420a53ba 0x0 + *fill* 0x420a53ba 0x2 + .text.mbedtls_ct_memcpy_if + 0x420a53bc 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x420a53bc mbedtls_ct_memcpy_if + *fill* 0x420a53ef 0x0 + *fill* 0x420a53ef 0x1 + .text.mbedtls_ct_zeroize_if + 0x420a53f0 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x420a53f0 mbedtls_ct_zeroize_if + *fill* 0x420a540f 0x1 + .text.cmac_pad + 0x420a5410 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + *fill* 0x420a5444 0x0 + *fill* 0x420a5444 0x0 + *fill* 0x420a5444 0x0 + *fill* 0x420a5444 0x0 + *fill* 0x420a5444 0x0 + .text.good_nonce_len + 0x420a5444 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + *fill* 0x420a5458 0x0 + *fill* 0x420a5458 0x0 + *fill* 0x420a5458 0x0 + *fill* 0x420a5458 0x0 + *fill* 0x420a5458 0x0 + .text.mbedtls_ecdh_grp_id + 0x420a5458 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x0 + *fill* 0x420a545f 0x1 + .text.ecp_group_is_static_comb_table + 0x420a5460 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x0 + *fill* 0x420a5467 0x1 + .text.mbedtls_ecp_get_type + 0x420a5468 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x420a5468 mbedtls_ecp_get_type + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x0 + *fill* 0x420a5481 0x3 + .text.add64 0x420a5484 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .text.carry64 0x420a54b8 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x420a54db 0x1 + .text.mbedtls_ecp_fix_negative + 0x420a54dc 0x5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x0 + *fill* 0x420a5537 0x1 + .text.mbedtls_entropy_add_source + 0x420a5538 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x420a5538 mbedtls_entropy_add_source + *fill* 0x420a555e 0x0 + *fill* 0x420a555e 0x0 + *fill* 0x420a555e 0x0 + *fill* 0x420a555e 0x0 + *fill* 0x420a555e 0x0 + *fill* 0x420a555e 0x0 + *fill* 0x420a555e 0x0 + *fill* 0x420a555e 0x0 + *fill* 0x420a555e 0x0 + *fill* 0x420a555e 0x0 + *fill* 0x420a555e 0x2 + .text.mbedtls_md_get_size + 0x420a5560 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x420a5560 mbedtls_md_get_size + .text.mbedtls_md_get_type + 0x420a5570 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x420a5570 mbedtls_md_get_type + *fill* 0x420a557e 0x2 + .text.mbedtls_md_info_from_ctx + 0x420a5580 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x420a5580 mbedtls_md_info_from_ctx + *fill* 0x420a558a 0x0 + *fill* 0x420a558a 0x0 + *fill* 0x420a558a 0x0 + *fill* 0x420a558a 0x0 + *fill* 0x420a558a 0x0 + *fill* 0x420a558a 0x0 + *fill* 0x420a558a 0x2 + .text.mbedtls_pk_init + 0x420a558c 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x420a558c mbedtls_pk_init + *fill* 0x420a5597 0x0 + *fill* 0x420a5597 0x0 + *fill* 0x420a5597 0x0 + *fill* 0x420a5597 0x1 + .text.mbedtls_pk_can_do + 0x420a5598 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x420a5598 mbedtls_pk_can_do + *fill* 0x420a55b6 0x0 + *fill* 0x420a55b6 0x0 + *fill* 0x420a55b6 0x0 + *fill* 0x420a55b6 0x0 + *fill* 0x420a55b6 0x0 + *fill* 0x420a55b6 0x0 + *fill* 0x420a55b6 0x2 + .text.mbedtls_pk_get_bitlen + 0x420a55b8 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x420a55b8 mbedtls_pk_get_bitlen + *fill* 0x420a55d6 0x2 + .text.mbedtls_pk_get_type + 0x420a55d8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x420a55d8 mbedtls_pk_get_type + *fill* 0x420a55f0 0x0 + *fill* 0x420a55f0 0x0 + *fill* 0x420a55f0 0x0 + .text.rsa_can_do + 0x420a55f0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x420a5609 0x3 + .text.eckey_can_do + 0x420a560c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x420a561e 0x2 + .text.eckey_get_bitlen + 0x420a5620 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x420a5629 0x0 + *fill* 0x420a5629 0x3 + .text.eckeydh_can_do + 0x420a562c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x420a563e 0x2 + .text.ecdsa_can_do + 0x420a5640 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x420a564e 0x2 + .text.rsa_alt_can_do + 0x420a5650 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x420a5669 0x3 + .text.rsa_alt_get_bitlen + 0x420a566c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x0 + *fill* 0x420a567d 0x3 + .text.pk_ecc_tag_is_specified_ec_domain + 0x420a5680 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x0 + *fill* 0x420a568e 0x2 + .text.mbedtls_ct_uint_lt + 0x420a5690 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x0 + *fill* 0x420a56cd 0x3 + .text.mbedtls_rsa_get_len + 0x420a56d0 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x420a56d0 mbedtls_rsa_get_len + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x0 + *fill* 0x420a56d7 0x1 + .text.esp_aes_xts_decode_keys + 0x420a56d8 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + *fill* 0x420a56fd 0x3 + .text.esp_gf128mul_x_ble + 0x420a5700 0x109 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + *fill* 0x420a5809 0x0 + *fill* 0x420a5809 0x0 + *fill* 0x420a5809 0x0 + *fill* 0x420a5809 0x0 + *fill* 0x420a5809 0x0 + *fill* 0x420a5809 0x3 + .text.valid_key_length + 0x420a580c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x420a580c valid_key_length + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x0 + *fill* 0x420a5829 0x3 + .text.mbedtls_zeroize + 0x420a582c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + *fill* 0x420a5845 0x0 + *fill* 0x420a5845 0x0 + *fill* 0x420a5845 0x0 + *fill* 0x420a5845 0x0 + *fill* 0x420a5845 0x0 + *fill* 0x420a5845 0x0 + *fill* 0x420a5845 0x0 + *fill* 0x420a5845 0x0 + *fill* 0x420a5845 0x3 + .text.mbedtls_zeroize + 0x420a5848 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + *fill* 0x420a5861 0x0 + *fill* 0x420a5861 0x0 + *fill* 0x420a5861 0x0 + *fill* 0x420a5861 0x0 + *fill* 0x420a5861 0x0 + *fill* 0x420a5861 0x0 + *fill* 0x420a5861 0x0 + *fill* 0x420a5861 0x3 + .text.mbedtls_zeroize + 0x420a5864 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x420a587d 0x0 + *fill* 0x420a587d 0x0 + *fill* 0x420a587d 0x0 + *fill* 0x420a587d 0x0 + *fill* 0x420a587d 0x0 + *fill* 0x420a587d 0x3 + .text.xor_data + 0x420a5880 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x0 + *fill* 0x420a58a1 0x3 + .text.aria_sl 0x420a58a4 0xe1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x420a5985 0x0 + *fill* 0x420a5985 0x0 + *fill* 0x420a5985 0x0 + *fill* 0x420a5985 0x0 + *fill* 0x420a5985 0x0 + *fill* 0x420a5985 0x0 + *fill* 0x420a5985 0x0 + *fill* 0x420a5985 0x0 + *fill* 0x420a5985 0x0 + *fill* 0x420a5985 0x0 + *fill* 0x420a5985 0x3 + .text.mbedtls_asn1_get_len + 0x420a5988 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x420a5988 mbedtls_asn1_get_len + *fill* 0x420a5a11 0x0 + *fill* 0x420a5a11 0x0 + *fill* 0x420a5a11 0x0 + *fill* 0x420a5a11 0x0 + *fill* 0x420a5a11 0x0 + *fill* 0x420a5a11 0x0 + *fill* 0x420a5a11 0x0 + *fill* 0x420a5a11 0x0 + *fill* 0x420a5a11 0x0 + *fill* 0x420a5a11 0x0 + *fill* 0x420a5a11 0x3 + .text.mbedtls_asn1_write_len + 0x420a5a14 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x420a5a14 mbedtls_asn1_write_len + *fill* 0x420a5a62 0x2 + .text.mbedtls_asn1_write_tag + 0x420a5a64 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x420a5a64 mbedtls_asn1_write_tag + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x0 + *fill* 0x420a5a85 0x3 + .text.mbedtls_ecdsa_can_do + 0x420a5a88 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x420a5a88 mbedtls_ecdsa_can_do + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x0 + *fill* 0x420a5a99 0x3 + .text.mbedtls_ct_base64_enc_char + 0x420a5a9c 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + *fill* 0x420a5b6e 0x2 + .text.mbedtls_ct_base64_dec_value + 0x420a5b70 0xe7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + *fill* 0x420a5c57 0x0 + *fill* 0x420a5c57 0x0 + *fill* 0x420a5c57 0x1 + .text.esp_aes_dma_done + 0x420a5c58 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + 0x420a5c58 esp_aes_dma_done + .text.x509_profile_check_md_alg + 0x420a5c64 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x420a5c7e 0x2 + .text.x509_profile_check_pk_alg + 0x420a5c80 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x420a5c9a 0x2 + .text.x509_memcasecmp + 0x420a5c9c 0x55 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x420a5cf1 0x3 + .text.x509_crt_verify_chain_reset + 0x420a5cf4 0x21 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x420a5d15 0x3 + .text.x509_crt_merge_flags_with_cb + 0x420a5d18 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + *fill* 0x420a5d50 0x0 + .text.x509_parse2_int + 0x420a5d50 0x34 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + *fill* 0x420a5d84 0x0 + .text.ieee80211_add_dsparams + 0x420a5d84 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x420a5d84 ieee80211_add_dsparams + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x0 + *fill* 0x420a5da2 0x2 + .text.ieee80211_phy_type_get + 0x420a5da4 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x420a5da4 ieee80211_phy_type_get + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + *fill* 0x420a5df4 0x0 + .text.chm_get_current_band + 0x420a5df4 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x420a5df4 chm_get_current_band + *fill* 0x420a5dfb 0x1 + .text.chm_get_band_from_chan + 0x420a5dfc 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x420a5dfc chm_get_band_from_chan + *fill* 0x420a5e03 0x0 + *fill* 0x420a5e03 0x0 + *fill* 0x420a5e03 0x1 + .text.chm_get_channel_index + 0x420a5e04 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x420a5e04 chm_get_channel_index + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x0 + *fill* 0x420a5e16 0x2 + .text.ieee80211_is_bufferable_mmpdu + 0x420a5e18 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x420a5e18 ieee80211_is_bufferable_mmpdu + *fill* 0x420a5e6a 0x0 + *fill* 0x420a5e6a 0x0 + *fill* 0x420a5e6a 0x0 + *fill* 0x420a5e6a 0x0 + *fill* 0x420a5e6a 0x0 + *fill* 0x420a5e6a 0x0 + *fill* 0x420a5e6a 0x0 + *fill* 0x420a5e6a 0x2 + .text.ieee80211_is_support_rate + 0x420a5e6c 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x420a5e6c ieee80211_is_support_rate + *fill* 0x420a5eb4 0x0 + .text.ieee80211_is_lr_only + 0x420a5eb4 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x420a5eb4 ieee80211_is_lr_only + *fill* 0x420a5ecc 0x0 + *fill* 0x420a5ecc 0x0 + *fill* 0x420a5ecc 0x0 + *fill* 0x420a5ecc 0x0 + *fill* 0x420a5ecc 0x0 + *fill* 0x420a5ecc 0x0 + *fill* 0x420a5ecc 0x0 + *fill* 0x420a5ecc 0x0 + .text.ieee80211_setup_rateset + 0x420a5ecc 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x420a5ecc ieee80211_setup_rateset + *fill* 0x420a5ed3 0x0 + *fill* 0x420a5ed3 0x0 + *fill* 0x420a5ed3 0x0 + *fill* 0x420a5ed3 0x0 + *fill* 0x420a5ed3 0x0 + *fill* 0x420a5ed3 0x0 + *fill* 0x420a5ed3 0x0 + *fill* 0x420a5ed3 0x1 + .text.addba_get_rap_from_private + 0x420a5ed4 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + *fill* 0x420a5f0a 0x0 + *fill* 0x420a5f0a 0x0 + *fill* 0x420a5f0a 0x0 + *fill* 0x420a5f0a 0x0 + *fill* 0x420a5f0a 0x0 + *fill* 0x420a5f0a 0x0 + *fill* 0x420a5f0a 0x0 + *fill* 0x420a5f0a 0x2 + .text.ieee80211_ampdu_enable + 0x420a5f0c 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x420a5f0c ieee80211_ampdu_enable + *fill* 0x420a5f1b 0x1 + .text.addba_timeout_process + 0x420a5f1c 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x420a5f1c addba_timeout_process + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x0 + *fill* 0x420a5f36 0x2 + .text.esp_wifi_get_sta_hw_key_idx_internal + 0x420a5f38 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x0 + *fill* 0x420a5f56 0x2 + .text.wifi_station_get_reconnect_policy + 0x420a5f58 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x420a5f58 wifi_station_get_reconnect_policy + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x0 + *fill* 0x420a5f5f 0x1 + .text.ieee80211_ftm_detach + 0x420a5f60 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + 0x420a5f60 ieee80211_ftm_detach + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x0 + *fill* 0x420a5f67 0x1 + .text.cnx_rc_update_age + 0x420a5f68 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x420a5f68 cnx_rc_update_age + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x0 + *fill* 0x420a5f7e 0x2 + .text.ieee80211_set_shortslottime + 0x420a5f80 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x420a5f80 ieee80211_set_shortslottime + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + *fill* 0x420a5f98 0x0 + .text.ieee80211_get_tx_info_from_eb + 0x420a5f98 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x420a5f98 ieee80211_get_tx_info_from_eb + *fill* 0x420a5fd7 0x0 + *fill* 0x420a5fd7 0x0 + *fill* 0x420a5fd7 0x0 + *fill* 0x420a5fd7 0x0 + *fill* 0x420a5fd7 0x0 + *fill* 0x420a5fd7 0x0 + *fill* 0x420a5fd7 0x0 + *fill* 0x420a5fd7 0x0 + *fill* 0x420a5fd7 0x0 + *fill* 0x420a5fd7 0x0 + *fill* 0x420a5fd7 0x1 + .text.ieee80211_crypto_attach + 0x420a5fd8 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x420a5fd8 ieee80211_crypto_attach + *fill* 0x420a5fdd 0x0 + *fill* 0x420a5fdd 0x0 + *fill* 0x420a5fdd 0x0 + *fill* 0x420a5fdd 0x0 + *fill* 0x420a5fdd 0x0 + *fill* 0x420a5fdd 0x0 + *fill* 0x420a5fdd 0x0 + *fill* 0x420a5fdd 0x3 + .text.send_inval + 0x420a5fe0 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + *fill* 0x420a5fe7 0x1 + .text.recv_inval + 0x420a5fe8 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x0 + *fill* 0x420a5fef 0x1 + .text.scan_check_hidden + 0x420a5ff0 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x420a5ff0 scan_check_hidden + *fill* 0x420a6016 0x0 + *fill* 0x420a6016 0x0 + *fill* 0x420a6016 0x0 + *fill* 0x420a6016 0x0 + *fill* 0x420a6016 0x0 + *fill* 0x420a6016 0x0 + *fill* 0x420a6016 0x0 + *fill* 0x420a6016 0x0 + *fill* 0x420a6016 0x2 + .text.scan_fill_wps_scan_ie + 0x420a6018 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x420a6018 scan_fill_wps_scan_ie + *fill* 0x420a6040 0x0 + *fill* 0x420a6040 0x0 + .text.wep_decap + 0x420a6040 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + 0x420a6040 wep_decap + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x0 + *fill* 0x420a6063 0x1 + .text.pm_pend_noise_check + 0x420a6064 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x420a6064 pm_pend_noise_check + *fill* 0x420a6069 0x3 + .text.pm_noise_check_process + 0x420a606c 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x420a606c pm_noise_check_process + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x0 + *fill* 0x420a6071 0x3 + .text.pm_force_scan_unlock + 0x420a6074 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x420a6074 pm_force_scan_unlock + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x0 + *fill* 0x420a6079 0x3 + .text.getle32 0x420a607c 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x420a607c getle32 + *fill* 0x420a609f 0x1 + .text.putle32 0x420a60a0 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x420a60a0 putle32 + *fill* 0x420a60ba 0x0 + *fill* 0x420a60ba 0x0 + *fill* 0x420a60ba 0x0 + *fill* 0x420a60ba 0x2 + .text.ppCheckIsConnTraffic + 0x420a60bc 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x420a60bc ppCheckIsConnTraffic + *fill* 0x420a6106 0x0 + *fill* 0x420a6106 0x2 + .text.ppSetInterface + 0x420a6108 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x420a6108 ppSetInterface + *fill* 0x420a610d 0x3 + .text.pp_gettid + 0x420a6110 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x420a6110 pp_gettid + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x0 + *fill* 0x420a613e 0x2 + .text.lmac_update_tx_statistic + 0x420a6140 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x420a6140 lmac_update_tx_statistic + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x0 + *fill* 0x420a6145 0x3 + .text.rcLoRaRate2SchedIdx + 0x420a6148 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x420a6148 rcLoRaRate2SchedIdx + *fill* 0x420a6166 0x2 + .text.rcBuildIndex + 0x420a6168 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + *fill* 0x420a6185 0x3 + .text.rcGetDefaultHigestRateIdx + 0x420a6188 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x420a6188 rcGetDefaultHigestRateIdx + *fill* 0x420a61a0 0x0 + *fill* 0x420a61a0 0x0 + *fill* 0x420a61a0 0x0 + *fill* 0x420a61a0 0x0 + *fill* 0x420a61a0 0x0 + *fill* 0x420a61a0 0x0 + *fill* 0x420a61a0 0x0 + *fill* 0x420a61a0 0x0 + *fill* 0x420a61a0 0x0 + *fill* 0x420a61a0 0x0 + *fill* 0x420a61a0 0x0 + .text.dbg_lmac_init + 0x420a61a0 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x420a61a0 dbg_lmac_init + *fill* 0x420a61a5 0x3 + .text.wdev_csi_hw_bug_check + 0x420a61a8 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x420a61a8 wdev_csi_hw_bug_check + *fill* 0x420a61af 0x0 + *fill* 0x420a61af 0x0 + *fill* 0x420a61af 0x0 + *fill* 0x420a61af 0x1 + .text.wDev_SetAuthed + 0x420a61b0 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x420a61b0 wDev_SetAuthed + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x0 + *fill* 0x420a61b5 0x3 + .text.empty_func_p_void_r_void + 0x420a61b8 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x420a61b8 empty_func_p_void_r_void + *fill* 0x420a61bd 0x3 + .text.empty_func_p_u32_r_void + 0x420a61c0 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x420a61c0 empty_func_p_u32_r_void + *fill* 0x420a61c5 0x3 + .text.empty_func_p_void_r_bool + 0x420a61c8 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x420a61c8 empty_func_p_void_r_bool + *fill* 0x420a61cf 0x1 + .text.empty_func_p_pconfg_r_void + 0x420a61d0 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x420a61d0 empty_func_p_pconfg_r_void + *fill* 0x420a61d5 0x3 + .text.empty_func_p_u8_r_void + 0x420a61d8 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x420a61d8 empty_func_p_u8_r_void + *fill* 0x420a61dd 0x3 + .text.empty_func_p_ptsf_u32_r_void + 0x420a61e0 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x420a61e0 empty_func_p_ptsf_u32_r_void + *fill* 0x420a61e5 0x3 + .text.empty_func_p_u8_u8_pu16_pfloat_r_void + 0x420a61e8 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x420a61e8 empty_func_p_u8_u8_pu16_pfloat_r_void + *fill* 0x420a61ed 0x3 + .text.empty_func_p_u8_u8_float_float_pparams_r_void + 0x420a61f0 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x420a61f0 empty_func_p_u8_u8_float_float_pparams_r_void + *fill* 0x420a61f5 0x3 + .text.empty_func_p_pvoid_r_void + 0x420a61f8 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + 0x420a61f8 empty_func_p_pvoid_r_void + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x0 + *fill* 0x420a61fd 0x3 + .text.hal_mac_ftm_get_t3 + 0x420a6200 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x420a6200 hal_mac_ftm_get_t3 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x0 + *fill* 0x420a623b 0x1 + .text.RC_SetBasicRate + 0x420a623c 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + 0x420a623c RC_SetBasicRate + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x0 + *fill* 0x420a6243 0x1 + .text.mpu_hal_set_region_access + 0x420a6244 0x4c esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x420a6244 mpu_hal_set_region_access + *fill* 0x420a6290 0x0 + *fill* 0x420a6290 0x0 + .text.mpi_hal_calc_hardware_words + 0x420a6290 0x5 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x420a6290 mpi_hal_calc_hardware_words + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x0 + *fill* 0x420a6295 0x3 + .text.state_length + 0x420a6298 0x45 esp-idf/hal/libhal.a(sha_hal.c.obj) + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x0 + *fill* 0x420a62dd 0x3 + .text.esp_dport_access_read_buffer + 0x420a62e0 0x1c esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x420a62e0 esp_dport_access_read_buffer + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + *fill* 0x420a62fc 0x0 + .text.esp_phy_update_country_info + 0x420a62fc 0x7 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x420a62fc esp_phy_update_country_info + *fill* 0x420a6303 0x0 + *fill* 0x420a6303 0x0 + *fill* 0x420a6303 0x0 + *fill* 0x420a6303 0x0 + *fill* 0x420a6303 0x0 + *fill* 0x420a6303 0x0 + *fill* 0x420a6303 0x0 + *fill* 0x420a6303 0x0 + *fill* 0x420a6303 0x0 + *fill* 0x420a6303 0x0 + *fill* 0x420a6303 0x1 + .text.get_ip_info + 0x420a6304 0x1a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x420a631e 0x2 + .text.node_insert_to_list + 0x420a6320 0x3b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x420a635b 0x1 + .text.add_msg_type + 0x420a635c 0x14 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.add_end 0x420a6370 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x420a637c 0x0 + *fill* 0x420a637c 0x0 + *fill* 0x420a637c 0x0 + *fill* 0x420a637c 0x0 + *fill* 0x420a637c 0x0 + *fill* 0x420a637c 0x0 + *fill* 0x420a637c 0x0 + *fill* 0x420a637c 0x0 + .text.dhcps_set_option_info + 0x420a637c 0xb4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x420a637c dhcps_set_option_info + .text.node_remove_from_list + 0x420a6430 0x31 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x420a6430 node_remove_from_list + *fill* 0x420a6461 0x0 + *fill* 0x420a6461 0x0 + *fill* 0x420a6461 0x0 + *fill* 0x420a6461 0x0 + *fill* 0x420a6461 0x0 + *fill* 0x420a6461 0x3 + .text.dhcps_set_new_lease_cb + 0x420a6464 0x15 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x420a6464 dhcps_set_new_lease_cb + *fill* 0x420a6479 0x0 + *fill* 0x420a6479 0x0 + *fill* 0x420a6479 0x0 + *fill* 0x420a6479 0x0 + *fill* 0x420a6479 0x0 + *fill* 0x420a6479 0x0 + *fill* 0x420a6479 0x0 + *fill* 0x420a6479 0x3 + .text.low_level_init + 0x420a647c 0x20 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + *fill* 0x420a649c 0x0 + *fill* 0x420a649c 0x0 + .text.wpa_ap_get_peer_spp_msg + 0x420a649c 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x420a649c wpa_ap_get_peer_spp_msg + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x0 + *fill* 0x420a64bb 0x1 + .text.supplicant_sta_conn_handler + 0x420a64bc 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x420a64bc supplicant_sta_conn_handler + *fill* 0x420a64c1 0x3 + .text.supplicant_sta_disconn_handler + 0x420a64c4 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x420a64c4 supplicant_sta_disconn_handler + *fill* 0x420a64c9 0x3 + .text.esp_set_scan_ie + 0x420a64cc 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x420a64cc esp_set_scan_ie + *fill* 0x420a64d1 0x0 + *fill* 0x420a64d1 0x0 + *fill* 0x420a64d1 0x3 + .text.wpa3_sae_is_group_enabled + 0x420a64d4 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x0 + *fill* 0x420a64fa 0x2 + .text.authmode_has_wpa + 0x420a64fc 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + *fill* 0x420a6516 0x2 + .text.authmode_has_rsn + 0x420a6518 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + *fill* 0x420a6546 0x0 + *fill* 0x420a6546 0x0 + *fill* 0x420a6546 0x0 + *fill* 0x420a6546 0x2 + .text.wpa_status_to_reason_code + 0x420a6548 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x420a6548 wpa_status_to_reason_code + *fill* 0x420a65a0 0x0 + *fill* 0x420a65a0 0x0 + *fill* 0x420a65a0 0x0 + *fill* 0x420a65a0 0x0 + .text.crypto_ec_get_prime + 0x420a65a0 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x420a65a0 crypto_ec_get_prime + *fill* 0x420a65a7 0x1 + .text.crypto_ec_get_order + 0x420a65a8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x420a65a8 crypto_ec_get_order + *fill* 0x420a65b0 0x0 + .text.crypto_ec_get_b + 0x420a65b0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x420a65b0 crypto_ec_get_b + *fill* 0x420a65b8 0x0 + *fill* 0x420a65b8 0x0 + *fill* 0x420a65b8 0x0 + *fill* 0x420a65b8 0x0 + *fill* 0x420a65b8 0x0 + *fill* 0x420a65b8 0x0 + *fill* 0x420a65b8 0x0 + *fill* 0x420a65b8 0x0 + .text.crypto_ec_get_mbedtls_to_nist_group_id + 0x420a65b8 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x420a65b8 crypto_ec_get_mbedtls_to_nist_group_id + *fill* 0x420a65fa 0x0 + *fill* 0x420a65fa 0x2 + .text.crypto_mbedtls_get_grp_id + 0x420a65fc 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x420a65fc crypto_mbedtls_get_grp_id + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x0 + *fill* 0x420a6622 0x2 + .text.wpa_auth_pmksa_clear_cb + 0x420a6624 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x420a6636 0x2 + .text.wpa_request_new_ptk + 0x420a6638 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x420a664a 0x2 + .text.sm_WPA_PTK_DISCONNECTED_Enter + 0x420a664c 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x420a666e 0x2 + .text.sm_WPA_PTK_PTKCALCNEGOTIATING2_Enter + 0x420a6670 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x420a6692 0x2 + .text.sm_WPA_PTK_GROUP_IDLE_Enter + 0x420a6694 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x420a66c2 0x2 + .text.sm_WPA_PTK_GROUP_REKEYESTABLISHED_Enter + 0x420a66c4 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x420a66ff 0x1 + .text.sm_WPA_PTK_GROUP_KEYERROR_Enter + 0x420a6700 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x0 + *fill* 0x420a6739 0x3 + .text.wpa_auth_uses_mfp + 0x420a673c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x420a673c wpa_auth_uses_mfp + *fill* 0x420a674e 0x0 + *fill* 0x420a674e 0x0 + *fill* 0x420a674e 0x0 + *fill* 0x420a674e 0x0 + *fill* 0x420a674e 0x0 + *fill* 0x420a674e 0x0 + *fill* 0x420a674e 0x0 + *fill* 0x420a674e 0x0 + *fill* 0x420a674e 0x2 + .text.ap_sta_list_del + 0x420a6750 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + *fill* 0x420a6772 0x0 + *fill* 0x420a6772 0x2 + .text.ap_sta_hash_add + 0x420a6774 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x420a6774 ap_sta_hash_add + *fill* 0x420a678a 0x0 + *fill* 0x420a678a 0x2 + .text.sae_set_state + 0x420a678c 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x420a6795 0x3 + .text.sae_get_password + 0x420a6798 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .text.use_sae_anti_clogging + 0x420a67a8 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x420a67fd 0x0 + *fill* 0x420a67fd 0x3 + .text.sae_status_success + 0x420a6800 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x420a6859 0x3 + .text.sae_is_group_enabled + 0x420a685c 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x420a6882 0x0 + *fill* 0x420a6882 0x0 + *fill* 0x420a6882 0x0 + *fill* 0x420a6882 0x0 + *fill* 0x420a6882 0x2 + .text.wpa_res_to_status_code + 0x420a6884 0x85 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x420a6884 wpa_res_to_status_code + *fill* 0x420a6909 0x0 + *fill* 0x420a6909 0x0 + *fill* 0x420a6909 0x0 + *fill* 0x420a6909 0x3 + .text.const_time_memcmp + 0x420a690c 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x420a6942 0x2 + .text.sswu_curve_param + 0x420a6944 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x420a6959 0x3 + .text.sae_is_password_id_elem + 0x420a695c 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x420a699e 0x2 + .text.sae_is_rejected_groups_elem + 0x420a69a0 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_is_token_container_elem + 0x420a69e4 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x420a6a26 0x2 + .text.sae_is_akm_suite_selector_elem + 0x420a6a28 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x420a6a6d 0x3 + .text.sae_parse_commit_token + 0x420a6a70 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x0 + *fill* 0x420a6aba 0x2 + .text.sae_ecc_prime_len_2_hash_len + 0x420a6abc 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x420a6abc sae_ecc_prime_len_2_hash_len + .text.sae_ffc_prime_len_2_hash_len + 0x420a6ad8 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x420a6ad8 sae_ffc_prime_len_2_hash_len + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x0 + *fill* 0x420a6af5 0x3 + .text.dragonfly_min_pwe_loop_iter + 0x420a6af8 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x420a6af8 dragonfly_min_pwe_loop_iter + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x0 + *fill* 0x420a6b4d 0x3 + .text.wpa_cipher_to_alg + 0x420a6b50 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x420a6b50 wpa_cipher_to_alg + *fill* 0x420a6b7e 0x2 + .text.wpa_cipher_valid_pairwise + 0x420a6b80 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x420a6b80 wpa_cipher_valid_pairwise + *fill* 0x420a6bb9 0x0 + *fill* 0x420a6bb9 0x3 + .text.rsn_cipher_put_suites + 0x420a6bbc 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x420a6bbc rsn_cipher_put_suites + *fill* 0x420a6c1a 0x2 + .text.wpa_cipher_put_suites + 0x420a6c1c 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x420a6c1c wpa_cipher_put_suites + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x0 + *fill* 0x420a6c76 0x2 + .text.pmksa_cache_get_current + 0x420a6c78 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x420a6c78 pmksa_cache_get_current + *fill* 0x420a6c82 0x2 + .text.pmksa_cache_clear_current + 0x420a6c84 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x420a6c84 pmksa_cache_clear_current + *fill* 0x420a6c90 0x0 + *fill* 0x420a6c90 0x0 + *fill* 0x420a6c90 0x0 + *fill* 0x420a6c90 0x0 + *fill* 0x420a6c90 0x0 + *fill* 0x420a6c90 0x0 + *fill* 0x420a6c90 0x0 + *fill* 0x420a6c90 0x0 + *fill* 0x420a6c90 0x0 + *fill* 0x420a6c90 0x0 + .text.wpa_sm_get_auth_addr + 0x420a6c90 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x420a6c90 wpa_sm_get_auth_addr + *fill* 0x420a6c9a 0x0 + *fill* 0x420a6c9a 0x0 + *fill* 0x420a6c9a 0x0 + *fill* 0x420a6c9a 0x0 + *fill* 0x420a6c9a 0x2 + .text.wpa_supplicant_gtk_tx_bit_workaround + 0x420a6c9c 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x420a6c9c wpa_supplicant_gtk_tx_bit_workaround + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x0 + *fill* 0x420a6caf 0x1 + .text.wpabuf_put + 0x420a6cb0 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x420a6cb0 wpabuf_put + *fill* 0x420a6cbf 0x0 + *fill* 0x420a6cbf 0x0 + *fill* 0x420a6cbf 0x1 + .text.d_invert + 0x420a6cc0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.sae_pk_buf_shift_left_1 + 0x420a6cd8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.sae_group_2_hash_len + 0x420a6d08 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x420a6d2e 0x0 + *fill* 0x420a6d2e 0x0 + *fill* 0x420a6d2e 0x2 + .text.sae_pk_get_be19 + 0x420a6d30 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x420a6d30 sae_pk_get_be19 + *fill* 0x420a6d4d 0x3 + .text.sae_pk_buf_shift_left_19 + 0x420a6d50 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x420a6d50 sae_pk_buf_shift_left_19 + *fill* 0x420a6d8a 0x0 + *fill* 0x420a6d8a 0x0 + *fill* 0x420a6d8a 0x0 + *fill* 0x420a6d8a 0x0 + *fill* 0x420a6d8a 0x0 + *fill* 0x420a6d8a 0x0 + *fill* 0x420a6d8a 0x0 + *fill* 0x420a6d8a 0x0 + *fill* 0x420a6d8a 0x0 + *fill* 0x420a6d8a 0x0 + *fill* 0x420a6d8a 0x0 + *fill* 0x420a6d8a 0x2 + .text.wpa_sm_mlme_setprotection + 0x420a6d8c 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x420a6d8c wpa_sm_mlme_setprotection + *fill* 0x420a6d93 0x1 + .text.wpa_sm_disassociate + 0x420a6d94 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x420a6d94 wpa_sm_disassociate + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x0 + *fill* 0x420a6d99 0x3 + .text.rc4_skip + 0x420a6d9c 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + 0x420a6d9c rc4_skip + *fill* 0x420a6e55 0x0 + *fill* 0x420a6e55 0x0 + *fill* 0x420a6e55 0x3 + .text.dbl 0x420a6e58 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x420a6e9a 0x2 + .text.xor 0x420a6e9c 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x420a6ebd 0x3 + .text.xorend 0x420a6ec0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + *fill* 0x420a6ee8 0x0 + .text._ZNSt9type_infoD2Ev + 0x420a6ee8 0x5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + 0x420a6ee8 std::type_info::~type_info() + 0x420a6ee8 std::type_info::~type_info() + *fill* 0x420a6eed 0x3 + .text._ZNKSt9type_info14__is_pointer_pEv + 0x420a6ef0 0x7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + 0x420a6ef0 std::type_info::__is_function_p() const + 0x420a6ef0 std::type_info::__is_pointer_p() const + *fill* 0x420a6ef7 0x0 + *fill* 0x420a6ef7 0x1 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + 0x420a6ef8 0x2f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x420a6ef8 __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const + *fill* 0x420a6f27 0x1 + .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + 0x420a6f28 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x420a6f28 __cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const + *fill* 0x420a6f34 0x0 + *fill* 0x420a6f34 0x0 + *fill* 0x420a6f34 0x0 + *fill* 0x420a6f34 0x0 + *fill* 0x420a6f34 0x0 + .text._ZNSt9exceptionD2Ev + 0x420a6f34 0x5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + 0x420a6f34 std::exception::~exception() + 0x420a6f34 std::exception::~exception() + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x0 + *fill* 0x420a6f39 0x3 + .text.phy_get_rf_cal_version + 0x420a6f3c 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x420a6f3c phy_get_rf_cal_version + .text.noise_check_loop + 0x420a6f44 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x420a6f44 noise_check_loop + *fill* 0x420a6f49 0x0 + *fill* 0x420a6f49 0x0 + *fill* 0x420a6f49 0x0 + *fill* 0x420a6f49 0x0 + *fill* 0x420a6f49 0x0 + *fill* 0x420a6f49 0x0 + *fill* 0x420a6f49 0x3 + .text.phy_set_mac_data + 0x420a6f4c 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x420a6f4c phy_set_mac_data + *fill* 0x420a6f67 0x0 + *fill* 0x420a6f67 0x0 + *fill* 0x420a6f67 0x0 + *fill* 0x420a6f67 0x0 + *fill* 0x420a6f67 0x0 + *fill* 0x420a6f67 0x1 + .text.get_iq_value + 0x420a6f68 0x45 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x420a6f68 get_iq_value + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x0 + *fill* 0x420a6fad 0x3 + .text.ram_pll_vol_cal + 0x420a6fb0 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x420a6fb0 ram_pll_vol_cal + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x0 + *fill* 0x420a6fb7 0x1 + .text.ram_get_rate_fcc_index + 0x420a6fb8 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x420a6fb8 ram_get_rate_fcc_index + *fill* 0x420a700c 0x0 + .text.get_tx_gain_value + 0x420a700c 0x98 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x420a700c get_tx_gain_value + *fill* 0x420a70a4 0x0 + *fill* 0x420a70a4 0x0 + *fill* 0x420a70a4 0x0 + *fill* 0x420a70a4 0x0 + *fill* 0x420a70a4 0x0 + *fill* 0x420a70a4 0x0 + *fill* 0x420a70a4 0x0 + .text.ram_set_noise_floor + 0x420a70a4 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x420a70a4 ram_set_noise_floor + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x0 + *fill* 0x420a70a9 0x3 + .text 0x420a70ac 0x37 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + 0x420a70ac _fwalk_sglue + *fill* 0x420a70e3 0x0 + *fill* 0x420a70e3 0x0 + *fill* 0x420a70e3 0x0 + *fill* 0x420a70e3 0x0 + *fill* 0x420a70e3 0x0 + *fill* 0x420a70e3 0x0 + *fill* 0x420a70e3 0x0 + *fill* 0x420a70e3 0x0 + *fill* 0x420a70e3 0x0 + *fill* 0x420a70e3 0x0 + *fill* 0x420a70e3 0x0 + *fill* 0x420a70e3 0x1 + .text 0x420a70e4 0x7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + 0x420a70e4 _user_strerror + *fill* 0x420a70eb 0x0 + *fill* 0x420a70eb 0x0 + *fill* 0x420a70eb 0x0 + *fill* 0x420a70eb 0x0 + *fill* 0x420a70eb 0x0 + *fill* 0x420a70eb 0x0 + *fill* 0x420a70eb 0x1 + .text 0x420a70ec 0xb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + 0x420a70ec nanf + *fill* 0x420a70f7 0x0 + *fill* 0x420a70f7 0x0 + *fill* 0x420a70f7 0x0 + *fill* 0x420a70f7 0x0 + *fill* 0x420a70f7 0x0 + *fill* 0x420a70f7 0x0 + *fill* 0x420a70f7 0x0 + *fill* 0x420a70f7 0x1 + .text 0x420a70f8 0x81 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + 0x420a70f8 __sflags + *fill* 0x420a7179 0x0 + *fill* 0x420a7179 0x3 + .text 0x420a717c 0xa2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + 0x420a717c __sccl + *fill* 0x420a721e 0x0 + *fill* 0x420a721e 0x0 + *fill* 0x420a721e 0x0 + *fill* 0x420a721e 0x0 + *fill* 0x420a721e 0x0 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram.*) + *(.wifiextrairam .wifiextrairam.*) + *fill* 0x420a721e 0x2 + .wifiextrairam.3 + 0x420a7220 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x6c (size before relaxing) + 0x420a7228 ieee80211_alloc_tx_buf + .wifiextrairam.2 + 0x420a7280 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x420a7298 ieee80211_post_hmac_tx + *fill* 0x420a72da 0x2 + .wifiextrairam.4 + 0x420a72dc 0x188 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1ac (size before relaxing) + 0x420a72fc ieee80211_output_do + .wifiextrairam.7 + 0x420a7464 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2d (size before relaxing) + 0x420a7468 esp_wifi_internal_tx + *fill* 0x420a748d 0x3 + .wifiextrairam.49 + 0x420a7490 0x1c8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x1d8 (size before relaxing) + 0x420a74bc sta_rx_eapol + .wifiextrairam.49 + 0x420a7658 0x203 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x243 (size before relaxing) + 0x420a7668 pm_tx_data_process + *fill* 0x420a785b 0x1 + .wifiextrairam.57 + 0x420a785c 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x420a785c pm_on_data_tx + *fill* 0x420a786f 0x1 + .wifiextrairam.17 + 0x420a7870 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x5e (size before relaxing) + 0x420a7870 pp_coex_tx_release + *fill* 0x420a78ca 0x2 + .wifiextrairam.31 + 0x420a78cc 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x1e (size before relaxing) + 0x420a78cc ppPauseTxAMPDU + *fill* 0x420a78e6 0x2 + .wifiextrairam.19 + 0x420a78e8 0x14e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x172 (size before relaxing) + 0x420a78fc ppProcTxDone + *fill* 0x420a7a36 0x2 + .wifiextrairam.62 + 0x420a7a38 0xdb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xeb (size before relaxing) + 0x420a7a3c ppMapWaitTxq + *fill* 0x420a7b13 0x1 + .wifiextrairam.37 + 0x420a7b14 0x72 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x7e (size before relaxing) + 0x420a7b18 ppAssembleAMPDU + *fill* 0x420a7b86 0x2 + .wifiextrairam.70 + 0x420a7b88 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x55 (size before relaxing) + 0x420a7b88 ppDirectRecycleAmpdu + *fill* 0x420a7bd1 0x3 + .wifiextrairam.72 + 0x420a7bd4 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x88 (size before relaxing) + 0x420a7bd4 ppRegressAmpdu + .wifiextrairam.4 + 0x420a7c4c 0x1a2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x1c2 (size before relaxing) + 0x420a7c50 esf_buf_alloc_dynamic + *fill* 0x420a7dee 0x2 + .wifiextrairam.4 + 0x420a7df0 0x1a7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x1cf (size before relaxing) + 0x420a7dfc lmacSetTxFrame + *fill* 0x420a7f97 0x1 + .wifiextrairam.22 + 0x420a7f98 0xa4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xc0 (size before relaxing) + 0x420a7fa0 lmacDiscardFrameExchangeSequence + .wifiextrairam.17 + 0x420a803c 0xcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xe3 (size before relaxing) + 0x420a8044 lmacProcessTxSuccess + *fill* 0x420a8107 0x1 + .wifiextrairam.37 + 0x420a8108 0x138 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x170 (size before relaxing) + 0x420a8118 lmacProcessTxComplete + .wifiextrairam.12 + 0x420a8240 0x8b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x93 (size before relaxing) + 0x420a824c rcGetRate + *fill* 0x420a82cb 0x1 + .wifiextrairam.18 + 0x420a82cc 0x85 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x95 (size before relaxing) + 0x420a82cc trc_onPPTxDone + *fill* 0x420a8351 0x3 + .wifiextrairam.3 + 0x420a8354 0xc2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0xda (size before relaxing) + 0x420a8358 hal_set_tx_pti + *fill* 0x420a8416 0x2 + .wifiextrairam.2 + 0x420a8418 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x48 (size before relaxing) + 0x420a8418 mac_tx_set_pti + .wifiextrairam.6 + 0x420a8458 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x29 (size before relaxing) + 0x420a8458 hal_mac_txq_disable + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *fill* 0x420a8479 0x0 + *(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.*) + *fill* 0x420a8479 0x3 + .wifislpiram.4 + 0x420a847c 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x2b (size before relaxing) + 0x420a847c pm_get_connectionless_status + *fill* 0x420a84a3 0x1 + .wifislpiram.21 + 0x420a84a4 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x34 (size before relaxing) + 0x420a84a4 pm_enable_dream_timer + .wifislpiram.23 + 0x420a84cc 0x124 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x158 (size before relaxing) + 0x420a84cc pm_update_by_connectionless_status + .wifislpiram.38 + 0x420a85f0 0x69 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x75 (size before relaxing) + 0x420a85fc pm_handle_tbtt_interval + *fill* 0x420a8659 0x3 + .wifislpiram.40 + 0x420a865c 0x15c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x194 (size before relaxing) + 0x420a865c pm_update_next_tbtt + .wifislpiram.45 + 0x420a87b8 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x43 (size before relaxing) + 0x420a87b8 pm_connectionless_wake_interval_timeout_process + *fill* 0x420a87ef 0x1 + .wifislpiram.46 + 0x420a87f0 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x68 (size before relaxing) + 0x420a87f0 pm_connectionless_wake_window_timeout_process + .wifislpiram.4 + 0x420a8840 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x4a (size before relaxing) + 0x420a8848 hal_get_sta_tsf + *fill* 0x420a8886 0x2 + .wifislpiram.7 + 0x420a8888 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x24 (size before relaxing) + 0x420a8888 hal_set_sta_light_sleep_wake_ahead_time + .wifislpiram.8 + 0x420a88a8 0x45 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x51 (size before relaxing) + 0x420a88a8 hal_get_time_to_sta_next_tbtt + *fill* 0x420a88ed 0x3 + .wifislpiram.14 + 0x420a88f0 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x5e (size before relaxing) + 0x420a88f0 tsf_hal_get_counter_value + *fill* 0x420a8942 0x2 + .wifislpiram.16 + 0x420a8944 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x1f (size before relaxing) + 0x420a8944 tsf_hal_get_time + *fill* 0x420a895f 0x1 + .wifislpiram.30 + 0x420a8960 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x58 (size before relaxing) + 0x420a8970 tsf_hal_get_tbtt_interval + .wifislpiram.31 + 0x420a89b4 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x420a89c4 tsf_hal_set_timer_enable + .wifislpiram.32 + 0x420a89fc 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x4c (size before relaxing) + 0x420a89fc tsf_hal_set_timer_disable + .wifislpiram.33 + 0x420a8a34 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x420a8a44 tsf_hal_set_timer_target + *fill* 0x420a8a76 0x2 + .wifislpiram.35 + 0x420a8a78 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x3f (size before relaxing) + 0x420a8a78 tsf_hal_set_timer_intr_enable + *fill* 0x420a8aaf 0x1 + .wifislpiram.36 + 0x420a8ab0 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x3f (size before relaxing) + 0x420a8ab0 tsf_hal_set_timer_intr_disable + *fill* 0x420a8ae7 0x1 + .wifislpiram.37 + 0x420a8ae8 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x48 (size before relaxing) + 0x420a8ae8 tsf_hal_set_timer_soc_wakeup_enable + .wifislpiram.38 + 0x420a8b20 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x4c (size before relaxing) + 0x420a8b20 tsf_hal_set_timer_soc_wakeup_disable + .wifislpiram.2 + 0x420a8b58 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x420a8b67 0x1 + .wifislpiram.3 + 0x420a8b68 0x9e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0xaa (size before relaxing) + 0x420a8b74 pp_timer_do_process + *fill* 0x420a8c06 0x0 + *fill* 0x420a8c06 0x0 + *fill* 0x420a8c06 0x0 + *fill* 0x420a8c06 0x0 + *fill* 0x420a8c06 0x0 + *fill* 0x420a8c06 0x0 + *fill* 0x420a8c06 0x0 + *fill* 0x420a8c06 0x0 + *fill* 0x420a8c06 0x0 + *fill* 0x420a8c06 0x0 + *fill* 0x420a8c06 0x0 + *fill* 0x420a8c06 0x0 + *(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_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_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_ll_rx_enable_dma .literal.rmt_ll_rx_set_carrier_high_low_ticks .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_init_dma_link .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_ll_rx_enable_dma .text.rmt_ll_rx_set_carrier_high_low_ticks .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_init_dma_link .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_enable_dma .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_init_dma_link .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_enable_dma .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_init_dma_link .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) + *fill* 0x420a8c06 0x2 + .text.esp_event_handler_register + 0x420a8c08 0x22 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x420a8c08 esp_event_handler_register + *fill* 0x420a8c2a 0x2 + .text.esp_event_handler_instance_register + 0x420a8c2c 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x420a8c2c esp_event_handler_instance_register + *fill* 0x420a8c51 0x3 + .text.esp_event_handler_unregister + 0x420a8c54 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x420a8c54 esp_event_handler_unregister + *fill* 0x420a8c75 0x3 + .text.esp_event_post + 0x420a8c78 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x420a8c78 esp_event_post + *fill* 0x420a8c9d 0x3 + .text.esp_event_loop_create_default + 0x420a8ca0 0x2a esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x2e (size before relaxing) + 0x420a8ca0 esp_event_loop_create_default + *fill* 0x420a8cca 0x0 + *fill* 0x420a8cca 0x0 + *fill* 0x420a8cca 0x0 + *fill* 0x420a8cca 0x0 + *fill* 0x420a8cca 0x0 + *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) + *fill* 0x420a8cca 0x2 + .text.handler_instances_remove + 0x420a8ccc 0x85 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x420a8d51 0x3 + .text.base_node_remove_handler + 0x420a8d54 0x72 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x420a8dc6 0x2 + .text.loop_node_remove_handler + 0x420a8dc8 0x7b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x420a8e43 0x1 + .text.loop_remove_handler + 0x420a8e44 0x62 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x420a8ea6 0x2 + .text.handler_instances_remove_all + 0x420a8ea8 0x3c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.base_node_remove_all_handler + 0x420a8ee4 0x3e esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x46 (size before relaxing) + *fill* 0x420a8f22 0x2 + .text.loop_node_remove_all_handler + 0x420a8f24 0x3e esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x46 (size before relaxing) + *fill* 0x420a8f62 0x2 + .text.handler_instances_add + 0x420a8f64 0xa6 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x420a900a 0x2 + .text.base_node_add_handler + 0x420a900c 0xd2 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x420a90de 0x2 + .text.loop_node_add_handler + 0x420a90e0 0xe5 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xe9 (size before relaxing) + *fill* 0x420a91c5 0x3 + .text.esp_event_loop_create + 0x420a91c8 0x148 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x420a91c8 esp_event_loop_create + .text.esp_event_loop_run + 0x420a9310 0x18a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x18e (size before relaxing) + 0x420a9310 esp_event_loop_run + *fill* 0x420a949a 0x2 + .text.esp_event_loop_run_task + 0x420a949c 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_loop_delete + 0x420a94d0 0xb0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xb4 (size before relaxing) + 0x420a94d0 esp_event_loop_delete + .text.esp_event_handler_register_with_internal + 0x420a9580 0x138 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x420a9580 esp_event_handler_register_with_internal + .text.esp_event_handler_register_with + 0x420a96b8 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x420a96b8 esp_event_handler_register_with + *fill* 0x420a96d5 0x3 + .text.esp_event_handler_instance_register_with + 0x420a96d8 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x420a96d8 esp_event_handler_instance_register_with + *fill* 0x420a96f5 0x3 + .text.esp_event_post_to + 0x420a96f8 0x12a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x420a96f8 esp_event_post_to + *fill* 0x420a9822 0x2 + .text.find_and_unregister_handler + 0x420a9824 0x122 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x126 (size before relaxing) + *fill* 0x420a9946 0x2 + .text.esp_event_handler_unregister_with_internal + 0x420a9948 0xba esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xbe (size before relaxing) + 0x420a9948 esp_event_handler_unregister_with_internal + *fill* 0x420a9a02 0x2 + .text.esp_event_handler_unregister_with + 0x420a9a04 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x420a9a04 esp_event_handler_unregister_with + *fill* 0x420a9a21 0x3 + .text.handler_execute + 0x420a9a24 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *fill* 0x420a9a56 0x0 + *libesp_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_calc_hw_calibration_code .literal.adc_lock_acquire .literal.adc_lock_release .literal.adc_lock_try_acquire .text .text.adc2_wifi_acquire .text.adc2_wifi_release .text.adc_calc_hw_calibration_code .text.adc_lock_acquire .text.adc_lock_release .text.adc_lock_try_acquire) + *fill* 0x420a9a56 0x2 + .text.adc2_wifi_acquire + 0x420a9a58 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x420a9a58 adc2_wifi_acquire + *fill* 0x420a9a5f 0x1 + .text.adc2_wifi_release + 0x420a9a60 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x420a9a60 adc2_wifi_release + *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* 0x420a9a67 0x1 + .text.esp_cpu_set_breakpoint + 0x420a9a68 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x420a9a68 esp_cpu_set_breakpoint + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_rtc_time .text .text.esp_clk_rtc_time) + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_src_get_freq_hz .text .text.esp_clk_tree_src_get_freq_hz) + .text.esp_clk_tree_src_get_freq_hz + 0x420a9a8c 0x19a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x420a9a8c esp_clk_tree_src_get_freq_hz + *libesp_hw_support.a:gdma.*(.literal.do_allocate_gdma_channel .literal.gdma_acquire_group_handle .literal.gdma_acquire_pair_handle .literal.gdma_apply_strategy .literal.gdma_config_transfer .literal.gdma_connect .literal.gdma_del_channel .literal.gdma_del_rx_channel .literal.gdma_del_tx_channel .literal.gdma_disconnect .literal.gdma_get_alignment_constraints .literal.gdma_get_free_m2m_trig_id_mask .literal.gdma_get_group_channel_id .literal.gdma_install_rx_interrupt .literal.gdma_install_tx_interrupt .literal.gdma_new_ahb_channel .literal.gdma_register_rx_event_callbacks .literal.gdma_register_tx_event_callbacks .literal.gdma_release_group_handle .literal.gdma_release_pair_handle .literal.gdma_set_priority .text .text.do_allocate_gdma_channel .text.gdma_acquire_group_handle .text.gdma_acquire_pair_handle .text.gdma_apply_strategy .text.gdma_config_transfer .text.gdma_connect .text.gdma_del_channel .text.gdma_del_rx_channel .text.gdma_del_tx_channel .text.gdma_disconnect .text.gdma_get_alignment_constraints .text.gdma_get_free_m2m_trig_id_mask .text.gdma_get_group_channel_id .text.gdma_install_rx_interrupt .text.gdma_install_tx_interrupt .text.gdma_new_ahb_channel .text.gdma_register_rx_event_callbacks .text.gdma_register_tx_event_callbacks .text.gdma_release_group_handle .text.gdma_release_pair_handle .text.gdma_set_priority) + *fill* 0x420a9c26 0x2 + .text.gdma_acquire_group_handle + 0x420a9c28 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_acquire_pair_handle + 0x420a9cf0 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_release_group_handle + 0x420a9d88 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_release_pair_handle + 0x420a9e1c 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x420a9e8a 0x2 + .text.gdma_del_rx_channel + 0x420a9e8c 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x7c (size before relaxing) + .text.gdma_del_tx_channel + 0x420a9f04 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x7c (size before relaxing) + .text.do_allocate_gdma_channel + 0x420a9f7c 0x36e esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x37a (size before relaxing) + *fill* 0x420aa2ea 0x2 + .text.gdma_new_ahb_channel + 0x420aa2ec 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x420aa2ec gdma_new_channel + 0x420aa2ec gdma_new_ahb_channel + .text.gdma_del_channel + 0x420aa30c 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x4c (size before relaxing) + 0x420aa30c gdma_del_channel + .text.gdma_get_group_channel_id + 0x420aa354 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x420aa354 gdma_get_group_channel_id + .text.gdma_connect + 0x420aa39c 0x15a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x420aa39c gdma_connect + *fill* 0x420aa4f6 0x2 + .text.gdma_disconnect + 0x420aa4f8 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x420aa4f8 gdma_disconnect + .text.gdma_config_transfer + 0x420aa5d0 0x130 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x138 (size before relaxing) + 0x420aa5d0 gdma_config_transfer + *fill* 0x420aa700 0x0 + *fill* 0x420aa700 0x0 + *fill* 0x420aa700 0x0 + *fill* 0x420aa700 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_ll_disable_clk_set_rst .literal.periph_ll_enable_clk_clear_rst .literal.periph_ll_get_clk_en_mask .literal.periph_ll_get_clk_en_reg .literal.periph_ll_get_rst_en_mask .literal.periph_ll_get_rst_en_reg .literal.periph_ll_reset .literal.periph_module_disable .literal.periph_module_enable .text .text.periph_ll_disable_clk_set_rst .text.periph_ll_enable_clk_clear_rst .text.periph_ll_get_clk_en_mask .text.periph_ll_get_clk_en_reg .text.periph_ll_get_rst_en_mask .text.periph_ll_get_rst_en_reg .text.periph_ll_reset .text.periph_module_disable .text.periph_module_enable) + .text.periph_ll_get_clk_en_mask + 0x420aa700 0x282 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x420aa982 0x2 + .text.periph_ll_get_rst_en_mask + 0x420aa984 0x23a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x420aabbe 0x2 + .text.periph_ll_get_clk_en_reg + 0x420aabc0 0x69 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x420aac29 0x3 + .text.periph_ll_get_rst_en_reg + 0x420aac2c 0x65 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x420aac91 0x3 + .text.periph_ll_enable_clk_clear_rst + 0x420aac94 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4a (size before relaxing) + *fill* 0x420aacd2 0x2 + .text.periph_ll_reset + 0x420aacd4 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x37 (size before relaxing) + *fill* 0x420aad07 0x1 + .text.periph_module_enable + 0x420aad08 0x7b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x7f (size before relaxing) + 0x420aad08 periph_module_enable + *fill* 0x420aad83 0x0 + *fill* 0x420aad83 0x0 + *fill* 0x420aad83 0x0 + *fill* 0x420aad83 0x0 + *fill* 0x420aad83 0x0 + *fill* 0x420aad83 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.text) + *libesp_hw_support.a:rtc_init.*(.literal.calibrate_ocode .literal.get_dig1v3_dbias_by_efuse .literal.get_dig_dbias_by_efuse .literal.get_rtc_dbias_by_efuse .literal.rtc_init .literal.rtc_set_stored_dbias .literal.set_ocode_by_efuse .text .text.calibrate_ocode .text.get_dig1v3_dbias_by_efuse .text.get_dig_dbias_by_efuse .text.get_rtc_dbias_by_efuse .text.rtc_init .text.rtc_set_stored_dbias .text.set_ocode_by_efuse) + *fill* 0x420aad83 0x1 + .text.set_ocode_by_efuse + 0x420aad84 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x420aadce 0x2 + .text.get_dig1v3_dbias_by_efuse + 0x420aadd0 0x6f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x420aae3f 0x1 + .text.get_dig_dbias_by_efuse + 0x420aae40 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x420aae66 0x2 + .text.get_rtc_dbias_by_efuse + 0x420aae68 0xc2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x420aaf2a 0x2 + .text.rtc_set_stored_dbias + 0x420aaf2c 0x7b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x87 (size before relaxing) + *fill* 0x420aafa7 0x1 + .text.calibrate_ocode + 0x420aafa8 0xee esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x420ab096 0x2 + .text.rtc_init + 0x420ab098 0x5a6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x5b6 (size before relaxing) + 0x420ab098 rtc_init + *fill* 0x420ab63e 0x0 + *fill* 0x420ab63e 0x0 + *fill* 0x420ab63e 0x0 + *fill* 0x420ab63e 0x0 + *fill* 0x420ab63e 0x0 + *fill* 0x420ab63e 0x0 + *fill* 0x420ab63e 0x0 + *libesp_hw_support.a:rtc_sleep.*(.text) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.s_sar_power_acquire .literal.s_sar_power_release .literal.sar_periph_ctrl_adc_continuous_power_acquire .literal.sar_periph_ctrl_adc_continuous_power_release .literal.sar_periph_ctrl_adc_oneshot_power_acquire .literal.sar_periph_ctrl_adc_oneshot_power_release .literal.sar_periph_ctrl_init .literal.sar_periph_ctrl_pwdet_power_acquire .literal.sar_periph_ctrl_pwdet_power_release .text .text.s_sar_power_acquire .text.s_sar_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_init .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release) + *fill* 0x420ab63e 0x2 + .text.s_sar_power_acquire + 0x420ab640 0x7f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + *fill* 0x420ab6bf 0x1 + .text.s_sar_power_release + 0x420ab6c0 0xab esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + *fill* 0x420ab76b 0x1 + .text.sar_periph_ctrl_init + 0x420ab76c 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x420ab76c sar_periph_ctrl_init + *fill* 0x420ab796 0x2 + .text.sar_periph_ctrl_pwdet_power_acquire + 0x420ab798 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x420ab798 sar_periph_ctrl_pwdet_power_acquire + *fill* 0x420ab7a0 0x0 + .text.sar_periph_ctrl_pwdet_power_release + 0x420ab7a0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x420ab7a0 sar_periph_ctrl_pwdet_power_release + *fill* 0x420ab7a8 0x0 + *fill* 0x420ab7a8 0x0 + *fill* 0x420ab7a8 0x0 + *fill* 0x420ab7a8 0x0 + *fill* 0x420ab7a8 0x0 + *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temp_sensor_sync_tsens_idx .literal.temperature_sensor_ll_set_range .text .text.temp_sensor_sync_tsens_idx .text.temperature_sensor_ll_set_range) + *fill* 0x420ab7a8 0x0 + .text.temperature_sensor_ll_set_range + 0x420ab7a8 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + *fill* 0x420ab7c2 0x0 + *libesp_hw_support.a:sleep_cpu.*(.literal.cache_tagmem_retention_setup .literal.esp_sleep_cpu_pd_low_deinit .literal.esp_sleep_cpu_pd_low_init .literal.esp_sleep_cpu_retention_deinit .literal.esp_sleep_cpu_retention_init .literal.esp_sleep_tagmem_pd_low_deinit .literal.esp_sleep_tagmem_pd_low_init .literal.sleep_cpu_configure .text .text.cache_tagmem_retention_setup .text.esp_sleep_cpu_pd_low_deinit .text.esp_sleep_cpu_pd_low_init .text.esp_sleep_cpu_retention_deinit .text.esp_sleep_cpu_retention_init .text.esp_sleep_tagmem_pd_low_deinit .text.esp_sleep_tagmem_pd_low_init .text.sleep_cpu_configure) + *libesp_hw_support.a:sleep_modem.*(.literal.esp_pm_register_inform_out_light_sleep_overhead_callback .literal.esp_pm_register_light_sleep_default_params_config_callback .literal.esp_pm_unregister_inform_out_light_sleep_overhead_callback .literal.esp_pm_unregister_light_sleep_default_params_config_callback .text .text.esp_pm_register_inform_out_light_sleep_overhead_callback .text.esp_pm_register_light_sleep_default_params_config_callback .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback .text.esp_pm_unregister_light_sleep_default_params_config_callback .text.sleep_modem_configure) + *libesp_hw_support.a:sleep_modes.*(.literal.esp_deep_sleep .literal.esp_deep_sleep_deregister_hook .literal.esp_deep_sleep_deregister_phy_hook .literal.esp_deep_sleep_register_hook .literal.esp_deep_sleep_register_phy_hook .literal.esp_deep_sleep_try .literal.esp_get_deep_sleep_wake_stub .literal.esp_sleep_disable_bt_wakeup .literal.esp_sleep_disable_ext1_wakeup_io .literal.esp_sleep_disable_wakeup_source .literal.esp_sleep_disable_wifi_wakeup .literal.esp_sleep_enable_adc_tsens_monitor .literal.esp_sleep_enable_bt_wakeup .literal.esp_sleep_enable_ext0_wakeup .literal.esp_sleep_enable_ext1_wakeup .literal.esp_sleep_enable_ext1_wakeup_io .literal.esp_sleep_enable_gpio_wakeup .literal.esp_sleep_enable_touchpad_wakeup .literal.esp_sleep_enable_uart_wakeup .literal.esp_sleep_enable_wifi_wakeup .literal.esp_sleep_get_ext1_wakeup_status .literal.esp_sleep_get_touchpad_wakeup_status .literal.esp_sleep_get_wakeup_cause .literal.esp_sleep_is_valid_wakeup_gpio .literal.esp_sleep_overhead_out_time_refresh .literal.esp_sleep_pd_config .literal.esp_sleep_periph_use_8m .literal.esp_sleep_sub_mode_config .literal.esp_sleep_sub_mode_dump_config .literal.esp_sleep_sub_mode_force_disable .literal.ext0_wakeup_prepare .literal.ext1_wakeup_prepare .literal.rtc_sleep_enable_ultra_low .literal.rtcio_ll_ext0_set_wakeup_pin .literal.rtcio_ll_function_select .literal.rtcio_ll_iomux_func_sel .literal.s_do_deep_sleep_phy_callback .literal.s_sleep_hook_deregister .literal.s_sleep_hook_register .literal.touch_wakeup_prepare .text .text.esp_deep_sleep .text.esp_deep_sleep_deregister_hook .text.esp_deep_sleep_deregister_phy_hook .text.esp_deep_sleep_register_hook .text.esp_deep_sleep_register_phy_hook .text.esp_deep_sleep_try .text.esp_get_deep_sleep_wake_stub .text.esp_sleep_disable_bt_wakeup .text.esp_sleep_disable_ext1_wakeup_io .text.esp_sleep_disable_wakeup_source .text.esp_sleep_disable_wifi_beacon_wakeup .text.esp_sleep_disable_wifi_wakeup .text.esp_sleep_enable_adc_tsens_monitor .text.esp_sleep_enable_bt_wakeup .text.esp_sleep_enable_ext0_wakeup .text.esp_sleep_enable_ext1_wakeup .text.esp_sleep_enable_ext1_wakeup_io .text.esp_sleep_enable_gpio_wakeup .text.esp_sleep_enable_touchpad_wakeup .text.esp_sleep_enable_uart_wakeup .text.esp_sleep_enable_ulp_wakeup .text.esp_sleep_enable_wifi_beacon_wakeup .text.esp_sleep_enable_wifi_wakeup .text.esp_sleep_get_ext1_wakeup_status .text.esp_sleep_get_touchpad_wakeup_status .text.esp_sleep_get_wakeup_cause .text.esp_sleep_is_valid_wakeup_gpio .text.esp_sleep_overhead_out_time_refresh .text.esp_sleep_pd_config .text.esp_sleep_periph_use_8m .text.esp_sleep_sub_mode_config .text.esp_sleep_sub_mode_dump_config .text.esp_sleep_sub_mode_force_disable .text.ext0_wakeup_prepare .text.ext1_wakeup_prepare .text.rtc_sleep_enable_ultra_low .text.rtcio_ll_ext0_set_wakeup_pin .text.rtcio_ll_function_select .text.rtcio_ll_iomux_func_sel .text.s_do_deep_sleep_phy_callback .text.s_sleep_hook_deregister .text.s_sleep_hook_register .text.touch_wakeup_prepare) + *fill* 0x420ab7c2 0x2 + .text.s_sleep_hook_register + 0x420ab7c4 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + *fill* 0x420ab81d 0x3 + .text.esp_deep_sleep_register_phy_hook + 0x420ab820 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x420ab820 esp_deep_sleep_register_phy_hook + *fill* 0x420ab832 0x2 + .text.esp_sleep_sub_mode_config + 0x420ab834 0xb6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x420ab834 esp_sleep_sub_mode_config + *fill* 0x420ab8ea 0x0 + *fill* 0x420ab8ea 0x0 + *fill* 0x420ab8ea 0x0 + *libesp_phy.a:phy_override.*(.literal.esp_phy_efuse_get_chip_ver_pkg .literal.esp_phy_efuse_get_mac .literal.phy_set_pwdet_power .literal.set_xpd_sar .text .text.esp_phy_efuse_get_chip_ver_pkg .text.esp_phy_efuse_get_mac .text.include_esp_phy_override .text.phy_set_pwdet_power .text.set_xpd_sar) + *fill* 0x420ab8ea 0x2 + .text.phy_set_pwdet_power + 0x420ab8ec 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x420ab8ec phy_set_pwdet_power + .text.esp_phy_efuse_get_chip_ver_pkg + 0x420ab914 0xd esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x420ab914 esp_phy_efuse_get_chip_ver_pkg + *fill* 0x420ab921 0x3 + .text.include_esp_phy_override + 0x420ab924 0x5 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x420ab924 include_esp_phy_override + *fill* 0x420ab929 0x0 + *libesp_pm.a:pm_impl.*(.literal.esp_pm_get_configuration .literal.esp_pm_impl_get_mode .literal.esp_pm_impl_idle_hook .literal.esp_pm_impl_init .literal.esp_pm_impl_waiti .text .text.esp_pm_configure .text.esp_pm_get_configuration .text.esp_pm_impl_get_mode .text.esp_pm_impl_idle_hook .text.esp_pm_impl_init .text.esp_pm_impl_waiti) + *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) + *fill* 0x420ab929 0x3 + .text.esp_get_free_heap_size + 0x420ab92c 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x420ab92c esp_get_free_heap_size + .text.esp_get_free_internal_heap_size + 0x420ab93c 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x420ab93c esp_get_free_internal_heap_size + *fill* 0x420ab94c 0x0 + *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 + 0x420ab94c 0x33 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x420ab94c esp_vApplicationIdleHook + *fill* 0x420ab97f 0x1 + .text.esp_register_freertos_idle_hook_for_cpu + 0x420ab980 0x59 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x420ab980 esp_register_freertos_idle_hook_for_cpu + *fill* 0x420ab9d9 0x3 + .text.esp_register_freertos_tick_hook_for_cpu + 0x420ab9dc 0x55 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x420ab9dc esp_register_freertos_tick_hook_for_cpu + *fill* 0x420aba31 0x3 + .text.esp_register_freertos_tick_hook + 0x420aba34 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x420aba34 esp_register_freertos_tick_hook + *fill* 0x420aba49 0x3 + .text.esp_deregister_freertos_idle_hook_for_cpu + 0x420aba4c 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x420aba4c esp_deregister_freertos_idle_hook_for_cpu + *fill* 0x420aba8c 0x0 + *fill* 0x420aba8c 0x0 + *fill* 0x420aba8c 0x0 + *fill* 0x420aba8c 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_char_usb_serial_jtag .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_char_usb_serial_jtag .text.panic_print_dec .text.panic_print_hex .text.panic_print_str .text.print_abort_details) + .text.panic_print_char_uart + 0x420aba8c 0x2e esp-idf/esp_system/libesp_system.a(panic.c.obj) + *fill* 0x420ababa 0x2 + .text.panic_print_char_usb_serial_jtag + 0x420ababc 0x6b esp-idf/esp_system/libesp_system.a(panic.c.obj) + *fill* 0x420abb27 0x1 + .text.panic_print_char + 0x420abb28 0x14 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x18 (size before relaxing) + 0x420abb28 panic_print_char + .text.panic_print_str + 0x420abb3c 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x420abb3c panic_print_str + *fill* 0x420abb56 0x2 + .text.print_abort_details + 0x420abb58 0xd esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + *fill* 0x420abb65 0x3 + .text.panic_print_hex + 0x420abb68 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x2f (size before relaxing) + 0x420abb68 panic_print_hex + *fill* 0x420abb94 0x0 + .text.panic_print_dec + 0x420abb94 0x3c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x46 (size before relaxing) + 0x420abb94 panic_print_dec + *fill* 0x420abbd0 0x0 + .text.esp_panic_handler_disable_timg_wdts + 0x420abbd0 0x4e esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x420abbd0 esp_panic_handler_disable_timg_wdts + *fill* 0x420abc1e 0x2 + .text.disable_all_wdts + 0x420abc20 0x26 esp-idf/esp_system/libesp_system.a(panic.c.obj) + *fill* 0x420abc46 0x2 + .text.esp_panic_handler_enable_rtc_wdt + 0x420abc48 0x56 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x420abc48 esp_panic_handler_enable_rtc_wdt + *fill* 0x420abc9e 0x2 + .text.esp_panic_handler_feed_wdts + 0x420abca0 0x9c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x420abca0 esp_panic_handler_feed_wdts + .text.esp_panic_handler_increment_entry_count + 0x420abd3c 0x29 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x420abd3c esp_panic_handler_increment_entry_count + *fill* 0x420abd65 0x3 + .text.esp_panic_handler + 0x420abd68 0x125 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x17b (size before relaxing) + 0x420abd68 esp_panic_handler + *fill* 0x420abe8d 0x0 + *fill* 0x420abe8d 0x0 + *fill* 0x420abe8d 0x0 + *fill* 0x420abe8d 0x0 + *fill* 0x420abe8d 0x0 + *fill* 0x420abe8d 0x0 + *fill* 0x420abe8d 0x0 + *fill* 0x420abe8d 0x0 + *fill* 0x420abe8d 0x3 + .text.esp_reset_reason_set_hint + 0x420abe90 0x5 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x420abe90 esp_reset_reason_set_hint + *fill* 0x420abe95 0x3 + .text.esp_reset_reason_get_hint + 0x420abe98 0x7 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x420abe98 esp_reset_reason_get_hint + *fill* 0x420abe9f 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_timer.a:esp_timer_impl_common.*(.text) + *libesp_timer.a:esp_timer_impl_systimer.*(.literal.esp_timer_impl_deinit .literal.esp_timer_impl_early_init .literal.esp_timer_impl_get_alarm_reg .literal.esp_timer_impl_init .text .text.esp_timer_impl_deinit .text.esp_timer_impl_early_init .text.esp_timer_impl_get_alarm_reg .text.esp_timer_impl_init) + *fill* 0x420abe9f 0x1 + .text.esp_timer_impl_early_init + 0x420abea0 0xb9 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x420abea0 esp_timer_impl_early_init + *fill* 0x420abf59 0x3 + .text.esp_timer_impl_init + 0x420abf5c 0xb3 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x420abf5c esp_timer_impl_init + *fill* 0x420ac00f 0x0 + *fill* 0x420ac00f 0x0 + *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) + *fill* 0x420ac00f 0x1 + .text.mutex_delete_wrapper + 0x420ac010 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac01e 0x2 + .text.wifi_thread_semphr_free + 0x420ac020 0xf esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac02f 0x1 + .text.get_time_wrapper + 0x420ac030 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.wifi_clock_disable_wrapper + 0x420ac040 0xb esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac04b 0x1 + .text.wifi_clock_enable_wrapper + 0x420ac04c 0xb esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac057 0x1 + .text.wifi_reset_mac_wrapper + 0x420ac058 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac066 0x2 + .text.esp_phy_enable_wrapper + 0x420ac068 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x16 (size before relaxing) + *fill* 0x420ac07a 0x2 + .text.esp_phy_disable_wrapper + 0x420ac07c 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x16 (size before relaxing) + *fill* 0x420ac08e 0x2 + .text.esp_event_post_wrapper + 0x420ac090 0x23 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x26 (size before relaxing) + *fill* 0x420ac0b3 0x1 + .text.task_create_wrapper + 0x420ac0b4 0x1e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac0d2 0x2 + .text.task_create_pinned_to_core_wrapper + 0x420ac0d4 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.event_group_wait_bits_wrapper + 0x420ac0f8 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac11e 0x2 + .text.queue_recv_wrapper + 0x420ac120 0x22 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac142 0x2 + .text.queue_send_to_front_wrapper + 0x420ac144 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac159 0x3 + .text.queue_send_to_back_wrapper + 0x420ac15c 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac171 0x3 + .text.queue_send_wrapper + 0x420ac174 0x25 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac199 0x3 + .text.queue_delete_wrapper + 0x420ac19c 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.queue_create_wrapper + 0x420ac1c4 0x40 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.recursive_mutex_create_wrapper + 0x420ac204 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.mutex_create_wrapper + 0x420ac214 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.wifi_thread_semphr_get_wrapper + 0x420ac224 0x58 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.esp_cpu_intr_disable + 0x420ac27c 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac28a 0x2 + .text.esp_cpu_intr_enable + 0x420ac28c 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac29a 0x2 + .text.set_isr_wrapper + 0x420ac29c 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x12 (size before relaxing) + *fill* 0x420ac2aa 0x2 + .text.set_intr_wrapper + 0x420ac2ac 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac2be 0x2 + .text.wifi_create_queue + 0x420ac2c0 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x420ac2c0 wifi_create_queue + .text.wifi_create_queue_wrapper + 0x420ac2e4 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac2f5 0x3 + .text.wifi_delete_queue + 0x420ac2f8 0x17 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x420ac2f8 wifi_delete_queue + *fill* 0x420ac30f 0x1 + .text.wifi_delete_queue_wrapper + 0x420ac310 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x420ac31a 0x2 + .text.clear_intr_wrapper + 0x420ac31c 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac321 0x3 + .text.task_get_max_priority_wrapper + 0x420ac324 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac32b 0x1 + .text.coex_init_wrapper + 0x420ac32c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac333 0x1 + .text.coex_deinit_wrapper + 0x420ac334 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac339 0x3 + .text.coex_enable_wrapper + 0x420ac33c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac343 0x1 + .text.coex_disable_wrapper + 0x420ac344 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac349 0x3 + .text.coex_wifi_request_wrapper + 0x420ac34c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac353 0x1 + .text.coex_wifi_channel_set_wrapper + 0x420ac354 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac35b 0x1 + .text.coex_schm_status_bit_clear_wrapper + 0x420ac35c 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac361 0x3 + .text.coex_schm_status_bit_set_wrapper + 0x420ac364 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac369 0x3 + .text.coex_schm_interval_get_wrapper + 0x420ac36c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac373 0x1 + .text.coex_schm_curr_period_get_wrapper + 0x420ac374 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac37b 0x1 + .text.coex_schm_curr_phase_get_wrapper + 0x420ac37c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac383 0x1 + .text.coex_register_start_cb_wrapper + 0x420ac384 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac38b 0x1 + .text.coex_schm_process_restart_wrapper + 0x420ac38c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac393 0x1 + .text.coex_schm_register_cb_wrapper + 0x420ac394 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac39b 0x1 + .text.coex_schm_flexible_period_set_wrapper + 0x420ac39c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac3a3 0x1 + .text.coex_schm_flexible_period_get_wrapper + 0x420ac3a4 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac3ab 0x1 + .text.coex_schm_get_phase_by_idx_wrapper + 0x420ac3ac 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *fill* 0x420ac3b3 0x0 + *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) + *fill* 0x420ac3b3 0x1 + .text.wifi_ap_receive + 0x420ac3b4 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_driver_start + 0x420ac3d0 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_free + 0x420ac400 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xf (size before relaxing) + *fill* 0x420ac40c 0x0 + .text.wifi_transmit + 0x420ac40c 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_create_if_driver + 0x420ac420 0x3d esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x420ac420 esp_wifi_create_if_driver + *fill* 0x420ac45d 0x3 + .text.esp_wifi_get_if_mac + 0x420ac460 0x29 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x420ac460 esp_wifi_get_if_mac + *fill* 0x420ac489 0x3 + .text.esp_wifi_register_if_rxcb + 0x420ac48c 0xc6 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xca (size before relaxing) + 0x420ac48c esp_wifi_register_if_rxcb + *fill* 0x420ac552 0x0 + *fill* 0x420ac552 0x0 + *fill* 0x420ac552 0x0 + *fill* 0x420ac552 0x2 + .text.esp_wifi_is_if_ready_when_started + 0x420ac554 0x19 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x420ac554 esp_wifi_is_if_ready_when_started + *fill* 0x420ac56d 0x0 + *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) + *fill* 0x420ac56d 0x3 + .text.other_cpu_startup_idle_hook_cb + 0x420ac570 0x12 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x420ac582 0x2 + .text.main_task + 0x420ac584 0xd4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0xd8 (size before relaxing) + .text.esp_startup_start_app + 0x420ac658 0x54 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x420ac658 esp_startup_start_app + .text.esp_startup_start_app_other_cores + 0x420ac6ac 0x36 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x420ac6ac esp_startup_start_app_other_cores + *fill* 0x420ac6e2 0x0 + *fill* 0x420ac6e2 0x0 + *libfreertos.a:freertos_compatibility.*(.literal .literal.* .text .text.*) + *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*) + *libfreertos.a:idf_additions_event_groups.*(.literal .literal.* .text .text.*) + *libfreertos.a:tasks.*(.literal.pxGetTaskListByIndex .text.pxGetTaskListByIndex) + *libfreertos.a:tasks.*(.literal.uxTaskGetSnapshotAll .text.uxTaskGetSnapshotAll) + *libfreertos.a:tasks.*(.literal.xTaskGetNext .text.xTaskGetNext) + *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_init .literal.gdma_ahb_hal_set_burst_size .literal.gdma_ahb_hal_set_strategy .literal.gdma_ll_rx_set_burst_size .literal.gdma_ll_tx_set_burst_size .text .text.gdma_ahb_hal_connect_peri .text.gdma_ahb_hal_disconnect_peri .text.gdma_ahb_hal_enable_burst .text.gdma_ahb_hal_enable_intr .text.gdma_ahb_hal_get_intr_status_reg .text.gdma_ahb_hal_init .text.gdma_ahb_hal_set_burst_size .text.gdma_ahb_hal_set_priority .text.gdma_ahb_hal_set_strategy .text.gdma_ll_rx_set_burst_size .text.gdma_ll_tx_set_burst_size) + *fill* 0x420ac6e2 0x2 + .text.gdma_ahb_hal_set_strategy + 0x420ac6e4 0xa4 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x420ac6e4 gdma_ahb_hal_set_strategy + .text.gdma_ll_rx_set_burst_size + 0x420ac788 0x4b esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + *fill* 0x420ac7d3 0x1 + .text.gdma_ll_tx_set_burst_size + 0x420ac7d4 0x4d esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + *fill* 0x420ac821 0x3 + .text.gdma_ahb_hal_set_burst_size + 0x420ac824 0x1b esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x22 (size before relaxing) + 0x420ac824 gdma_ahb_hal_set_burst_size + *fill* 0x420ac83f 0x1 + .text.gdma_ahb_hal_init + 0x420ac840 0x64 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x420ac840 gdma_ahb_hal_init + *fill* 0x420ac8a4 0x0 + .text.gdma_ahb_hal_set_priority + 0x420ac8a4 0x50 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x420ac8a4 gdma_ahb_hal_set_priority + .text.gdma_ahb_hal_connect_peri + 0x420ac8f4 0xc9 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x420ac8f4 gdma_ahb_hal_connect_peri + *fill* 0x420ac9bd 0x3 + .text.gdma_ahb_hal_disconnect_peri + 0x420ac9c0 0x5c esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x420ac9c0 gdma_ahb_hal_disconnect_peri + .text.gdma_ahb_hal_enable_burst + 0x420aca1c 0x9f esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x420aca1c gdma_ahb_hal_enable_burst + *fill* 0x420acabb 0x1 + .text.gdma_ahb_hal_enable_intr + 0x420acabc 0x9c esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x420acabc gdma_ahb_hal_enable_intr + .text.gdma_ahb_hal_get_intr_status_reg + 0x420acb58 0x26 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + 0x420acb58 gdma_ahb_hal_get_intr_status_reg + *fill* 0x420acb7e 0x0 + *fill* 0x420acb7e 0x0 + *fill* 0x420acb7e 0x0 + *fill* 0x420acb7e 0x0 + *libhal.a:gdma_hal_top.*(.text .text.gdma_hal_connect_peri .text.gdma_hal_deinit .text.gdma_hal_disconnect_peri .text.gdma_hal_enable_access_encrypt_mem .text.gdma_hal_enable_burst .text.gdma_hal_enable_intr .text.gdma_hal_get_intr_status_reg .text.gdma_hal_set_burst_size .text.gdma_hal_set_priority .text.gdma_hal_set_strategy) + *fill* 0x420acb7e 0x2 + .text.gdma_hal_deinit + 0x420acb80 0x9 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + 0x420acb80 gdma_hal_deinit + *fill* 0x420acb89 0x3 + .text.gdma_hal_set_priority + 0x420acb8c 0x12 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + 0x420acb8c gdma_hal_set_priority + *fill* 0x420acb9e 0x2 + .text.gdma_hal_connect_peri + 0x420acba0 0x14 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + 0x420acba0 gdma_hal_connect_peri + .text.gdma_hal_disconnect_peri + 0x420acbb4 0x10 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + 0x420acbb4 gdma_hal_disconnect_peri + .text.gdma_hal_enable_burst + 0x420acbc4 0x16 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + 0x420acbc4 gdma_hal_enable_burst + *fill* 0x420acbda 0x2 + .text.gdma_hal_set_burst_size + 0x420acbdc 0x14 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + 0x420acbdc gdma_hal_set_burst_size + .text.gdma_hal_enable_intr + 0x420acbf0 0x16 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + 0x420acbf0 gdma_hal_enable_intr + *fill* 0x420acc06 0x2 + .text.gdma_hal_enable_access_encrypt_mem + 0x420acc08 0x16 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + 0x420acc08 gdma_hal_enable_access_encrypt_mem + *libhal.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 .text .text.gpio_hal_intr_disable .text.gpio_hal_intr_enable_on_core .text.gpio_hal_iomux_in .text.gpio_hal_iomux_out) + *libhal.a:rtc_cntl_hal.*(.literal.rtc_cntl_hal_dma_link_init .text .text.rtc_cntl_hal_dma_link_init) + *libhal.a:timer_hal.*(.literal.timer_hal_deinit .literal.timer_hal_init .literal.timer_hal_set_counter_value .text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) + *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* 0x420acc1e 0x2 + .text.multi_heap_register_impl + 0x420acc20 0x4e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x52 (size before relaxing) + 0x420acc20 multi_heap_register + 0x420acc20 multi_heap_register_impl + *fill* 0x420acc6e 0x2 + .text.multi_heap_get_info_impl + 0x420acc70 0x68 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x70 (size before relaxing) + 0x420acc70 multi_heap_get_info_impl + 0x420acc70 multi_heap_get_info + *fill* 0x420accd8 0x0 + .text.multi_heap_get_info_tlsf + 0x420accd8 0x26 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x420accfe 0x0 + *fill* 0x420accfe 0x2 + .text.multi_heap_free_size_impl + 0x420acd00 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x420acd00 multi_heap_free_size + 0x420acd00 multi_heap_free_size_impl + *fill* 0x420acd0e 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* 0x420acd0e 0x2 + .text.control_construct + 0x420acd10 0x16e esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x420ace7e 0x2 + .text.default_walker + 0x420ace80 0x21 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x24 (size before relaxing) + *fill* 0x420acea1 0x3 + .text.tlsf_walk_pool + 0x420acea4 0x58 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x420acea4 tlsf_walk_pool + .text.tlsf_fit_size + 0x420acefc 0x6e esp-idf/heap/libheap.a(tlsf.c.obj) + 0x420acefc tlsf_fit_size + *fill* 0x420acf6a 0x2 + .text.tlsf_add_pool + 0x420acf6c 0x194 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x19c (size before relaxing) + 0x420acf6c tlsf_add_pool + .text.tlsf_create + 0x420ad100 0x2d esp-idf/heap/libheap.a(tlsf.c.obj) + 0x420ad100 tlsf_create + *fill* 0x420ad12d 0x3 + .text.tlsf_create_with_pool + 0x420ad130 0x2b esp-idf/heap/libheap.a(tlsf.c.obj) + 0x2f (size before relaxing) + 0x420ad130 tlsf_create_with_pool + *fill* 0x420ad15b 0x0 + *fill* 0x420ad15b 0x1 + .text.tlsf_pool_overhead + 0x420ad15c 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x420ad15c tlsf_pool_overhead + *fill* 0x420ad163 0x0 + *fill* 0x420ad163 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* 0x420ad163 0x1 + .text.log_level_set + 0x420ad164 0x54 esp-idf/log/liblog.a(tag_log_level.c.obj) + .text.log_level_get + 0x420ad1b8 0x4e esp-idf/log/liblog.a(tag_log_level.c.obj) + *fill* 0x420ad206 0x2 + .text.esp_log_level_set + 0x420ad208 0xf esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x420ad208 esp_log_level_set + *fill* 0x420ad217 0x0 + *fill* 0x420ad217 0x0 + *libnewlib.a:esp_time_impl.*(.literal.esp_sync_timekeeping_timers .literal.esp_time_impl_get_time .literal.esp_time_impl_get_time_since_boot .text .text.esp_sync_timekeeping_timers .text.esp_time_impl_get_time .text.esp_time_impl_get_time_since_boot) + *fill* 0x420ad217 0x1 + .text.esp_time_impl_get_time_since_boot + 0x420ad218 0x1b esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x420ad218 esp_time_impl_get_time_since_boot + *fill* 0x420ad233 0x1 + .text.esp_time_impl_get_time + 0x420ad234 0xf esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x420ad234 esp_time_impl_get_time + *fill* 0x420ad243 0x1 + .text.esp_sync_timekeeping_timers + 0x420ad244 0x58 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x5c (size before relaxing) + 0x420ad244 esp_sync_timekeeping_timers + *fill* 0x420ad29c 0x0 + *fill* 0x420ad29c 0x0 + *fill* 0x420ad29c 0x0 + *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) + .text.esp_flash_read_chip_id + 0x420ad29c 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x420ad29c 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 + 0x420ad2b0 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x420ad2b0 esp_flash_app_enable_os_functions + *fill* 0x420ad2d5 0x3 + .text.esp_flash_set_dangerous_write_protection + 0x420ad2d8 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x420ad2d8 esp_flash_set_dangerous_write_protection + *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 + 0x420ad2fc 0x1b esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x420ad2fc xt_int_has_handler + *fill* 0x420ad317 0x1 + .text.xt_set_interrupt_handler + 0x420ad318 0x4e esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x420ad318 xt_set_interrupt_handler + *fill* 0x420ad366 0x0 + *(.stub) + *(.gnu.warning) + *(.gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + 0x420ad376 . = (. + 0x10) + *fill* 0x420ad366 0x10 + 0x420ad376 _text_end = ABSOLUTE (.) + 0x420ad376 _instruction_reserved_end = ABSOLUTE (.) + 0x420ad376 _etext = . + 0x00000000 _flash_cache_start = ABSOLUTE (0x0) + +.flash_rodata_dummy + 0x3c000020 0xb0000 + 0x3c000020 _flash_rodata_dummy_start = ABSOLUTE (.) + 0x3c0ad376 . = (ALIGN (ALIGNOF (.flash.text)) + SIZEOF (.flash.text)) + *fill* 0x3c000020 0xad356 + 0x3c0b0020 . = (ALIGN (0x10000) + 0x20) + *fill* 0x3c0ad376 0x2caa + +.flash.appdesc 0x3c0b0020 0x100 + 0x3c0b0020 _rodata_reserved_start = ABSOLUTE (.) + 0x3c0b0020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x3c0b0020 0x100 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x3c0b0020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + 0x3c0b0120 . = 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 0x3c0b0120 0x21080 + 0x3c0b0120 _flash_rodata_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *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:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *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:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *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:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .sdata2 EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *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:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .sdata2.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *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:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .srodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *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:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_by_mspi_delay.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:_divsf3.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .srodata.*) + .rodata.__esp_system_init_fn_init_show_app_info.str1.4 + 0x3c0b0120 0x133da 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 + 0x3c0c34fa 0xa2 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .rodata.__esp_system_init_fn_init_efuse.str1.4 + 0x3c0c34fa 0x31 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + *fill* 0x3c0c34fa 0x2 + .rodata.__FUNCTION__$0 + 0x3c0c34fc 0x20 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .rodata.set_cnt_in_reg.str1.4 + 0x3c0c351c 0x63 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.write_reg.str1.4 + 0x3c0c351c 0x84 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.4 + 0x3c0c351c 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x3c0c351c 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x3c0c3537 0x1 + .rodata.__func__$4 + 0x3c0c3538 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x3c0c3552 0x2 + .rodata.USER_DATA_MAC_CUSTOM + 0x3c0c3554 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC 0x3c0c3558 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.range_read_addr_blocks + 0x3c0c3570 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x3c0c3570 range_read_addr_blocks + .rodata.__esp_system_init_fn_init_show_cpu_freq.str1.4 + 0x3c0c35c8 0x51 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .rodata.__esp_system_init_fn_init_flash.str1.4 + 0x3c0c35c8 0x40 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .rodata.__func__$0 + 0x3c0c35c8 0x20 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .rodata.start_other_core.str1.4 + 0x3c0c35e8 0xb9 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.system_early_init.str1.4 + 0x3c0c35e8 0xea esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata 0x3c0c35e8 0x20 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.select_rtc_slow_clk.str1.4 + 0x3c0c3608 0x51 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata 0x3c0c3608 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.esp_clk_init.str1.4 + 0x3c0c360c 0x68 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.__func__$0 + 0x3c0c360c 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x3c0c3619 0x3 + .rodata 0x3c0c361c 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .rodata.str1.4 + 0x3c0c362c 0x186 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .rodata.acs_int_st_bits + 0x3c0c362c 0x10 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x3c0c362c acs_int_st_bits + .rodata.ilg_int_st_bits + 0x3c0c363c 0x60 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x3c0c363c ilg_int_st_bits + .rodata 0x3c0c369c 0x10 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.esp_panic_handler_increment_entry_count.str1.4 + 0x3c0c36ac 0x4c esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.esp_panic_handler.str1.4 + 0x3c0c36ac 0x87 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.do_system_init_fn.str1.4 + 0x3c0c36ac 0x46 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .rodata.g_startup_fn + 0x3c0c36ac 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3c0c36ac g_startup_fn + .rodata.frame_to_panic_info.str1.4 + 0x3c0c36b4 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata.print_state_for_core.str1.4 + 0x3c0c36b4 0x3 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata.print_debug_exception_details.str1.4 + 0x3c0c36b4 0x93 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.print_illegal_instruction_details.str1.4 + 0x3c0c36b4 0x1a esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.print_cache_err_details.str1.4 + 0x3c0c36b4 0x5f esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_print_registers.str1.4 + 0x3c0c36b4 0x1a1 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata 0x3c0c36b4 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_arch_fill_info.str1.4 + 0x3c0c3714 0x21 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_soc_fill_info.str1.4 + 0x3c0c3714 0xf esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.4 + 0x3c0c3714 0x28b esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.pseudo_reason$0 + 0x3c0c3714 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.reason$1 + 0x3c0c3734 0xa0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.4 + 0x3c0c37d4 0xbd esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .rodata.str1.4 + 0x3c0c37d4 0x42 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .rodata.esp_ipc_init.str1.4 + 0x3c0c37d4 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .rodata.__func__$0 + 0x3c0c37d4 0x9 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x3c0c37dd 0x3 + .rodata.__func__$1 + 0x3c0c37e0 0xd esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x3c0c37ed 0x3 + .rodata.esp_unknown_msg + 0x3c0c37f0 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.4 + 0x3c0c37f6 0x18ae esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x3c0c37f6 0x2 + .rodata.esp_err_msg_table + 0x3c0c37f8 0x6f8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.log_level_set.str1.4 + 0x3c0c3ef0 0x2 esp-idf/log/liblog.a(tag_log_level.c.obj) + .rodata.esp_log_cache_set_level.str1.4 + 0x3c0c3ef0 0x95 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .rodata.__func__$0 + 0x3c0c3ef0 0x18 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .rodata.__func__$1 + 0x3c0c3f08 0x18 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .rodata.__func__$1 + 0x3c0c3f20 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$6 + 0x3c0c3f38 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3c0c3f49 0x3 + .rodata.__func__$7 + 0x3c0c3f4c 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3c0c3f5e 0x2 + .rodata.__func__$10 + 0x3c0c3f60 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$11 + 0x3c0c3f78 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3c0c3f92 0x2 + .rodata.__func__$12 + 0x3c0c3f94 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3c0c3fad 0x3 + .rodata.__func__$13 + 0x3c0c3fb0 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.register_heap.str1.4 + 0x3c0c3fc1 0x43 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.heap_caps_init.str1.4 + 0x3c0c3fc1 0x11c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x3c0c3fc1 0x3 + .rodata.__func__$1 + 0x3c0c3fc4 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$2 + 0x3c0c3fd8 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x3c0c3fe7 0x1 + .rodata.__func__$3 + 0x3c0c3fe8 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.assert_valid_block.str1.4 + 0x3c0c3ff6 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_register_impl.str1.4 + 0x3c0c3ff6 0x2f esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_get_first_block.str1.4 + 0x3c0c3ff6 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x3c0c3ff6 0x2 + .rodata.__func__$4 + 0x3c0c3ff8 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$0 + 0x3c0c4010 0x19 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.control_construct.str1.4 + 0x3c0c4029 0xca esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.default_walker.str1.4 + 0x3c0c4029 0x26 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_check.str1.4 + 0x3c0c4029 0x4a esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_add_pool.str1.4 + 0x3c0c4029 0x176 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_remove_pool.str1.4 + 0x3c0c4029 0x116 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_create.str1.4 + 0x3c0c4029 0x32 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_malloc.str1.4 + 0x3c0c4029 0x1e7 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_memalign_offs.str1.4 + 0x3c0c4029 0x2b esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_free.str1.4 + 0x3c0c4029 0x110 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_realloc.str1.4 + 0x3c0c4029 0x2e esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c4029 0x3 + .rodata.__func__$0 + 0x3c0c402c 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$1 + 0x3c0c403c 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c4049 0x3 + .rodata.__func__$2 + 0x3c0c404c 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c405d 0x3 + .rodata.__func__$3 + 0x3c0c4060 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c406d 0x3 + .rodata.__func__$5 + 0x3c0c4070 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c4081 0x3 + .rodata.__func__$6 + 0x3c0c4084 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c408e 0x2 + .rodata.__func__$7 + 0x3c0c4090 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c40a3 0x1 + .rodata.__func__$8 + 0x3c0c40a4 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$9 + 0x3c0c40b0 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$10 + 0x3c0c40c0 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c40d3 0x1 + .rodata.__func__$11 + 0x3c0c40d4 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c40ea 0x2 + .rodata.__func__$12 + 0x3c0c40ec 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c40fe 0x2 + .rodata.__func__$13 + 0x3c0c4100 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c4112 0x2 + .rodata.__func__$14 + 0x3c0c4114 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c4126 0x2 + .rodata.__func__$16 + 0x3c0c4128 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c4132 0x2 + .rodata.__func__$17 + 0x3c0c4134 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c4146 0x2 + .rodata.__func__$19 + 0x3c0c4148 0x9 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3c0c4151 0x3 + .rodata.__func__$20 + 0x3c0c4154 0xb esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.s_prepare_reserved_regions.str1.4 + 0x3c0c415f 0xfa esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x3c0c415f 0x1 + .rodata.__func__$0 + 0x3c0c4160 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x3c0c417b 0x1 + .rodata.soc_memory_region_count + 0x3c0c417c 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3c0c417c soc_memory_region_count + .rodata.soc_memory_regions + 0x3c0c4180 0xc8 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3c0c4180 soc_memory_regions + .rodata.str1.4 + 0x3c0c4248 0x23 esp-idf/heap/libheap.a(memory_layout.c.obj) + .rodata.soc_memory_types + 0x3c0c4248 0x50 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3c0c4248 soc_memory_types + .rodata.str1.4 + 0x3c0c4298 0x179 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.__func__$0 + 0x3c0c4298 0x17 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + *fill* 0x3c0c42af 0x1 + .rodata.__func__$1 + 0x3c0c42b0 0x18 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.__func__$2 + 0x3c0c42c8 0xf esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.esp_cpu_stall.str1.4 + 0x3c0c42d7 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *fill* 0x3c0c42d7 0x1 + .rodata.__func__$1 + 0x3c0c42d8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$2 + 0x3c0c42e8 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.find_desc_for_source.str1.4 + 0x3c0c42f6 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.is_vect_desc_usable.str1.4 + 0x3c0c42f6 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.esp_intr_alloc_intrstatus_bind.str1.4 + 0x3c0c42f6 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.intr_free_for_current_cpu.str1.4 + 0x3c0c42f6 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3c0c42f6 0x2 + .rodata.__func__$0 + 0x3c0c42f8 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3c0c4309 0x3 + .rodata.__func__$1 + 0x3c0c430c 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3c0c4326 0x2 + .rodata.__func__$2 + 0x3c0c4328 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3c0c433e 0x2 + .rodata.__func__$3 + 0x3c0c4340 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3c0c4359 0x3 + .rodata.__func__$5 + 0x3c0c435c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$6 + 0x3c0c4370 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.periph_module_enable.str1.4 + 0x3c0c4385 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x3c0c4385 0x3 + .rodata.__func__$0 + 0x3c0c4388 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__$2 + 0x3c0c439c 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.esp_sleep_config_gpio_isolate.str1.4 + 0x3c0c43b1 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_enable_gpio_switch.str1.4 + 0x3c0c43b1 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + *fill* 0x3c0c43b1 0x3 + .rodata 0x3c0c43b4 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .rodata.set_ocode_by_efuse.str1.4 + 0x3c0c43b9 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .rodata.get_dig1v3_dbias_by_efuse.str1.4 + 0x3c0c43b9 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .rodata.calibrate_ocode.str1.4 + 0x3c0c43b9 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x3c0c43b9 0x3 + .rodata 0x3c0c43bc 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x3c0c43ca 0x2 + .rodata.__func__$0 + 0x3c0c43cc 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x3c0c43e3 0x1 + .rodata.__func__$1 + 0x3c0c43e4 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x3c0c43fb 0x1 + .rodata.__func__$2 + 0x3c0c43fc 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x3c0c4416 0x2 + .rodata.__func__$3 + 0x3c0c4418 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .rodata.rtc_clk_cal_ratio.str1.4 + 0x3c0c442b 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_us_to_slowclk.str1.4 + 0x3c0c442b 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *fill* 0x3c0c442b 0x1 + .rodata.__func__$2 + 0x3c0c442c 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *fill* 0x3c0c4443 0x1 + .rodata.__func__$1 + 0x3c0c4444 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.s_sar_power_release.str1.4 + 0x3c0c4450 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata.__func__$0 + 0x3c0c4450 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata 0x3c0c4464 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .rodata.esp_mprot_set_prot.str1.4 + 0x3c0c449c 0x7dd esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .rodata.esp_cpu_intr_get_desc.str1.4 + 0x3c0c449c 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .rodata.__func__$0 + 0x3c0c449c 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + *fill* 0x3c0c44b2 0x2 + .rodata.intr_desc_table + 0x3c0c44b4 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .rodata.regi2c_saradc_disable.str1.4 + 0x3c0c46b4 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.str1.4 + 0x3c0c46b4 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.s_sleep_hook_register.str1.4 + 0x3c0c46b4 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.str1.4 + 0x3c0c46b4 0x1ac esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_sub_mode_config.str1.4 + 0x3c0c46b4 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.s_submode2str + 0x3c0c46b4 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.clk_tree_rtc_slow_calibration.str1.4 + 0x3c0c46d4 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .rodata.esp_clk_tree_lp_fast_get_freq_hz.str1.4 + 0x3c0c46d4 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .rodata.__func__$0 + 0x3c0c46d4 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + *fill* 0x3c0c46f5 0x3 + .rodata.__func__$1 + 0x3c0c46f8 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .rodata.main_task.str1.4 + 0x3c0c4716 0xba esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.esp_startup_start_app.str1.4 + 0x3c0c4716 0x40 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x3c0c4716 0x2 + .rodata.__func__$0 + 0x3c0c4718 0xa esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x3c0c4722 0x2 + .rodata.__func__$1 + 0x3c0c4724 0x16 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.prvNotifyQueueSetContainer.str1.4 + 0x3c0c473a 0x8f esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericReset.str1.4 + 0x3c0c473a 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericCreateStatic.str1.4 + 0x3c0c473a 0x37 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericGetStaticBuffers.str1.4 + 0x3c0c473a 0xf esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGetMutexHolder.str1.4 + 0x3c0c473a 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueCreateCountingSemaphoreStatic.str1.4 + 0x3c0c473a 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericSend.str1.4 + 0x3c0c473a 0xfb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.prvInitialiseMutex.str1.4 + 0x3c0c473a 0x3b esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGiveMutexRecursive.str1.4 + 0x3c0c473a 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGiveFromISR.str1.4 + 0x3c0c473a 0x7d esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueReceive.str1.4 + 0x3c0c473a 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueReceiveFromISR.str1.4 + 0x3c0c473a 0x52 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.uxQueueMessagesWaiting.str1.4 + 0x3c0c473a 0x7 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c473a 0x2 + .rodata.__func__$2 + 0x3c0c473c 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c4749 0x3 + .rodata.__func__$5 + 0x3c0c474c 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c4763 0x1 + .rodata.__func__$7 + 0x3c0c4764 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c4779 0x3 + .rodata.__func__$9 + 0x3c0c477c 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$10 + 0x3c0c4790 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c479e 0x2 + .rodata.__func__$11 + 0x3c0c47a0 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c47b2 0x2 + .rodata.__func__$12 + 0x3c0c47b4 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c47cd 0x3 + .rodata.__func__$13 + 0x3c0c47d0 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c47eb 0x1 + .rodata.__func__$14 + 0x3c0c47ec 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c47fe 0x2 + .rodata.__func__$15 + 0x3c0c4800 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c481e 0x2 + .rodata.__func__$17 + 0x3c0c4820 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c4839 0x3 + .rodata.__func__$18 + 0x3c0c483c 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c4855 0x3 + .rodata.__func__$20 + 0x3c0c4858 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c486d 0x3 + .rodata.__func__$21 + 0x3c0c4870 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$22 + 0x3c0c4884 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c48a2 0x2 + .rodata.__func__$23 + 0x3c0c48a4 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3c0c48be 0x2 + .rodata.__func__$24 + 0x3c0c48c0 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$25 + 0x3c0c48d4 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.prvIsYieldRequiredSMP.str1.4 + 0x3c0c48e7 0x4a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvSelectHighestPriorityTaskSMP.str1.4 + 0x3c0c48e7 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvDeleteTCB.str1.4 + 0x3c0c48e7 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvInitialiseNewTask.str1.4 + 0x3c0c48e7 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.eTaskGetState.str1.4 + 0x3c0c48e7 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskIncrementTick.str1.4 + 0x3c0c48e7 0x8e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPlaceOnEventList.str1.4 + 0x3c0c48e7 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskRemoveFromEventList.str1.4 + 0x3c0c48e7 0x49 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskRemoveFromUnorderedEventList.str1.4 + 0x3c0c48e7 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSetTimeOutState.str1.4 + 0x3c0c48e7 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCheckForTimeOut.str1.4 + 0x3c0c48e7 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPrioritySet.str1.4 + 0x3c0c48e7 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSuspend.str1.4 + 0x3c0c48e7 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskDelete.str1.4 + 0x3c0c48e7 0x7f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskResumeAll.str1.4 + 0x3c0c48e7 0x7f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskPriorityDisinherit.str1.4 + 0x3c0c48e7 0x41 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 + 0x3c0c48e7 0x2b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.ulTaskGenericNotifyTake.str1.4 + 0x3c0c48e7 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGenericNotify.str1.4 + 0x3c0c48e7 0x83 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskIncrementTickOtherCores.str1.4 + 0x3c0c48e7 0x55 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreatePinnedToCore.str1.4 + 0x3c0c48e7 0xbc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreateStaticPinnedToCore.str1.4 + 0x3c0c48e7 0x65 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvCreateIdleTasks.str1.4 + 0x3c0c48e7 0x5 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskStartScheduler.str1.4 + 0x3c0c48e7 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetIdleTaskHandleForCore.str1.4 + 0x3c0c48e7 0xbe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c48e7 0x1 + .rodata.__func__$2 + 0x3c0c48e8 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4909 0x3 + .rodata.__func__$3 + 0x3c0c490c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c492a 0x2 + .rodata.__func__$4 + 0x3c0c492c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c494a 0x2 + .rodata.__func__$5 + 0x3c0c494c 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4961 0x3 + .rodata.__func__$6 + 0x3c0c4964 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$7 + 0x3c0c497c 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4999 0x3 + .rodata.__func__$9 + 0x3c0c499c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c49ba 0x2 + .rodata.__func__$11 + 0x3c0c49bc 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c49cf 0x1 + .rodata.__func__$13 + 0x3c0c49d0 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$14 + 0x3c0c49e8 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$15 + 0x3c0c4a0c 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$17 + 0x3c0c4a24 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4a39 0x3 + .rodata.__func__$19 + 0x3c0c4a3c 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4a5e 0x2 + .rodata.__func__$20 + 0x3c0c4a60 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4a79 0x3 + .rodata.__func__$22 + 0x3c0c4a7c 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4a9b 0x1 + .rodata.__func__$23 + 0x3c0c4a9c 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4ab2 0x2 + .rodata.__func__$24 + 0x3c0c4ab4 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$25 + 0x3c0c4ad4 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4ae7 0x1 + .rodata.__func__$30 + 0x3c0c4ae8 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4af6 0x2 + .rodata.__func__$31 + 0x3c0c4af8 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4b07 0x1 + .rodata.__func__$32 + 0x3c0c4b08 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$36 + 0x3c0c4b1c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4b29 0x3 + .rodata.__func__$37 + 0x3c0c4b2c 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4b42 0x2 + .rodata.__func__$38 + 0x3c0c4b44 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4b55 0x3 + .rodata.__func__$40 + 0x3c0c4b58 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4b63 0x1 + .rodata.__func__$42 + 0x3c0c4b64 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3c0c4b71 0x3 + .rodata.__func__$43 + 0x3c0c4b74 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.uxTopUsedPriority + 0x3c0c4b80 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c0c4b80 uxTopUsedPriority + .rodata.vPortTaskWrapper.str1.4 + 0x3c0c4b84 0x4d esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortTLSPointersDelCb.str1.4 + 0x3c0c4b84 0x67 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.pxPortInitialiseStack.str1.4 + 0x3c0c4b84 0x65 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.xPortEnterCriticalTimeout.str1.4 + 0x3c0c4b84 0xef esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortExitCritical.str1.4 + 0x3c0c4b84 0x40 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationStackOverflowHook.str1.4 + 0x3c0c4b84 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$0 + 0x3c0c4b84 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x3c0c4b95 0x3 + .rodata.__func__$1 + 0x3c0c4b98 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x3c0c4baa 0x2 + .rodata.__func__$2 + 0x3c0c4bac 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x3c0c4bbd 0x3 + .rodata.__func__$4 + 0x3c0c4bc0 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationGetIdleTaskMemory.str1.4 + 0x3c0c4bd6 0x5a esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x3c0c4bd6 0x2 + .rodata.__func__$1 + 0x3c0c4bd8 0x1e esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.vSystimerSetup.str1.4 + 0x3c0c4bf6 0xa8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + *fill* 0x3c0c4bf6 0x2 + .rodata 0x3c0c4bf8 0x8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .rodata.__func__$0 + 0x3c0c4c00 0xf esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .rodata.__esp_system_init_fn_init_libc_stdio.str1.4 + 0x3c0c4c0f 0xd esp-idf/newlib/libnewlib.a(init.c.obj) + .rodata.str1.4 + 0x3c0c4c0f 0x95 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.esp_libc_locks_init.str1.4 + 0x3c0c4c0f 0x68 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x3c0c4c0f 0x1 + .rodata.__func__$4 + 0x3c0c4c10 0x14 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.__func__$3 + 0x3c0c4c24 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x3c0c4c37 0x1 + .rodata.__func__$2 + 0x3c0c4c38 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x3c0c4c4d 0x3 + .rodata.__func__$1 + 0x3c0c4c50 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x3c0c4c65 0x3 + .rodata.__func__$0 + 0x3c0c4c68 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.esp_libc_init_global_stdio.str1.4 + 0x3c0c4c74 0x6 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .rodata.pthread_cleanup_thread_specific_data_callback.str1.4 + 0x3c0c4c74 0x3d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.__func__$0 + 0x3c0c4c74 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.esp_timer_impl_init_system_time.str1.4 + 0x3c0c4ca2 0x46 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .rodata.str1.4 + 0x3c0c4ca2 0x75 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + *fill* 0x3c0c4ca2 0x2 + .rodata 0x3c0c4ca4 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .rodata.esp_timer_impl_init.str1.4 + 0x3c0c4cac 0x98 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .rodata.__func__$0 + 0x3c0c4cac 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .rodata.uart_access.str1.4 + 0x3c0c4cc8 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.uart_fcntl.str1.4 + 0x3c0c4cc8 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.uart_return_char.str1.4 + 0x3c0c4cc8 0x1d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.uart_read.str1.4 + 0x3c0c4cc8 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.uart_vfs_dev_register.str1.4 + 0x3c0c4cc8 0x87 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.__func__$7 + 0x3c0c4cc8 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3c0c4cde 0x2 + .rodata.__func__$6 + 0x3c0c4ce0 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3c0c4ceb 0x1 + .rodata.__func__$5 + 0x3c0c4cec 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3c0c4cfd 0x3 + .rodata.__func__$4 + 0x3c0c4d00 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3c0c4d0a 0x2 + .rodata.__func__$3 + 0x3c0c4d0c 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3c0c4d17 0x1 + .rodata.__func__$2 + 0x3c0c4d18 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3c0c4d23 0x1 + .rodata.__func__$1 + 0x3c0c4d24 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3c0c4d2f 0x1 + .rodata.__func__$0 + 0x3c0c4d30 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3c0c4d3b 0x1 + .rodata.s_vfs_uart + 0x3c0c4d3c 0x38 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_vfs_uart_termios + 0x3c0c4d74 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_vfs_uart_select + 0x3c0c4d90 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_vfs_uart_dir + 0x3c0c4da8 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_uart_mount_points + 0x3c0c4de8 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_ctx 0x3c0c4df4 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.uart_reenable_intr_mask.str1.4 + 0x3c0c4e00 0x2c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_word_length.str1.4 + 0x3c0c4e00 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_stop_bits.str1.4 + 0x3c0c4e00 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_baudrate.str1.4 + 0x3c0c4e00 0x54 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_get_baudrate.str1.4 + 0x3c0c4e00 0x25 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_pattern_pop_pos.str1.4 + 0x3c0c4e00 0x27 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_wait_tx_done.str1.4 + 0x3c0c4e00 0x98 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_flush_input.str1.4 + 0x3c0c4e00 0x23 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$36 + 0x3c0c4e00 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3c0c4e11 0x3 + .rodata.__FUNCTION__$34 + 0x3c0c4e14 0x1b esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3c0c4e2f 0x1 + .rodata.__FUNCTION__$33 + 0x3c0c4e30 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__func__$28 + 0x3c0c4e48 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3c0c4e5a 0x2 + .rodata.__FUNCTION__$27 + 0x3c0c4e5c 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3c0c4e6e 0x2 + .rodata.__FUNCTION__$7 + 0x3c0c4e70 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3c0c4e82 0x2 + .rodata.__FUNCTION__$6 + 0x3c0c4e84 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3c0c4e96 0x2 + .rodata.__FUNCTION__$5 + 0x3c0c4e98 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$4 + 0x3c0c4ea8 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$3 + 0x3c0c4eb8 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3c0c4ecb 0x1 + .rodata.__FUNCTION__$2 + 0x3c0c4ecc 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3c0c4edf 0x1 + .rodata.__FUNCTION__$1 + 0x3c0c4ee0 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3c0c4ef5 0x3 + .rodata.__FUNCTION__$0 + 0x3c0c4ef8 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.usb_serial_jtag_return_char.str1.4 + 0x3c0c4f0d 0x5e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.usb_serial_jtag_read.str1.4 + 0x3c0c4f0d 0x1e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.__esp_system_init_fn_init_vfs_usj_sec.str1.4 + 0x3c0c4f0d 0xf esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x3c0c4f0d 0x3 + .rodata.__func__$1 + 0x3c0c4f10 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.__func__$0 + 0x3c0c4f2c 0x15 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + *fill* 0x3c0c4f41 0x3 + .rodata.s_vfs_jtag + 0x3c0c4f44 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.s_vfs_jtag_termios + 0x3c0c4f7c 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.s_vfs_jtag_select + 0x3c0c4f98 0x18 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .rodata.console_open.str1.4 + 0x3c0c4fb0 0x1b esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.esp_vfs_dev_console_register.str1.4 + 0x3c0c4fb0 0xd esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.s_vfs_console + 0x3c0c4fb0 0x38 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.s_vfs_console_termios + 0x3c0c4fe8 0x1c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.s_vfs_console_select + 0x3c0c5004 0x18 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.s_vfs_console_dir + 0x3c0c501c 0x40 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .rodata.esp_vfs_register_fs_common.str1.4 + 0x3c0c505c 0x1 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_minify_vfs.str1.4 + 0x3c0c505c 0x27 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.translate_path.str1.4 + 0x3c0c505c 0x43 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.__func__$1 + 0x3c0c505c 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x3c0c506b 0x1 + .rodata.__func__$0 + 0x3c0c506c 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.vfs_null_open.str1.4 + 0x3c0c507b 0x2 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .rodata.esp_vfs_null_register.str1.4 + 0x3c0c507b 0xa esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x3c0c507b 0x1 + .rodata.s_vfs_null + 0x3c0c507c 0x38 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .rodata.s_vfs_null_dir + 0x3c0c50b4 0x40 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .rodata.wifi_event_handler.str1.4 + 0x3c0c50f4 0x50 esp-idf/main/libmain.a(wifi_init.c.obj) + .rodata.wifi_init.str1.4 + 0x3c0c50f4 0x201 esp-idf/main/libmain.a(wifi_init.c.obj) + .rodata.__func__$0 + 0x3c0c50f4 0xa esp-idf/main/libmain.a(wifi_init.c.obj) + .rodata.fs_init.str1.4 + 0x3c0c50fe 0x73 esp-idf/main/libmain.a(fs_init.c.obj) + *fill* 0x3c0c50fe 0x2 + .rodata 0x3c0c5100 0x10 esp-idf/main/libmain.a(fs_init.c.obj) + .rodata.periodic_publish_task.str1.4 + 0x3c0c5110 0x57 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .rodata.reboot_task.str1.4 + 0x3c0c5110 0x2a esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .rodata.build_rpc_topics.str1.4 + 0x3c0c5110 0xf0 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .rodata.mqtt_send_response.str1.4 + 0x3c0c5110 0x70 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .rodata.send_job_status.str1.4 + 0x3c0c5110 0x88 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .rodata.mqtt_event_handler.str1.4 + 0x3c0c5110 0x34a esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .rodata 0x3c0c5110 0x18 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .rodata.mqtt_manager_init.str1.4 + 0x3c0c5128 0x75 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .rodata.vfs_spiffs_telldir.str1.4 + 0x3c0c5128 0x2d esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.esp_spiffs_init.str1.4 + 0x3c0c5128 0x46f esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.vfs_spiffs_update_mtime_value.str1.4 + 0x3c0c5128 0x29 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.vfs_spiffs_utime.str1.4 + 0x3c0c5128 0x5 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.vfs_spiffs_opendir.str1.4 + 0x3c0c5128 0x5 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.vfs_spiffs_rename.str1.4 + 0x3c0c5128 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.vfs_spiffs_stat.str1.4 + 0x3c0c5128 0x3 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.esp_vfs_spiffs_register.str1.4 + 0x3c0c5128 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.__func__$0 + 0x3c0c5128 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.__func__$1 + 0x3c0c5138 0x11 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3c0c5149 0x3 + .rodata.__func__$2 + 0x3c0c514c 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.__func__$3 + 0x3c0c515c 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3c0c516e 0x2 + .rodata.__func__$4 + 0x3c0c5170 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3c0c5182 0x2 + .rodata.__func__$5 + 0x3c0c5184 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3c0c5197 0x1 + .rodata.__func__$6 + 0x3c0c5198 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3c0c51ab 0x1 + .rodata.__func__$7 + 0x3c0c51ac 0x15 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3c0c51c1 0x3 + .rodata.__func__$8 + 0x3c0c51c4 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3c0c51d7 0x1 + .rodata.__func__$9 + 0x3c0c51d8 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3c0c51eb 0x1 + .rodata.__func__$10 + 0x3c0c51ec 0x14 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.__func__$11 + 0x3c0c5200 0x14 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.__func__$12 + 0x3c0c5214 0x11 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3c0c5225 0x3 + .rodata.__func__$13 + 0x3c0c5228 0x18 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.s_vfs_spiffs + 0x3c0c5240 0x38 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.s_vfs_spiffs_dir + 0x3c0c5278 0x40 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.spiffs_api_read.str1.4 + 0x3c0c52b8 0x47 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .rodata.spiffs_api_write.str1.4 + 0x3c0c52b8 0x40 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .rodata.spiffs_api_erase.str1.4 + 0x3c0c52b8 0x40 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .rodata.spiffs_api_check.str1.4 + 0x3c0c52b8 0x30 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .rodata.str1.4 + 0x3c0c52b8 0x75 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .rodata.spiffs_check_report_str$0 + 0x3c0c52b8 0x1c esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .rodata.spiffs_check_type_str$1 + 0x3c0c52d4 0xc esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .rodata.create_string.str1.4 + 0x3c0c52e0 0x35 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_check_cfg_conflict.str1.4 + 0x3c0c52e0 0x162 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.run_event_loop.str1.4 + 0x3c0c52e0 0x2c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_dispatch_event.str1.4 + 0x3c0c52e0 0xc esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_client_create_transport.str1.4 + 0x3c0c52e0 0x91 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_handle_transport_read_error.str1.4 + 0x3c0c52e0 0x5a esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_write.str1.4 + 0x3c0c52e0 0x6c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.mqtt_message_receive.str1.4 + 0x3c0c52e0 0x7e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_connect.str1.4 + 0x3c0c52e0 0x19f esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.send_disconnect_msg.str1.4 + 0x3c0c52e0 0x62 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.deliver_suback.str1.4 + 0x3c0c52e0 0x2b esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.deliver_publish.str1.4 + 0x3c0c52e0 0x64 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.mqtt_process_receive.str1.4 + 0x3c0c52e0 0x1a8 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.mqtt_resend_pubrel.str1.4 + 0x3c0c52e0 0x23 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_client_ping.str1.4 + 0x3c0c52e0 0x4c esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.process_keepalive.str1.4 + 0x3c0c52e0 0x53 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_task.str1.4 + 0x3c0c52e0 0x192 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.make_publish.str1.4 + 0x3c0c52e0 0x2f esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_client_set_uri.str1.4 + 0x3c0c52e0 0x3e esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_set_config.str1.4 + 0x3c0c52e0 0xb7 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_client_start.str1.4 + 0x3c0c52e0 0x50 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_client_stop.str1.4 + 0x3c0c52e0 0x6f esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_client_subscribe_multiple.str1.4 + 0x3c0c52e0 0xa3 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.esp_mqtt_client_publish.str1.4 + 0x3c0c52e0 0x41 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.__func__$0 + 0x3c0c52e0 0x10 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.__func__$1 + 0x3c0c52f0 0x15 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x3c0c5305 0x3 + .rodata.__func__$2 + 0x3c0c5308 0x25 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x3c0c532d 0x3 + .rodata.__func__$3 + 0x3c0c5330 0x15 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x3c0c5345 0x3 + .rodata.__func__$4 + 0x3c0c5348 0x11 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x3c0c5359 0x3 + .rodata.__FUNCTION__$5 + 0x3c0c535c 0x21 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x3c0c537d 0x3 + .rodata.__FUNCTION__$6 + 0x3c0c5380 0x18 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.__FUNCTION__$7 + 0x3c0c5398 0x13 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x3c0c53ab 0x1 + .rodata.__FUNCTION__$8 + 0x3c0c53ac 0x15 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x3c0c53c1 0x3 + .rodata.__FUNCTION__$9 + 0x3c0c53c4 0xe esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + *fill* 0x3c0c53d2 0x2 + .rodata.__FUNCTION__$10 + 0x3c0c53d4 0x14 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .rodata.mqtt_msg_connect.str1.4 + 0x3c0c53e8 0x11 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .rodata.outbox_init.str1.4 + 0x3c0c53e8 0x31 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .rodata.__FUNCTION__$0 + 0x3c0c53e8 0xf esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + *fill* 0x3c0c53f7 0x1 + .rodata.__FUNCTION__$1 + 0x3c0c53f8 0xc esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .rodata.platform_create_id_string.str1.4 + 0x3c0c5404 0x4b esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .rodata.__FUNCTION__$0 + 0x3c0c5404 0x1a esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .rodata.fota_manager_apply.str1.4 + 0x3c0c541e 0x2aa esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .rodata.ftp_connect_control.str1.4 + 0x3c0c541e 0xdf esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .rodata.ftp_send_cmd.str1.4 + 0x3c0c541e 0x5 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .rodata.ftp_manager_download.str1.4 + 0x3c0c541e 0x1b7 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .rodata.rpc_job_parse.str1.4 + 0x3c0c541e 0x5a esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .rodata.skip_utf8_bom.str1.4 + 0x3c0c541e 0x4 esp-idf/json/libjson.a(cJSON.c.obj) + .rodata.print_number.str1.4 + 0x3c0c541e 0x1f esp-idf/json/libjson.a(cJSON.c.obj) + .rodata.print_value.str1.4 + 0x3c0c541e 0xd esp-idf/json/libjson.a(cJSON.c.obj) + .rodata.str1.4 + 0x3c0c541e 0x23 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + *fill* 0x3c0c541e 0x2 + .rodata 0x3c0c5420 0x30 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x3c0c5420 _xt_coproc_sa_offset + .rodata.gpio_input_disable.str1.4 + 0x3c0c5450 0x32 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_sleep_output_enable.str1.4 + 0x3c0c5450 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_set_pull_mode.str1.4 + 0x3c0c5450 0x53 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$3 + 0x3c0c5450 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3c0c5463 0x1 + .rodata.__FUNCTION__$4 + 0x3c0c5464 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3c0c5476 0x2 + .rodata.__FUNCTION__$5 + 0x3c0c5478 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3c0c548e 0x2 + .rodata.__FUNCTION__$6 + 0x3c0c5490 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$7 + 0x3c0c54a8 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3c0c54bd 0x3 + .rodata.__FUNCTION__$8 + 0x3c0c54c0 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3c0c54d7 0x1 + .rodata.__FUNCTION__$9 + 0x3c0c54d8 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3c0c54f1 0x3 + .rodata.__FUNCTION__$10 + 0x3c0c54f4 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3c0c550e 0x2 + .rodata.__FUNCTION__$11 + 0x3c0c5510 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3c0c5529 0x3 + .rodata.__FUNCTION__$12 + 0x3c0c552c 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3c0c5545 0x3 + .rodata.__FUNCTION__$13 + 0x3c0c5548 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$14 + 0x3c0c5560 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.read_otadata.str1.4 + 0x3c0c5579 0x57 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_running_partition.str1.4 + 0x3c0c5579 0x5f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write.str1.4 + 0x3c0c5579 0xea esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_end.str1.4 + 0x3c0c5579 0x65 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_app_partition_count.str1.4 + 0x3c0c5579 0x46 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_next_update_partition.str1.4 + 0x3c0c5579 0x13 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x3c0c5579 0x3 + .rodata.__func__$0 + 0x3c0c557c 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x3c0c559e 0x2 + .rodata.__func__$1 + 0x3c0c55a0 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x3c0c55be 0x2 + .rodata.__func__$3 + 0x3c0c55c0 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.load_partitions.str1.4 + 0x3c0c55e0 0x66 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.ensure_partitions_loaded.str1.4 + 0x3c0c55e0 0x2b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_unload_all.str1.4 + 0x3c0c55e0 0x4b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_next.str1.4 + 0x3c0c55e0 0x3 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_get.str1.4 + 0x3c0c55e0 0x11 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_verify.str1.4 + 0x3c0c55e0 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_copy.str1.4 + 0x3c0c55e0 0x137 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$1 + 0x3c0c55e0 0x15 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x3c0c55f5 0x3 + .rodata.__func__$2 + 0x3c0c55f8 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x3c0c560a 0x2 + .rodata.__func__$3 + 0x3c0c560c 0x13 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_write.str1.4 + 0x3c0c561f 0x46 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x3c0c561f 0x1 + .rodata.__func__$0 + 0x3c0c5620 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x3c0c5633 0x1 + .rodata.__func__$1 + 0x3c0c5634 0x1a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x3c0c564e 0x2 + .rodata.__func__$2 + 0x3c0c5650 0x18 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$3 + 0x3c0c5668 0x17 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x3c0c567f 0x1 + .rodata.__func__$4 + 0x3c0c5680 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$5 + 0x3c0c5694 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.bootloader_common_check_chip_revision_validity.str1.4 + 0x3c0c56a7 0xa3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_efuse_blk_validity.str1.4 + 0x3c0c56a7 0x98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.4 + 0x3c0c56a7 0x35 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x3c0c56a7 0x65 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.str1.4 + 0x3c0c56a7 0x7f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x3c0c56a7 0x1 + .rodata.__func__$8 + 0x3c0c56a8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.esp_partition_table_verify.str1.4 + 0x3c0c56d0 0x131 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.verify_segment_header.str1.4 + 0x3c0c56d0 0x81 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash_and_sig.str1.4 + 0x3c0c56d0 0x42 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_checksum.str1.4 + 0x3c0c56d0 0x38 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_image_header.str1.4 + 0x3c0c56d0 0x88 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment_data.str1.4 + 0x3c0c56d0 0x32 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment.str1.4 + 0x3c0c56d0 0xe9 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.4 + 0x3c0c56d0 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_simple_hash.str1.4 + 0x3c0c56d0 0x52 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.esp_image_bootloader_offset_set.str1.4 + 0x3c0c56d0 0x44 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.bootloader_sha256_data.str1.4 + 0x3c0c56d0 0x55 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$2 + 0x3c0c56d0 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + *fill* 0x3c0c56e9 0x3 + .rodata.__func__$3 + 0x3c0c56ec 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.s_get_bus_mask.str1.4 + 0x3c0c5703 0x37 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.s_reserve_irom_region.str1.4 + 0x3c0c5703 0xbe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.s_reserve_drom_region.str1.4 + 0x3c0c5703 0x8b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.str1.4 + 0x3c0c5703 0x5d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_init.str1.4 + 0x3c0c5703 0x5f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_get_max_consecutive_free_block_size.str1.4 + 0x3c0c5703 0x46 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map.str1.4 + 0x3c0c5703 0x102 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_unmap.str1.4 + 0x3c0c5703 0x8c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_vaddr_to_paddr.str1.4 + 0x3c0c5703 0x64 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3c0c5703 0x1 + .rodata.__FUNCTION__$1 + 0x3c0c5704 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3c0c571b 0x1 + .rodata.__FUNCTION__$2 + 0x3c0c571c 0xe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3c0c572a 0x2 + .rodata.__func__$4 + 0x3c0c572c 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$5 + 0x3c0c5738 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$7 + 0x3c0c5744 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$8 + 0x3c0c5774 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3c0c578a 0x2 + .rodata.__func__$9 + 0x3c0c578c 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$10 + 0x3c0c57a0 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3c0c57b6 0x2 + .rodata.__func__$11 + 0x3c0c57b8 0x11 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3c0c57c9 0x3 + .rodata.g_mmu_mem_regions + 0x3c0c57cc 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x3c0c57cc g_mmu_mem_regions + .rodata.spi_flash_init_lock.str1.4 + 0x3c0c57e4 0x45 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.str1.4 + 0x3c0c57e4 0x106 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.__func__$0 + 0x3c0c57e4 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x3c0c5815 0x3 + .rodata.__func__$1 + 0x3c0c5818 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x3c0c584a 0x2 + .rodata.__func__$2 + 0x3c0c584c 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.s_merge_contiguous_pages.str1.4 + 0x3c0c5860 0x44 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_munmap.str1.4 + 0x3c0c5860 0x32 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$1 + 0x3c0c5860 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.esp_mspi_get_io.str1.4 + 0x3c0c5871 0x3f esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + *fill* 0x3c0c5871 0x3 + .rodata.__func__$0 + 0x3c0c5874 0x10 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.s_mspi_io_num_default + 0x3c0c5884 0xb esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.detect_spi_flash_chip.str1.4 + 0x3c0c588f 0x1f esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_read_unique_chip_id.str1.4 + 0x3c0c588f 0x7b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_init.str1.4 + 0x3c0c588f 0xb2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_erase_region.str1.4 + 0x3c0c588f 0x3f esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_write.str1.4 + 0x3c0c588f 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3c0c588f 0x1 + .rodata.__func__$0 + 0x3c0c5890 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__$1 + 0x3c0c58a0 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3c0c58b7 0x1 + .rodata.io_mode_str + 0x3c0c58b8 0xb4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.s_esp_flash_choose_correct_mode.str1.4 + 0x3c0c596c 0x6c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.esp_flash_init_default_chip.str1.4 + 0x3c0c596c 0x124 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__FUNCTION__$1 + 0x3c0c596c 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.TAG 0x3c0c5988 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.spi_flash_os_check_yield.str1.4 + 0x3c0c5992 0x47 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x3c0c5992 0x2 + .rodata.__func__$0 + 0x3c0c5994 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.str1.4 + 0x3c0c59ad 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.esp_crosscore_int_init.str1.4 + 0x3c0c59ad 0x2f esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x3c0c59ad 0x3 + .rodata.__func__$0 + 0x3c0c59b0 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x3c0c59c7 0x1 + .rodata.__func__$1 + 0x3c0c59c8 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.add_entry.str1.4 + 0x3c0c59df 0xa8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.delete_entry.str1.4 + 0x3c0c59df 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.task_wdt_timeout_abort.str1.4 + 0x3c0c59df 0xb0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_add.str1.4 + 0x3c0c59df 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.subscribe_idle.str1.4 + 0x3c0c59df 0xa8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_init.str1.4 + 0x3c0c59df 0x81 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_print_triggered_tasks.str1.4 + 0x3c0c59df 0xad esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.task_wdt_isr.str1.4 + 0x3c0c59df 0x27 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3c0c59df 0x1 + .rodata.__FUNCTION__$5 + 0x3c0c59e0 0x13 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3c0c59f3 0x1 + .rodata.__FUNCTION__$7 + 0x3c0c59f4 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3c0c59fe 0x2 + .rodata.__FUNCTION__$8 + 0x3c0c5a00 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3c0c5a11 0x3 + .rodata.__func__$12 + 0x3c0c5a14 0xf esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3c0c5a23 0x1 + .rodata.__func__$13 + 0x3c0c5a24 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3c0c5a31 0x3 + .rodata.__FUNCTION__$14 + 0x3c0c5a34 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3c0c5a46 0x2 + .rodata.__func__$15 + 0x3c0c5a48 0x17 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.get_flash_clock_divider.str1.4 + 0x3c0c5a5f 0x7c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .rodata.clk_hal_lp_slow_get_freq_hz.str1.4 + 0x3c0c5a5f 0x3e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.clk_hal_xtal_get_freq_mhz.str1.4 + 0x3c0c5a5f 0x43 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.clk_hal_soc_root_get_freq_mhz.str1.4 + 0x3c0c5a5f 0x2b esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.clk_hal_cpu_get_freq_hz.str1.4 + 0x3c0c5a5f 0x20 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + *fill* 0x3c0c5a5f 0x1 + .rodata.__func__$0 + 0x3c0c5a60 0x18 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.__func__$2 + 0x3c0c5a78 0x1e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.str1.4 + 0x3c0c5a96 0x47a esp-idf/soc/libsoc.a(interrupts.c.obj) + *fill* 0x3c0c5a96 0x2 + .rodata.esp_isr_names + 0x3c0c5a98 0x18c esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x3c0c5a98 esp_isr_names + .rodata.GPIO_PIN_MUX_REG + 0x3c0c5c24 0xc4 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x3c0c5c24 GPIO_PIN_MUX_REG + .rodata.rtc_io_desc + 0x3c0c5ce8 0x4d0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x3c0c5ce8 rtc_io_desc + .rodata.rtc_io_num_map + 0x3c0c61b8 0xc4 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x3c0c61b8 rtc_io_num_map + .rodata 0x3c0c627c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .rodata.esp_fill_random.str1.4 + 0x3c0c6290 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.__func__$0 + 0x3c0c6290 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.get_idx.str1.4 + 0x3c0c62a0 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.generate_mac.str1.4 + 0x3c0c62a0 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_efuse_factory_mac.str1.4 + 0x3c0c62a0 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_efuse_mac_custom.str1.4 + 0x3c0c62a0 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_mac_addr_from_mac_table.str1.4 + 0x3c0c62a0 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.esp_iface_mac_addr_set.str1.4 + 0x3c0c62a0 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.esp_read_mac.str1.4 + 0x3c0c62a0 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.__func__$0 + 0x3c0c62a0 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x3c0c62b6 0x2 + .rodata.__func__$1 + 0x3c0c62b8 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.temperature_sensor_power_release.str1.4 + 0x3c0c62cd 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + *fill* 0x3c0c62cd 0x3 + .rodata.__func__$0 + 0x3c0c62d0 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .rodata.esp_clk_tree_src_get_freq_hz.str1.4 + 0x3c0c62f1 0xc1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + *fill* 0x3c0c62f1 0x3 + .rodata.__FUNCTION__$0 + 0x3c0c62f4 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + *fill* 0x3c0c6311 0x3 + .rodata.g_spi_lock_main_flash_dev + 0x3c0c6314 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + 0x3c0c6314 g_spi_lock_main_flash_dev + .rodata.adc_lock_release.str1.4 + 0x3c0c6318 0x89 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .rodata.adc_apb_periph_free.str1.4 + 0x3c0c6318 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .rodata.__func__$0 + 0x3c0c6318 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .rodata.xEventGroupCreateStatic.str1.4 + 0x3c0c632c 0xab esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupWaitBits.str1.4 + 0x3c0c632c 0x9f esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupClearBits.str1.4 + 0x3c0c632c 0x26 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupSetBits.str1.4 + 0x3c0c632c 0x24 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.vEventGroupDelete.str1.4 + 0x3c0c632c 0x72 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$1 + 0x3c0c632c 0x12 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x3c0c633e 0x2 + .rodata.__func__$2 + 0x3c0c6340 0x13 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x3c0c6353 0x1 + .rodata.__func__$3 + 0x3c0c6354 0x15 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x3c0c6369 0x3 + .rodata.__func__$4 + 0x3c0c636c 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$6 + 0x3c0c6380 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.prvReturnItemByteBuf.str1.4 + 0x3c0c6394 0x7f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvCheckItemFitsByteBuffer.str1.4 + 0x3c0c6394 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvAcquireItemNoSplit.str1.4 + 0x3c0c6394 0x64 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReceiveGeneric.str1.4 + 0x3c0c6394 0x35 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSendAcquire.str1.4 + 0x3c0c6394 0x81 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSendComplete.str1.4 + 0x3c0c6394 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSend.str1.4 + 0x3c0c6394 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceive.str1.4 + 0x3c0c6394 0x5b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$4 + 0x3c0c6394 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3c0c63a7 0x1 + .rodata.__func__$7 + 0x3c0c63a8 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3c0c63c2 0x2 + .rodata.__func__$11 + 0x3c0c63c4 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3c0c63da 0x2 + .rodata.__func__$18 + 0x3c0c63dc 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3c0c63ee 0x2 + .rodata.__func__$19 + 0x3c0c63f0 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3c0c6403 0x1 + .rodata.__func__$21 + 0x3c0c6404 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$28 + 0x3c0c6414 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.esp_event_loop_create_default.str1.4 + 0x3c0c642a 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + *fill* 0x3c0c642a 0x2 + .rodata 0x3c0c642c 0x14 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .rodata.loop_node_remove_handler.str1.4 + 0x3c0c6440 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.handler_instances_add.str1.4 + 0x3c0c6440 0x3d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.base_node_add_handler.str1.4 + 0x3c0c6440 0x2a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.loop_node_add_handler.str1.4 + 0x3c0c6440 0x30 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_loop_create.str1.4 + 0x3c0c6440 0xfd esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_loop_run.str1.4 + 0x3c0c6440 0x52 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_loop_run_task.str1.4 + 0x3c0c6440 0x28 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_handler_register_with_internal.str1.4 + 0x3c0c6440 0x84 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_handler_unregister_with_internal.str1.4 + 0x3c0c6440 0x56 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$1 + 0x3c0c6440 0x12 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x3c0c6452 0x2 + .rodata.__func__$2 + 0x3c0c6454 0x2b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x3c0c647f 0x1 + .rodata.__func__$3 + 0x3c0c6480 0x29 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x3c0c64a9 0x3 + .rodata.__func__$4 + 0x3c0c64ac 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x3c0c64c2 0x2 + .rodata.__func__$5 + 0x3c0c64c4 0x13 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.nvs_flash_init_partition.str1.4 + 0x3c0c64d7 0x9f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .rodata.nvs_flash_init.str1.4 + 0x3c0c64d7 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x3c0c64d7 0x1 + .rodata._ZN3nvs4Page8SEC_SIZEE + 0x3c0c64d8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x3c0c64d8 nvs::Page::SEC_SIZE + .rodata 0x3c0c64dc 0xb esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x3c0c64e7 0x1 + .rodata._ZTVN3nvs9NVSHandleE + 0x3c0c64e8 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x3c0c64e8 vtable for nvs::NVSHandle + .rodata._ZTVN3nvs15NVSHandleSimpleE + 0x3c0c6528 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x3c0c6528 vtable for nvs::NVSHandleSimple + .rodata._ZTVN3nvs9PartitionE + 0x3c0c6568 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x3c0c6568 vtable for nvs::Partition + .rodata._ZTVN3nvs12NVSPartitionE + 0x3c0c659c 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x3c0c659c vtable for nvs::NVSPartition + .rodata._ZTVN3nvs19NVSPartitionManagerE + 0x3c0c65d0 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x3c0c65d0 vtable for nvs::NVSPartitionManager + .rodata.create_addrinfo.str1.4 + 0x3c0c65e0 0x5e esp-idf/lwip/liblwip.a(netdb.c.obj) + .rodata.__func__$0 + 0x3c0c65e0 0x10 esp-idf/lwip/liblwip.a(netdb.c.obj) + .rodata.free_socket_locked.str1.4 + 0x3c0c65f0 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.sock_inc_used_locked.str1.4 + 0x3c0c65f0 0x23 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sockopt_to_ipopt.str1.4 + 0x3c0c65f0 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.alloc_socket.str1.4 + 0x3c0c65f0 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_unlink_select_cb.str1.4 + 0x3c0c65f0 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sock_make_addr.str1.4 + 0x3c0c65f0 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_selscan.str1.4 + 0x3c0c65f0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_select_dec_sockets_used.str1.4 + 0x3c0c65f0 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_pollscan.str1.4 + 0x3c0c65f0 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_recv_tcp.str1.4 + 0x3c0c65f0 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_recvfrom_udp_raw.str1.4 + 0x3c0c65f0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.event_callback.str1.4 + 0x3c0c65f0 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_getsockopt_callback.str1.4 + 0x3c0c65f0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_setsockopt_impl.str1.4 + 0x3c0c65f0 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_close.str1.4 + 0x3c0c65f0 0x17 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_recvfrom.str1.4 + 0x3c0c65f0 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$0 + 0x3c0c65f0 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c6605 0x3 + .rodata.__func__$1 + 0x3c0c6608 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c6621 0x3 + .rodata.__func__$2 + 0x3c0c6624 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c663a 0x2 + .rodata.__func__$3 + 0x3c0c663c 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c6655 0x3 + .rodata.__func__$6 + 0x3c0c6658 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c6675 0x3 + .rodata.__func__$7 + 0x3c0c6678 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c6685 0x3 + .rodata.__func__$8 + 0x3c0c6688 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c669e 0x2 + .rodata.__func__$9 + 0x3c0c66a0 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c66b5 0x3 + .rodata.__func__$10 + 0x3c0c66b8 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$11 + 0x3c0c66c4 0xf esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c66d3 0x1 + .rodata.__func__$12 + 0x3c0c66d4 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c66ea 0x2 + .rodata.__func__$13 + 0x3c0c66ec 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$14 + 0x3c0c6700 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c670e 0x2 + .rodata.__func__$15 + 0x3c0c6710 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c671b 0x1 + .rodata.__func__$16 + 0x3c0c671c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$17 + 0x3c0c6728 0x13 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c673b 0x1 + .rodata.__func__$18 + 0x3c0c673c 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3c0c6749 0x3 + .rodata.__func__$19 + 0x3c0c674c 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.tcpip_thread_handle_msg.str1.4 + 0x3c0c675a 0x4a esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.tcpip_inpkt.str1.4 + 0x3c0c675a 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.tcpip_send_msg_wait_sem.str1.4 + 0x3c0c675a 0x1a esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.tcpip_init.str1.4 + 0x3c0c675a 0x28 esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3c0c675a 0x2 + .rodata.__func__$0 + 0x3c0c675c 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$1 + 0x3c0c6774 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3c0c6781 0x3 + .rodata.__func__$2 + 0x3c0c6784 0xb esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3c0c678f 0x1 + .rodata.__func__$6 + 0x3c0c6790 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3c0c679f 0x1 + .rodata.__func__$7 + 0x3c0c67a0 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$8 + 0x3c0c67b8 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3c0c67cb 0x1 + .rodata.__func__$9 + 0x3c0c67cc 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3c0c67db 0x1 + .rodata.__func__$10 + 0x3c0c67dc 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.ip_addr_any_type + 0x3c0c67e8 0x18 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x3c0c67e8 ip_addr_any_type + .rodata.mem_malloc.str1.4 + 0x3c0c6800 0x4d esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.mem_free.str1.4 + 0x3c0c6800 0x28 esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.__func__$0 + 0x3c0c6800 0x9 esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x3c0c6809 0x3 + .rodata.__func__$1 + 0x3c0c680c 0xb esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.do_memp_malloc_pool.str1.4 + 0x3c0c6817 0x4e esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.do_memp_free_pool.str1.4 + 0x3c0c6817 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x3c0c6817 0x1 + .rodata.__func__$0 + 0x3c0c6818 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x3c0c682a 0x2 + .rodata.__func__$2 + 0x3c0c682c 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_pools + 0x3c0c6840 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c6840 memp_pools + .rodata.memp_PBUF_POOL + 0x3c0c6888 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c6888 memp_PBUF_POOL + *fill* 0x3c0c688a 0x2 + .rodata.memp_PBUF + 0x3c0c688c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c688c memp_PBUF + *fill* 0x3c0c688e 0x2 + .rodata.memp_MLD6_GROUP + 0x3c0c6890 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c6890 memp_MLD6_GROUP + *fill* 0x3c0c6892 0x2 + .rodata.memp_ND6_QUEUE + 0x3c0c6894 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c6894 memp_ND6_QUEUE + *fill* 0x3c0c6896 0x2 + .rodata.memp_NETDB + 0x3c0c6898 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c6898 memp_NETDB + *fill* 0x3c0c689a 0x2 + .rodata.memp_SYS_TIMEOUT + 0x3c0c689c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c689c memp_SYS_TIMEOUT + *fill* 0x3c0c689e 0x2 + .rodata.memp_IGMP_GROUP + 0x3c0c68a0 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68a0 memp_IGMP_GROUP + *fill* 0x3c0c68a2 0x2 + .rodata.memp_ARP_QUEUE + 0x3c0c68a4 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68a4 memp_ARP_QUEUE + *fill* 0x3c0c68a6 0x2 + .rodata.memp_TCPIP_MSG_INPKT + 0x3c0c68a8 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68a8 memp_TCPIP_MSG_INPKT + *fill* 0x3c0c68aa 0x2 + .rodata.memp_TCPIP_MSG_API + 0x3c0c68ac 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68ac memp_TCPIP_MSG_API + *fill* 0x3c0c68ae 0x2 + .rodata.memp_NETCONN + 0x3c0c68b0 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68b0 memp_NETCONN + *fill* 0x3c0c68b2 0x2 + .rodata.memp_NETBUF + 0x3c0c68b4 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68b4 memp_NETBUF + *fill* 0x3c0c68b6 0x2 + .rodata.memp_FRAG_PBUF + 0x3c0c68b8 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68b8 memp_FRAG_PBUF + *fill* 0x3c0c68ba 0x2 + .rodata.memp_TCP_SEG + 0x3c0c68bc 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68bc memp_TCP_SEG + *fill* 0x3c0c68be 0x2 + .rodata.memp_TCP_PCB_LISTEN + 0x3c0c68c0 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68c0 memp_TCP_PCB_LISTEN + *fill* 0x3c0c68c2 0x2 + .rodata.memp_TCP_PCB + 0x3c0c68c4 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68c4 memp_TCP_PCB + *fill* 0x3c0c68c6 0x2 + .rodata.memp_UDP_PCB + 0x3c0c68c8 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68c8 memp_UDP_PCB + *fill* 0x3c0c68ca 0x2 + .rodata.memp_RAW_PCB + 0x3c0c68cc 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3c0c68cc memp_RAW_PCB + .rodata.netif_loopif_init.str1.4 + 0x3c0c68ce 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_do_set_netmask.str1.4 + 0x3c0c68ce 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_issue_reports.str1.4 + 0x3c0c68ce 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_poll.str1.4 + 0x3c0c68ce 0x98 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_loop_output.str1.4 + 0x3c0c68ce 0x70 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_get_ip6_addr_match.str1.4 + 0x3c0c68ce 0x52 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add_ext_callback.str1.4 + 0x3c0c68ce 0x2f esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_remove_ext_callback.str1.4 + 0x3c0c68ce 0xd esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_invoke_ext_callback.str1.4 + 0x3c0c68ce 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add.str1.4 + 0x3c0c68ce 0x42 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_ip6_addr_set_parts.str1.4 + 0x3c0c68ce 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_ip6_addr_set.str1.4 + 0x3c0c68ce 0x46 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c68ce 0x2 + .rodata.__func__$0 + 0x3c0c68d0 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c68ea 0x2 + .rodata.__func__$1 + 0x3c0c68ec 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c6906 0x2 + .rodata.__func__$2 + 0x3c0c6908 0x17 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c691f 0x1 + .rodata.__func__$5 + 0x3c0c6920 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c6939 0x3 + .rodata.__func__$6 + 0x3c0c693c 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c6955 0x3 + .rodata.__func__$7 + 0x3c0c6958 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c6971 0x3 + .rodata.__func__$8 + 0x3c0c6974 0x13 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c6987 0x1 + .rodata.__func__$9 + 0x3c0c6988 0xb esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c6993 0x1 + .rodata.__func__$10 + 0x3c0c6994 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c69a6 0x2 + .rodata.__func__$11 + 0x3c0c69a8 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$12 + 0x3c0c69b8 0x15 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c69cd 0x3 + .rodata.__func__$13 + 0x3c0c69d0 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$14 + 0x3c0c69e4 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$15 + 0x3c0c69f8 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3c0c6a02 0x2 + .rodata.__func__$17 + 0x3c0c6a04 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.pbuf_add_header_impl.str1.4 + 0x3c0c6a16 0x36 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_alloc_reference.str1.4 + 0x3c0c6a16 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_free.str1.4 + 0x3c0c6a16 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_alloc.str1.4 + 0x3c0c6a16 0xab esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_realloc.str1.4 + 0x3c0c6a16 0x65 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_ref.str1.4 + 0x3c0c6a16 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_cat.str1.4 + 0x3c0c6a16 0x2d esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_copy_partial_pbuf.str1.4 + 0x3c0c6a16 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_take.str1.4 + 0x3c0c6a16 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_take_at.str1.4 + 0x3c0c6a16 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_clone.str1.4 + 0x3c0c6a16 0x11 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6a16 0x2 + .rodata.__func__$0 + 0x3c0c6a18 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6a23 0x1 + .rodata.__func__$1 + 0x3c0c6a24 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6a31 0x3 + .rodata.__func__$2 + 0x3c0c6a34 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6a3e 0x2 + .rodata.__func__$3 + 0x3c0c6a40 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6a57 0x1 + .rodata.__func__$5 + 0x3c0c6a58 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6a61 0x3 + .rodata.__func__$6 + 0x3c0c6a64 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6a6d 0x3 + .rodata.__func__$7 + 0x3c0c6a70 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6a7a 0x2 + .rodata.__func__$8 + 0x3c0c6a7c 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6a8f 0x1 + .rodata.__func__$9 + 0x3c0c6a90 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6aa5 0x3 + .rodata.__func__$10 + 0x3c0c6aa8 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6ab5 0x3 + .rodata.__func__$11 + 0x3c0c6ab8 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3c0c6acd 0x3 + .rodata.__func__$12 + 0x3c0c6ad0 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.raw_input.str1.4 + 0x3c0c6adb 0x75 esp-idf/lwip/liblwip.a(raw.c.obj) + .rodata.raw_sendto_if_src.str1.4 + 0x3c0c6adb 0x4a esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x3c0c6adb 0x1 + .rodata.__func__$0 + 0x3c0c6adc 0x12 esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x3c0c6aee 0x2 + .rodata.__func__$1 + 0x3c0c6af0 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + .rodata.tcp_remove_listener.str1.4 + 0x3c0c6afa 0x51 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_listen_closed.str1.4 + 0x3c0c6afa 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_free_listen.str1.4 + 0x3c0c6afa 0x19 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_free.str1.4 + 0x3c0c6afa 0x11 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_backlog_delayed.str1.4 + 0x3c0c6afa 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_update_rcv_ann_wnd.str1.4 + 0x3c0c6afa 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_recved.str1.4 + 0x3c0c6afa 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_seg_copy.str1.4 + 0x3c0c6afa 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_recv.str1.4 + 0x3c0c6afa 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_sent.str1.4 + 0x3c0c6afa 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_err.str1.4 + 0x3c0c6afa 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_poll.str1.4 + 0x3c0c6afa 0x1e esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_next_iss.str1.4 + 0x3c0c6afa 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_eff_send_mss_netif.str1.4 + 0x3c0c6afa 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_pcb_remove.str1.4 + 0x3c0c6afa 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_abandon.str1.4 + 0x3c0c6afa 0x31 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_netif_ip_addr_changed_pcblist.str1.4 + 0x3c0c6afa 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_close_shutdown.str1.4 + 0x3c0c6afa 0x39 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_slowtmr.str1.4 + 0x3c0c6afa 0x1c6 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6afa 0x2 + .rodata.__func__$0 + 0x3c0c6afc 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6b1e 0x2 + .rodata.__func__$1 + 0x3c0c6b20 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6b37 0x1 + .rodata.__func__$2 + 0x3c0c6b38 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6b45 0x3 + .rodata.__func__$3 + 0x3c0c6b48 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6b57 0x1 + .rodata.__func__$4 + 0x3c0c6b58 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6b61 0x3 + .rodata.__func__$5 + 0x3c0c6b64 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$6 + 0x3c0c6b6c 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6b75 0x3 + .rodata.__func__$7 + 0x3c0c6b78 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6b81 0x3 + .rodata.__func__$8 + 0x3c0c6b84 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6b91 0x3 + .rodata.__func__$9 + 0x3c0c6b94 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$10 + 0x3c0c6ba0 0xb esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6bab 0x1 + .rodata.__func__$11 + 0x3c0c6bac 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6bc3 0x1 + .rodata.__func__$14 + 0x3c0c6bc4 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$15 + 0x3c0c6bd0 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6be7 0x1 + .rodata.__func__$16 + 0x3c0c6be8 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$17 + 0x3c0c6bf8 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$18 + 0x3c0c6c0c 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6c1e 0x2 + .rodata.__func__$19 + 0x3c0c6c20 0x13 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6c33 0x1 + .rodata.__func__$20 + 0x3c0c6c34 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6c49 0x3 + .rodata.__func__$22 + 0x3c0c6c4c 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6c55 0x3 + .rodata.tcp_pcb_lists + 0x3c0c6c58 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3c0c6c58 tcp_pcb_lists + .rodata.tcp_persist_backoff + 0x3c0c6c68 0x7 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3c0c6c6f 0x1 + .rodata.tcp_backoff + 0x3c0c6c70 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_parseopt.str1.4 + 0x3c0c6c7d 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_input_delayed_close.str1.4 + 0x3c0c6c7d 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_timewait_input.str1.4 + 0x3c0c6c7d 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_listen_input.str1.4 + 0x3c0c6c7d 0x1e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_oos_insert_segment.str1.4 + 0x3c0c6c7d 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_free_acked_segments.str1.4 + 0x3c0c6c7d 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_receive.str1.4 + 0x3c0c6c7d 0x130 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_process.str1.4 + 0x3c0c6c7d 0x86 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_input.str1.4 + 0x3c0c6c7d 0x172 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3c0c6c7d 0x3 + .rodata.__func__$0 + 0x3c0c6c80 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$1 + 0x3c0c6c98 0x17 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3c0c6caf 0x1 + .rodata.__func__$2 + 0x3c0c6cb0 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$3 + 0x3c0c6cc8 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$4 + 0x3c0c6cd4 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$5 + 0x3c0c6ce0 0xd esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3c0c6ced 0x3 + .rodata.__func__$6 + 0x3c0c6cf0 0x11 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3c0c6d01 0x3 + .rodata.__func__$7 + 0x3c0c6d04 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3c0c6d17 0x1 + .rodata.__func__$8 + 0x3c0c6d18 0xa esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_write_checks.str1.4 + 0x3c0c6d22 0xbe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_segment_busy.str1.4 + 0x3c0c6d22 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_fill_options.str1.4 + 0x3c0c6d22 0x3b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_pbuf_prealloc.str1.4 + 0x3c0c6d22 0x58 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_create_segment.str1.4 + 0x3c0c6d22 0x59 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_alloc_header_common.str1.4 + 0x3c0c6d22 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_alloc_header.str1.4 + 0x3c0c6d22 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rst_common.str1.4 + 0x3c0c6d22 0x37 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_segment.str1.4 + 0x3c0c6d22 0x62 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_control_segment_netif.str1.4 + 0x3c0c6d22 0x31 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_control_segment.str1.4 + 0x3c0c6d22 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_write.str1.4 + 0x3c0c6d22 0xfa esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_split_unsent_seg.str1.4 + 0x3c0c6d22 0x66 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_enqueue_flags.str1.4 + 0x3c0c6d22 0x120 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_send_fin.str1.4 + 0x3c0c6d22 0x1a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_rto_prepare.str1.4 + 0x3c0c6d22 0x24 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit.str1.4 + 0x3c0c6d22 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_fast.str1.4 + 0x3c0c6d22 0x1d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_send_empty_ack.str1.4 + 0x3c0c6d22 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output.str1.4 + 0x3c0c6d22 0x57 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_rto_commit.str1.4 + 0x3c0c6d22 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_rto.str1.4 + 0x3c0c6d22 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_keepalive.str1.4 + 0x3c0c6d22 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_zero_window_probe.str1.4 + 0x3c0c6d22 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6d22 0x2 + .rodata.__func__$0 + 0x3c0c6d24 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6d3a 0x2 + .rodata.__func__$1 + 0x3c0c6d3c 0xe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6d4a 0x2 + .rodata.__func__$2 + 0x3c0c6d4c 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$3 + 0x3c0c6d64 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6d77 0x1 + .rodata.__func__$4 + 0x3c0c6d78 0x21 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6d99 0x3 + .rodata.__func__$5 + 0x3c0c6d9c 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6db7 0x1 + .rodata.__func__$6 + 0x3c0c6db8 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$7 + 0x3c0c6dd0 0x1f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6def 0x1 + .rodata.__func__$8 + 0x3c0c6df0 0xf esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6dff 0x1 + .rodata.__func__$9 + 0x3c0c6e00 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$10 + 0x3c0c6e10 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6e1b 0x1 + .rodata.__func__$11 + 0x3c0c6e1c 0xf esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6e2b 0x1 + .rodata.__func__$12 + 0x3c0c6e2c 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6e42 0x2 + .rodata.__func__$13 + 0x3c0c6e44 0x17 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6e5b 0x1 + .rodata.__func__$14 + 0x3c0c6e5c 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$15 + 0x3c0c6e74 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6e87 0x1 + .rodata.__func__$16 + 0x3c0c6e88 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6e93 0x1 + .rodata.__func__$17 + 0x3c0c6e94 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6ea6 0x2 + .rodata.__func__$18 + 0x3c0c6ea8 0xd esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6eb5 0x3 + .rodata.__func__$19 + 0x3c0c6eb8 0x15 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6ecd 0x3 + .rodata.__func__$20 + 0x3c0c6ed0 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6ee3 0x1 + .rodata.__func__$21 + 0x3c0c6ee4 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6ef6 0x2 + .rodata.__func__$22 + 0x3c0c6ef8 0x11 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3c0c6f09 0x3 + .rodata.__func__$23 + 0x3c0c6f0c 0xa esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.sys_timeout_abs.str1.4 + 0x3c0c6f16 0x6e esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.sys_timeout.str1.4 + 0x3c0c6f16 0x36 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.sys_timeouts_sleeptime.str1.4 + 0x3c0c6f16 0x12 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x3c0c6f16 0x2 + .rodata.__func__$0 + 0x3c0c6f18 0x17 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x3c0c6f2f 0x1 + .rodata.__func__$1 + 0x3c0c6f30 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.__func__$2 + 0x3c0c6f3c 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_cyclic_timers + 0x3c0c6f4c 0x20 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x3c0c6f4c lwip_cyclic_timers + .rodata.udp_input_local_match.str1.4 + 0x3c0c6f6c 0x75 esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.udp_input.str1.4 + 0x3c0c6f6c 0x4e esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.udp_sendto_if_src.str1.4 + 0x3c0c6f6c 0x2e esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.__func__$0 + 0x3c0c6f6c 0x12 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x3c0c6f7e 0x2 + .rodata.__func__$1 + 0x3c0c6f80 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x3c0c6f96 0x2 + .rodata.__func__$2 + 0x3c0c6f98 0xa esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.dhcp_option_short.str1.4 + 0x3c0c6fa2 0x6b esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option.str1.4 + 0x3c0c6fa2 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_byte.str1.4 + 0x3c0c6fa2 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_long.str1.4 + 0x3c0c6fa2 0x3a esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_create_msg.str1.4 + 0x3c0c6fa2 0x40 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_hostname.str1.4 + 0x3c0c6fa2 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_conflict_callback.str1.4 + 0x3c0c6fa2 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_dec_pcb_refcount.str1.4 + 0x3c0c6fa2 0x24 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_inc_pcb_refcount.str1.4 + 0x3c0c6fa2 0x25 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_parse_reply.str1.4 + 0x3c0c6fa2 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_recv.str1.4 + 0x3c0c6fa2 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_set_struct.str1.4 + 0x3c0c6fa2 0x44 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_network_changed_link_up.str1.4 + 0x3c0c6fa2 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c6fa2 0x2 + .rodata.__func__$0 + 0x3c0c6fa4 0x1d esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c6fc1 0x3 + .rodata.__func__$1 + 0x3c0c6fc4 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c6fd5 0x3 + .rodata.__func__$2 + 0x3c0c6fd8 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c6fe2 0x2 + .rodata.__func__$3 + 0x3c0c6fe4 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c6ffa 0x2 + .rodata.__func__$4 + 0x3c0c6ffc 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c7012 0x2 + .rodata.__func__$5 + 0x3c0c7014 0x17 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c702b 0x1 + .rodata.__func__$6 + 0x3c0c702c 0xd esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c7039 0x3 + .rodata.__func__$8 + 0x3c0c703c 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c704d 0x3 + .rodata.__func__$9 + 0x3c0c7050 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c7065 0x3 + .rodata.__func__$10 + 0x3c0c7068 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c7079 0x3 + .rodata.__func__$11 + 0x3c0c707c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$12 + 0x3c0c7088 0x12 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3c0c709a 0x2 + .rodata.__func__$14 + 0x3c0c709c 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_discover_request_options + 0x3c0c70ac 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.free_etharp_q.str1.4 + 0x3c0c70b0 0x4d esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_find_entry.str1.4 + 0x3c0c70b0 0x55 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_update_arp_entry.str1.4 + 0x3c0c70b0 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_raw.str1.4 + 0x3c0c70b0 0x85 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_get_entry.str1.4 + 0x3c0c70b0 0x20 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_output_to_arp_index.str1.4 + 0x3c0c70b0 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_query.str1.4 + 0x3c0c70b0 0x52 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$0 + 0x3c0c70b0 0xd esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3c0c70bd 0x3 + .rodata.__func__$1 + 0x3c0c70c0 0x1b esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3c0c70db 0x1 + .rodata.__func__$2 + 0x3c0c70dc 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3c0c70ea 0x2 + .rodata.__func__$3 + 0x3c0c70ec 0xb esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3c0c70f7 0x1 + .rodata.__func__$6 + 0x3c0c70f8 0x12 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3c0c710a 0x2 + .rodata.__func__$7 + 0x3c0c710c 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$8 + 0x3c0c7124 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.icmp_send_response.str1.4 + 0x3c0c7132 0x5b esp-idf/lwip/liblwip.a(icmp.c.obj) + .rodata.icmp_input.str1.4 + 0x3c0c7132 0x65 esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x3c0c7132 0x2 + .rodata.__func__$0 + 0x3c0c7134 0x13 esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x3c0c7147 0x1 + .rodata.__func__$1 + 0x3c0c7148 0xb esp-idf/lwip/liblwip.a(icmp.c.obj) + .rodata.igmp_send.str1.4 + 0x3c0c7153 0x6b esp-idf/lwip/liblwip.a(igmp.c.obj) + .rodata.igmp_lookup_group.str1.4 + 0x3c0c7153 0x75 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x3c0c7153 0x1 + .rodata.__func__$0 + 0x3c0c7154 0xa esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x3c0c715e 0x2 + .rodata.__func__$1 + 0x3c0c7160 0x12 esp-idf/lwip/liblwip.a(igmp.c.obj) + .rodata.ip4_output_if_opt_src.str1.4 + 0x3c0c7172 0x69 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x3c0c7172 0x2 + .rodata.__func__$1 + 0x3c0c7174 0x16 esp-idf/lwip/liblwip.a(ip4.c.obj) + .rodata.ip4addr_aton.str1.4 + 0x3c0c718a 0x3f esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + *fill* 0x3c0c718a 0x2 + .rodata.__func__$1 + 0x3c0c718c 0xd esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + *fill* 0x3c0c7199 0x3 + .rodata.ip_addr_broadcast + 0x3c0c719c 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x3c0c719c ip_addr_broadcast + .rodata.ip_addr_any + 0x3c0c71b4 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x3c0c71b4 ip_addr_any + .rodata.ip4_frag.str1.4 + 0x3c0c71cc 0x53 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .rodata.__func__$0 + 0x3c0c71cc 0x9 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .rodata.icmp6_send_response_with_addrs_and_netif.str1.4 + 0x3c0c71d5 0x6c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.icmp6_send_response.str1.4 + 0x3c0c71d5 0x24 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x3c0c71d5 0x3 + .rodata.__func__$1 + 0x3c0c71d8 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x3c0c7201 0x3 + .rodata.__func__$2 + 0x3c0c7204 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.ip6_output_if_src.str1.4 + 0x3c0c7218 0x6a esp-idf/lwip/liblwip.a(ip6.c.obj) + .rodata.__func__$1 + 0x3c0c7218 0x12 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x3c0c722a 0x2 + .rodata.ip6_addr_any + 0x3c0c722c 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x3c0c722c ip6_addr_any + .rodata.ip6_frag.str1.4 + 0x3c0c7244 0x6c esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .rodata.__func__$0 + 0x3c0c7244 0x9 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .rodata.nd6_process_autoconfig_prefix.str1.4 + 0x3c0c724d 0x42 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_free_q.str1.4 + 0x3c0c724d 0x29 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_send_na.str1.4 + 0x3c0c724d 0x1b esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_get_next_hop_entry.str1.4 + 0x3c0c724d 0x22 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_find_route.str1.4 + 0x3c0c724d 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3c0c724d 0x3 + .rodata.__func__$0 + 0x3c0c7250 0x17 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3c0c7267 0x1 + .rodata.__func__$2 + 0x3c0c7268 0xf esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3c0c7277 0x1 + .rodata.__func__$3 + 0x3c0c7278 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$4 + 0x3c0c7280 0xb esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3c0c728b 0x1 + .rodata.__func__$5 + 0x3c0c728c 0x1e esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3c0c72aa 0x2 + .rodata.__func__$6 + 0x3c0c72ac 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$7 + 0x3c0c72b8 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.ethernet_output.str1.4 + 0x3c0c72c4 0x63 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.__func__$0 + 0x3c0c72c4 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.ethzero + 0x3c0c72d4 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x3c0c72d4 ethzero + *fill* 0x3c0c72da 0x2 + .rodata.ethbroadcast + 0x3c0c72dc 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x3c0c72dc ethbroadcast + .rodata.dhcp_append_extra_opts.str1.4 + 0x3c0c72e2 0x9a esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .rodata.lwip_getsockopt_impl_ext.str1.4 + 0x3c0c72e2 0x14 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .rodata.sys_mutex_lock.str1.4 + 0x3c0c72e2 0x4a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mutex_unlock.str1.4 + 0x3c0c72e2 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_sem_new.str1.4 + 0x3c0c72e2 0x49 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_sem_signal.str1.4 + 0x3c0c72e2 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_arch_sem_wait.str1.4 + 0x3c0c72e2 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_post.str1.4 + 0x3c0c72e2 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_arch_mbox_fetch.str1.4 + 0x3c0c72e2 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_free.str1.4 + 0x3c0c72e2 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_init.str1.4 + 0x3c0c72e2 0x45 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_thread_sem_init.str1.4 + 0x3c0c72e2 0x2c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_thread_tcpip.str1.4 + 0x3c0c72e2 0x2d esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3c0c72e2 0x2 + .rodata.__func__$0 + 0x3c0c72e4 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3c0c72f5 0x3 + .rodata.__func__$2 + 0x3c0c72f8 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3c0c7306 0x2 + .rodata.__func__$3 + 0x3c0c7308 0x17 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3c0c731f 0x1 + .rodata.__func__$4 + 0x3c0c7320 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$6 + 0x3c0c7334 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3c0c7342 0x2 + .rodata.__func__$7 + 0x3c0c7344 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3c0c7356 0x2 + .rodata.__func__$8 + 0x3c0c7358 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3c0c7367 0x1 + .rodata.__func__$9 + 0x3c0c7368 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$10 + 0x3c0c7374 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3c0c7385 0x3 + .rodata.__func__$11 + 0x3c0c7388 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.esp_vfs_lwip_sockets_register.str1.4 + 0x3c0c7397 0x71 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x3c0c7397 0x1 + .rodata.__func__$0 + 0x3c0c7398 0x1e esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .rodata.netconn_new_with_proto_and_callback.str1.4 + 0x3c0c73b6 0x89 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_write_vectors_partly.str1.4 + 0x3c0c73b6 0x23 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_recv_data.str1.4 + 0x3c0c73b6 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x3c0c73b6 0x2 + .rodata.__func__$1 + 0x3c0c73b8 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x3c0c73d5 0x3 + .rodata.__func__$3 + 0x3c0c73d8 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x3c0c73ea 0x2 + .rodata.__func__$4 + 0x3c0c73ec 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.lwip_netconn_err_to_msg.str1.4 + 0x3c0c7410 0x3c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.recv_udp.str1.4 + 0x3c0c7410 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.pcb_new.str1.4 + 0x3c0c7410 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_connected.str1.4 + 0x3c0c7410 0x7d esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.err_tcp.str1.4 + 0x3c0c7410 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_writemore.str1.4 + 0x3c0c7410 0xcb esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_close_internal.str1.4 + 0x3c0c7410 0x8b esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.recv_tcp.str1.4 + 0x3c0c7410 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_is_err_msg.str1.4 + 0x3c0c7410 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_alloc.str1.4 + 0x3c0c7410 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_free.str1.4 + 0x3c0c7410 0xa8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_drain.str1.4 + 0x3c0c7410 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_delconn.str1.4 + 0x3c0c7410 0x4f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_write.str1.4 + 0x3c0c7410 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_getaddr.str1.4 + 0x3c0c7410 0x15 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_close.str1.4 + 0x3c0c7410 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$0 + 0x3c0c7410 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c7426 0x2 + .rodata.__func__$1 + 0x3c0c7428 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$2 + 0x3c0c7440 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c7456 0x2 + .rodata.__func__$5 + 0x3c0c7458 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c7472 0x2 + .rodata.__func__$6 + 0x3c0c7474 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7 + 0x3c0c748c 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c749a 0x2 + .rodata.__func__$8 + 0x3c0c749c 0xd esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c74a9 0x3 + .rodata.__func__$9 + 0x3c0c74ac 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c74ba 0x2 + .rodata.__func__$10 + 0x3c0c74bc 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c74c5 0x3 + .rodata.__func__$11 + 0x3c0c74c8 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c74d1 0x3 + .rodata.__func__$12 + 0x3c0c74d4 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c74f3 0x1 + .rodata.__func__$13 + 0x3c0c74f4 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c750e 0x2 + .rodata.__func__$14 + 0x3c0c7510 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c7519 0x3 + .rodata.__func__$15 + 0x3c0c751c 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$16 + 0x3c0c7534 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$17 + 0x3c0c753c 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3c0c7545 0x3 + .rodata.__func__$18 + 0x3c0c7548 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$19 + 0x3c0c7550 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_closed + 0x3c0c7568 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_reset + 0x3c0c7569 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_aborted + 0x3c0c756a 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_deleted + 0x3c0c756b 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.err_to_errno_table + 0x3c0c756c 0x44 esp-idf/lwip/liblwip.a(err.c.obj) + .rodata.netbuf_alloc.str1.4 + 0x3c0c75b0 0x4f esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.__func__$0 + 0x3c0c75b0 0xd esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.dns_call_found.str1.4 + 0x3c0c75bd 0x3d esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_send.str1.4 + 0x3c0c75bd 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_check_entry.str1.4 + 0x3c0c75bd 0x3b esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_gethostbyname_addrtype.str1.4 + 0x3c0c75bd 0x13 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x3c0c75bd 0x3 + .rodata.__func__$0 + 0x3c0c75c0 0x9 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x3c0c75c9 0x3 + .rodata.__func__$1 + 0x3c0c75cc 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$2 + 0x3c0c75dc 0xf esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x3c0c75eb 0x1 + .rodata.dns_mquery_v6group + 0x3c0c75ec 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x3c0c75ec dns_mquery_v6group + .rodata.dns_mquery_v4group + 0x3c0c7604 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x3c0c7604 dns_mquery_v4group + .rodata.esp_netif_remove_from_list_unsafe.str1.4 + 0x3c0c761c 0x47 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .rodata.__func__$0 + 0x3c0c761c 0x22 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .rodata.str1.4 + 0x3c0c763e 0x9 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x3c0c763e 0x2 + .rodata.IP_EVENT + 0x3c0c7640 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x3c0c7640 IP_EVENT + .rodata.esp_netif_config_sanity_check.str1.4 + 0x3c0c7644 0x10c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.netif_mld_mac_filter_cb.str1.4 + 0x3c0c7644 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.netif_igmp_mac_filter_cb.str1.4 + 0x3c0c7644 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcps_cb.str1.4 + 0x3c0c7644 0x8d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_init_configuration.str1.4 + 0x3c0c7644 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcps_start_api.str1.4 + 0x3c0c7644 0x2b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcpc_start_api.str1.4 + 0x3c0c7644 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_ip_lost_timer.str1.4 + 0x3c0c7644 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_internal_nd6_cb.str1.4 + 0x3c0c7644 0x3a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_new_api.str1.4 + 0x3c0c7644 0x18f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_start_api.str1.4 + 0x3c0c7644 0xc2 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_init.str1.4 + 0x3c0c7644 0x9a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_attach.str1.4 + 0x3c0c7644 0x3f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_internal_dhcpc_cb.str1.4 + 0x3c0c7644 0x38 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$3 + 0x3c0c7644 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$4 + 0x3c0c7658 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x3c0c766a 0x2 + .rodata.g_wifi_default_wpa_crypto_funcs + 0x3c0c766c 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x3c0c766c g_wifi_default_wpa_crypto_funcs + .rodata.esp_wifi_config_info.str1.4 + 0x3c0c7698 0x139 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.wifi_deinit_internal.str1.4 + 0x3c0c7698 0x7e esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.s_set_default_wifi_log_level.str1.4 + 0x3c0c7698 0x23 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.esp_wifi_init.str1.4 + 0x3c0c7698 0x5b esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.str1.4 + 0x3c0c7698 0xb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.WIFI_EVENT + 0x3c0c7698 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x3c0c7698 WIFI_EVENT + .rodata.wifi_default_action_sta_got_ip.str1.4 + 0x3c0c769c 0x4d esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.wifi_start.str1.4 + 0x3c0c769c 0x9c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.create_and_attach.str1.4 + 0x3c0c769c 0x34 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_ap.str1.4 + 0x3c0c769c 0xac esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_sta.str1.4 + 0x3c0c769c 0x51 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$2 + 0x3c0c769c 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_wifi_create_if_driver.str1.4 + 0x3c0c76be 0x45 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .rodata.esp_wifi_register_if_rxcb.str1.4 + 0x3c0c76be 0xc9 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .rodata.http_parse_host.str1.4 + 0x3c0c76be 0x4b esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_parser_parse_url.str1.4 + 0x3c0c76be 0x14 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + *fill* 0x3c0c76be 0x2 + .rodata.__func__$1 + 0x3c0c76c0 0x10 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.__func__$2 + 0x3c0c76d0 0x16 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + *fill* 0x3c0c76e6 0x2 + .rodata.normal_url_char + 0x3c0c76e8 0x20 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.esp_tls_hostname_to_fd.str1.4 + 0x3c0c7708 0xd4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.esp_tls_set_socket_options.str1.4 + 0x3c0c7708 0x145 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.esp_tls_set_socket_non_blocking.str1.4 + 0x3c0c7708 0x6a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.tcp_connect.str1.4 + 0x3c0c7708 0xe3 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.esp_tls_low_level_conn.str1.4 + 0x3c0c7708 0x7b esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.esp_tls_get_conn_sockfd.str1.4 + 0x3c0c7708 0x26 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.esp_mbedtls_read.str1.4 + 0x3c0c7708 0x32 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_write.str1.4 + 0x3c0c7708 0x23 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.set_global_ca_store.str1.4 + 0x3c0c7708 0x53 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.set_ca_cert.str1.4 + 0x3c0c7708 0x9a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_init_pk_ctx_for_ds.str1.4 + 0x3c0c7708 0xbd esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.set_pki_context.str1.4 + 0x3c0c7708 0xf0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.set_server_config.str1.4 + 0x3c0c7708 0x15f esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_verify_certificate.str1.4 + 0x3c0c7708 0x53 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_handshake.str1.4 + 0x3c0c7708 0x34 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_get_bytes_avail.str1.4 + 0x3c0c7708 0x3b esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.set_client_config.str1.4 + 0x3c0c7708 0x215 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_create_mbedtls_handle.str1.4 + 0x3c0c7708 0x17c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.__func__$1 + 0x3c0c7708 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.__func__$2 + 0x3c0c7718 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.__func__$3 + 0x3c0c7724 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.__func__$4 + 0x3c0c7738 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x3c0c774a 0x2 + .rodata.__func__$5 + 0x3c0c774c 0x1a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_transport_list_init.str1.4 + 0x3c0c7766 0x35 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + *fill* 0x3c0c7766 0x2 + .rodata.__FUNCTION__$0 + 0x3c0c7768 0x13 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + *fill* 0x3c0c777b 0x1 + .rodata.__FUNCTION__$1 + 0x3c0c777c 0x17 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + *fill* 0x3c0c7793 0x1 + .rodata.__FUNCTION__$2 + 0x3c0c7794 0x18 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .rodata.esp_tls_connect_async.str1.4 + 0x3c0c77ac 0x4a esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .rodata.base_poll_write.str1.4 + 0x3c0c77ac 0x3d esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .rodata.base_poll_read.str1.4 + 0x3c0c77ac 0x3c esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .rodata.ssl_write.str1.4 + 0x3c0c77ac 0xa5 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .rodata.esp_transport_base_init.str1.4 + 0x3c0c77ac 0x29 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .rodata.tcp_write.str1.4 + 0x3c0c77ac 0x27 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .rodata.tcp_read.str1.4 + 0x3c0c77ac 0x26 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .rodata.tcp_connect.str1.4 + 0x3c0c77ac 0x31 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .rodata.__FUNCTION__$0 + 0x3c0c77ac 0x18 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .rodata.esp_transport_init_foundation_transport.str1.4 + 0x3c0c77c4 0x35 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .rodata.__FUNCTION__$0 + 0x3c0c77c4 0x28 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .rodata._ws_write.str1.4 + 0x3c0c77ec 0x5c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.esp_transport_read_exact_size.str1.4 + 0x3c0c77ec 0x3a esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.ws_read_header.str1.4 + 0x3c0c77ec 0x21 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.get_http_header.str1.4 + 0x3c0c77ec 0x3 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.get_http_status_code.str1.4 + 0x3c0c77ec 0x6 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.ws_connect.str1.4 + 0x3c0c77ec 0x4bd esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.esp_transport_ws_set_path.str1.4 + 0x3c0c77ec 0x49 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.esp_transport_ws_init.str1.4 + 0x3c0c77ec 0x56 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.esp_transport_ws_poll_connection_closed.str1.4 + 0x3c0c77ec 0xb3 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.esp_transport_ws_handle_control_frames.str1.4 + 0x3c0c77ec 0x1be esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.ws_handle_control_frame_internal.str1.4 + 0x3c0c77ec 0xed esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.ws_read.str1.4 + 0x3c0c77ec 0x2c esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.__FUNCTION__$1 + 0x3c0c77ec 0x16 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .rodata.str1.4 + 0x3c0c7802 0x889 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + *fill* 0x3c0c7802 0x2 + .rodata.ciphersuite_definitions + 0x3c0c7804 0x3b0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.ciphersuite_preference + 0x3c0c7bb4 0x2e8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.ssl_compute_master.str1.4 + 0x3c0c7e9c 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_free_hostname.str1.4 + 0x3c0c7e9c 0x1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata 0x3c0c7e9c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_calc_finished_tls_generic.str1.4 + 0x3c0c7ea0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_tls12_populate_transform.str1.4 + 0x3c0c7ea0 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_check_cert_usage.str1.4 + 0x3c0c7ea0 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.tls_id_match_table + 0x3c0c7ea0 0x9c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_suiteb_groups + 0x3c0c7f3c 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x3c0c7f42 0x2 + .rodata.ssl_tls12_preset_suiteb_sig_algs + 0x3c0c7f44 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x3c0c7f4a 0x2 + .rodata.ssl_preset_suiteb_sig_algs + 0x3c0c7f4c 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x3c0c7f52 0x2 + .rodata.ssl_tls12_preset_default_sig_algs + 0x3c0c7f54 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_default_sig_algs + 0x3c0c7f68 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_suiteb_ciphersuites + 0x3c0c7f7c 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_default_groups + 0x3c0c7f88 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata 0x3c0c7f98 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + *fill* 0x3c0c7f9e 0x2 + .rodata.small_prime_gaps + 0x3c0c7fa0 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x3c0c8047 0x1 + .rodata.mbedtls_cipher_base_lookup_table + 0x3c0c8048 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x3c0c8048 mbedtls_cipher_base_lookup_table + .rodata.mbedtls_cipher_definitions + 0x3c0c8064 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x3c0c8064 mbedtls_cipher_definitions + .rodata.str1.4 + 0x3c0c81e4 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ccm_star_no_tag_info + 0x3c0c81e4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ccm_star_no_tag_info + 0x3c0c81ec 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ccm_star_no_tag_info + 0x3c0c81f4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ccm_info + 0x3c0c81fc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ccm_info + 0x3c0c8204 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ccm_info + 0x3c0c820c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ccm_aria_info + 0x3c0c8214 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_gcm_info + 0x3c0c8240 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_gcm_info + 0x3c0c8248 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_gcm_info + 0x3c0c8250 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.gcm_aria_info + 0x3c0c8258 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ctr_info + 0x3c0c8284 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ctr_info + 0x3c0c828c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ctr_info + 0x3c0c8294 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_cfb128_info + 0x3c0c829c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_cfb128_info + 0x3c0c82a4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_cfb128_info + 0x3c0c82ac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_cbc_info + 0x3c0c82b4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_cbc_info + 0x3c0c82bc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_cbc_info + 0x3c0c82c4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ecb_info + 0x3c0c82cc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ecb_info + 0x3c0c82d4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ecb_info + 0x3c0c82dc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_info + 0x3c0c82e4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_star_no_tag_info + 0x3c0c8310 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_star_no_tag_info + 0x3c0c8318 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_star_no_tag_info + 0x3c0c8320 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_info + 0x3c0c8328 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_info + 0x3c0c8330 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_info + 0x3c0c8338 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ccm_aes_info + 0x3c0c8340 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_gcm_info + 0x3c0c836c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_gcm_info + 0x3c0c8374 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_gcm_info + 0x3c0c837c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.gcm_aes_info + 0x3c0c8384 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_xts_info + 0x3c0c83b0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_xts_info + 0x3c0c83b8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.xts_aes_info + 0x3c0c83c0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ctr_info + 0x3c0c83ec 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ctr_info + 0x3c0c83f4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ctr_info + 0x3c0c83fc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ofb_info + 0x3c0c8404 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ofb_info + 0x3c0c840c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ofb_info + 0x3c0c8414 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cfb128_info + 0x3c0c841c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cfb128_info + 0x3c0c8424 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cfb128_info + 0x3c0c842c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cbc_info + 0x3c0c8434 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cbc_info + 0x3c0c843c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cbc_info + 0x3c0c8444 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ecb_info + 0x3c0c844c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ecb_info + 0x3c0c8454 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ecb_info + 0x3c0c845c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_info + 0x3c0c8464 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ecp_x25519_bad_point_2 + 0x3c0c8490 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.ecp_x25519_bad_point_1 + 0x3c0c8498 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.x25519_bad_point_2 + 0x3c0c84a0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.x25519_bad_point_1 + 0x3c0c84c0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.str1.4 + 0x3c0c84e0 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.ecp_supported_curves + 0x3c0c84e0 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.Rp$0 0x3c0c857c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.Rp$1 0x3c0c8584 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.Rp$2 0x3c0c858c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.curve25519_part_of_n + 0x3c0c8594 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_n + 0x3c0c85a4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gy + 0x3c0c85e4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gx + 0x3c0c8624 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_b + 0x3c0c8664 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_a + 0x3c0c86a4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_p + 0x3c0c86e4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_n + 0x3c0c8724 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gy + 0x3c0c8754 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gx + 0x3c0c8784 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_b + 0x3c0c87b4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_a + 0x3c0c87e4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_p + 0x3c0c8814 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_n + 0x3c0c8844 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gy + 0x3c0c8864 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gx + 0x3c0c8884 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_b + 0x3c0c88a4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_a + 0x3c0c88c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_p + 0x3c0c88e4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_n + 0x3c0c8904 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gy + 0x3c0c8924 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gx + 0x3c0c8944 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_b + 0x3c0c8964 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_a + 0x3c0c8968 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_p + 0x3c0c896c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_n + 0x3c0c898c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gy + 0x3c0c89ac 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gx + 0x3c0c89c8 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_b + 0x3c0c89e4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_a + 0x3c0c89e8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_p + 0x3c0c89ec 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_n + 0x3c0c8a08 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gy + 0x3c0c8a20 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gx + 0x3c0c8a38 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_b + 0x3c0c8a50 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_a + 0x3c0c8a54 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_p + 0x3c0c8a58 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_n + 0x3c0c8a70 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gy + 0x3c0c8ab4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gx + 0x3c0c8af8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_b + 0x3c0c8b3c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_p + 0x3c0c8b80 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_n + 0x3c0c8bc4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gy + 0x3c0c8bf4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gx + 0x3c0c8c24 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_b + 0x3c0c8c54 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_p + 0x3c0c8c84 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_n + 0x3c0c8cb4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gy + 0x3c0c8cd4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gx + 0x3c0c8cf4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_b + 0x3c0c8d14 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_p + 0x3c0c8d34 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_n + 0x3c0c8d54 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gy + 0x3c0c8d70 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gx + 0x3c0c8d8c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_b + 0x3c0c8da8 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_p + 0x3c0c8dc4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_n + 0x3c0c8de4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gy + 0x3c0c8dfc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gx + 0x3c0c8e14 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_b + 0x3c0c8e2c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_p + 0x3c0c8e44 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.mpi_one + 0x3c0c8e5c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.mbedtls_sha512_info + 0x3c0c8e60 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha384_info + 0x3c0c8e68 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha256_info + 0x3c0c8e70 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha224_info + 0x3c0c8e78 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha1_info + 0x3c0c8e80 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_md5_info + 0x3c0c8e88 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.rsa_debug.str1.4 + 0x3c0c8e90 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.eckey_debug.str1.4 + 0x3c0c8e90 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.str1.4 + 0x3c0c8e90 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.mbedtls_rsa_alt_info + 0x3c0c8e90 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3c0c8e90 mbedtls_rsa_alt_info + .rodata.mbedtls_ecdsa_info + 0x3c0c8ec0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3c0c8ec0 mbedtls_ecdsa_info + .rodata.mbedtls_eckeydh_info + 0x3c0c8ef0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3c0c8ef0 mbedtls_eckeydh_info + .rodata.mbedtls_eckey_info + 0x3c0c8f20 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3c0c8f20 mbedtls_eckey_info + .rodata.mbedtls_rsa_info + 0x3c0c8f50 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3c0c8f50 mbedtls_rsa_info + .rodata.pk_group_from_specified.str1.4 + 0x3c0c8f80 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_key_pkcs8_encrypted_der.str1.4 + 0x3c0c8f80 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_key.str1.4 + 0x3c0c8f80 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_public_key.str1.4 + 0x3c0c8f80 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.memset_func + 0x3c0c8f80 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .rodata.mbedtls_rsa_deduce_primes.str1.4 + 0x3c0c8f84 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .rodata.esp_aes_validate_input.str1.4 + 0x3c0c8f84 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.esp_aes_crypt_cbc.str1.4 + 0x3c0c8f84 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.esp_aes_crypt_cfb128.str1.4 + 0x3c0c8f84 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.esp_aes_crypt_ctr.str1.4 + 0x3c0c8f84 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.esp_sha_dma_process.str1.4 + 0x3c0c8f84 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_block_mode_fallback.str1.4 + 0x3c0c8f84 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_dma.str1.4 + 0x3c0c8f84 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$0 + 0x3c0c8f84 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_ds_rsa_sign.str1.4 + 0x3c0c8fa0 0x1e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .rodata.esp_ds_get_keylen.str1.4 + 0x3c0c8fa0 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .rodata.esp_ds_conn_lock.str1.4 + 0x3c0c8fa0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .rodata.esp_ds_release_ds_lock.str1.4 + 0x3c0c8fa0 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .rodata.esp_ds_init_data_ctx.str1.4 + 0x3c0c8fa0 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .rodata.esp_mpi_isr_initialise.str1.4 + 0x3c0c8fa0 0x69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .rodata.esp_mpi_wait_intr.str1.4 + 0x3c0c8fa0 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .rodata.mpi_mult_mpi_failover_mod_mult.str1.4 + 0x3c0c8fa0 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .rodata.__func__$0 + 0x3c0c8fa0 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .rodata.esp_mpi_exp_mpi_mod_hw_op.str1.4 + 0x3c0c8fbf 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + *fill* 0x3c0c8fbf 0x1 + .rodata.__func__$0 + 0x3c0c8fc0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + *fill* 0x3c0c8fda 0x2 + .rodata.sha1_padding + 0x3c0c8fdc 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .rodata.sha256_padding + 0x3c0c901c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.sha512_padding + 0x3c0c905c 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .rodata.esp_aes_gcm_starts.str1.4 + 0x3c0c90dc 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata.esp_aes_gcm_update_ad.str1.4 + 0x3c0c90dc 0x4b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata.esp_aes_gcm_update.str1.4 + 0x3c0c90dc 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata.last4 0x3c0c90dc 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata 0x3c0c911c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_is2 + 0x3c0c914c 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_is1 + 0x3c0c924c 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_sb2 + 0x3c0c934c 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_sb1 + 0x3c0c944c 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.last4 0x3c0c954c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.str1.4 + 0x3c0c956c 0xd79 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_pkcs12_pbe_alg + 0x3c0c956c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_md_hmac + 0x3c0c95b4 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_md_alg + 0x3c0c962c 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_cipher_alg + 0x3c0c96b8 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_ecp_grp_algid + 0x3c0c9730 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata 0x3c0c9758 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x3c0c978d 0x3 + .rodata.oid_ecp_grp + 0x3c0c9790 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_pk_alg + 0x3c0c9880 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_sig_alg + 0x3c0c98d0 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x509_ext + 0x3c0c9a20 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.mbedtls_pem_read_buffer.str1.4 + 0x3c0c9ad4 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .rodata.mbedtls_pkcs5_pbes2_ext.str1.4 + 0x3c0c9ad4 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.esp_aes_dma_wait_complete.str1.4 + 0x3c0c9ad4 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .rodata.esp_aes_intr_alloc.str1.4 + 0x3c0c9ad4 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .rodata.esp_aes_process_dma.str1.4 + 0x3c0c9ad4 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .rodata.__func__$0 + 0x3c0c9ad4 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .rodata.__func__$1 + 0x3c0c9ae8 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .rodata.crypto_shared_gdma_init.str1.4 + 0x3c0c9afb 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + *fill* 0x3c0c9afb 0x1 + .rodata 0x3c0c9afc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .rodata.esp_sha.str1.4 + 0x3c0c9b1c 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .rodata.esp_sha_512_t_init_hash.str1.4 + 0x3c0c9b1c 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .rodata 0x3c0c9b1c 0xd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_crt_verify_name.str1.4 + 0x3c0c9b29 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_parse.str1.4 + 0x3c0c9b29 0x36 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x3c0c9b29 0x3 + .rodata.mbedtls_x509_crt_profile_suiteb + 0x3c0c9b2c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x3c0c9b2c mbedtls_x509_crt_profile_suiteb + .rodata.mbedtls_x509_crt_profile_default + 0x3c0c9b3c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x3c0c9b3c mbedtls_x509_crt_profile_default + .rodata.x509_get_other_name.str1.4 + 0x3c0c9b4c 0x9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_get_rsassa_pss_params.str1.4 + 0x3c0c9b4c 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.ieee80211_send_setup.str1.1 + 0x3c0c9b4c 0x1084 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x13 (size before relaxing) + .rodata.ieee80211_beacon_alloc.str1.1 + 0x3c0cabd0 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata.info$1 + 0x3c0cabd0 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata.s_ac_param$2 + 0x3c0cabd9 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata.param$3 + 0x3c0cabf5 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata.ieee80211_hostap_attach.str1.1 + 0x3c0cabfe 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata.wifi_softap_start.str1.1 + 0x3c0cabfe 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata.hostap_input.str1.1 + 0x3c0cabfe 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata.CSWTCH$218 + 0x3c0cabfe 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata.phymode2str.str1.1 + 0x3c0cac0a 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_phy_mode_show.str1.1 + 0x3c0cac0a 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_setup_ratetable.str1.1 + 0x3c0cac0a 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + *fill* 0x3c0cac0a 0x2 + .rodata.ieee80211_11g_table + 0x3c0cac0c 0xd4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_11b_table + 0x3c0cace0 0xd4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata.chm_set_home_channel.str1.1 + 0x3c0cadb4 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata.wifi_log.str1.1 + 0x3c0cadb4 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata 0x3c0cadb4 0x8 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata.ieee80211_setup_phy_mode.str1.1 + 0x3c0cadbc 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata.ieee80211_parse_beacon + 0x3c0cadbc 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata 0x3c0cae14 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata.ieee80211_parse_rsn.str1.1 + 0x3c0cae2c 0x9a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata.CSWTCH$59 + 0x3c0cae2c 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata.ht_recv_action_ba_addba_response.str1.1 + 0x3c0cae8c 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata.ieee80211_add_htcap_body.str1.1 + 0x3c0cae8c 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata.ht_recv_action_ba_delba.str1.1 + 0x3c0cae8c 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata 0x3c0cae8c 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata.__func__$0 + 0x3c0cae9c 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata.wifi_nvs_cfg_init.str1.1 + 0x3c0caeb7 0x3cd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata.ieee80211_nvs_set_default_ssid.str1.1 + 0x3c0caeb7 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + *fill* 0x3c0caeb7 0x1 + .rodata.wifi_nvs_set + 0x3c0caeb8 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_init.str1.1 + 0x3c0caed8 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata.ieee80211_set_gtk.str1.1 + 0x3c0caed8 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata.wifi_set_rx_policy + 0x3c0caed8 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata.ppInstallKey + 0x3c0caf04 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata.CSWTCH$203 + 0x3c0caf28 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata.CSWTCH$141 + 0x3c0caf2e 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata.CSWTCH$138 + 0x3c0caf39 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata.str1.1 + 0x3c0caf40 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata.wifi_lmac_init.str1.1 + 0x3c0caf40 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata.CSWTCH$394 + 0x3c0caf40 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$1 + 0x3c0caf44 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$0 + 0x3c0caf5a 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$1 + 0x3c0caf70 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$2 + 0x3c0caf88 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$3 + 0x3c0cafa0 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$4 + 0x3c0cafba 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$5 + 0x3c0cafd7 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$6 + 0x3c0cafe5 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$7 + 0x3c0caffa 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$8 + 0x3c0cb00b 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$9 + 0x3c0cb01f 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10 + 0x3c0cb033 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$11 + 0x3c0cb042 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$12 + 0x3c0cb052 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$13 + 0x3c0cb06d 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$14 + 0x3c0cb08c 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$15 + 0x3c0cb0a6 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$16 + 0x3c0cb0c4 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$17 + 0x3c0cb0dd 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$18 + 0x3c0cb0fb 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.wifi_osi_funcs_register.str1.1 + 0x3c0cb115 0xaa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.net80211_funcs_init.str1.1 + 0x3c0cb115 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.esp_wifi_init_internal.str1.1 + 0x3c0cb115 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.str1.1 + 0x3c0cb115 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.cnx_connect_to_bss.str1.1 + 0x3c0cb115 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata.cnx_node_join.str1.1 + 0x3c0cb115 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata.cnx_auth_done.str1.1 + 0x3c0cb115 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata.str1.1 + 0x3c0cb115 0x95 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + *fill* 0x3c0cb115 0x3 + .rodata.CSWTCH$257 + 0x3c0cb118 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata.CSWTCH$256 + 0x3c0cb15c 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata.CSWTCH$254 + 0x3c0cb168 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata.ieee80211_add_action_vendor_spec_esp.str1.1 + 0x3c0cb179 0x4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .rodata.sta_rx_csa.str1.1 + 0x3c0cb179 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata.ieee80211_set_bss_max_idle_period.str1.1 + 0x3c0cb179 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata.ieee80211_sta_new_state.str1.1 + 0x3c0cb179 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata.sta_recv_assoc.str1.1 + 0x3c0cb179 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata.str1.1 + 0x3c0cb179 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + *fill* 0x3c0cb179 0x3 + .rodata.state_desc$0 + 0x3c0cb17c 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata.sms4_encap.str1.1 + 0x3c0cb1a0 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .rodata.ieee80211_add_countryie.str1.1 + 0x3c0cb1a0 0x3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .rodata.ieee80211_send_sa_query.str1.1 + 0x3c0cb1a0 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata.band2str.str1.1 + 0x3c0cb1a0 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata.wifi_create_softap.str1.1 + 0x3c0cb1a0 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata.ieee80211_ethbroadcast + 0x3c0cb1a0 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x3c0cb1a0 ieee80211_ethbroadcast + .rodata.ieee80211_crypto_encap.str1.1 + 0x3c0cb1a6 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata.CSWTCH$42 + 0x3c0cb1a6 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata.ieee80211_recv_action.str1.1 + 0x3c0cb1ad 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .rodata.scan_op_start.str1.1 + 0x3c0cb1ad 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata.scan_profile_check.str1.1 + 0x3c0cb1ad 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata.CSWTCH$478 + 0x3c0cb1ad 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata.str1.1 + 0x3c0cb1be 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata.pp_default_event_handler.str1.1 + 0x3c0cb1be 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata.pp_create_task.str1.1 + 0x3c0cb1be 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + *fill* 0x3c0cb1be 0x2 + .rodata 0x3c0cb1c0 0x78 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata.CSWTCH$540 + 0x3c0cb238 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata.CSWTCH$539 + 0x3c0cb241 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + *fill* 0x3c0cb24a 0x2 + .rodata 0x3c0cb24c 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata.lmacProcessTxopSuccess.str1.1 + 0x3c0cb29c 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata 0x3c0cb29c 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$1 + 0x3c0cb2b4 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$2 + 0x3c0cb2c0 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$3 + 0x3c0cb2d3 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$4 + 0x3c0cb2e9 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$5 + 0x3c0cb2ff 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$6 + 0x3c0cb315 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$7 + 0x3c0cb32e 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$8 + 0x3c0cb348 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$9 + 0x3c0cb35e 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$10 + 0x3c0cb373 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$11 + 0x3c0cb390 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$12 + 0x3c0cb3b1 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$15 + 0x3c0cb3c6 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.pm_coex_recalculate_wifi_time_slice.str1.1 + 0x3c0cb3df 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + *fill* 0x3c0cb3df 0x1 + .rodata.rc11NRate2SchedIdx + 0x3c0cb3e0 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.rcGetAmpduSched.str1.1 + 0x3c0cb3fc 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.CSWTCH$53 + 0x3c0cb3fc 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.CSWTCH$51 + 0x3c0cb427 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.__FUNCTION__$0 + 0x3c0cb452 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.__FUNCTION__$1 + 0x3c0cb464 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.str1.1 + 0x3c0cb46e 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata.wdev_funcs_init.str1.1 + 0x3c0cb46e 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata.__FUNCTION__$1 + 0x3c0cb46e 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata.__FUNCTION__$3 + 0x3c0cb482 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata.hal_mac_rx_set_policy.str1.1 + 0x3c0cb498 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .rodata.MPI_OPERATIONS_REG + 0x3c0cb498 0xc esp-idf/soc/libsoc.a(mpi_periph.c.obj) + 0x3c0cb498 MPI_OPERATIONS_REG + .rodata.MPI_BLOCK_BASES + 0x3c0cb4a4 0x10 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + 0x3c0cb4a4 MPI_BLOCK_BASES + .rodata.gdma_release_group_handle.str1.4 + 0x3c0cb4b4 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_release_pair_handle.str1.4 + 0x3c0cb4b4 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.do_allocate_gdma_channel.str1.4 + 0x3c0cb4b4 0x1aa esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata 0x3c0cb4b4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_connect.str1.4 + 0x3c0cb4c8 0xba esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_disconnect.str1.4 + 0x3c0cb4c8 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_config_transfer.str1.4 + 0x3c0cb4c8 0x93 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_start.str1.4 + 0x3c0cb4c8 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$17 + 0x3c0cb4c8 0xb esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x3c0cb4d3 0x1 + .rodata.__FUNCTION__$9 + 0x3c0cb4d4 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x3c0cb4e9 0x3 + .rodata.__FUNCTION__$7 + 0x3c0cb4ec 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$6 + 0x3c0cb4fc 0xd esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x3c0cb509 0x3 + .rodata.__FUNCTION__$5 + 0x3c0cb50c 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x3c0cb526 0x2 + .rodata.__FUNCTION__$4 + 0x3c0cb528 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x3c0cb539 0x3 + .rodata.__func__$3 + 0x3c0cb53c 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x3c0cb556 0x2 + .rodata.__func__$2 + 0x3c0cb558 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x3c0cb571 0x3 + .rodata.__func__$1 + 0x3c0cb574 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x3c0cb58d 0x3 + .rodata.__FUNCTION__$0 + 0x3c0cb590 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.ets_timer_setfn.str1.4 + 0x3c0cb5a9 0x89 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.str1.4 + 0x3c0cb5a9 0xb9 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x3c0cb5a9 0x3 + .rodata.__func__$2 + 0x3c0cb5ac 0xe esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x3c0cb5ba 0x2 + .rodata.__func__$1 + 0x3c0cb5bc 0x11 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x3c0cb5cd 0x3 + .rodata.__func__$0 + 0x3c0cb5d0 0x10 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.str1.4 + 0x3c0cb5e0 0x33 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.init_timer_task.str1.4 + 0x3c0cb5e0 0x6c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.esp_timer_init.str1.4 + 0x3c0cb5e0 0x1d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.__func__$0 + 0x3c0cb5e0 0xd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.load_cal_data_from_nvs_handle.str1.4 + 0x3c0cb5ed 0x126 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.store_cal_data_to_nvs_handle.str1.4 + 0x3c0cb5ed 0xdf esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_load_cal_data_from_nvs.str1.4 + 0x3c0cb5ed 0x60 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_load_cal_and_init.str1.4 + 0x3c0cb5ed 0x1ad esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3c0cb5ed 0x3 + .rodata.__func__$5 + 0x3c0cb5f0 0x1a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3c0cb60a 0x2 + .rodata.__func__$3 + 0x3c0cb60c 0x1d esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3c0cb629 0x3 + .rodata.__func__$1 + 0x3c0cb62c 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3c0cb64a 0x2 + .rodata.__func__$0 + 0x3c0cb64c 0x1f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3c0cb66b 0x1 + .rodata.phy_init_data + 0x3c0cb66c 0x80 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + 0x3c0cb66c phy_init_data + .rodata.phy_get_modem_str.str1.4 + 0x3c0cb6ec 0x25 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.phy_ant_config_check.str1.4 + 0x3c0cb6ec 0x84 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.phy_track_pll_init.str1.4 + 0x3c0cb6ec 0xce esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.phy_track_pll_deinit.str1.4 + 0x3c0cb6ec 0x4a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.phy_clr_modem_flag.str1.4 + 0x3c0cb6ec 0x32 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.__func__$0 + 0x3c0cb6ec 0x15 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + *fill* 0x3c0cb701 0x3 + .rodata.__func__$1 + 0x3c0cb704 0x13 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.kill_oldest_dhcps_pool.str1.4 + 0x3c0cb717 0x57 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.dhcps_option_ip.str1.4 + 0x3c0cb717 0x85 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.dhcps_start.str1.4 + 0x3c0cb717 0x70 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x3c0cb717 0x1 + .rodata.__func__$0 + 0x3c0cb718 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.__func__$1 + 0x3c0cb728 0x17 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x3c0cb73f 0x1 + .rodata.magic_cookie + 0x3c0cb740 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.esp_netif_action_connected.str1.4 + 0x3c0cb744 0xa3 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .rodata.esp_netif_action_got_ip.str1.4 + 0x3c0cb744 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .rodata.__FUNCTION__$0 + 0x3c0cb744 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .rodata.str1.4 + 0x3c0cb75f 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + *fill* 0x3c0cb75f 0x1 + .rodata._g_esp_netif_inherent_sta_config + 0x3c0cb760 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x3c0cb760 _g_esp_netif_inherent_sta_config + .rodata.s_wifi_netif_config_sta + 0x3c0cb788 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.wlanif_init.str1.4 + 0x3c0cb790 0x4a esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .rodata.__func__$0 + 0x3c0cb790 0xc esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .rodata.wpa3_hostap_auth_init.str1.4 + 0x3c0cb79c 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .rodata.wpa_gtk_update.str1.4 + 0x3c0cb79c 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.wpa_group_config_group_keys.str1.4 + 0x3c0cb79c 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.wpa_group_init_gmk_and_counter.str1.4 + 0x3c0cb79c 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.wpa_derive_ptk.str1.4 + 0x3c0cb79c 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata 0x3c0cb79c 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.sae_check_big_sync.str1.4 + 0x3c0cb7a2 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .rodata.sae_accept_sta.str1.4 + 0x3c0cb7a2 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .rodata.sae_sm_step.str1.4 + 0x3c0cb7a2 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .rodata.handle_auth_sae.str1.4 + 0x3c0cb7a2 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x3c0cb7a2 0x2 + .rodata 0x3c0cb7a4 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .rodata.sswu.str1.4 + 0x3c0cb7aa 0x11c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_test_pwd_seed_ffc.str1.4 + 0x3c0cb7aa 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pt_ecc.str1.4 + 0x3c0cb7aa 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pt_ffc.str1.4 + 0x3c0cb7aa 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_keys.str1.4 + 0x3c0cb7aa 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pwe_from_pt_ecc.str1.4 + 0x3c0cb7aa 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pwe_from_pt_ffc.str1.4 + 0x3c0cb7aa 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.dragonfly_get_rand_1_to_p_1.str1.4 + 0x3c0cb7aa 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .rodata.rsn_pmkid.str1.4 + 0x3c0cb7aa 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x3c0cb7aa 0x2 + .rodata 0x3c0cb7ac 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata.hmac_sha256_kdf.str1.4 + 0x3c0cb7b8 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .rodata.dh_groups + 0x3c0cb7b8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_order + 0x3c0cb7d8 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_prime + 0x3c0cb898 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_generator + 0x3c0cb958 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.wpa_derive_ptk.str1.4 + 0x3c0cb959 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .rodata.owe_process_assoc_resp.str1.4 + 0x3c0cb959 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .rodata.wpa_gen_wpa_ie_rsn.str1.4 + 0x3c0cb959 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x3c0cb959 0x3 + .rodata.__func__$1 + 0x3c0cb95c 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .rodata.add_char.str1.4 + 0x3c0cb96f 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x3c0cb96f 0x1 + .rodata.d_perm_table + 0x3c0cb970 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .rodata.d_mult_table + 0x3c0cb990 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .rodata.zero 0x3c0cbd90 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .rodata.lib_printf.str1.4 + 0x3c0cbda0 0x10 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.pp_printf.str1.4 + 0x3c0cbda0 0x3 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.net80211_printf.str1.4 + 0x3c0cbda0 0x9 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.regulatory_data + 0x3c0cbda0 0xdc esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + 0x3c0cbda0 regulatory_data + .rodata.regdomain_table + 0x3c0cbe7c 0x210 esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + 0x3c0cbe7c regdomain_table + .rodata.esp_crypto_sha1_mbedtls.str1.4 + 0x3c0cc08c 0x49 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .rodata.misc_nvs_load.str1.1 + 0x3c0cc08c 0x5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .rodata.gdma_ll_rx_set_burst_size.str1.4 + 0x3c0cc08c 0x3e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .rodata 0x3c0cc08c 0x20 esp-idf/hal/libhal.a(ds_hal.c.obj) + .rodata 0x3c0cc0ac 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + 0x3c0cc0ac Xthal_intlevel + .rodata._ZSt7nothrow + 0x3c0cc0cc 0x1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + 0x3c0cc0cc std::nothrow + .rodata._ZTSSt9exception + 0x3c0cc0cd 0xd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + 0x3c0cc0cd typeinfo name for std::exception + *fill* 0x3c0cc0da 0x2 + .rodata._ZTISt9exception + 0x3c0cc0dc 0x8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + 0x3c0cc0dc typeinfo for std::exception + .rodata._ZTSSt9bad_alloc + 0x3c0cc0e4 0xd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + 0x3c0cc0e4 typeinfo name for std::bad_alloc + *fill* 0x3c0cc0f1 0x3 + .rodata._ZTISt9bad_alloc + 0x3c0cc0f4 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + 0x3c0cc0f4 typeinfo for std::bad_alloc + .rodata._ZTVN10__cxxabiv120__si_class_type_infoE + 0x3c0cc100 0x2c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + 0x3c0cc100 vtable for __cxxabiv1::__si_class_type_info + .rodata._ZNKSt9bad_alloc4whatEv.str1.1 + 0x3c0cc12c 0xf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .rodata._ZTVSt9bad_alloc + 0x3c0cc12c 0x14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + 0x3c0cc12c vtable for std::bad_alloc + .rodata._ZTVN10__cxxabiv117__class_type_infoE + 0x3c0cc140 0x2c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + 0x3c0cc140 vtable for __cxxabiv1::__class_type_info + .rodata.lib_printf.str1.4 + 0x3c0cc16c 0x10 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.phy_printf.str1.4 + 0x3c0cc16c 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.str1.1 + 0x3c0cc16c 0xf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + *fill* 0x3c0cc16c 0x4 + .rodata 0x3c0cc170 0x68 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .rodata 0x3c0cc1d8 0x101 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + 0x3c0cc1d8 _ctype_ + .rodata.str1.1 + 0x3c0cc2d9 0x2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .rodata.str1.1 + 0x3c0cc2d9 0x697 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + *fill* 0x3c0cc2d9 0x3 + .rodata 0x3c0cc2dc 0x23c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .rodata.str1.1 + 0x3c0cc518 0xb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .rodata 0x3c0cc518 0x16c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + 0x3c0cc518 __default_global_locale + .rodata.str1.1 + 0x3c0cc684 0x6f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .rodata.str1.1 + 0x3c0cc684 0x7d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + *fill* 0x3c0cc684 0x4 + .rodata 0x3c0cc688 0x128 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + 0x3c0cc698 __mprec_tinytens + 0x3c0cc6c0 __mprec_bigtens + 0x3c0cc6e8 __mprec_tens + .rodata 0x3c0cc7b0 0x13e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + *fill* 0x3c0cc8ee 0x2 + .rodata 0x3c0cc8f0 0x23c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .rodata.str1.1 + 0x3c0ccb2c 0x34 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .rodata.str1.1 + 0x3c0ccb2c 0x6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .rodata 0x3c0ccb2c 0x2f6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + *fill* 0x3c0cce22 0x2 + .rodata 0x3c0cce24 0x23c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .rodata.str1.1 + 0x3c0cd060 0x34 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .rodata 0x3c0cd060 0x23c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .rodata.str1.1 + 0x3c0cd29c 0x22 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .rodata.str1.1 + 0x3c0cd29c 0x8b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .rodata.str1.1 + 0x3c0cd29c 0x1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .rodata 0x3c0cd29c 0x414 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + 0x3c0cd4d8 __action_table + 0x3c0cd544 __state_table + 0x3c0cd5b0 __chclass + .rodata.str1.1 + 0x3c0cd6b0 0x22 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + *(.rodata_wlog_error .rodata_wlog_error.*) + .rodata_wlog_error.59 + 0x3c0cd6b0 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.57 + 0x3c0cd6b7 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.44 + 0x3c0cd6be 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.41 + 0x3c0cd6c5 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.40 + 0x3c0cd6cc 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.39 + 0x3c0cd6d3 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.37 + 0x3c0cd6da 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.33 + 0x3c0cd6e1 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.31 + 0x3c0cd6e8 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.30 + 0x3c0cd6ef 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.28 + 0x3c0cd6f6 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.26 + 0x3c0cd6fd 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.24 + 0x3c0cd704 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.23 + 0x3c0cd70b 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.21 + 0x3c0cd74b 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.16 + 0x3c0cd752 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.14 + 0x3c0cd759 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.13 + 0x3c0cd760 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.12 + 0x3c0cd767 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.55 + 0x3c0cd76e 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.50 + 0x3c0cd786 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.37 + 0x3c0cd78d 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.35 + 0x3c0cd794 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.34 + 0x3c0cd7b1 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.30 + 0x3c0cd7ce 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.28 + 0x3c0cd7d5 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.26 + 0x3c0cd7dc 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.21 + 0x3c0cd7e3 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.20 + 0x3c0cd7f5 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.18 + 0x3c0cd801 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.17 + 0x3c0cd80e 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.16 + 0x3c0cd819 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.15 + 0x3c0cd826 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.12 + 0x3c0cd832 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.10 + 0x3c0cd839 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.9 + 0x3c0cd840 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.8 + 0x3c0cd847 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.6 + 0x3c0cd84e 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.5 + 0x3c0cd855 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.3 + 0x3c0cd870 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.13 + 0x3c0cd877 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_error.8 + 0x3c0cd87e 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_error.7 + 0x3c0cd89e 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_error.8 + 0x3c0cd8b9 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.7 + 0x3c0cd8c0 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.3 + 0x3c0cd8e0 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.77 + 0x3c0cd8e7 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.75 + 0x3c0cd8ee 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.73 + 0x3c0cd8f5 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.72 + 0x3c0cd8fc 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.71 + 0x3c0cd903 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.70 + 0x3c0cd90a 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.69 + 0x3c0cd911 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.68 + 0x3c0cd918 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.67 + 0x3c0cd91f 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.65 + 0x3c0cd926 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.64 + 0x3c0cd92d 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.61 + 0x3c0cd934 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.55 + 0x3c0cd93b 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.52 + 0x3c0cd942 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.51 + 0x3c0cd949 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.50 + 0x3c0cd950 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.47 + 0x3c0cd957 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.44 + 0x3c0cd95e 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.35 + 0x3c0cd974 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.34 + 0x3c0cd98b 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.33 + 0x3c0cd99f 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.31 + 0x3c0cd9a6 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.14 + 0x3c0cd9ad 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.12 + 0x3c0cd9f5 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.11 + 0x3c0cda17 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.10 + 0x3c0cda3a 0x64 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.9 + 0x3c0cda9e 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.8 + 0x3c0cdac1 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.7 + 0x3c0cdae5 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.5 + 0x3c0cdb02 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.4 + 0x3c0cdb09 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.2 + 0x3c0cdb10 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.16 + 0x3c0cdb17 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.5 + 0x3c0cdb30 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.3 + 0x3c0cdb51 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.2 + 0x3c0cdb6b 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.9 + 0x3c0cdb89 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.8 + 0x3c0cdb90 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.2 + 0x3c0cdb97 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.146 + 0x3c0cdbc5 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.116 + 0x3c0cdbe0 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.115 + 0x3c0cdbf8 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.107 + 0x3c0cdbff 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.88 + 0x3c0cdc0f 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.68 + 0x3c0cdc34 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.61 + 0x3c0cdc55 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.59 + 0x3c0cdc82 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.58 + 0x3c0cdc95 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.57 + 0x3c0cdcab 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.56 + 0x3c0cdcda 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.55 + 0x3c0cdcef 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.54 + 0x3c0cdd18 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.53 + 0x3c0cdd40 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.52 + 0x3c0cdd69 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.51 + 0x3c0cdd91 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.50 + 0x3c0cddd9 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.49 + 0x3c0cde1f 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.47 + 0x3c0cde43 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.46 + 0x3c0cde4a 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.44 + 0x3c0cde51 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.43 + 0x3c0cde58 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.33 + 0x3c0cde5f 0x4f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.32 + 0x3c0cdeae 0x68 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.29 + 0x3c0cdf16 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.28 + 0x3c0cdf41 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.20 + 0x3c0cdf7f 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.15 + 0x3c0cdf9f 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.14 + 0x3c0cdfc8 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.7 + 0x3c0cdfed 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.6 + 0x3c0ce021 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.28 + 0x3c0ce055 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.27 + 0x3c0ce072 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.26 + 0x3c0ce08e 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.25 + 0x3c0ce0b1 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.62 + 0x3c0ce0d7 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.60 + 0x3c0ce0fa 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.59 + 0x3c0ce119 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.16 + 0x3c0ce13d 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.13 + 0x3c0ce15e 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.11 + 0x3c0ce17f 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.6 + 0x3c0ce199 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.3 + 0x3c0ce1bd 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.94 + 0x3c0ce1d8 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.91 + 0x3c0ce1df 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.63 + 0x3c0ce1e6 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.56 + 0x3c0ce1fd 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.47 + 0x3c0ce204 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.12 + 0x3c0ce23e 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.99 + 0x3c0ce25b 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.97 + 0x3c0ce282 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.96 + 0x3c0ce295 0x62 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.94 + 0x3c0ce2f7 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.93 + 0x3c0ce329 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.92 + 0x3c0ce383 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.69 + 0x3c0ce38a 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.62 + 0x3c0ce398 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.56 + 0x3c0ce3b9 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.2 + 0x3c0ce3c0 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .rodata_wlog_error.7 + 0x3c0ce3cb 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_error.12 + 0x3c0ce3e7 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.11 + 0x3c0ce415 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.10 + 0x3c0ce43c 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.9 + 0x3c0ce450 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.8 + 0x3c0ce45d 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.7 + 0x3c0ce48b 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.6 + 0x3c0ce4b2 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.5 + 0x3c0ce4c6 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.4 + 0x3c0ce4d3 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.3 + 0x3c0ce4fa 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.4 + 0x3c0ce501 0x71 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.3 + 0x3c0ce572 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.2 + 0x3c0ce5c0 0x57 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.2 + 0x3c0ce617 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .rodata_wlog_error.106 + 0x3c0ce61e 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.84 + 0x3c0ce625 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.83 + 0x3c0ce63b 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.74 + 0x3c0ce651 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.68 + 0x3c0ce697 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.66 + 0x3c0ce6ad 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.64 + 0x3c0ce6df 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.48 + 0x3c0ce6ff 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.16 + 0x3c0ce706 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.39 + 0x3c0ce70d 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_error.34 + 0x3c0ce713 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_error.7 + 0x3c0ce72d 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_error.74 + 0x3c0ce747 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.68 + 0x3c0ce74e 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.56 + 0x3c0ce755 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.55 + 0x3c0ce77d 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.54 + 0x3c0ce7a4 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.53 + 0x3c0ce7cd 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.41 + 0x3c0ce7f6 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.38 + 0x3c0ce7fd 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.29 + 0x3c0ce804 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.9 + 0x3c0ce823 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.7 + 0x3c0ce833 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.7 + 0x3c0ce83a 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_error.5 + 0x3c0ce855 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_error.3 + 0x3c0ce874 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_error.60 + 0x3c0ce89b 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.59 + 0x3c0ce8a5 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.54 + 0x3c0ce8af 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.53 + 0x3c0ce8b9 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.51 + 0x3c0ce8c3 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.50 + 0x3c0ce8cd 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.49 + 0x3c0ce8d7 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.48 + 0x3c0ce8e1 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.47 + 0x3c0ce8eb 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.46 + 0x3c0ce8f5 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.45 + 0x3c0ce8ff 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.43 + 0x3c0ce909 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.42 + 0x3c0ce913 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.41 + 0x3c0ce91d 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.39 + 0x3c0ce927 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.33 + 0x3c0ce931 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.32 + 0x3c0ce93b 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.31 + 0x3c0ce945 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.29 + 0x3c0ce94f 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.28 + 0x3c0ce959 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.27 + 0x3c0ce963 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.26 + 0x3c0ce96d 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.25 + 0x3c0ce977 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.23 + 0x3c0ce981 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.18 + 0x3c0ce98b 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.7 + 0x3c0ce995 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.6 + 0x3c0ce99f 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.5 + 0x3c0ce9a9 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.6 + 0x3c0ce9b3 0x6 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .rodata_wlog_error.27 + 0x3c0ce9b9 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.25 + 0x3c0ce9d9 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.21 + 0x3c0ce9ef 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.17 + 0x3c0cea0a 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.16 + 0x3c0cea14 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.15 + 0x3c0cea39 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.14 + 0x3c0cea43 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.13 + 0x3c0cea50 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.4 + 0x3c0cea5a 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.3 + 0x3c0cea86 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.2 + 0x3c0ceab2 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.51 + 0x3c0ceade 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.47 + 0x3c0ceaf8 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.34 + 0x3c0ceb02 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.30 + 0x3c0ceb2e 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.24 + 0x3c0ceb5d 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.20 + 0x3c0ceb67 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + *(.rodata_wlog_info .rodata_wlog_info.*) + .rodata_wlog_info.59 + 0x3c0ceb84 0x44 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.57 + 0x3c0cebc8 0x4d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.36 + 0x3c0cec15 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.33 + 0x3c0cec48 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.32 + 0x3c0cec86 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.29 + 0x3c0cec9e 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.2 + 0x3c0cecb6 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .rodata_wlog_info.2 + 0x3c0cecd9 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .rodata_wlog_info.28 + 0x3c0cecfa 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_info.78 + 0x3c0ced2f 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.59 + 0x3c0ced6b 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.58 + 0x3c0ced97 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.56 + 0x3c0cede3 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.24 + 0x3c0cee05 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.22 + 0x3c0cee32 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.66 + 0x3c0cee69 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.65 + 0x3c0cee84 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.64 + 0x3c0cee99 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.63 + 0x3c0ceebc 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.45 + 0x3c0ceed6 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.22 + 0x3c0ceee0 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.21 + 0x3c0cef03 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.20 + 0x3c0cef26 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.19 + 0x3c0cef48 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.18 + 0x3c0cef6a 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.17 + 0x3c0cef8d 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.16 + 0x3c0cefb0 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.15 + 0x3c0cefd3 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.14 + 0x3c0ceff5 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.13 + 0x3c0cf018 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.12 + 0x3c0cf03b 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.11 + 0x3c0cf05d 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.10 + 0x3c0cf080 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.9 + 0x3c0cf0a3 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.8 + 0x3c0cf0c0 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.7 + 0x3c0cf0e3 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.6 + 0x3c0cf100 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.5 + 0x3c0cf123 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.4 + 0x3c0cf146 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.3 + 0x3c0cf169 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.2 + 0x3c0cf18c 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.108 + 0x3c0cf1af 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.107 + 0x3c0cf1cf 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.104 + 0x3c0cf222 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.102 + 0x3c0cf240 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.97 + 0x3c0cf25e 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.96 + 0x3c0cf29a 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.93 + 0x3c0cf2aa 0x59 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.92 + 0x3c0cf303 0x5d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.80 + 0x3c0cf360 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.79 + 0x3c0cf392 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.55 + 0x3c0cf3b2 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.54 + 0x3c0cf3e1 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.49 + 0x3c0cf416 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.45 + 0x3c0cf42b 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.13 + 0x3c0cf43a 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.107 + 0x3c0cf46a 0x43 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.105 + 0x3c0cf4ad 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.101 + 0x3c0cf4ed 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.95 + 0x3c0cf4f8 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.91 + 0x3c0cf53a 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.76 + 0x3c0cf572 0x31 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.74 + 0x3c0cf5a3 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.73 + 0x3c0cf5df 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.72 + 0x3c0cf61b 0x51 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.71 + 0x3c0cf66c 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.37 + 0x3c0cf68b 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.2 + 0x3c0cf6ab 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.9 + 0x3c0cf6c2 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.8 + 0x3c0cf6f4 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.6 + 0x3c0cf71c 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.5 + 0x3c0cf770 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.4 + 0x3c0cf79e 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.3 + 0x3c0cf7c9 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.95 + 0x3c0cf7d5 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.94 + 0x3c0cf7f2 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.73 + 0x3c0cf807 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.72 + 0x3c0cf83f 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.71 + 0x3c0cf87e 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.70 + 0x3c0cf8b1 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.69 + 0x3c0cf8ef 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.19 + 0x3c0cf91e 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.61 + 0x3c0cf92b 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.60 + 0x3c0cf981 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.59 + 0x3c0cf9af 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.58 + 0x3c0cf9fb 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.54 + 0x3c0cfa0f 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.18 + 0x3c0cfa4e 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.17 + 0x3c0cfa7d 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.16 + 0x3c0cfaab 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.15 + 0x3c0cfaf3 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.14 + 0x3c0cfb2d 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.13 + 0x3c0cfb51 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.12 + 0x3c0cfb7f 0x48 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.11 + 0x3c0cfbc7 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.10 + 0x3c0cfc01 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.6 + 0x3c0cfc2a 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.9 + 0x3c0cfc6c 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_info.57 + 0x3c0cfc78 0x31 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_info.24 + 0x3c0cfca9 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_info.20 + 0x3c0cfcbb 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_info.17 + 0x3c0cfccc 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.16 + 0x3c0cfced 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.15 + 0x3c0cfd0a 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.14 + 0x3c0cfd29 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.13 + 0x3c0cfd47 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.12 + 0x3c0cfd6c 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.11 + 0x3c0cfd90 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.10 + 0x3c0cfdb3 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.64 + 0x3c0cfddd 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_info.44 + 0x3c0cfdee 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_info.38 + 0x3c0cfdfb 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_info.3 + 0x3c0cfe0e 0x3a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .rodata_wlog_info.45 + 0x3c0cfe48 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.44 + 0x3c0cfe5d 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.43 + 0x3c0cfe75 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.35 + 0x3c0cfe84 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.33 + 0x3c0cfe9f 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.32 + 0x3c0cfebe 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.31 + 0x3c0cfedc 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.16 + 0x3c0cfefb 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.15 + 0x3c0cff0e 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.4 + 0x3c0cff20 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .rodata_wlog_info.2 + 0x3c0cff37 0x53 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + .rodata_wlog_warning.62 + 0x3c0cff8a 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.61 + 0x3c0cff94 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.60 + 0x3c0cffae 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.58 + 0x3c0cffc3 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.46 + 0x3c0cffd4 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.45 + 0x3c0cffdf 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.42 + 0x3c0cfff0 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.36 + 0x3c0d0006 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.35 + 0x3c0d0014 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.34 + 0x3c0d002a 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.32 + 0x3c0d0034 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.29 + 0x3c0d0048 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.25 + 0x3c0d005c 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.17 + 0x3c0d0070 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.11 + 0x3c0d007a 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.10 + 0x3c0d009c 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.6 + 0x3c0d00ba 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.5 + 0x3c0d0101 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.58 + 0x3c0d010e 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.56 + 0x3c0d0133 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.53 + 0x3c0d0158 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.52 + 0x3c0d0195 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.51 + 0x3c0d01b0 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.46 + 0x3c0d01ec 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.45 + 0x3c0d020d 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.44 + 0x3c0d022e 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.14 + 0x3c0d024c 0x5b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.13 + 0x3c0d02a7 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.11 + 0x3c0d02ca 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.7 + 0x3c0d02d1 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.6 + 0x3c0d02f1 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.5 + 0x3c0d0315 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.3 + 0x3c0d031e 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.2 + 0x3c0d0327 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.3 + 0x3c0d0351 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .rodata_wlog_warning.43 + 0x3c0d036f 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.30 + 0x3c0d0398 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.29 + 0x3c0d03ea 0x45 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.27 + 0x3c0d042f 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.2 + 0x3c0d0450 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.76 + 0x3c0d0473 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.74 + 0x3c0d047c 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.66 + 0x3c0d0485 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.57 + 0x3c0d0497 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.49 + 0x3c0d04c0 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.48 + 0x3c0d04f6 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.32 + 0x3c0d050e 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.29 + 0x3c0d051d 0x61 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.28 + 0x3c0d057e 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.27 + 0x3c0d05cc 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.6 + 0x3c0d05fb 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.3 + 0x3c0d060a 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.15 + 0x3c0d0623 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.14 + 0x3c0d0642 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.13 + 0x3c0d0670 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.12 + 0x3c0d0686 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.11 + 0x3c0d06aa 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.10 + 0x3c0d06d1 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.9 + 0x3c0d06ec 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.8 + 0x3c0d0707 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.4 + 0x3c0d0722 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.149 + 0x3c0d073c 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.148 + 0x3c0d075f 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.147 + 0x3c0d0784 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.118 + 0x3c0d07c0 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.109 + 0x3c0d07da 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.108 + 0x3c0d07e5 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.67 + 0x3c0d07f0 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.62 + 0x3c0d080a 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.60 + 0x3c0d083a 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.36 + 0x3c0d084e 0x50 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.35 + 0x3c0d089e 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.34 + 0x3c0d08f2 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.31 + 0x3c0d0938 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.30 + 0x3c0d094f 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.27 + 0x3c0d0965 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.21 + 0x3c0d09c5 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.18 + 0x3c0d09fe 0x82 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.17 + 0x3c0d0a80 0x73 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.16 + 0x3c0d0af3 0x55 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.11 + 0x3c0d0b48 0x60 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.10 + 0x3c0d0ba8 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.24 + 0x3c0d0be1 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_warning.23 + 0x3c0d0bf2 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_warning.15 + 0x3c0d0bfb 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.14 + 0x3c0d0c0b 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.8 + 0x3c0d0c2c 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.7 + 0x3c0d0c4a 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.5 + 0x3c0d0c66 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.4 + 0x3c0d0c82 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.2 + 0x3c0d0c9c 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.106 + 0x3c0d0cbc 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.68 + 0x3c0d0ce2 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.106 + 0x3c0d0d03 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.104 + 0x3c0d0d28 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.98 + 0x3c0d0d4d 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.70 + 0x3c0d0d6a 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.2 + 0x3c0d0d86 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .rodata_wlog_warning.10 + 0x3c0d0dc3 0x5a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_warning.2 + 0x3c0d0e1d 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_warning.63 + 0x3c0d0e2d 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.13 + 0x3c0d0e47 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.12 + 0x3c0d0e59 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.11 + 0x3c0d0e87 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.7 + 0x3c0d0ea4 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.52 + 0x3c0d0ec8 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.51 + 0x3c0d0ee9 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.30 + 0x3c0d0f09 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.26 + 0x3c0d0f16 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.9 + 0x3c0d0f30 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_warning.65 + 0x3c0d0f58 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_warning.52 + 0x3c0d0f79 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_warning.23 + 0x3c0d0f8c 0x7 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_warning.22 + 0x3c0d0f93 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_warning.6 + 0x3c0d0fa1 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_warning.5 + 0x3c0d0fcf 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_warning.29 + 0x3c0d1001 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_warning.18 + 0x3c0d1014 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_warning.4 + 0x3c0d1029 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .rodata_wlog_warning.3 + 0x3c0d1032 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .rodata_wlog_warning.2 + 0x3c0d103b 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .rodata_wlog_warning.5 + 0x3c0d1044 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .rodata_wlog_warning.4 + 0x3c0d1055 0x9 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .rodata_wlog_warning.3 + 0x3c0d105e 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .rodata_wlog_warning.2 + 0x3c0d107d 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x3c0d108c . = ALIGN (0x4) + *fill* 0x3c0d1089 0x3 + 0x3c0d108c __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + .gcc_except_table._ZnajRKSt9nothrow_t + 0x3c0d108c 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .gcc_except_table.__cxa_get_globals_fast + 0x3c0d109c 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table.__cxa_get_globals + 0x3c0d10a0 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table._ZN10__cxxabiv111__terminateEPFvvE + 0x3c0d10a4 0x10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + *(.gnu.linkonce.e.*) + 0x3c0d10b4 . = ALIGN (0x4) + 0x3c0d10b4 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x3c0d10b4 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + 0x3c0d10b4 . = ALIGN (0x4) + 0x3c0d10b4 __init_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors SORT_BY_NAME(.ctors.*)) + .ctors 0x3c0d10b4 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .ctors 0x3c0d10b8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .ctors 0x3c0d10bc 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .ctors 0x3c0d10c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .ctors 0x3c0d10c4 0x4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + 0x3c0d10c8 __init_array_end = ABSOLUTE (.) + 0x3c0d10c8 . = ALIGN (0x4) + 0x3c0d10c8 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x3c0d10c8 0x28 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3c0d10f0 soc_reserved_memory_region_end = ABSOLUTE (.) + 0x3c0d10f0 . = ALIGN (0x4) + 0x3c0d10f0 _esp_system_init_fn_array_start = ABSOLUTE (.) + *(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)) + .esp_system_init_fn.1 + 0x3c0d10f0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.10 + 0x3c0d10f8 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.20 + 0x3c0d1100 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .esp_system_init_fn.21 + 0x3c0d1108 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.100 + 0x3c0d1110 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .esp_system_init_fn.100 + 0x3c0d1118 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .esp_system_init_fn.101 + 0x3c0d1120 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .esp_system_init_fn.102 + 0x3c0d1128 0x8 esp-idf/newlib/libnewlib.a(init.c.obj) + .esp_system_init_fn.103 + 0x3c0d1130 0x8 esp-idf/esp_security/libesp_security.a(init.c.obj) + .esp_system_init_fn.104 + 0x3c0d1138 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.105 + 0x3c0d1140 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.105 + 0x3c0d1148 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .esp_system_init_fn.110 + 0x3c0d1150 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .esp_system_init_fn.112 + 0x3c0d1158 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .esp_system_init_fn.113 + 0x3c0d1160 0x8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .esp_system_init_fn.114 + 0x3c0d1168 0x8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .esp_system_init_fn.115 + 0x3c0d1170 0x8 esp-idf/newlib/libnewlib.a(init.c.obj) + .esp_system_init_fn.130 + 0x3c0d1178 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.140 + 0x3c0d1180 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.203 + 0x3c0d1188 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.230 + 0x3c0d1190 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .esp_system_init_fn.999 + 0x3c0d1198 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x3c0d11a0 _esp_system_init_fn_array_end = ABSOLUTE (.) + 0x3c0d11a0 _rodata_end = ABSOLUTE (.) + 0x3c0d11a0 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x3c0d11a0 _lit4_end = ABSOLUTE (.) + 0x3c0d11a0 . = ALIGN (0x4) + 0x3c0d11a0 _thread_local_start = ABSOLUTE (.) + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + 0x3c0d11a0 _thread_local_end = ABSOLUTE (.) + 0x00000010 _flash_rodata_align = ALIGNOF (.flash.rodata) + +.flash.rodata_noload + 0x3c0d11a0 0x2e76 + 0x3c0d11a0 _rodata_reserved_end = ABSOLUTE (.) + *(.rodata_wlog_debug .rodata_wlog_debug.*) + .rodata_wlog_debug.43 + 0x3c0d11a0 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_debug.22 + 0x3c0d11d5 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_debug.15 + 0x3c0d1200 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_debug.48 + 0x3c0d1218 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.47 + 0x3c0d1262 0x52 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.43 + 0x3c0d12b4 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.42 + 0x3c0d12f0 0x4e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.41 + 0x3c0d133e 0x5b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.40 + 0x3c0d1399 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.39 + 0x3c0d13b7 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.38 + 0x3c0d13dd 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.31 + 0x3c0d13fd 0x2e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.25 + 0x3c0d142b 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.23 + 0x3c0d145d 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.22 + 0x3c0d148f 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.19 + 0x3c0d14a5 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.42 + 0x3c0d14b7 0x56 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.41 + 0x3c0d150d 0x58 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.40 + 0x3c0d1565 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.39 + 0x3c0d158b 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.38 + 0x3c0d15b6 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.37 + 0x3c0d15c2 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.36 + 0x3c0d15e1 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.35 + 0x3c0d1604 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.34 + 0x3c0d164a 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.33 + 0x3c0d1689 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.32 + 0x3c0d16c9 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.31 + 0x3c0d1710 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.26 + 0x3c0d1746 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.25 + 0x3c0d1758 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.24 + 0x3c0d176a 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.23 + 0x3c0d177c 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.22 + 0x3c0d178e 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.21 + 0x3c0d17a0 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.20 + 0x3c0d17b9 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.19 + 0x3c0d17cb 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.18 + 0x3c0d17dc 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.17 + 0x3c0d17ec 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.16 + 0x3c0d17fe 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.15 + 0x3c0d1817 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.14 + 0x3c0d1829 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.13 + 0x3c0d183a 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.12 + 0x3c0d184c 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.11 + 0x3c0d185d 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.10 + 0x3c0d1872 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.9 + 0x3c0d1884 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.6 + 0x3c0d18ba 0xb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.5 + 0x3c0d18c5 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.4 + 0x3c0d1900 0x49 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.79 + 0x3c0d1949 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.60 + 0x3c0d1968 0x39 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.26 + 0x3c0d19a1 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.25 + 0x3c0d19c6 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.23 + 0x3c0d19fe 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.21 + 0x3c0d1a22 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.20 + 0x3c0d1a5e 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.19 + 0x3c0d1a99 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.18 + 0x3c0d1ab4 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.17 + 0x3c0d1ade 0x34 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.16 + 0x3c0d1b12 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.15 + 0x3c0d1b59 0x47 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_debug.10 + 0x3c0d1ba0 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.7 + 0x3c0d1bb2 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.6 + 0x3c0d1bd5 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.5 + 0x3c0d1c17 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.4 + 0x3c0d1c3a 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.3 + 0x3c0d1c5d 0x4c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.145 + 0x3c0d1ca9 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.144 + 0x3c0d1cd9 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.143 + 0x3c0d1d14 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.142 + 0x3c0d1d44 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.141 + 0x3c0d1d7c 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.117 + 0x3c0d1d9d 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.72 + 0x3c0d1dc9 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.71 + 0x3c0d1ddf 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.70 + 0x3c0d1dfa 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.69 + 0x3c0d1e0d 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.38 + 0x3c0d1e35 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.37 + 0x3c0d1e4e 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.25 + 0x3c0d1e67 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.24 + 0x3c0d1e80 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.23 + 0x3c0d1e98 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.22 + 0x3c0d1eb2 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.19 + 0x3c0d1eca 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.5 + 0x3c0d1ed6 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.4 + 0x3c0d1ee5 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.3 + 0x3c0d1ef5 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.2 + 0x3c0d1f03 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.111 + 0x3c0d1f12 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.110 + 0x3c0d1f2a 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.109 + 0x3c0d1f43 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.105 + 0x3c0d1f5c 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.103 + 0x3c0d1f82 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.101 + 0x3c0d1fb8 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.100 + 0x3c0d1fde 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.99 + 0x3c0d2003 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.98 + 0x3c0d2021 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.95 + 0x3c0d2046 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.86 + 0x3c0d205b 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.85 + 0x3c0d2087 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.84 + 0x3c0d20b3 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.83 + 0x3c0d20de 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.82 + 0x3c0d20f6 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.81 + 0x3c0d210e 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.78 + 0x3c0d2126 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.77 + 0x3c0d214d 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.76 + 0x3c0d2166 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.74 + 0x3c0d217e 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.73 + 0x3c0d218d 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.72 + 0x3c0d21ca 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.71 + 0x3c0d21fc 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.70 + 0x3c0d220a 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.69 + 0x3c0d221a 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.67 + 0x3c0d222f 0x3d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.66 + 0x3c0d226c 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.65 + 0x3c0d22ae 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.60 + 0x3c0d22cd 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.59 + 0x3c0d22e3 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.58 + 0x3c0d230e 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.57 + 0x3c0d2324 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.53 + 0x3c0d2359 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.52 + 0x3c0d2372 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.51 + 0x3c0d238a 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.50 + 0x3c0d23c0 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.48 + 0x3c0d23db 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.46 + 0x3c0d2419 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.44 + 0x3c0d242f 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.43 + 0x3c0d244c 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.42 + 0x3c0d245f 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.40 + 0x3c0d2477 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.39 + 0x3c0d248f 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.38 + 0x3c0d24bb 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.37 + 0x3c0d24dc 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.36 + 0x3c0d24fd 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.35 + 0x3c0d2513 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.34 + 0x3c0d252a 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.33 + 0x3c0d2538 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.32 + 0x3c0d2542 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.31 + 0x3c0d254f 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.30 + 0x3c0d2560 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.29 + 0x3c0d2570 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.28 + 0x3c0d2588 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.27 + 0x3c0d25ac 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.16 + 0x3c0d25c4 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.15 + 0x3c0d25e2 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.14 + 0x3c0d2605 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.11 + 0x3c0d2625 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.10 + 0x3c0d265b 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.9 + 0x3c0d2685 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.8 + 0x3c0d26a4 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.7 + 0x3c0d26ca 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.6 + 0x3c0d26ef 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.5 + 0x3c0d270d 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.4 + 0x3c0d2723 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.3 + 0x3c0d2733 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.103 + 0x3c0d274b 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.102 + 0x3c0d2763 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.100 + 0x3c0d277b 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.90 + 0x3c0d2794 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.89 + 0x3c0d27ab 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.88 + 0x3c0d27d5 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.87 + 0x3c0d27ee 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.86 + 0x3c0d281b 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.85 + 0x3c0d2840 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.84 + 0x3c0d2859 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.83 + 0x3c0d287e 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.82 + 0x3c0d2894 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.81 + 0x3c0d28b4 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.80 + 0x3c0d28ea 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.79 + 0x3c0d292a 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.78 + 0x3c0d2950 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.77 + 0x3c0d2967 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.75 + 0x3c0d29a6 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.68 + 0x3c0d29d9 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.67 + 0x3c0d29fc 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.66 + 0x3c0d2a3a 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.65 + 0x3c0d2a5d 0x37 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.64 + 0x3c0d2a94 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.63 + 0x3c0d2aa3 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.51 + 0x3c0d2abf 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.50 + 0x3c0d2ad5 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.48 + 0x3c0d2aee 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.47 + 0x3c0d2b06 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.46 + 0x3c0d2b2b 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.45 + 0x3c0d2b50 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.44 + 0x3c0d2b66 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.43 + 0x3c0d2b7c 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.42 + 0x3c0d2b92 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.41 + 0x3c0d2bb3 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.40 + 0x3c0d2bef 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.39 + 0x3c0d2c07 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.38 + 0x3c0d2c1f 0x2f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.36 + 0x3c0d2c4e 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.35 + 0x3c0d2c64 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.34 + 0x3c0d2c7a 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.33 + 0x3c0d2c95 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.32 + 0x3c0d2cad 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.31 + 0x3c0d2cc5 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.30 + 0x3c0d2cdd 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.29 + 0x3c0d2cf9 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.28 + 0x3c0d2d0f 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.27 + 0x3c0d2d23 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.26 + 0x3c0d2d3e 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.25 + 0x3c0d2d65 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.24 + 0x3c0d2d85 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.23 + 0x3c0d2dae 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.22 + 0x3c0d2dc8 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.21 + 0x3c0d2de3 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.20 + 0x3c0d2dfb 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.19 + 0x3c0d2e13 0xa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.18 + 0x3c0d2e1d 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.17 + 0x3c0d2e2e 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.16 + 0x3c0d2e46 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.15 + 0x3c0d2e73 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.14 + 0x3c0d2e8b 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.13 + 0x3c0d2ea3 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.12 + 0x3c0d2ebb 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.11 + 0x3c0d2ed3 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.10 + 0x3c0d2eeb 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.9 + 0x3c0d2f0f 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.8 + 0x3c0d2f27 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.7 + 0x3c0d2f53 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.6 + 0x3c0d2f6b 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.5 + 0x3c0d2f83 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.4 + 0x3c0d2f9b 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.3 + 0x3c0d2fb0 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.2 + 0x3c0d2fcf 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .rodata_wlog_debug.119 + 0x3c0d2ff2 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.118 + 0x3c0d300f 0x1b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.117 + 0x3c0d302a 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.116 + 0x3c0d305a 0x29 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.115 + 0x3c0d3083 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.107 + 0x3c0d30b0 0x23 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.105 + 0x3c0d30d3 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.104 + 0x3c0d30f1 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.103 + 0x3c0d3109 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.102 + 0x3c0d313f 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.101 + 0x3c0d316b 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.100 + 0x3c0d3191 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.99 + 0x3c0d319f 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.98 + 0x3c0d31ae 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.97 + 0x3c0d31bd 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.96 + 0x3c0d31cc 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.91 + 0x3c0d31f6 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.90 + 0x3c0d3231 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.89 + 0x3c0d327b 0x6d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.88 + 0x3c0d32e8 0x71 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.87 + 0x3c0d3359 0x38 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.86 + 0x3c0d3391 0x6d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.85 + 0x3c0d33fe 0x6d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.82 + 0x3c0d346b 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.81 + 0x3c0d347e 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.80 + 0x3c0d348a 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.79 + 0x3c0d34b2 0x40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.78 + 0x3c0d34f2 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.77 + 0x3c0d351e 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.76 + 0x3c0d354a 0x36 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.75 + 0x3c0d3580 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.67 + 0x3c0d3590 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.65 + 0x3c0d35a5 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.62 + 0x3c0d35b8 0x42 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.61 + 0x3c0d35fa 0x4a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.60 + 0x3c0d3644 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.49 + 0x3c0d367f 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.47 + 0x3c0d3699 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.46 + 0x3c0d36a7 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.31 + 0x3c0d36b5 0x2a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.27 + 0x3c0d36df 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.26 + 0x3c0d36f8 0xc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.25 + 0x3c0d3704 0x32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.22 + 0x3c0d3736 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.21 + 0x3c0d375e 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.20 + 0x3c0d3782 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.14 + 0x3c0d37ad 0x35 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.10 + 0x3c0d37e2 0x54 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.9 + 0x3c0d3836 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.8 + 0x3c0d384f 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.3 + 0x3c0d3869 0x46 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.66 + 0x3c0d38af 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_debug.35 + 0x3c0d38c0 0x1f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_debug.6 + 0x3c0d38df 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.5 + 0x3c0d38f8 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.4 + 0x3c0d3911 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.3 + 0x3c0d392a 0x19 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.58 + 0x3c0d3943 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + .rodata_wlog_verbose.9 + 0x3c0d3950 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_verbose.24 + 0x3c0d398b 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_verbose.11 + 0x3c0d39ca 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.10 + 0x3c0d39e0 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.9 + 0x3c0d39f7 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.6 + 0x3c0d3a0e 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.5 + 0x3c0d3a3b 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.4 + 0x3c0d3a4b 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.3 + 0x3c0d3a5b 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.2 + 0x3c0d3a72 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.63 + 0x3c0d3a92 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_verbose.62 + 0x3c0d3ab2 0xf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_verbose.75 + 0x3c0d3ac1 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.64 + 0x3c0d3add 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.62 + 0x3c0d3afe 0x12 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.61 + 0x3c0d3b10 0x33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.41 + 0x3c0d3b43 0x2b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.59 + 0x3c0d3b6e 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.58 + 0x3c0d3b83 0x24 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.57 + 0x3c0d3ba7 0x3e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.54 + 0x3c0d3be5 0x17 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.53 + 0x3c0d3bfc 0x14 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.52 + 0x3c0d3c10 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.114 + 0x3c0d3c1e 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.113 + 0x3c0d3c31 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.112 + 0x3c0d3c44 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.111 + 0x3c0d3c57 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.110 + 0x3c0d3c6a 0x18 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.109 + 0x3c0d3c82 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.108 + 0x3c0d3c95 0x1e C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.53 + 0x3c0d3cb3 0xd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.52 + 0x3c0d3cc0 0x2d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.50 + 0x3c0d3ced 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.45 + 0x3c0d3d0a 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.44 + 0x3c0d3d2f 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.43 + 0x3c0d3d57 0x28 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.42 + 0x3c0d3d7f 0x30 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.41 + 0x3c0d3daf 0x22 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.40 + 0x3c0d3dd1 0x21 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.39 + 0x3c0d3df2 0x1c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.38 + 0x3c0d3e0e 0x25 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.37 + 0x3c0d3e33 0x20 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.36 + 0x3c0d3e53 0x2c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.35 + 0x3c0d3e7f 0x10 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.34 + 0x3c0d3e8f 0x1d C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.33 + 0x3c0d3eac 0x16 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.32 + 0x3c0d3ec2 0xe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.30 + 0x3c0d3ed0 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.29 + 0x3c0d3eea 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.28 + 0x3c0d3f04 0x45 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.24 + 0x3c0d3f49 0x15 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.23 + 0x3c0d3f5e 0x11 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.18 + 0x3c0d3f6f 0x13 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.17 + 0x3c0d3f82 0x1a C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.15 + 0x3c0d3f9c 0x3b C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.2 + 0x3c0d3fd7 0x3f C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + +.ext_ram.dummy 0x3c000020 0xdffe0 + 0x3c000020 . = ORIGIN (extern_ram_seg) + 0x3c0d11a0 . = (. + (_rodata_reserved_end - _flash_rodata_dummy_start)) + *fill* 0x3c000020 0xd1180 + 0x3c0e0000 . = ALIGN (0x10000) + *fill* 0x3c0d11a0 0xee60 + +.iram0.text_end + 0x4038a84b 0xb5 + 0x4038a85b . = (. + 0x10) + *fill* 0x4038a84b 0x10 + 0x4038a900 . = ALIGN (0x100) + *fill* 0x4038a85b 0xa5 + *(.iram_end_test) + 0x4038a900 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x4038a900 0x0 + 0x4038a900 . = ALIGN (0x4) + 0x4038a900 _iram_data_start = ABSOLUTE (.) + *(.iram.data .iram.data.*) + 0x4038a900 _coredump_iram_start = ABSOLUTE (.) + *(.iram2.coredump .iram2.coredump.*) + 0x4038a900 _coredump_iram_end = ABSOLUTE (.) + 0x4038a900 . = ALIGN (0x4) + 0x4038a900 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x4038a900 0x0 + 0x4038a900 . = ALIGN (0x4) + 0x4038a900 _iram_bss_start = ABSOLUTE (.) + *(.iram.bss .iram.bss.*) + 0x4038a900 _iram_bss_end = ABSOLUTE (.) + 0x4038a900 . = ALIGN (0x4) + 0x4038a900 _iram_end = ABSOLUTE (.) + +.dram0.heap_start + 0x3fca3788 0x0 + 0x3fca3788 . = ALIGN (0x8) + 0x3fca3788 _heap_low_start = ABSOLUTE (.) + +.noload 0x00000000 0x0 + 0x00000000 _noload_keep_in_elf_start = ABSOLUTE (.) + *(.noload_keep_in_elf .noload_keep_in_elf.*) + 0x00000000 _noload_keep_in_elf_end = ABSOLUTE (.) + +.debug + *(.debug) + +.line + *(.line) + +.debug_srcinfo + *(.debug_srcinfo) + +.debug_sfnames + *(.debug_sfnames) + +.debug_aranges 0x00000000 0xf838 + *(.debug_aranges) + .debug_aranges + 0x00000000 0x38 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_aranges + 0x00000038 0x40 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_aranges + 0x00000078 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x00000118 0xc8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x000001e0 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x000001f8 0x48 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000240 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_aranges + 0x00000270 0x50 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_aranges + 0x000002c0 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_aranges + 0x00000378 0x68 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_aranges + 0x000003e0 0x40 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_aranges + 0x00000420 0x20 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_aranges + 0x00000440 0x48 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_aranges + 0x00000488 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_aranges + 0x000004b0 0x40 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_aranges + 0x000004f0 0x30 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_aranges + 0x00000520 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_aranges + 0x00000550 0x98 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_aranges + 0x000005e8 0x50 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_aranges + 0x00000638 0x58 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_aranges + 0x00000690 0x60 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_aranges + 0x000006f0 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_aranges + 0x00000718 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_aranges + 0x00000738 0x78 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_aranges + 0x000007b0 0x50 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_aranges + 0x00000800 0x20 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_aranges + 0x00000820 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_aranges + 0x00000868 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_aranges + 0x000008d0 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x000008f8 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_aranges + 0x00000928 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_aranges + 0x00000970 0x50 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x000009c0 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000a18 0x80 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_aranges + 0x00000a98 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_aranges + 0x00000ad8 0x28 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_aranges + 0x00000b00 0x28 esp-idf/log/liblog.a(util.c.obj) + .debug_aranges + 0x00000b28 0x28 esp-idf/log/liblog.a(log.c.obj) + .debug_aranges + 0x00000b50 0x30 esp-idf/log/liblog.a(log_write.c.obj) + .debug_aranges + 0x00000b80 0x28 esp-idf/log/liblog.a(log_level.c.obj) + .debug_aranges + 0x00000ba8 0x40 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_aranges + 0x00000be8 0x40 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_aranges + 0x00000c28 0x50 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_aranges + 0x00000c78 0x30 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_aranges + 0x00000ca8 0x130 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x00000dd8 0x58 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x00000e30 0xf8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x00000f28 0xd8 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_aranges + 0x00001000 0x40 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_aranges + 0x00001040 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_aranges + 0x00001058 0x50 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_aranges + 0x000010a8 0x28 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_aranges + 0x000010d0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_aranges + 0x00001130 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_aranges + 0x00001168 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_aranges + 0x000011d0 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_aranges + 0x000012d0 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_aranges + 0x00001388 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_aranges + 0x000013e0 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_aranges + 0x00001428 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_aranges + 0x00001488 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_aranges + 0x000014c0 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x00001600 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x00001660 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_aranges + 0x000016a8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x00001708 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_aranges + 0x00001728 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_aranges + 0x00001798 0x280 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_aranges + 0x00001a18 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_aranges + 0x00001a50 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .debug_aranges + 0x00001a88 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_aranges + 0x00001aa8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x00001b10 0x250 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_aranges + 0x00001d60 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_aranges + 0x00001da8 0x38 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_aranges + 0x00001de0 0x148 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x00001f28 0x2c8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x000021f0 0xa8 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x00002298 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x000022b8 0x50 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_aranges + 0x00002308 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_aranges + 0x00002330 0x38 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_aranges + 0x00002368 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x000023a8 0x30 esp-idf/newlib/libnewlib.a(init.c.obj) + .debug_aranges + 0x000023d8 0x20 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_aranges + 0x000023f8 0x38 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_aranges + 0x00002430 0xa0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_aranges + 0x000024d0 0xe0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_aranges + 0x000025b0 0x38 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_aranges + 0x000025e8 0x28 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_aranges + 0x00002610 0x80 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_aranges + 0x00002690 0x40 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_aranges + 0x000026d0 0x50 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .debug_aranges + 0x00002720 0x48 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_aranges + 0x00002768 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_aranges + 0x00002790 0x40 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_aranges + 0x000027d0 0x20 esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_aranges + 0x000027f0 0x1a0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_aranges + 0x00002990 0x88 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_aranges + 0x00002a18 0x60 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_aranges + 0x00002a78 0x68 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_aranges + 0x00002ae0 0x58 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_aranges + 0x00002b38 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x00002b88 0x28 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_aranges + 0x00002bb0 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_aranges + 0x00002be0 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_aranges + 0x00002c10 0x38 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_aranges + 0x00002c48 0x68 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_aranges + 0x00002cb0 0x130 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_aranges + 0x00002de0 0x268 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_aranges + 0x00003048 0x60 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_aranges + 0x000030a8 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_aranges + 0x000030e0 0x118 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_aranges + 0x000031f8 0x70 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_aranges + 0x00003268 0xa8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_aranges + 0x00003310 0x240 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_aranges + 0x00003550 0xa0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_aranges + 0x000035f0 0x58 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_aranges + 0x00003648 0x20 esp-idf/main/libmain.a(main.c.obj) + .debug_aranges + 0x00003668 0x28 esp-idf/main/libmain.a(wifi_init.c.obj) + .debug_aranges + 0x00003690 0x20 esp-idf/main/libmain.a(fs_init.c.obj) + .debug_aranges + 0x000036b0 0x50 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .debug_aranges + 0x00003700 0x148 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_aranges + 0x00003848 0x48 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_aranges + 0x00003890 0x178 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_aranges + 0x00003a08 0x148 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_aranges + 0x00003b50 0x70 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_aranges + 0x00003bc0 0x48 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_aranges + 0x00003c08 0x190 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .debug_aranges + 0x00003d98 0xe0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .debug_aranges + 0x00003e78 0x90 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .debug_aranges + 0x00003f08 0x30 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .debug_aranges + 0x00003f38 0x20 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .debug_aranges + 0x00003f58 0x38 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .debug_aranges + 0x00003f90 0x20 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .debug_aranges + 0x00003fb0 0x3a0 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_aranges + 0x00004350 0x20 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_aranges + 0x00004370 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_aranges + 0x00004390 0x38 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_aranges + 0x000043c8 0x78 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_aranges + 0x00004440 0x200 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_aranges + 0x00004640 0x138 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x00004778 0x90 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_aranges + 0x00004808 0x78 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_aranges + 0x00004880 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x000048d8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x000048f8 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x00004940 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x000049f0 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_aranges + 0x00004a68 0xc0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x00004b28 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x00004b48 0xc8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x00004c10 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x00004c58 0xd8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_aranges + 0x00004d30 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_aranges + 0x00004d48 0x48 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_aranges + 0x00004d90 0x20 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_aranges + 0x00004db0 0x58 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_aranges + 0x00004e08 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_aranges + 0x00004e38 0x98 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x00004ed0 0x78 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x00004f48 0x58 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x00004fa0 0x110 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x000050b0 0x70 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x00005120 0xc8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x000051e8 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x00005228 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .debug_aranges + 0x00005288 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_aranges + 0x000052c0 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x000052e0 0x128 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x00005408 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x00005440 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x00005470 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x000054b8 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x00005520 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_aranges + 0x00005548 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_aranges + 0x000055e0 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_aranges + 0x00005608 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x00005680 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_aranges + 0x000056b0 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_aranges + 0x00005708 0xe0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_aranges + 0x000057e8 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_aranges + 0x00005838 0x20 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_aranges + 0x00005858 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_aranges + 0x00005878 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_aranges + 0x00005898 0x80 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x00005918 0x58 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_aranges + 0x00005970 0xc0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x00005a30 0x50 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x00005a80 0x58 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_aranges + 0x00005ad8 0x90 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_aranges + 0x00005b68 0xe8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_aranges + 0x00005c50 0x28 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_aranges + 0x00005c78 0x70 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_aranges + 0x00005ce8 0x18 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_aranges + 0x00005d00 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_aranges + 0x00005d18 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_aranges + 0x00005d30 0x58 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_aranges + 0x00005d88 0x40 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_aranges + 0x00005dc8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_aranges + 0x00005de8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_aranges + 0x00005e10 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_aranges + 0x00005e90 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_aranges + 0x00005ec0 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_aranges + 0x00005f08 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_aranges + 0x00005f30 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_aranges + 0x00006020 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_aranges + 0x00006080 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_aranges + 0x000060a8 0x78 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_aranges + 0x00006120 0x130 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_aranges + 0x00006250 0x180 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_aranges + 0x000063d0 0x58 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_aranges + 0x00006428 0xe0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_aranges + 0x00006508 0x330 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_aranges + 0x00006838 0x120 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_aranges + 0x00006958 0x1a0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_aranges + 0x00006af8 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_aranges + 0x00006bc0 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_aranges + 0x00006c38 0xc0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_aranges + 0x00006cf8 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_aranges + 0x00006d30 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_aranges + 0x00006d68 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_aranges + 0x00006dc8 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_aranges + 0x00006e48 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_aranges + 0x00006e70 0x40 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_aranges + 0x00006eb0 0x250 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_aranges + 0x00007100 0xa8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_aranges + 0x000071a8 0x50 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_aranges + 0x000071f8 0x20 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_aranges + 0x00007218 0x38 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_aranges + 0x00007250 0x40 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_aranges + 0x00007290 0x58 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_aranges + 0x000072e8 0x150 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_aranges + 0x00007438 0x148 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_aranges + 0x00007580 0x88 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_aranges + 0x00007608 0x1d0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_aranges + 0x000077d8 0x70 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_aranges + 0x00007848 0xf0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_aranges + 0x00007938 0x70 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_aranges + 0x000079a8 0xa0 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_aranges + 0x00007a48 0x150 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_aranges + 0x00007b98 0xb0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_aranges + 0x00007c48 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_aranges + 0x00007c78 0xb0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_aranges + 0x00007d28 0x68 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_aranges + 0x00007d90 0x48 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_aranges + 0x00007dd8 0x20 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_aranges + 0x00007df8 0x60 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_aranges + 0x00007e58 0x58 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_aranges + 0x00007eb0 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_aranges + 0x00007ee0 0x20 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_aranges + 0x00007f00 0x88 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_aranges + 0x00007f88 0x110 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_aranges + 0x00008098 0x28 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_aranges + 0x000080c0 0x28 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_aranges + 0x000080e8 0x40 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_aranges + 0x00008128 0x28 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_aranges + 0x00008150 0xf8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_aranges + 0x00008248 0x60 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .debug_aranges + 0x000082a8 0x50 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_aranges + 0x000082f8 0x120 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_aranges + 0x00008418 0x140 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_aranges + 0x00008558 0x20 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_aranges + 0x00008578 0x60 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_aranges + 0x000085d8 0xd0 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_aranges + 0x000086a8 0x70 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_aranges + 0x00008718 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_aranges + 0x00008768 0x450 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_aranges + 0x00008bb8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_aranges + 0x00008bd8 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_aranges + 0x00008d28 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .debug_aranges + 0x00008d60 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_aranges + 0x00008da0 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_aranges + 0x00008df8 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_aranges + 0x00008e88 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_aranges + 0x00008f70 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_aranges + 0x00008fd0 0xc0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_aranges + 0x00009090 0xd8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_aranges + 0x00009168 0x70 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_aranges + 0x000091d8 0x250 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_aranges + 0x00009428 0x98 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_aranges + 0x000094c0 0x158 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_aranges + 0x00009618 0x38 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .debug_aranges + 0x00009650 0xd8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_aranges + 0x00009728 0x108 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .debug_aranges + 0x00009830 0x150 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .debug_aranges + 0x00009980 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .debug_aranges + 0x000099b0 0x128 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .debug_aranges + 0x00009ad8 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_aranges + 0x00009b40 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_aranges + 0x00009d08 0x4d8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_aranges + 0x0000a1e0 0x110 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_aranges + 0x0000a2f0 0x138 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_aranges + 0x0000a428 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_aranges + 0x0000a448 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_aranges + 0x0000a4c8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_aranges + 0x0000a528 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_aranges + 0x0000a6e8 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_aranges + 0x0000a830 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_aranges + 0x0000a940 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_aranges + 0x0000aa48 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_aranges + 0x0000aa90 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_aranges + 0x0000ab10 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_aranges + 0x0000abc8 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_aranges + 0x0000aca8 0x2b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_aranges + 0x0000af60 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_aranges + 0x0000aff8 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_aranges + 0x0000b088 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_aranges + 0x0000b150 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_aranges + 0x0000b178 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_aranges + 0x0000b280 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_aranges + 0x0000b2b8 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_aranges + 0x0000b3a8 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_aranges + 0x0000b450 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_aranges + 0x0000b490 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_aranges + 0x0000b4b8 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_aranges + 0x0000b680 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_aranges + 0x0000b6c0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_aranges + 0x0000b6e8 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_aranges + 0x0000b720 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_aranges + 0x0000b758 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_aranges + 0x0000b778 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_aranges + 0x0000b7a0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_aranges + 0x0000b7f0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_aranges + 0x0000b828 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_aranges + 0x0000b8a8 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_aranges + 0x0000b910 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .debug_aranges + 0x0000b938 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .debug_aranges + 0x0000b9a0 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_aranges + 0x0000ba20 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_aranges + 0x0000ba80 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_aranges + 0x0000bae8 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_aranges + 0x0000bb50 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_aranges + 0x0000bbc8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_aranges + 0x0000bc60 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_aranges + 0x0000bcb0 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_aranges + 0x0000bd38 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_aranges + 0x0000bde0 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_aranges + 0x0000bea0 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_aranges + 0x0000bf50 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_aranges + 0x0000bff0 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_aranges + 0x0000c088 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_aranges + 0x0000c120 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_aranges + 0x0000c250 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_aranges + 0x0000c2a8 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_aranges + 0x0000c2f8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_aranges + 0x0000c338 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_aranges + 0x0000c358 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_aranges + 0x0000c3b0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_aranges + 0x0000c3f0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .debug_aranges + 0x0000c418 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_aranges + 0x0000c458 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_aranges + 0x0000c480 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_aranges + 0x0000c658 0x120 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_aranges + 0x0000c778 0x20 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_aranges + 0x0000c798 0xa8 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_aranges + 0x0000c840 0x58 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_aranges + 0x0000c898 0x80 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_aranges + 0x0000c918 0x70 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_aranges + 0x0000c988 0x20 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_aranges + 0x0000c9a8 0x18 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_aranges + 0x0000c9c0 0x18 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_aranges + 0x0000c9d8 0x50 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .debug_aranges + 0x0000ca28 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_aranges + 0x0000cb18 0x58 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_aranges + 0x0000cb70 0xe8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_aranges + 0x0000cc58 0xc8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_aranges + 0x0000cd20 0x18 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .debug_aranges + 0x0000cd38 0xb0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_aranges + 0x0000cde8 0x110 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_aranges + 0x0000cef8 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_aranges + 0x0000cf58 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_aranges + 0x0000cf70 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_aranges + 0x0000cf88 0x50 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_aranges + 0x0000cfd8 0x28 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_aranges + 0x0000d000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_aranges + 0x0000d0d0 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_aranges + 0x0000d170 0x220 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_aranges + 0x0000d390 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_aranges + 0x0000d448 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_aranges + 0x0000d478 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_aranges + 0x0000d4e8 0x200 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_aranges + 0x0000d6e8 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_aranges + 0x0000d778 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_aranges + 0x0000d7f8 0x238 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_aranges + 0x0000da30 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_aranges + 0x0000da90 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_aranges + 0x0000db10 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_aranges + 0x0000db80 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_aranges + 0x0000dc18 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_aranges + 0x0000dc50 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_aranges + 0x0000de48 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_aranges + 0x0000dea0 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_aranges + 0x0000df90 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_aranges + 0x0000dfb0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_aranges + 0x0000dfe0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_aranges + 0x0000e008 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_aranges + 0x0000e028 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_aranges + 0x0000e0c0 0x238 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_aranges + 0x0000e2f8 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_aranges + 0x0000e348 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_aranges + 0x0000e3c0 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_aranges + 0x0000e460 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_aranges + 0x0000e608 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_aranges + 0x0000e680 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_aranges + 0x0000e760 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_aranges + 0x0000e780 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_aranges + 0x0000e7a0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_aranges + 0x0000e7c0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_aranges + 0x0000e810 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_aranges + 0x0000e888 0xd0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_aranges + 0x0000e958 0x58 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_aranges + 0x0000e9b0 0x18 esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + .debug_aranges + 0x0000e9c8 0x38 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .debug_aranges + 0x0000ea00 0xa0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_aranges + 0x0000eaa0 0xa8 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_aranges + 0x0000eb48 0x70 esp-idf/hal/libhal.a(ds_hal.c.obj) + .debug_aranges + 0x0000ebb8 0x20 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_aranges + 0x0000ebd8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .debug_aranges + 0x0000ebf8 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .debug_aranges + 0x0000ec20 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .debug_aranges + 0x0000ec40 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .debug_aranges + 0x0000ec60 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .debug_aranges + 0x0000eca0 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .debug_aranges + 0x0000ece0 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .debug_aranges + 0x0000ed38 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .debug_aranges + 0x0000ed58 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_aranges + 0x0000ed70 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .debug_aranges + 0x0000ed90 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_aranges + 0x0000edd8 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .debug_aranges + 0x0000ee18 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .debug_aranges + 0x0000ee48 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .debug_aranges + 0x0000eea0 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .debug_aranges + 0x0000eec0 0x78 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .debug_aranges + 0x0000ef38 0xe8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_aranges + 0x0000f020 0x30 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_aranges + 0x0000f050 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + .debug_aranges + 0x0000f068 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .debug_aranges + 0x0000f088 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .debug_aranges + 0x0000f0a8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .debug_aranges + 0x0000f0c8 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + .debug_aranges + 0x0000f0e0 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .debug_aranges + 0x0000f100 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .debug_aranges + 0x0000f120 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .debug_aranges + 0x0000f140 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .debug_aranges + 0x0000f160 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .debug_aranges + 0x0000f180 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .debug_aranges + 0x0000f1a0 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_aranges + 0x0000f1c0 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .debug_aranges + 0x0000f1e0 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .debug_aranges + 0x0000f200 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .debug_aranges + 0x0000f220 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .debug_aranges + 0x0000f240 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .debug_aranges + 0x0000f260 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .debug_aranges + 0x0000f280 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .debug_aranges + 0x0000f2a0 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .debug_aranges + 0x0000f2c0 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .debug_aranges + 0x0000f2e0 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .debug_aranges + 0x0000f300 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_aranges + 0x0000f320 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .debug_aranges + 0x0000f340 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .debug_aranges + 0x0000f360 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .debug_aranges + 0x0000f380 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .debug_aranges + 0x0000f3a0 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_aranges + 0x0000f3c0 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .debug_aranges + 0x0000f3e0 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .debug_aranges + 0x0000f400 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .debug_aranges + 0x0000f420 0x18 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_aranges + 0x0000f438 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .debug_aranges + 0x0000f458 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .debug_aranges + 0x0000f478 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .debug_aranges + 0x0000f498 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_aranges + 0x0000f4b8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .debug_aranges + 0x0000f4d8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .debug_aranges + 0x0000f4f8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .debug_aranges + 0x0000f518 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .debug_aranges + 0x0000f538 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .debug_aranges + 0x0000f558 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .debug_aranges + 0x0000f578 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .debug_aranges + 0x0000f598 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_aranges + 0x0000f5b8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .debug_aranges + 0x0000f5d8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_aranges + 0x0000f5f8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_aranges + 0x0000f618 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_aranges + 0x0000f638 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .debug_aranges + 0x0000f658 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_aranges + 0x0000f678 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_aranges + 0x0000f698 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .debug_aranges + 0x0000f6b8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .debug_aranges + 0x0000f6d8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .debug_aranges + 0x0000f6f8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .debug_aranges + 0x0000f718 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .debug_aranges + 0x0000f738 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_aranges + 0x0000f758 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .debug_aranges + 0x0000f778 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .debug_aranges + 0x0000f798 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .debug_aranges + 0x0000f7b8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_aranges + 0x0000f7d8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .debug_aranges + 0x0000f7f8 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_aranges + 0x0000f818 0x20 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_pubnames + *(.debug_pubnames) + +.debug_info 0x00000000 0x3898df + *(.debug_info .gnu.linkonce.wi.*) + .debug_info 0x00000000 0x7c0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_info 0x000007c0 0x5b8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_info 0x00000d78 0x1352 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x000020ca 0x15d3 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0000369d 0x2e4c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x000064e9 0xae9 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00006fd2 0x1aa esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_info 0x0000717c 0x5166 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_info 0x0000c2e2 0xe80 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_info 0x0000d162 0x3453 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_info 0x000105b5 0x1b9 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_info 0x0001076e 0x24 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_info 0x00010792 0x5a28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_info 0x000161ba 0x4e09 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_info 0x0001afc3 0x2aaa esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_info 0x0001da6d 0x285 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_info 0x0001dcf2 0xa16e esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_info 0x00027e60 0x7f02 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_info 0x0002fd62 0x5ff esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_info 0x00030361 0xcb2 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_info 0x00031013 0xd0f esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_info 0x00031d22 0x3d5 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_info 0x000320f7 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_info 0x0003211a 0xbea esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_info 0x00032d04 0x1179 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_info 0x00033e7d 0x23 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_info 0x00033ea0 0xd9e esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_info 0x00034c3e 0x8b5 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_info 0x000354f3 0x425 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x00035918 0x238 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_info 0x00035b50 0x537 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_info 0x00036087 0x3a7f esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x00039b06 0x3e04 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x0003d90a 0x198c esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_info 0x0003f296 0x1c9d esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_info 0x00040f33 0x287 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_info 0x000411ba 0x11d esp-idf/log/liblog.a(util.c.obj) + .debug_info 0x000412d7 0x3ac esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x00041683 0x35e esp-idf/log/liblog.a(log_write.c.obj) + .debug_info 0x000419e1 0x167 esp-idf/log/liblog.a(log_level.c.obj) + .debug_info 0x00041b48 0x456 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_info 0x00041f9e 0x459 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_info 0x000423f7 0x49c esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_info 0x00042893 0x238 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_info 0x00042acb 0x2178 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x00044c43 0x1091 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x00045cd4 0x1907 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x000475db 0x869a esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_info 0x0004fc75 0x9fc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_info 0x00050671 0x331 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_info 0x000509a2 0xee0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_info 0x00051882 0x147 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_info 0x000519c9 0x7e3 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_info 0x000521ac 0x188 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_info 0x00052334 0xbaf esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_info 0x00052ee3 0x3573 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_info 0x00056456 0x12b0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_info 0x00057706 0x4551 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_info 0x0005bc57 0x1d20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_info 0x0005d977 0x5f1 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_info 0x0005df68 0x4687 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_info 0x000625ef 0x3bbb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x000661aa 0x4c99 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x0006ae43 0x961 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_info 0x0006b7a4 0x65bd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x00071d61 0x202 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_info 0x00071f63 0x26f0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_info 0x00074653 0x6292 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_info 0x0007a8e5 0x238 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_info 0x0007ab1d 0x576 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .debug_info 0x0007b093 0x23f esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_info 0x0007b2d2 0xf2f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_info 0x0007c201 0xb95e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_info 0x00087b5f 0x6e8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_info 0x00088247 0x8c1 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_info 0x00088b08 0x3529 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x0008c031 0x7e7a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x00093eab 0x242c esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x000962d7 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x000962fb 0x39a esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_info 0x00096695 0xd0b esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_info 0x000973a0 0x6934 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_info 0x0009dcd4 0x2fb esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x0009dfcf 0x18e esp-idf/newlib/libnewlib.a(init.c.obj) + .debug_info 0x0009e15d 0x2f9 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_info 0x0009e456 0x4ef esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_info 0x0009e945 0xe91 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_info 0x0009f7d6 0x111f esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_info 0x000a08f5 0x2e5 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_info 0x000a0bda 0x152 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_info 0x000a0d2c 0x1200 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_info 0x000a1f2c 0xc1c esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_info 0x000a2b48 0xdb7 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .debug_info 0x000a38ff 0x627 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_info 0x000a3f26 0xa3f esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_info 0x000a4965 0x16b4 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_info 0x000a6019 0x255 esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_info 0x000a626e 0x27da esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x000a8a48 0x10f9 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_info 0x000a9b41 0x9d8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x000aa519 0xb5f esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_info 0x000ab078 0x5ec esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_info 0x000ab664 0x1527 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x000acb8b 0x923 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_info 0x000ad4ae 0x16a esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_info 0x000ad618 0x33a esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_info 0x000ad952 0x25b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_info 0x000adbad 0x6f0e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_info 0x000b4abb 0x5226 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_info 0x000b9ce1 0x102ca esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_info 0x000c9fab 0x5a4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_info 0x000ca54f 0xf80 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_info 0x000cb4cf 0x3c18 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_info 0x000cf0e7 0xad7a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_info 0x000d9e61 0x20ac esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_info 0x000dbf0d 0x6f70 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_info 0x000e2e7d 0x1ee5 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_info 0x000e4d62 0xe17 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_info 0x000e5b79 0xc0 esp-idf/main/libmain.a(main.c.obj) + .debug_info 0x000e5c39 0x1691 esp-idf/main/libmain.a(wifi_init.c.obj) + .debug_info 0x000e72ca 0x3a5 esp-idf/main/libmain.a(fs_init.c.obj) + .debug_info 0x000e766f 0x1d67 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .debug_info 0x000e93d6 0x5091 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_info 0x000ee467 0xd65 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_info 0x000ef1cc 0x3cd9 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_info 0x000f2ea5 0x40f6 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_info 0x000f6f9b 0x104b esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_info 0x000f7fe6 0x162e esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_info 0x000f9614 0x6961 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .debug_info 0x000fff75 0x159a esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .debug_info 0x0010150f 0xe3c esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .debug_info 0x0010234b 0x46e esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .debug_info 0x001027b9 0x12f0 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .debug_info 0x00103aa9 0x1d9e esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .debug_info 0x00105847 0x409 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .debug_info 0x00105c50 0x4106 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_info 0x00109d56 0x24 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_info 0x00109d7a 0x3b esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_info 0x00109db5 0x584 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_info 0x0010a339 0x2f esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_info 0x0010a368 0x6d2f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_info 0x00111097 0x3757 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x001147ee 0x20b4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_info 0x001168a2 0x1460 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_info 0x00117d02 0xd62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x00118a64 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x00118b03 0xcfa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x001197fd 0x88f9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x001220f6 0xebb esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_info 0x00122fb1 0x281c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x001257cd 0x739 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x00125f06 0x2209 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x0012810f 0x962 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x00128a71 0x372c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_info 0x0012c19d 0x1c1 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_info 0x0012c35e 0x643 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_info 0x0012c9a1 0x18e esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_info 0x0012cb2f 0x14b2 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_info 0x0012dfe1 0x1dd esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_info 0x0012e1be 0x16fc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x0012f8ba 0x16d5 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x00130f8f 0x5cb esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x0013155a 0x4db8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x00136312 0x71f1 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x0013d503 0x140a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x0013e90d 0x9ae esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x0013f2bb 0x1239 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .debug_info 0x001404f4 0x498 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_info 0x0014098c 0xe19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x001417a5 0x2bf6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x0014439b 0x102e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x001453c9 0x1216 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x001465df 0x115a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x00147739 0x1675 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x00148dae 0xf0a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_info 0x00149cb8 0x1d20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_info 0x0014b9d8 0xf0a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_info 0x0014c8e2 0x5956 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x00152238 0x376 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_info 0x001525ae 0xa89 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_info 0x00153037 0x298c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_info 0x001559c3 0xa5a1 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_info 0x0015ff64 0x23 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_info 0x0015ff87 0x2e3 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_info 0x0016026a 0xe5 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_info 0x0016034f 0x122e esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x0016157d 0x52d3 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_info 0x00166850 0x676c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_info 0x0016cfbc 0x4d8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x0016d494 0xc9a esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_info 0x0016e12e 0x1a26 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_info 0x0016fb54 0x2f4b esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_info 0x00172a9f 0x3eb0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_info 0x0017694f 0x57a4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_info 0x0017c0f3 0x30b esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_info 0x0017c3fe 0xd8 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x0017c4d6 0x1bd esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_info 0x0017c693 0x279 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_info 0x0017c90c 0x537e esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_info 0x00181c8a 0x17b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_info 0x00181e05 0x318 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_info 0x0018211d 0xe71 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_info 0x00182f8e 0x1d8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_info 0x00183166 0x27d6 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_info 0x0018593c 0x9e1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_info 0x0018631d 0x2553 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_info 0x00188870 0x778e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_info 0x0018fffe 0xdd esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_info 0x001900db 0x14a5 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_info 0x00191580 0x263e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_info 0x00193bbe 0x3c76 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x00197834 0x6bf esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_info 0x00197ef3 0x31f3 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_info 0x0019b0e6 0xf122 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_info 0x001aa208 0x983c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_info 0x001b3a44 0xf3b3 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_info 0x001c2df7 0x9032 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_info 0x001cbe29 0x1742 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_info 0x001cd56b 0xb07f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_info 0x001d85ea 0x4d54 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_info 0x001dd33e 0x9ca esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_info 0x001ddd08 0x5abd esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_info 0x001e37c5 0x93b8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_info 0x001ecb7d 0xffe esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_info 0x001edb7b 0x108b esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_info 0x001eec06 0x77d2 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_info 0x001f63d8 0x17cd esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_info 0x001f7ba5 0x4d9 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_info 0x001f807e 0x16f esp-idf/lwip/liblwip.a(init.c.obj) + .debug_info 0x001f81ed 0xb7e esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_info 0x001f8d6b 0x383 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_info 0x001f90ee 0x7e9 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_info 0x001f98d7 0x2cd7 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_info 0x001fc5ae 0x28be esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_info 0x001fee6c 0x1625 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_info 0x00200491 0x3811 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_info 0x00203ca2 0x2cbe esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_info 0x00206960 0x3723 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_info 0x0020a083 0x10ed esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_info 0x0020b170 0x1c88 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_info 0x0020cdf8 0x3bc7 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_info 0x002109bf 0x20e8 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_info 0x00212aa7 0x1077 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_info 0x00213b1e 0x1505 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_info 0x00215023 0x1796 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_info 0x002167b9 0xab0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_info 0x00217269 0xb11 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_info 0x00217d7a 0x1426 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_info 0x002191a0 0x1a2c esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_info 0x0021abcc 0xb2c esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_info 0x0021b6f8 0xb9d esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_info 0x0021c295 0x152e esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_info 0x0021d7c3 0x3213 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_info 0x002209d6 0xbf1 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_info 0x002215c7 0x6d2 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_info 0x00221c99 0xe0b esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_info 0x00222aa4 0xf00 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_info 0x002239a4 0x163a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_info 0x00224fde 0xe85 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .debug_info 0x00225e63 0x16c3 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_info 0x00227526 0x2b88 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_info 0x0022a0ae 0x467a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_info 0x0022e728 0x108 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_info 0x0022e830 0x801 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_info 0x0022f031 0x1fde esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_info 0x0023100f 0xadd esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_info 0x00231aec 0x5be esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_info 0x002320aa 0x783b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_info 0x002398e5 0x6d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_info 0x00239fb9 0x2936 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_info 0x0023c8ef 0x827 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .debug_info 0x0023d116 0x38d esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_info 0x0023d4a3 0x1021 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_info 0x0023e4c4 0x11fc esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_info 0x0023f6c0 0x12e9 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_info 0x002409a9 0xcf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_info 0x002416a1 0x11b2 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_info 0x00242853 0x1f74 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_info 0x002447c7 0xadd esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_info 0x002452a4 0x343c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_info 0x002486e0 0x1e11 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_info 0x0024a4f1 0x4c73 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_info 0x0024f164 0x338 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .debug_info 0x0024f49c 0x4b02 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_info 0x00253f9e 0x11f5 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .debug_info 0x00255193 0x2ede esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .debug_info 0x00258071 0x56a esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .debug_info 0x002585db 0x396e esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .debug_info 0x0025bf49 0x934 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_info 0x0025c87d 0x5a25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_info 0x002622a2 0x974d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_info 0x0026b9ef 0x520c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_info 0x00270bfb 0x5cc7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_info 0x002768c2 0x1d5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_info 0x00276a97 0x19c8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_info 0x0027845f 0x31f3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_info 0x0027b652 0x52dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_info 0x0028092e 0x2d72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_info 0x002836a0 0x38b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_info 0x00286f58 0x2195 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_info 0x002890ed 0xa9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_info 0x00289b89 0x2010 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_info 0x0028bb99 0x2341 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_info 0x0028deda 0x1711 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_info 0x0028f5eb 0x696f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_info 0x00295f5a 0x5027 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_info 0x0029af81 0x1c39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_info 0x0029cbba 0x2102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_info 0x0029ecbc 0x4d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_info 0x0029f194 0x2d3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_info 0x002a1ecf 0x8dd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_info 0x002a27ac 0x1948 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_info 0x002a40f4 0x3e50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_info 0x002a7f44 0x245 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_info 0x002a8189 0x198 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_info 0x002a8321 0x72e1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_info 0x002af602 0x110e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_info 0x002b0710 0x69c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_info 0x002b0dac 0x817 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_info 0x002b15c3 0x83c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_info 0x002b1dff 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_info 0x002b1f19 0x162 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_info 0x002b207b 0x7c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_info 0x002b2843 0x295 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_info 0x002b2ad8 0x1383 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_info 0x002b3e5b 0xf54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x002b4daf 0xc96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .debug_info 0x002b5a45 0xd92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .debug_info 0x002b67d7 0x1bb9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_info 0x002b8390 0x8a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_info 0x002b8c36 0x900 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_info 0x002b9536 0x92d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x002b9e63 0xa29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_info 0x002ba88c 0x1bb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_info 0x002bc442 0x3e1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_info 0x002bc823 0x1ee5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_info 0x002be708 0xd8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_info 0x002bf496 0x1067 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_info 0x002c04fd 0x1c58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_info 0x002c2155 0x2150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_info 0x002c42a5 0x2a5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_info 0x002c6d01 0x1ddd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_info 0x002c8ade 0x1a7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_info 0x002ca558 0x1431 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_info 0x002cb989 0x16e1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_info 0x002cd06a 0x18c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_info 0x002ce92e 0x25c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_info 0x002ceb8a 0x18ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_info 0x002d0476 0x216b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_info 0x002d25e1 0xd23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .debug_info 0x002d3304 0xe91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_info 0x002d4195 0x29a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_info 0x002d442f 0x56d1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_info 0x002d9b00 0x355e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_info 0x002dd05e 0x245 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_info 0x002dd2a3 0x8c0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_info 0x002ddb63 0x795 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_info 0x002de2f8 0x7e5 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_info 0x002deadd 0x5f1 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_info 0x002df0ce 0xe7 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_info 0x002df1b5 0xfd esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_info 0x002df2b2 0xed esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_info 0x002df39f 0xb7c esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .debug_info 0x002dff1b 0xaf9f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_info 0x002eaeba 0x7e1 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_info 0x002eb69b 0x21a2 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_info 0x002ed83d 0x1d14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_info 0x002ef551 0x142 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .debug_info 0x002ef693 0x110a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_info 0x002f079d 0x2dff esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_info 0x002f359c 0xdd8 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_info 0x002f4374 0x32b esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_info 0x002f469f 0x8e0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_info 0x002f4f7f 0xbb0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_info 0x002f5b2f 0x40c esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_info 0x002f5f3b 0x4c4c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_info 0x002fab87 0x2229 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_info 0x002fcdb0 0x7805 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_info 0x003045b5 0x4610 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_info 0x00308bc5 0xe2f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_info 0x003099f4 0x43ff esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_info 0x0030ddf3 0x49af esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_info 0x003127a2 0x243d esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_info 0x00314bdf 0x1111 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_info 0x00315cf0 0x651d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_info 0x0031c20d 0x1db7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_info 0x0031dfc4 0x103a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_info 0x0031effe 0x2df6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_info 0x00321df4 0x2bbb esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_info 0x003249af 0xa0e esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_info 0x003253bd 0x7884 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_info 0x0032cc41 0xdf6 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_info 0x0032da37 0x1b5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_info 0x0032f593 0x3f7 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_info 0x0032f98a 0x72d esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_info 0x003300b7 0x540 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_info 0x003305f7 0x372 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_info 0x00330969 0x1826 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_info 0x0033218f 0x6f6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_info 0x003390f9 0x1780 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_info 0x0033a879 0xc4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_info 0x0033b4c6 0x1d94 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_info 0x0033d25a 0x493e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_info 0x00341b98 0x1065 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_info 0x00342bfd 0x11fc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_info 0x00343df9 0x233 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_info 0x0034402c 0x369 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_info 0x00344395 0x35f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_info 0x003446f4 0xadd esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_info 0x003451d1 0x1093 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_info 0x00346264 0xe2b esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_info 0x0034708f 0x618 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_info 0x003476a7 0x2d0 esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + .debug_info 0x00347977 0x666 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .debug_info 0x00347fdd 0x215c esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_info 0x0034a139 0x30c5 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_info 0x0034d1fe 0x5a8 esp-idf/hal/libhal.a(ds_hal.c.obj) + .debug_info 0x0034d7a6 0x88b esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_info 0x0034e031 0x84 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .debug_info 0x0034e0b5 0x142 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .debug_info 0x0034e1f7 0x122 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .debug_info 0x0034e319 0x5a6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .debug_info 0x0034e8bf 0xe0f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .debug_info 0x0034f6ce 0x1033 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .debug_info 0x00350701 0xaf3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .debug_info 0x003511f4 0xa8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .debug_info 0x0035129c 0x8ae C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_info 0x00351b4a 0x8b2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .debug_info 0x003523fc 0xa38 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_info 0x00352e34 0x58b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .debug_info 0x003533bf 0x27d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .debug_info 0x0035363c 0xa5d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .debug_info 0x00354099 0x9d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .debug_info 0x00354136 0x97e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .debug_info 0x00354ab4 0x1a62 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_info 0x00356516 0x3f7 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_info 0x0035690d 0x6b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + .debug_info 0x00356978 0x1ee2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .debug_info 0x0035885a 0xe47 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .debug_info 0x003596a1 0xdc9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .debug_info 0x0035a46a 0xb9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + .debug_info 0x0035a523 0xa05 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .debug_info 0x0035af28 0xaee C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .debug_info 0x0035ba16 0x1079 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .debug_info 0x0035ca8f 0xafc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .debug_info 0x0035d58b 0xa80 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .debug_info 0x0035e00b 0x98f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .debug_info 0x0035e99a 0xc5d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_info 0x0035f5f7 0x8be C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .debug_info 0x0035feb5 0xa72 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .debug_info 0x00360927 0x97a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .debug_info 0x003612a1 0xa53 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .debug_info 0x00361cf4 0xa83 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .debug_info 0x00362777 0x9e1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .debug_info 0x00363158 0x9b2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .debug_info 0x00363b0a 0xa1c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .debug_info 0x00364526 0xb40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .debug_info 0x00365066 0x952 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .debug_info 0x003659b8 0x9ab C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_info 0x00366363 0x8ef C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .debug_info 0x00366c52 0x9ad C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .debug_info 0x003675ff 0xe56 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .debug_info 0x00368455 0x992 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .debug_info 0x00368de7 0x96 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_info 0x00368e7d 0x8eb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .debug_info 0x00369768 0xcb7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .debug_info 0x0036a41f 0x981 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .debug_info 0x0036ada0 0x840 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_info 0x0036b5e0 0x834 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .debug_info 0x0036be14 0x869 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .debug_info 0x0036c67d 0x89b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .debug_info 0x0036cf18 0x8e5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_info 0x0036d7fd 0x8ef C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .debug_info 0x0036e0ec 0x8b1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .debug_info 0x0036e99d 0x8b7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .debug_info 0x0036f254 0xd3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .debug_info 0x0036f327 0xcf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .debug_info 0x0036f3f6 0x12fd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .debug_info 0x003706f3 0x399 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .debug_info 0x00370a8c 0xbe3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_info 0x0037166f 0x1ec0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .debug_info 0x0037352f 0xbaa C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_info 0x003740d9 0x223c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_info 0x00376315 0x28bb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_info 0x00378bd0 0x2419 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .debug_info 0x0037afe9 0x2b58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_info 0x0037db41 0x223b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_info 0x0037fd7c 0x882 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .debug_info 0x003805fe 0xbbe C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .debug_info 0x003811bc 0x10e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .debug_info 0x003812ca 0xaa8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .debug_info 0x00381d72 0xbef C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .debug_info 0x00382961 0x1de C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_info 0x00382b3f 0x195b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .debug_info 0x0038449a 0xe0b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .debug_info 0x003852a5 0xe03 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .debug_info 0x003860a8 0xbe8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_info 0x00386c90 0xea C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .debug_info 0x00386d7a 0xacf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_info 0x00387849 0x2096 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_abbrev 0x00000000 0x63b8b + *(.debug_abbrev) + .debug_abbrev 0x00000000 0x2e0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_abbrev 0x000002e0 0x285 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_abbrev 0x00000565 0x386 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x000008eb 0x416 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000d01 0x119 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00000e1a 0x28e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x000010a8 0x13c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_abbrev 0x000011e4 0x3a4 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_abbrev 0x00001588 0x2f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_abbrev 0x00001878 0x620 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_abbrev 0x00001e98 0x11c esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_abbrev 0x00001fb4 0x14 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_abbrev 0x00001fc8 0x4a6 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_abbrev 0x0000246e 0x3bb esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_abbrev 0x00002829 0x3cf esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_abbrev 0x00002bf8 0x16b esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_abbrev 0x00002d63 0x3b0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_abbrev 0x00003113 0x5e7 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_abbrev 0x000036fa 0x2e6 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_abbrev 0x000039e0 0x3a1 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_abbrev 0x00003d81 0x31c esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_abbrev 0x0000409d 0x10c esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_abbrev 0x000041a9 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_abbrev 0x000041bd 0x2b1 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_abbrev 0x0000446e 0x3e3 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_abbrev 0x00004851 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_abbrev 0x00004865 0x3af esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_abbrev 0x00004c14 0x27a esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_abbrev 0x00004e8e 0x1ec esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x0000507a 0x130 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_abbrev 0x000051aa 0x210 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_abbrev 0x000053ba 0x1fc esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x000055b6 0x362 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00005918 0x405 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_abbrev 0x00005d1d 0x2a7 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_abbrev 0x00005fc4 0x16d esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_abbrev 0x00006131 0xda esp-idf/log/liblog.a(util.c.obj) + .debug_abbrev 0x0000620b 0x223 esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x0000642e 0x1c6 esp-idf/log/liblog.a(log_write.c.obj) + .debug_abbrev 0x000065f4 0x11b esp-idf/log/liblog.a(log_level.c.obj) + .debug_abbrev 0x0000670f 0x20c esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_abbrev 0x0000691b 0x1fe esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_abbrev 0x00006b19 0x234 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_abbrev 0x00006d4d 0x11e esp-idf/log/liblog.a(log_lock.c.obj) + .debug_abbrev 0x00006e6b 0x516 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x00007381 0x4da esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x0000785b 0x3e0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x00007c3b 0x4ce esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_abbrev 0x00008109 0x344 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_abbrev 0x0000844d 0xed esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_abbrev 0x0000853a 0x39b esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_abbrev 0x000088d5 0xf7 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_abbrev 0x000089cc 0x23c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_abbrev 0x00008c08 0xa9 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_abbrev 0x00008cb1 0x2d0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_abbrev 0x00008f81 0x63c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_abbrev 0x000095bd 0x2d5 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_abbrev 0x00009892 0x3ab esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_abbrev 0x00009c3d 0x431 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_abbrev 0x0000a06e 0x2a1 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_abbrev 0x0000a30f 0x49c esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_abbrev 0x0000a7ab 0x642 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x0000aded 0x50e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x0000b2fb 0x248 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_abbrev 0x0000b543 0x40b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x0000b94e 0x112 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_abbrev 0x0000ba60 0x3b7 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_abbrev 0x0000be17 0x5be esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_abbrev 0x0000c3d5 0xd9 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_abbrev 0x0000c4ae 0x1a9 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .debug_abbrev 0x0000c657 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_abbrev 0x0000c783 0x319 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x0000ca9c 0x79c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_abbrev 0x0000d238 0x295 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_abbrev 0x0000d4cd 0x365 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_abbrev 0x0000d832 0x410 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x0000dc42 0x5c3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x0000e205 0x67f esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x0000e884 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x0000e898 0x197 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_abbrev 0x0000ea2f 0x214 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_abbrev 0x0000ec43 0x47c esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_abbrev 0x0000f0bf 0x106 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x0000f1c5 0x135 esp-idf/newlib/libnewlib.a(init.c.obj) + .debug_abbrev 0x0000f2fa 0x1ab esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_abbrev 0x0000f4a5 0x230 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_abbrev 0x0000f6d5 0x293 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_abbrev 0x0000f968 0x3d9 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_abbrev 0x0000fd41 0x188 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_abbrev 0x0000fec9 0x10d esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_abbrev 0x0000ffd6 0x3c1 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_abbrev 0x00010397 0x257 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_abbrev 0x000105ee 0x2b6 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .debug_abbrev 0x000108a4 0x1d7 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_abbrev 0x00010a7b 0x26f esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_abbrev 0x00010cea 0x321 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_abbrev 0x0001100b 0x15f esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_abbrev 0x0001116a 0x55a esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x000116c4 0x36e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_abbrev 0x00011a32 0x2ed esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x00011d1f 0x2af esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_abbrev 0x00011fce 0x1cb esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_abbrev 0x00012199 0x51f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x000126b8 0x263 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_abbrev 0x0001291b 0x112 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_abbrev 0x00012a2d 0x1d9 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_abbrev 0x00012c06 0x15c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_abbrev 0x00012d62 0x558 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_abbrev 0x000132ba 0x665 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_abbrev 0x0001391f 0x6d6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_abbrev 0x00013ff5 0x151 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_abbrev 0x00014146 0x28a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_abbrev 0x000143d0 0x679 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_abbrev 0x00014a49 0x602 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_abbrev 0x0001504b 0x336 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_abbrev 0x00015381 0x607 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_abbrev 0x00015988 0x397 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_abbrev 0x00015d1f 0x2e1 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_abbrev 0x00016000 0x60 esp-idf/main/libmain.a(main.c.obj) + .debug_abbrev 0x00016060 0x353 esp-idf/main/libmain.a(wifi_init.c.obj) + .debug_abbrev 0x000163b3 0x19b esp-idf/main/libmain.a(fs_init.c.obj) + .debug_abbrev 0x0001654e 0x3d8 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .debug_abbrev 0x00016926 0x4ca esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_abbrev 0x00016df0 0x291 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_abbrev 0x00017081 0x3e1 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_abbrev 0x00017462 0x405 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_abbrev 0x00017867 0x2e2 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_abbrev 0x00017b49 0x313 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_abbrev 0x00017e5c 0x517 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .debug_abbrev 0x00018373 0x342 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .debug_abbrev 0x000186b5 0x26e esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .debug_abbrev 0x00018923 0x1ca esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .debug_abbrev 0x00018aed 0x2d6 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .debug_abbrev 0x00018dc3 0x3e0 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .debug_abbrev 0x000191a3 0x13d esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .debug_abbrev 0x000192e0 0x433 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_abbrev 0x00019713 0x14 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_abbrev 0x00019727 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_abbrev 0x0001974f 0x25a esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_abbrev 0x000199a9 0x26 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_abbrev 0x000199cf 0x638 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_abbrev 0x0001a007 0x474 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x0001a47b 0x3cf esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_abbrev 0x0001a84a 0x2d1 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_abbrev 0x0001ab1b 0x26f esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x0001ad8a 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x0001adec 0x2b1 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x0001b09d 0x685 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x0001b722 0x309 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_abbrev 0x0001ba2b 0x4c7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x0001bef2 0x252 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x0001c144 0x3da esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x0001c51e 0x1c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x0001c6e2 0x5b6 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_abbrev 0x0001cc98 0xbd esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_abbrev 0x0001cd55 0x290 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_abbrev 0x0001cfe5 0xdd esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_abbrev 0x0001d0c2 0x3cc esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_abbrev 0x0001d48e 0x12a esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_abbrev 0x0001d5b8 0x3fb esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x0001d9b3 0x425 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x0001ddd8 0x2af esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x0001e087 0x5e3 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x0001e66a 0x632 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x0001ec9c 0x428 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x0001f0c4 0x202 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x0001f2c6 0x3ef esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .debug_abbrev 0x0001f6b5 0x114 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_abbrev 0x0001f7c9 0x20b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x0001f9d4 0x524 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x0001fef8 0x266 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x0002015e 0x220 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x0002037e 0x285 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x00020603 0x33c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x0002093f 0x1ea esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_abbrev 0x00020b29 0x3d9 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_abbrev 0x00020f02 0x1ea esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_abbrev 0x000210ec 0x4b6 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x000215a2 0x183 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_abbrev 0x00021725 0x2bd esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_abbrev 0x000219e2 0x4f8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_abbrev 0x00021eda 0x40a esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_abbrev 0x000222e4 0x14 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_abbrev 0x000222f8 0x16c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_abbrev 0x00022464 0x64 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_abbrev 0x000224c8 0x384 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x0002284c 0x44b esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_abbrev 0x00022c97 0x54d esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x000231e4 0x234 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x00023418 0x342 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_abbrev 0x0002375a 0x3d9 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_abbrev 0x00023b33 0x395 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_abbrev 0x00023ec8 0x2c4 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_abbrev 0x0002418c 0x4b2 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_abbrev 0x0002463e 0x86 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_abbrev 0x000246c4 0x70 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x00024734 0xa1 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_abbrev 0x000247d5 0x108 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_abbrev 0x000248dd 0x230 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_abbrev 0x00024b0d 0x10b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_abbrev 0x00024c18 0x1d5 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_abbrev 0x00024ded 0x36e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_abbrev 0x0002515b 0xca esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_abbrev 0x00025225 0x43f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_abbrev 0x00025664 0x21a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_abbrev 0x0002587e 0x4a6 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_abbrev 0x00025d24 0x3fc esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_abbrev 0x00026120 0x9b esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_abbrev 0x000261bb 0x3cb esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_abbrev 0x00026586 0x24b esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_abbrev 0x000267d1 0x412 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x00026be3 0x15b esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_abbrev 0x00026d3e 0x4c0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_abbrev 0x000271fe 0x111b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_abbrev 0x00028319 0xe82 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_abbrev 0x0002919b 0x1050 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_abbrev 0x0002a1eb 0xc9b esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_abbrev 0x0002ae86 0x541 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_abbrev 0x0002b3c7 0xf3a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_abbrev 0x0002c301 0x8bb esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_abbrev 0x0002cbbc 0x2d9 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_abbrev 0x0002ce95 0xa86 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_abbrev 0x0002d91b 0xe6e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_abbrev 0x0002e789 0x44f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_abbrev 0x0002ebd8 0x376 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_abbrev 0x0002ef4e 0x427 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_abbrev 0x0002f375 0x411 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_abbrev 0x0002f786 0x17c esp-idf/lwip/liblwip.a(def.c.obj) + .debug_abbrev 0x0002f902 0xbb esp-idf/lwip/liblwip.a(init.c.obj) + .debug_abbrev 0x0002f9bd 0x261 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_abbrev 0x0002fc1e 0x213 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_abbrev 0x0002fe31 0x2f2 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_abbrev 0x00030123 0x466 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_abbrev 0x00030589 0x3d9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_abbrev 0x00030962 0x3d3 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_abbrev 0x00030d35 0x453 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_abbrev 0x00031188 0x3de esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_abbrev 0x00031566 0x420 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_abbrev 0x00031986 0x379 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_abbrev 0x00031cff 0x420 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_abbrev 0x0003211f 0x420 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_abbrev 0x0003253f 0x3e6 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_abbrev 0x00032925 0x32d esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_abbrev 0x00032c52 0x41c esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_abbrev 0x0003306e 0x3b2 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_abbrev 0x00033420 0x322 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_abbrev 0x00033742 0x27a esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_abbrev 0x000339bc 0x2fc esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_abbrev 0x00033cb8 0x384 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_abbrev 0x0003403c 0x2aa esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_abbrev 0x000342e6 0x26d esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_abbrev 0x00034553 0x3e9 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_abbrev 0x0003493c 0x438 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_abbrev 0x00034d74 0x2f3 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_abbrev 0x00035067 0x207 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_abbrev 0x0003526e 0x377 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_abbrev 0x000355e5 0x1c5 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_abbrev 0x000357aa 0x3cf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_abbrev 0x00035b79 0x29d esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .debug_abbrev 0x00035e16 0x2b3 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_abbrev 0x000360c9 0x43c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_abbrev 0x00036505 0x4dc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_abbrev 0x000369e1 0x93 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_abbrev 0x00036a74 0x239 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_abbrev 0x00036cad 0x3d7 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_abbrev 0x00037084 0x25f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_abbrev 0x000372e3 0x269 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_abbrev 0x0003754c 0x65e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_abbrev 0x00037baa 0x166 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_abbrev 0x00037d10 0x440 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_abbrev 0x00038150 0x27d esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .debug_abbrev 0x000383cd 0x1a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_abbrev 0x00038573 0x2f2 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_abbrev 0x00038865 0x2de esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_abbrev 0x00038b43 0x330 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_abbrev 0x00038e73 0x1f5 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_abbrev 0x00039068 0x3b1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_abbrev 0x00039419 0x450 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_abbrev 0x00039869 0x2cb esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_abbrev 0x00039b34 0x557 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_abbrev 0x0003a08b 0x315 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_abbrev 0x0003a3a0 0x5e7 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_abbrev 0x0003a987 0x19f esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .debug_abbrev 0x0003ab26 0x5c9 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_abbrev 0x0003b0ef 0x352 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .debug_abbrev 0x0003b441 0x43e esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .debug_abbrev 0x0003b87f 0x221 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .debug_abbrev 0x0003baa0 0x42a esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .debug_abbrev 0x0003beca 0x237 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_abbrev 0x0003c101 0x61f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_abbrev 0x0003c720 0x656 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_abbrev 0x0003cd76 0x58f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_abbrev 0x0003d305 0x5cc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_abbrev 0x0003d8d1 0x10e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_abbrev 0x0003d9df 0x406 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_abbrev 0x0003dde5 0x51c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_abbrev 0x0003e301 0x51d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_abbrev 0x0003e81e 0x417 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_abbrev 0x0003ec35 0x547 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_abbrev 0x0003f17c 0x3a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_abbrev 0x0003f521 0x296 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_abbrev 0x0003f7b7 0x519 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_abbrev 0x0003fcd0 0x492 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_abbrev 0x00040162 0x350 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_abbrev 0x000404b2 0x402 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_abbrev 0x000408b4 0x315 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_abbrev 0x00040bc9 0x3e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_abbrev 0x00040fa9 0x3dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_abbrev 0x00041385 0x188 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_abbrev 0x0004150d 0x4eb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_abbrev 0x000419f8 0x21a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_abbrev 0x00041c12 0x36f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_abbrev 0x00041f81 0x435 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_abbrev 0x000423b6 0x1d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_abbrev 0x00042588 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_abbrev 0x000426a2 0x487 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_abbrev 0x00042b29 0x255 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_abbrev 0x00042d7e 0x1b5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_abbrev 0x00042f33 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_abbrev 0x00043115 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_abbrev 0x000432f7 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_abbrev 0x000433c7 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_abbrev 0x000434bf 0x22f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_abbrev 0x000436ee 0x1a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_abbrev 0x00043890 0x34d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_abbrev 0x00043bdd 0x406 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x00043fe3 0x32a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .debug_abbrev 0x0004430d 0x32b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .debug_abbrev 0x00044638 0x500 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_abbrev 0x00044b38 0x207 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_abbrev 0x00044d3f 0x260 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_abbrev 0x00044f9f 0x273 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x00045212 0x2dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_abbrev 0x000454ee 0x45e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_abbrev 0x0004594c 0x14e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_abbrev 0x00045a9a 0x306 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_abbrev 0x00045da0 0x30f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_abbrev 0x000460af 0x27d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_abbrev 0x0004632c 0x45c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_abbrev 0x00046788 0x3c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_abbrev 0x00046b4c 0x576 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_abbrev 0x000470c2 0x428 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_abbrev 0x000474ea 0x2a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_abbrev 0x0004778e 0x356 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_abbrev 0x00047ae4 0x44e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_abbrev 0x00047f32 0x43b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_abbrev 0x0004836d 0x13f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_abbrev 0x000484ac 0x57f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_abbrev 0x00048a2b 0x45d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_abbrev 0x00048e88 0x23a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .debug_abbrev 0x000490c2 0x29e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_abbrev 0x00049360 0x16e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_abbrev 0x000494ce 0x4d8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_abbrev 0x000499a6 0x419 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_abbrev 0x00049dbf 0x13e esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_abbrev 0x00049efd 0x28f esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_abbrev 0x0004a18c 0x245 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_abbrev 0x0004a3d1 0x283 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_abbrev 0x0004a654 0x1fc esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_abbrev 0x0004a850 0x8c esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_abbrev 0x0004a8dc 0x90 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_abbrev 0x0004a96c 0x70 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_abbrev 0x0004a9dc 0x28e esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .debug_abbrev 0x0004ac6a 0x65c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_abbrev 0x0004b2c6 0x1fc esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_abbrev 0x0004b4c2 0x57d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_abbrev 0x0004ba3f 0x408 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_abbrev 0x0004be47 0xa6 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .debug_abbrev 0x0004beed 0x353 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_abbrev 0x0004c240 0x4cf esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_abbrev 0x0004c70f 0x289 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_abbrev 0x0004c998 0xf5 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_abbrev 0x0004ca8d 0x208 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_abbrev 0x0004cc95 0x2d5 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_abbrev 0x0004cf6a 0x1c0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_abbrev 0x0004d12a 0x5e5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_abbrev 0x0004d70f 0x475 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_abbrev 0x0004db84 0x750 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_abbrev 0x0004e2d4 0x61d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_abbrev 0x0004e8f1 0x276 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_abbrev 0x0004eb67 0x5a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_abbrev 0x0004f107 0x48d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_abbrev 0x0004f594 0x4e9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_abbrev 0x0004fa7d 0x399 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_abbrev 0x0004fe16 0x62b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_abbrev 0x00050441 0x41f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_abbrev 0x00050860 0x3e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_abbrev 0x00050c43 0x447 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_abbrev 0x0005108a 0x522 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_abbrev 0x000515ac 0x259 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_abbrev 0x00051805 0x4ed esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_abbrev 0x00051cf2 0x26f esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_abbrev 0x00051f61 0x337 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_abbrev 0x00052298 0x179 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_abbrev 0x00052411 0x262 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_abbrev 0x00052673 0x1d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_abbrev 0x00052848 0x18d esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_abbrev 0x000529d5 0x47a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_abbrev 0x00052e4f 0x644 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_abbrev 0x00053493 0x3dc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_abbrev 0x0005386f 0x34e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_abbrev 0x00053bbd 0x461 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_abbrev 0x0005401e 0x6e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_abbrev 0x00054706 0x300 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_abbrev 0x00054a06 0x2d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_abbrev 0x00054cdb 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_abbrev 0x00054de7 0x15f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_abbrev 0x00054f46 0x157 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_abbrev 0x0005509d 0x22c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_abbrev 0x000552c9 0x3b9 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_abbrev 0x00055682 0x361 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_abbrev 0x000559e3 0x220 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_abbrev 0x00055c03 0xe7 esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + .debug_abbrev 0x00055cea 0x235 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .debug_abbrev 0x00055f1f 0x2c9 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_abbrev 0x000561e8 0x493 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_abbrev 0x0005667b 0x2b5 esp-idf/hal/libhal.a(ds_hal.c.obj) + .debug_abbrev 0x00056930 0x213 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_abbrev 0x00056b43 0x8b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .debug_abbrev 0x00056bce 0x157 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .debug_abbrev 0x00056d25 0x125 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .debug_abbrev 0x00056e4a 0x196 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .debug_abbrev 0x00056fe0 0x4f6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .debug_abbrev 0x000574d6 0x5ac C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .debug_abbrev 0x00057a82 0x44e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .debug_abbrev 0x00057ed0 0xa4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .debug_abbrev 0x00057f74 0x343 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_abbrev 0x000582b7 0x314 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .debug_abbrev 0x000585cb 0x48c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_abbrev 0x00058a57 0x30d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .debug_abbrev 0x00058d64 0x1f6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .debug_abbrev 0x00058f5a 0x463 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .debug_abbrev 0x000593bd 0xa5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .debug_abbrev 0x00059462 0x424 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .debug_abbrev 0x00059886 0x44d esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_abbrev 0x00059cd3 0x220 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_abbrev 0x00059ef3 0x5b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + .debug_abbrev 0x00059f4e 0x51b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .debug_abbrev 0x0005a469 0x323 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .debug_abbrev 0x0005a78c 0x2df C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .debug_abbrev 0x0005aa6b 0x62 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + .debug_abbrev 0x0005aacd 0x299 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .debug_abbrev 0x0005ad66 0x2d5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .debug_abbrev 0x0005b03b 0x43f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .debug_abbrev 0x0005b47a 0x2a3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .debug_abbrev 0x0005b71d 0x2ad C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .debug_abbrev 0x0005b9ca 0x258 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .debug_abbrev 0x0005bc22 0x254 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_abbrev 0x0005be76 0x1c3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .debug_abbrev 0x0005c039 0x299 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .debug_abbrev 0x0005c2d2 0x254 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .debug_abbrev 0x0005c526 0x273 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .debug_abbrev 0x0005c799 0x2cd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .debug_abbrev 0x0005ca66 0x267 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .debug_abbrev 0x0005cccd 0x255 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .debug_abbrev 0x0005cf22 0x260 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .debug_abbrev 0x0005d182 0x231 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .debug_abbrev 0x0005d3b3 0x23c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .debug_abbrev 0x0005d5ef 0x260 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_abbrev 0x0005d84f 0x221 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .debug_abbrev 0x0005da70 0x27a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .debug_abbrev 0x0005dcea 0x2ff C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .debug_abbrev 0x0005dfe9 0x22e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .debug_abbrev 0x0005e217 0x77 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_abbrev 0x0005e28e 0x1e3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .debug_abbrev 0x0005e471 0x29a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .debug_abbrev 0x0005e70b 0x214 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .debug_abbrev 0x0005e91f 0x174 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_abbrev 0x0005ea93 0x196 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .debug_abbrev 0x0005ec29 0x1d1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .debug_abbrev 0x0005edfa 0x1f3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .debug_abbrev 0x0005efed 0x1e1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_abbrev 0x0005f1ce 0x22c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .debug_abbrev 0x0005f3fa 0x1e3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .debug_abbrev 0x0005f5dd 0x1e8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .debug_abbrev 0x0005f7c5 0x7a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .debug_abbrev 0x0005f83f 0x7a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .debug_abbrev 0x0005f8b9 0x3de C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .debug_abbrev 0x0005fc97 0x17e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .debug_abbrev 0x0005fe15 0x25a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_abbrev 0x0006006f 0x48e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .debug_abbrev 0x000604fd 0x243 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_abbrev 0x00060740 0x48b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_abbrev 0x00060bcb 0x466 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_abbrev 0x00061031 0x458 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .debug_abbrev 0x00061489 0x4db C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_abbrev 0x00061964 0x48a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_abbrev 0x00061dee 0x1d8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .debug_abbrev 0x00061fc6 0x271 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .debug_abbrev 0x00062237 0x9a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .debug_abbrev 0x000622d1 0x2ac C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .debug_abbrev 0x0006257d 0x26c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .debug_abbrev 0x000627e9 0x15f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_abbrev 0x00062948 0x35c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .debug_abbrev 0x00062ca4 0x30d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .debug_abbrev 0x00062fb1 0x314 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .debug_abbrev 0x000632c5 0x25f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_abbrev 0x00063524 0xb9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .debug_abbrev 0x000635dd 0x1b1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_abbrev 0x0006378e 0x3fd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_line 0x00000000 0x287f20 + *(.debug_line) + .debug_line 0x00000000 0x950 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_line 0x00000950 0x6f9 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_line 0x00001049 0x1651 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x0000269a 0x190e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00003fa8 0x281 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x00004229 0xed2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x000050fb 0x3d4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_line 0x000054cf 0xa1b esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_line 0x00005eea 0x7be esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_line 0x000066a8 0x1aaf esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_line 0x00008157 0x37d esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_line 0x000084d4 0x1b7 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_line 0x0000868b 0xdf8 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_line 0x00009483 0x900 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_line 0x00009d83 0xd8d esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_line 0x0000ab10 0x3a8 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_line 0x0000aeb8 0x8ea esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_line 0x0000b7a2 0x1311 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_line 0x0000cab3 0x815 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_line 0x0000d2c8 0xb02 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_line 0x0000ddca 0xd77 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_line 0x0000eb41 0x315 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_line 0x0000ee56 0x16b esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_line 0x0000efc1 0xc20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_line 0x0000fbe1 0x12b8 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_line 0x00010e99 0xc7 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_line 0x00010f60 0xb67 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_line 0x00011ac7 0xaf4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_line 0x000125bb 0x4e7 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x00012aa2 0x309 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_line 0x00012dab 0x6a0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_line 0x0001344b 0x4ff esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x0001394a 0x8de esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x00014228 0x144b esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_line 0x00015673 0x5f2 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_line 0x00015c65 0x4e7 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_line 0x0001614c 0x236 esp-idf/log/liblog.a(util.c.obj) + .debug_line 0x00016382 0x3dd esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x0001675f 0x3ad esp-idf/log/liblog.a(log_write.c.obj) + .debug_line 0x00016b0c 0x1a5 esp-idf/log/liblog.a(log_level.c.obj) + .debug_line 0x00016cb1 0x4d3 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_line 0x00017184 0x60f esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_line 0x00017793 0x73b esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_line 0x00017ece 0x3b5 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_line 0x00018283 0x211d esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x0001a3a0 0x1354 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x0001b6f4 0x1540 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x0001cc34 0x92c6 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_line 0x00025efa 0xc0d esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_line 0x00026b07 0x254 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_line 0x00026d5b 0xff5 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_line 0x00027d50 0x2c8 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_line 0x00028018 0xa7f esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_line 0x00028a97 0x305 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_line 0x00028d9c 0xa3e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_line 0x000297da 0x3458 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_line 0x0002cc32 0x15a3 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_line 0x0002e1d5 0xaf9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_line 0x0002ecce 0x1070 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_line 0x0002fd3e 0x79c esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_line 0x000304da 0xbf5 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_line 0x000310cf 0x2258 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x00033327 0x18a5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x00034bcc 0xf8a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_line 0x00035b56 0xe74 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x000369ca 0x3a1 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_line 0x00036d6b 0xb7d esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_line 0x000378e8 0x71af esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_line 0x0003ea97 0x44e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_line 0x0003eee5 0x6d0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .debug_line 0x0003f5b5 0x2d5 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_line 0x0003f88a 0xbdc esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_line 0x00040466 0x4723 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_line 0x00044b89 0x92e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_line 0x000454b7 0xb31 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_line 0x00045fe8 0x32bc esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x000492a4 0x8b35 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x00051dd9 0x1898 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x00053671 0x45c esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x00053acd 0x610 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_line 0x000540dd 0x555 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_line 0x00054632 0xc16 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_line 0x00055248 0x655 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x0005589d 0x2df esp-idf/newlib/libnewlib.a(init.c.obj) + .debug_line 0x00055b7c 0x4a9 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_line 0x00056025 0x6c1 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_line 0x000566e6 0x6f2 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_line 0x00056dd8 0xd83 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_line 0x00057b5b 0x39b esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_line 0x00057ef6 0x2c5 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_line 0x000581bb 0x1026 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_line 0x000591e1 0x432 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_line 0x00059613 0x762 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .debug_line 0x00059d75 0x586 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_line 0x0005a2fb 0x556 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_line 0x0005a851 0x66a esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_line 0x0005aebb 0x3d6 esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_line 0x0005b291 0x2c0a esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x0005de9b 0xf4c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_line 0x0005ede7 0xbdc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x0005f9c3 0xcc5 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_line 0x00060688 0x9b6 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_line 0x0006103e 0xd94 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x00061dd2 0x4f6 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_line 0x000622c8 0x2fa esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_line 0x000625c2 0x5a2 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_line 0x00062b64 0x359 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_line 0x00062ebd 0x1083 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_line 0x00063f40 0x2ed5 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_line 0x00066e15 0xaf3f esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_line 0x00071d54 0x4d4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_line 0x00072228 0x64e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_line 0x00072876 0x204b esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_line 0x000748c1 0x1ad6 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_line 0x00076397 0xb5e esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_line 0x00076ef5 0x6b3f esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_line 0x0007da34 0xe35 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_line 0x0007e869 0x1164 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_line 0x0007f9cd 0xf6 esp-idf/main/libmain.a(main.c.obj) + .debug_line 0x0007fac3 0xa43 esp-idf/main/libmain.a(wifi_init.c.obj) + .debug_line 0x00080506 0x45a esp-idf/main/libmain.a(fs_init.c.obj) + .debug_line 0x00080960 0x1788 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .debug_line 0x000820e8 0x363a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_line 0x00085722 0x813 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_line 0x00085f35 0x5101 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_line 0x0008b036 0x719e esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_line 0x000921d4 0x10c8 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_line 0x0009329c 0x1f6d esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_line 0x00095209 0x8cc7 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .debug_line 0x0009ded0 0x21c3 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .debug_line 0x000a0093 0x12b9 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .debug_line 0x000a134c 0x4cf esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .debug_line 0x000a181b 0xc44 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .debug_line 0x000a245f 0x1428 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .debug_line 0x000a3887 0x2bc esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .debug_line 0x000a3b43 0x6fe1 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_line 0x000aab24 0x392 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_line 0x000aaeb6 0xe7 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_line 0x000aaf9d 0x6bc esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_line 0x000ab659 0x984 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_line 0x000abfdd 0x5cd7 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_line 0x000b1cb4 0x37a9 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x000b545d 0x1ca6 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_line 0x000b7103 0xe1e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_line 0x000b7f21 0xcaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x000b8bd0 0xf0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x000b8cc0 0x1323 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x000b9fe3 0x1b0d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x000bbaf0 0xf0b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_line 0x000bc9fb 0x2dc1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x000bf7bc 0x8d7 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x000c0093 0x2477 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x000c250a 0x755 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x000c2c5f 0x395e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_line 0x000c65bd 0x2ad esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_line 0x000c686a 0x6b0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_line 0x000c6f1a 0x479 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_line 0x000c7393 0x1957 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_line 0x000c8cea 0x29d esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_line 0x000c8f87 0x1691 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x000ca618 0x11f4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x000cb80c 0x8f1 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x000cc0fd 0x4184 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x000d0281 0x1851 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x000d1ad2 0x10eb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x000d2bbd 0x481 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x000d303e 0x95f esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .debug_line 0x000d399d 0x3c9 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_line 0x000d3d66 0x4ce esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x000d4234 0x27cf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x000d6a03 0x4bd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x000d6ec0 0x56f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x000d742f 0x6c6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x000d7af5 0xe32 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x000d8927 0x3f6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_line 0x000d8d1d 0x14fc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_line 0x000da219 0x3f4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_line 0x000da60d 0xf6c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x000db579 0x443 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_line 0x000db9bc 0x924 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_line 0x000dc2e0 0x30d9 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_line 0x000df3b9 0xb21 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_line 0x000dfeda 0x115 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_line 0x000dffef 0x362 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_line 0x000e0351 0x20f esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_line 0x000e0560 0xed5 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x000e1435 0xbef esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_line 0x000e2024 0x2378 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_line 0x000e439c 0x5de esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x000e497a 0xab9 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_line 0x000e5433 0xda6 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_line 0x000e61d9 0x1573 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_line 0x000e774c 0x4ee esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_line 0x000e7c3a 0x1529 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_line 0x000e9163 0xc2 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_line 0x000e9225 0x1c1 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_line 0x000e93e6 0x1c5 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_line 0x000e95ab 0x287 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_line 0x000e9832 0x7f7 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_line 0x000ea029 0x1fc esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_line 0x000ea225 0x53a esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_line 0x000ea75f 0x115d esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_line 0x000eb8bc 0x24f esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_line 0x000ebb0b 0xe19 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_line 0x000ec924 0x8d8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_line 0x000ed1fc 0x231b esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_line 0x000ef517 0xd72 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_line 0x000f0289 0x1e9 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_line 0x000f0472 0x13de esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_line 0x000f1850 0x2184 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_line 0x000f39d4 0x3d98 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x000f776c 0x656 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_line 0x000f7dc2 0x32af esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_line 0x000fb071 0x3a60 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_line 0x000fead1 0x49bd esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_line 0x0010348e 0x4d56 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_line 0x001081e4 0x1344 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_line 0x00109528 0x9d4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_line 0x00109efc 0x1e42 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_line 0x0010bd3e 0xd76 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_line 0x0010cab4 0x532 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_line 0x0010cfe6 0x1290 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_line 0x0010e276 0x21fe esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_line 0x00110474 0x8cb esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_line 0x00110d3f 0x16d4 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_line 0x00112413 0x9b89 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_line 0x0011bf9c 0x100f esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_line 0x0011cfab 0x903 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_line 0x0011d8ae 0x2a6 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_line 0x0011db54 0x59b esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_line 0x0011e0ef 0x4c5 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_line 0x0011e5b4 0x79f esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_line 0x0011ed53 0x3421 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_line 0x00122174 0x282c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_line 0x001249a0 0x1d41 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_line 0x001266e1 0x5112 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_line 0x0012b7f3 0x48cf esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_line 0x001300c2 0x3724 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_line 0x001337e6 0xc87 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_line 0x0013446d 0x2d41 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_line 0x001371ae 0x4238 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_line 0x0013b3e6 0x1f10 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_line 0x0013d2f6 0xa6b esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_line 0x0013dd61 0x1779 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_line 0x0013f4da 0x15f3 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_line 0x00140acd 0xc7e esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_line 0x0014174b 0x742 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_line 0x00141e8d 0x970 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_line 0x001427fd 0x25b4 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_line 0x00144db1 0x1036 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_line 0x00145de7 0x6f2 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_line 0x001464d9 0x1546 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_line 0x00147a1f 0x552e esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_line 0x0014cf4d 0x7ca esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_line 0x0014d717 0x593 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_line 0x0014dcaa 0x9d8 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_line 0x0014e682 0x8e1 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_line 0x0014ef63 0x14ce esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_line 0x00150431 0x87e esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .debug_line 0x00150caf 0x7df esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_line 0x0015148e 0x2b31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_line 0x00153fbf 0x4a41 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_line 0x00158a00 0x27d esp-idf/lwip/liblwip.a(err.c.obj) + .debug_line 0x00158c7d 0x9b1 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_line 0x0015962e 0x3209 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_line 0x0015c837 0xf67 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_line 0x0015d79e 0x908 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_line 0x0015e0a6 0x832c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_line 0x001663d2 0x442 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_line 0x00166814 0x191c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_line 0x00168130 0x775 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .debug_line 0x001688a5 0x4a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_line 0x00168d4d 0x1399 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_line 0x0016a0e6 0x11ca esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_line 0x0016b2b0 0x1e24 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_line 0x0016d0d4 0xbe7 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_line 0x0016dcbb 0x1122 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_line 0x0016eddd 0x168c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_line 0x00170469 0xb28 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_line 0x00170f91 0x1a40 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_line 0x001729d1 0x61a7 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_line 0x00178b78 0x3368 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_line 0x0017bee0 0x5a2 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .debug_line 0x0017c482 0x3505 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_line 0x0017f987 0x14df esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .debug_line 0x00180e66 0x2b4e esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .debug_line 0x001839b4 0x625 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .debug_line 0x00183fd9 0x4563 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .debug_line 0x0018853c 0x83d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_line 0x00188d79 0x53e5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_line 0x0018e15e 0x9e9a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_line 0x00197ff8 0x4dd9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_line 0x0019cdd1 0x5d62 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_line 0x001a2b33 0x353 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_line 0x001a2e86 0x1599 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_line 0x001a441f 0x1f9f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_line 0x001a63be 0x5a0d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_line 0x001abdcb 0x2cb9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_line 0x001aea84 0x355a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_line 0x001b1fde 0xac1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_line 0x001b2a9f 0x9e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_line 0x001b3482 0x1968 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_line 0x001b4dea 0x1838 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_line 0x001b6622 0xee3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_line 0x001b7505 0x5b89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_line 0x001bd08e 0x5dad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_line 0x001c2e3b 0x124f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_line 0x001c408a 0x1aaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_line 0x001c5b34 0x562 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_line 0x001c6096 0x2673 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_line 0x001c8709 0x584 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_line 0x001c8c8d 0xd2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_line 0x001c99b9 0x2d07 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_line 0x001cc6c0 0x2d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_line 0x001cc990 0x266 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_line 0x001ccbf6 0x6610 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_line 0x001d3206 0x1100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_line 0x001d4306 0x68e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_line 0x001d4994 0x7ea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_line 0x001d517e 0x7ea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_line 0x001d5968 0x194 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_line 0x001d5afc 0x2b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_line 0x001d5dac 0xa8b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_line 0x001d6837 0x4ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_line 0x001d6ce3 0x18ef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_line 0x001d85d2 0xf6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x001d953f 0xe79 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .debug_line 0x001da3b8 0xf16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .debug_line 0x001db2ce 0x164f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_line 0x001dc91d 0x6c2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_line 0x001dcfdf 0xb52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_line 0x001ddb31 0xb74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x001de6a5 0xcf1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_line 0x001df396 0x1c3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_line 0x001e0fd4 0x483 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_line 0x001e1457 0x22ff esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_line 0x001e3756 0x1226 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_line 0x001e497c 0x123d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_line 0x001e5bb9 0x18e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_line 0x001e749c 0x13f5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_line 0x001e8891 0x29db esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_line 0x001eb26c 0x12ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_line 0x001ec518 0x1aa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_line 0x001edfba 0x13e6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_line 0x001ef3a0 0xf4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_line 0x001f02ec 0xf2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_line 0x001f121a 0x2dd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_line 0x001f14f7 0x16ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_line 0x001f2ba4 0xb5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_line 0x001f3702 0xae8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .debug_line 0x001f41ea 0x15e1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_line 0x001f57cb 0x30f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_line 0x001f5ada 0x58a0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_line 0x001fb37a 0x4e41 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_line 0x002001bb 0x350 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_line 0x0020050b 0xa54 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_line 0x00200f5f 0x8fc esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_line 0x0020185b 0x9a9 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_line 0x00202204 0xa51 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_line 0x00202c55 0x1ff esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_line 0x00202e54 0xd8 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_line 0x00202f2c 0x1bf esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_line 0x002030eb 0xbe2 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .debug_line 0x00203ccd 0x4c0e esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_line 0x002088db 0x6d5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_line 0x00208fb0 0x2066 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_line 0x0020b016 0x1b07 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_line 0x0020cb1d 0x223 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .debug_line 0x0020cd40 0x11d2 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_line 0x0020df12 0x3298 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_line 0x002111aa 0xbaa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_line 0x00211d54 0x1fb esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_line 0x00211f4f 0x3db esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_line 0x0021232a 0x945 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_line 0x00212c6f 0x420 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_line 0x0021308f 0x1683 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_line 0x00214712 0xcf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_line 0x00215402 0x580d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_line 0x0021ac0f 0x25b5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_line 0x0021d1c4 0x5be esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_line 0x0021d782 0x1bca esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_line 0x0021f34c 0x3424 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_line 0x00222770 0x1dc1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_line 0x00224531 0xea6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_line 0x002253d7 0x5d72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_line 0x0022b149 0x28c9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_line 0x0022da12 0x11ac esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_line 0x0022ebbe 0xcad esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_line 0x0022f86b 0x23bc esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_line 0x00231c27 0xa66 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_line 0x0023268d 0x7ae3 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_line 0x0023a170 0xd03 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_line 0x0023ae73 0x2f98 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_line 0x0023de0b 0x59c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_line 0x0023e3a7 0x917 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_line 0x0023ecbe 0x67d esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_line 0x0023f33b 0x4ee esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_line 0x0023f829 0x1658 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_line 0x00240e81 0x665a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_line 0x002474db 0x1feb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_line 0x002494c6 0xd32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_line 0x0024a1f8 0x2234 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_line 0x0024c42c 0x367d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_line 0x0024faa9 0xa9d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_line 0x00250546 0xe25 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_line 0x0025136b 0x4d9 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_line 0x00251844 0x4a3 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_line 0x00251ce7 0x4fd esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_line 0x002521e4 0xc53 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_line 0x00252e37 0x1419 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_line 0x00254250 0xc1a esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_line 0x00254e6a 0x729 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_line 0x00255593 0x237 esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + .debug_line 0x002557ca 0x5a5 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .debug_line 0x00255d6f 0x630 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_line 0x0025639f 0x133b esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_line 0x002576da 0x6fd esp-idf/hal/libhal.a(ds_hal.c.obj) + .debug_line 0x00257dd7 0x58c esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_line 0x00258363 0x83 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .debug_line 0x002583e6 0xdc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .debug_line 0x002584c2 0xb7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .debug_line 0x00258579 0x99 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .debug_line 0x00258612 0x48d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .debug_line 0x00258a9f 0x3f8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .debug_line 0x00258e97 0x2c9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .debug_line 0x00259160 0x89 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .debug_line 0x002591e9 0x8a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_line 0x00259273 0x16d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .debug_line 0x002593e0 0x3d6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_line 0x002597b6 0x1e9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .debug_line 0x0025999f 0xec C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .debug_line 0x00259a8b 0x48b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .debug_line 0x00259f16 0x83 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .debug_line 0x00259f99 0x285 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .debug_line 0x0025a21e 0x847 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_line 0x0025aa65 0x52b esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_line 0x0025af90 0x3a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + .debug_line 0x0025afca 0x2672 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .debug_line 0x0025d63c 0x5df C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .debug_line 0x0025dc1b 0x570 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .debug_line 0x0025e18b 0x3e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + .debug_line 0x0025e1c9 0x2c8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .debug_line 0x0025e491 0x5db C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .debug_line 0x0025ea6c 0x80e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .debug_line 0x0025f27a 0x289 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .debug_line 0x0025f503 0x30f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .debug_line 0x0025f812 0xf5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .debug_line 0x0025f907 0x936 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_line 0x0026023d 0x14e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .debug_line 0x0026038b 0x21f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .debug_line 0x002605aa 0x19e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .debug_line 0x00260748 0x25e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .debug_line 0x002609a6 0x40c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .debug_line 0x00260db2 0x34f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .debug_line 0x00261101 0x23e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .debug_line 0x0026133f 0x2cb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .debug_line 0x0026160a 0x283 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .debug_line 0x0026188d 0x10a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .debug_line 0x00261997 0x213 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_line 0x00261baa 0x296 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .debug_line 0x00261e40 0x2bf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .debug_line 0x002620ff 0x8de C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .debug_line 0x002629dd 0xaa8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .debug_line 0x00263485 0x7b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_line 0x00263500 0x129 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .debug_line 0x00263629 0x19d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .debug_line 0x002637c6 0x2c6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .debug_line 0x00263a8c 0x51 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_line 0x00263add 0x86 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .debug_line 0x00263b63 0xa5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .debug_line 0x00263c08 0xa2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .debug_line 0x00263caa 0xb5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_line 0x00263d5f 0xf1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .debug_line 0x00263e50 0xa7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .debug_line 0x00263ef7 0xa7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .debug_line 0x00263f9e 0x80 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .debug_line 0x0026401e 0x7e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .debug_line 0x0026409c 0x113c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .debug_line 0x002651d8 0x69d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .debug_line 0x00265875 0x1b9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_line 0x00265a2e 0x24cd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .debug_line 0x00267efb 0x1b3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_line 0x002680ae 0x4010 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_line 0x0026c0be 0x5a61 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_line 0x00271b1f 0x479c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .debug_line 0x002762bb 0x5d12 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_line 0x0027bfcd 0x3c7a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_line 0x0027fc47 0x1d3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .debug_line 0x0027fe1a 0x365 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .debug_line 0x0028017f 0x240 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .debug_line 0x002803bf 0x5e6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .debug_line 0x002809a5 0x180 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .debug_line 0x00280b25 0x1d7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_line 0x00280cfc 0x22c4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .debug_line 0x00282fc0 0x5c0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .debug_line 0x00283580 0x5b4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .debug_line 0x00283b34 0x1be C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_line 0x00283cf2 0x97 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .debug_line 0x00283d89 0xda C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_line 0x00283e63 0x40bd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_frame 0x00000000 0x28168 + *(.debug_frame) + .debug_frame 0x00000000 0x70 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_frame 0x00000070 0x88 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_frame 0x000000f8 0x1a8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x000002a0 0x220 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x000004c0 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000560 0x58 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_frame 0x000005b8 0xb8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_frame 0x00000670 0x1f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_frame 0x00000860 0x100 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_frame 0x00000960 0x88 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_frame 0x000009e8 0xa0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_frame 0x00000a88 0x40 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_frame 0x00000ac8 0x88 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_frame 0x00000b50 0x58 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_frame 0x00000ba8 0x58 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_frame 0x00000c00 0x190 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_frame 0x00000d90 0xb8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_frame 0x00000e48 0xd0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_frame 0x00000f18 0xe8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_frame 0x00001000 0x40 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_frame 0x00001040 0x130 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_frame 0x00001170 0xb8 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_frame 0x00001228 0xa0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_frame 0x000012c8 0x100 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_frame 0x000013c8 0x40 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x00001408 0x58 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_frame 0x00001460 0xa0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_frame 0x00001500 0xb8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x000015b8 0xd0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00001688 0x148 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_frame 0x000017d0 0x88 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_frame 0x00001858 0x40 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_frame 0x00001898 0x40 esp-idf/log/liblog.a(util.c.obj) + .debug_frame 0x000018d8 0x40 esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x00001918 0x58 esp-idf/log/liblog.a(log_write.c.obj) + .debug_frame 0x00001970 0x40 esp-idf/log/liblog.a(log_level.c.obj) + .debug_frame 0x000019b0 0x88 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_frame 0x00001a38 0x88 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_frame 0x00001ac0 0xb8 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_frame 0x00001b78 0x58 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_frame 0x00001bd0 0x358 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x00001f28 0xd0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x00001ff8 0x2b0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x000022a8 0x250 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_frame 0x000024f8 0x88 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_frame 0x00002580 0xb8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_frame 0x00002638 0x40 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_frame 0x00002678 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_frame 0x00002760 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_frame 0x000027d0 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_frame 0x000028d0 0x2c8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_frame 0x00002b98 0x1f0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_frame 0x00002d88 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_frame 0x00002e58 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_frame 0x00002ef8 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_frame 0x00002fe0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_frame 0x00003050 0x388 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x000033d8 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x000034c0 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_frame 0x00003560 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x00003648 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_frame 0x00003670 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_frame 0x00003788 0x748 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_frame 0x00003ed0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_frame 0x00003f40 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .debug_frame 0x00003fb0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_frame 0x00003fd8 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_frame 0x000040d8 0x6b8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_frame 0x00004790 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_frame 0x00004830 0x70 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_frame 0x000048a0 0x3a0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x00004c40 0x820 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x00005460 0x1c0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x00005620 0xb8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_frame 0x000056d8 0x40 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_frame 0x00005718 0x70 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_frame 0x00005788 0x88 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x00005810 0x58 esp-idf/newlib/libnewlib.a(init.c.obj) + .debug_frame 0x00005868 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_frame 0x00005890 0x70 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_frame 0x00005900 0x1a8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_frame 0x00005aa8 0x268 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_frame 0x00005d10 0x70 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_frame 0x00005d80 0x40 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_frame 0x00005dc0 0x148 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_frame 0x00005f08 0x88 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_frame 0x00005f90 0xb8 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .debug_frame 0x00006048 0xa0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_frame 0x000060e8 0x40 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_frame 0x00006128 0x88 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_frame 0x000061b0 0x28 esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_frame 0x000061d8 0x4a8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_frame 0x00006680 0x160 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_frame 0x000067e0 0xe8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_frame 0x000068c8 0x100 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_frame 0x000069c8 0xd0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_frame 0x00006a98 0xb8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x00006b50 0x40 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_frame 0x00006b90 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_frame 0x00006be8 0x58 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_frame 0x00006c40 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_frame 0x00006cb0 0x100 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_frame 0x00006db0 0x358 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_frame 0x00007108 0x700 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_frame 0x00007808 0xe8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_frame 0x000078f0 0x70 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_frame 0x00007960 0x310 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_frame 0x00007c70 0x118 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_frame 0x00007d88 0x1c0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_frame 0x00007f48 0x688 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_frame 0x000085d0 0x1a8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_frame 0x00008778 0xd0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_frame 0x00008848 0x28 esp-idf/main/libmain.a(main.c.obj) + .debug_frame 0x00008870 0x40 esp-idf/main/libmain.a(wifi_init.c.obj) + .debug_frame 0x000088b0 0x28 esp-idf/main/libmain.a(fs_init.c.obj) + .debug_frame 0x000088d8 0xb8 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .debug_frame 0x00008990 0x3a0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_frame 0x00008d30 0xa0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_frame 0x00008dd0 0x430 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_frame 0x00009200 0x3a0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_frame 0x000095a0 0x118 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_frame 0x000096b8 0xa0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_frame 0x00009758 0x478 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .debug_frame 0x00009bd0 0x268 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .debug_frame 0x00009e38 0x178 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .debug_frame 0x00009fb0 0x58 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .debug_frame 0x0000a008 0x28 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .debug_frame 0x0000a030 0x70 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .debug_frame 0x0000a0a0 0x28 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .debug_frame 0x0000a0c8 0xaa8 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_frame 0x0000ab70 0x70 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_frame 0x0000abe0 0x5c8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_frame 0x0000b1a8 0x370 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x0000b518 0x178 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_frame 0x0000b690 0x130 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_frame 0x0000b7c0 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x0000b890 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x0000b8b8 0xa0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x0000b958 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x0000bb30 0x130 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_frame 0x0000bc60 0x208 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x0000be68 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x0000be90 0x220 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x0000c0b0 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x0000c150 0x250 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_frame 0x0000c3a0 0xa0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_frame 0x0000c440 0x28 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_frame 0x0000c468 0xd0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_frame 0x0000c538 0x58 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_frame 0x0000c590 0x190 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x0000c720 0x130 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x0000c850 0xd0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x0000c920 0x2f8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x0000cc18 0x118 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x0000cd30 0x220 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x0000cf50 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000cfd8 0xe8 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .debug_frame 0x0000d0c0 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_frame 0x0000d130 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_frame 0x0000d158 0x340 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x0000d498 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x0000d508 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x0000d560 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x0000d600 0x100 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x0000d700 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_frame 0x0000d740 0x190 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_frame 0x0000d8d0 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_frame 0x0000d910 0x130 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x0000da40 0x58 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_frame 0x0000da98 0xd0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_frame 0x0000db68 0x268 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_frame 0x0000ddd0 0xb8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_frame 0x0000de88 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_frame 0x0000deb0 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_frame 0x0000ded8 0x148 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x0000e020 0xd0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_frame 0x0000e0f0 0x208 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x0000e2f8 0xb8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x0000e3b0 0xd0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_frame 0x0000e480 0x178 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_frame 0x0000e5f8 0x280 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_frame 0x0000e878 0x40 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_frame 0x0000e8b8 0x118 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_frame 0x0000e9d0 0xd0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_frame 0x0000eaa0 0x88 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_frame 0x0000eb28 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_frame 0x0000eb50 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_frame 0x0000eb90 0x148 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_frame 0x0000ecd8 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_frame 0x0000ed30 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_frame 0x0000edd0 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_frame 0x0000ee10 0x298 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_frame 0x0000f0a8 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_frame 0x0000f190 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_frame 0x0000f1d0 0x130 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_frame 0x0000f300 0x358 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_frame 0x0000f658 0x448 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x0000faa0 0xd0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_frame 0x0000fb70 0x268 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_frame 0x0000fdd8 0x958 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_frame 0x00010730 0x328 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_frame 0x00010a58 0x4a8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_frame 0x00010f00 0x220 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_frame 0x00011120 0x130 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_frame 0x00011250 0x208 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_frame 0x00011458 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_frame 0x000114c8 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_frame 0x00011538 0xe8 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_frame 0x00011620 0x148 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_frame 0x00011768 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_frame 0x000117a8 0x88 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_frame 0x00011830 0x6b8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_frame 0x00011ee8 0x1c0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_frame 0x000120a8 0xb8 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_frame 0x00012160 0x28 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_frame 0x00012188 0x70 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_frame 0x000121f8 0x88 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_frame 0x00012280 0xd0 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_frame 0x00012350 0x3b8 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_frame 0x00012708 0x3a0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_frame 0x00012aa8 0x160 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_frame 0x00012c08 0x538 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_frame 0x00013140 0x118 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_frame 0x00013258 0x298 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_frame 0x000134f0 0x118 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_frame 0x00013608 0x1a8 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_frame 0x000137b0 0x3b8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_frame 0x00013b68 0x1d8 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_frame 0x00013d40 0x58 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_frame 0x00013d98 0x1d8 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_frame 0x00013f70 0x100 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_frame 0x00014070 0xa0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_frame 0x00014110 0x28 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_frame 0x00014138 0xe8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_frame 0x00014220 0xd0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_frame 0x000142f0 0x58 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_frame 0x00014348 0x28 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_frame 0x00014370 0x160 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_frame 0x000144d0 0x2f8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_frame 0x000147c8 0x40 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_frame 0x00014808 0x40 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_frame 0x00014848 0x88 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_frame 0x000148d0 0x40 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_frame 0x00014910 0x2b0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_frame 0x00014bc0 0xe8 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .debug_frame 0x00014ca8 0xb8 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_frame 0x00014d60 0x328 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_frame 0x00015088 0x388 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_frame 0x00015410 0x28 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_frame 0x00015438 0xe8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_frame 0x00015520 0x238 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_frame 0x00015758 0x118 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_frame 0x00015870 0xb8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_frame 0x00015928 0xcb8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_frame 0x000165e0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_frame 0x00016608 0x3b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_frame 0x000169c0 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .debug_frame 0x00016a30 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_frame 0x00016ab8 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_frame 0x00016b88 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_frame 0x00016d00 0x280 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_frame 0x00016f80 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_frame 0x00017068 0x208 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_frame 0x00017270 0x250 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_frame 0x000174c0 0x118 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_frame 0x000175d8 0x6b8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_frame 0x00017c90 0x190 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_frame 0x00017e20 0x3d0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_frame 0x000181f0 0x70 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .debug_frame 0x00018260 0x250 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_frame 0x000184b0 0x2e0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .debug_frame 0x00018790 0x3b8 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .debug_frame 0x00018b48 0x58 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .debug_frame 0x00018ba0 0x340 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .debug_frame 0x00018ee0 0x100 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_frame 0x00018fe0 0x520 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_frame 0x00019500 0xe50 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_frame 0x0001a350 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_frame 0x0001a648 0x370 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_frame 0x0001a9b8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_frame 0x0001a9e0 0x148 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_frame 0x0001ab28 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_frame 0x0001ac10 0x508 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_frame 0x0001b118 0x3a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_frame 0x0001b4b8 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_frame 0x0001b7b0 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_frame 0x0001ba90 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_frame 0x0001bb30 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_frame 0x0001bc78 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_frame 0x0001be68 0x268 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_frame 0x0001c0d0 0x7f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_frame 0x0001c8c0 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_frame 0x0001ca50 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_frame 0x0001cbc8 0x220 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_frame 0x0001cde8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_frame 0x0001ce28 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_frame 0x0001d108 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_frame 0x0001d178 0x298 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_frame 0x0001d410 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_frame 0x0001d5d0 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_frame 0x0001d658 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_frame 0x0001d698 0x520 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_frame 0x0001dbb8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_frame 0x0001dc40 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_frame 0x0001dc80 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_frame 0x0001dcf0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_frame 0x0001dd60 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_frame 0x0001dd88 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_frame 0x0001ddc8 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_frame 0x0001de80 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_frame 0x0001def0 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_frame 0x0001e038 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x0001e138 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .debug_frame 0x0001e178 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .debug_frame 0x0001e278 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_frame 0x0001e3c0 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_frame 0x0001e4a8 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_frame 0x0001e5a8 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x0001e6a8 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_frame 0x0001e7d8 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_frame 0x0001e968 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_frame 0x0001ea20 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_frame 0x0001eb80 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_frame 0x0001ed40 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_frame 0x0001ef48 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_frame 0x0001f120 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_frame 0x0001f2c8 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_frame 0x0001f458 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_frame 0x0001f5e8 0x358 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_frame 0x0001f940 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_frame 0x0001fa10 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_frame 0x0001fac8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_frame 0x0001fb50 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_frame 0x0001fb78 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_frame 0x0001fc48 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_frame 0x0001fcd0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .debug_frame 0x0001fd10 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_frame 0x0001fd98 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_frame 0x0001fdd8 0x550 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_frame 0x00020328 0x328 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_frame 0x00020650 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_frame 0x00020678 0x1c0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_frame 0x00020838 0xd0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_frame 0x00020908 0x148 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_frame 0x00020a50 0x118 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_frame 0x00020b68 0x28 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_frame 0x00020b90 0xb8 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .debug_frame 0x00020c48 0x298 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_frame 0x00020ee0 0xd0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_frame 0x00020fb0 0x280 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_frame 0x00021230 0x220 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_frame 0x00021450 0x1d8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_frame 0x00021628 0x2f8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_frame 0x00021920 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_frame 0x00021a08 0xb8 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_frame 0x00021ac0 0x40 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_frame 0x00021b00 0x238 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_frame 0x00021d38 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_frame 0x00021ee0 0x628 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_frame 0x00022508 0x1f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_frame 0x000226f8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_frame 0x00022750 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_frame 0x00022868 0x5c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_frame 0x00022e30 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_frame 0x00022fa8 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_frame 0x000230f0 0x670 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_frame 0x00023760 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_frame 0x00023848 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_frame 0x00023990 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_frame 0x00023aa8 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_frame 0x00023c38 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_frame 0x00023ca8 0x5b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_frame 0x00024258 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_frame 0x00024328 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_frame 0x000245c0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_frame 0x000245e8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_frame 0x00024640 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_frame 0x00024680 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_frame 0x000246a8 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_frame 0x00024838 0x670 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_frame 0x00024ea8 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_frame 0x00024f60 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_frame 0x00025090 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_frame 0x00025238 0x4c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_frame 0x000256f8 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_frame 0x00025828 0x268 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_frame 0x00025a90 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_frame 0x00025ab8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_frame 0x00025ae0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_frame 0x00025b08 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_frame 0x00025bc0 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_frame 0x00025cf0 0x238 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_frame 0x00025f28 0xd0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_frame 0x00025ff8 0x70 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .debug_frame 0x00026068 0x1a8 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_frame 0x00026210 0x1c0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_frame 0x000263d0 0x118 esp-idf/hal/libhal.a(ds_hal.c.obj) + .debug_frame 0x000264e8 0x28 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_frame 0x00026510 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .debug_frame 0x00026538 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .debug_frame 0x00026578 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .debug_frame 0x000265a0 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .debug_frame 0x000265c8 0x88 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .debug_frame 0x00026650 0x88 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .debug_frame 0x000266d8 0xd0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .debug_frame 0x000267a8 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .debug_frame 0x000267d0 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .debug_frame 0x000267f8 0xa0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_frame 0x00026898 0x88 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .debug_frame 0x00026920 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .debug_frame 0x00026978 0xd0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .debug_frame 0x00026a48 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .debug_frame 0x00026a70 0x130 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .debug_frame 0x00026ba0 0x280 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_frame 0x00026e20 0x58 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_frame 0x00026e78 0xb8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .debug_frame 0x00026f30 0x70 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .debug_frame 0x00026fa0 0x70 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .debug_frame 0x00027010 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .debug_frame 0x00027050 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .debug_frame 0x000270a8 0x130 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .debug_frame 0x000271d8 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .debug_frame 0x00027218 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .debug_frame 0x00027258 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .debug_frame 0x00027298 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_frame 0x000272c0 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .debug_frame 0x000272e8 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .debug_frame 0x00027328 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .debug_frame 0x00027368 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .debug_frame 0x000273a8 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .debug_frame 0x000273e8 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .debug_frame 0x00027428 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .debug_frame 0x00027468 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .debug_frame 0x000274a8 0x88 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .debug_frame 0x00027530 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .debug_frame 0x00027570 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_frame 0x000275b0 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .debug_frame 0x000275d8 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .debug_frame 0x00027618 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .debug_frame 0x00027658 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .debug_frame 0x000276b0 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_frame 0x000276d8 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .debug_frame 0x00027700 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .debug_frame 0x00027758 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .debug_frame 0x00027780 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .debug_frame 0x000277a8 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .debug_frame 0x000277d0 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .debug_frame 0x000277f8 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_frame 0x00027820 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .debug_frame 0x00027848 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .debug_frame 0x00027870 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .debug_frame 0x00027898 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .debug_frame 0x000278c0 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .debug_frame 0x000278e8 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .debug_frame 0x00027940 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .debug_frame 0x00027998 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_frame 0x000279d8 0x1d8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .debug_frame 0x00027bb0 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_frame 0x00027bf0 0x8c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_frame 0x00027c7c 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_frame 0x00027cbc 0x44 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .debug_frame 0x00027d00 0x70 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_frame 0x00027d70 0x88 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_frame 0x00027df8 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .debug_frame 0x00027e20 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .debug_frame 0x00027e60 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .debug_frame 0x00027e88 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .debug_frame 0x00027ee0 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .debug_frame 0x00027f38 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_frame 0x00027f60 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .debug_frame 0x00027fa0 0x70 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .debug_frame 0x00028010 0x70 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .debug_frame 0x00028080 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_frame 0x000280c0 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .debug_frame 0x000280e8 0x28 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_frame 0x00028110 0x58 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_str 0x00000000 0x7ac0a + *(.debug_str) + .debug_str 0x00000000 0x7ac0a esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x56a (size before relaxing) + .debug_str 0x0007ac0a 0x580 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_str 0x0007ac0a 0xa16 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x0007ac0a 0xb4b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x0007ac0a 0x306a esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x0007ac0a 0x86a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x0007ac0a 0x2f0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_str 0x0007ac0a 0x40ca esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_str 0x0007ac0a 0x741 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_str 0x0007ac0a 0x3007 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_str 0x0007ac0a 0x33a esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_str 0x0007ac0a 0x99 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_str 0x0007ac0a 0x4aea esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_str 0x0007ac0a 0x32bb esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_str 0x0007ac0a 0x22c2 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_str 0x0007ac0a 0x373 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_str 0x0007ac0a 0x7ed5 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_str 0x0007ac0a 0x59c7 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_str 0x0007ac0a 0x5dd esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_str 0x0007ac0a 0x131e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_str 0x0007ac0a 0x684 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_str 0x0007ac0a 0xd17 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_str 0x0007ac0a 0xa1 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_str 0x0007ac0a 0x630 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_str 0x0007ac0a 0x80c esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_str 0x0007ac0a 0x9f esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_str 0x0007ac0a 0x7e6 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_str 0x0007ac0a 0x526 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_str 0x0007ac0a 0x5f0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_str 0x0007ac0a 0x460 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_str 0x0007ac0a 0x4dc esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_str 0x0007ac0a 0x2b23 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x0007ac0a 0x2cf6 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x0007ac0a 0xa27 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_str 0x0007ac0a 0x128e esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_str 0x0007ac0a 0x3ac esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_str 0x0007ac0a 0x2ed esp-idf/log/liblog.a(util.c.obj) + .debug_str 0x0007ac0a 0x3dd esp-idf/log/liblog.a(log.c.obj) + .debug_str 0x0007ac0a 0x402 esp-idf/log/liblog.a(log_write.c.obj) + .debug_str 0x0007ac0a 0x32b esp-idf/log/liblog.a(log_level.c.obj) + .debug_str 0x0007ac0a 0x49b esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_str 0x0007ac0a 0x417 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_str 0x0007ac0a 0x436 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_str 0x0007ac0a 0x353 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_str 0x0007ac0a 0xc76 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_str 0x0007ac0a 0x8a5 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_str 0x0007ac0a 0xa08 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_str 0x0007ac0a 0xa2b esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_str 0x0007ac0a 0x935 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_str 0x0007ac0a 0x4c7 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_str 0x0007ac0a 0x645 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_str 0x0007ac0a 0x317 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_str 0x0007ac0a 0x577 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_str 0x0007ac0a 0x2c4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_str 0x0007ac0a 0x159e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_str 0x0007ac0a 0x1a90 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_str 0x0007ac0a 0x135f esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_str 0x0007ac0a 0x36c3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_str 0x0007ac0a 0x1bad esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_str 0x0007ac0a 0x77f esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_str 0x0007ac0a 0x3912 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_str 0x0007ac0a 0x312d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_str 0x0007ac0a 0x3e81 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_str 0x0007ac0a 0x10a0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_str 0x0007ac0a 0x50a6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_str 0x0007ac0a 0x3bb esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_str 0x0007ac0a 0x2156 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_str 0x0007ac0a 0x2956 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_str 0x0007ac0a 0x4e5 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_str 0x0007ac0a 0x465 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .debug_str 0x0007ac0a 0x357 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_str 0x0007ac0a 0x115c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_str 0x0007ac0a 0x7f89 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_str 0x0007ac0a 0x74f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_str 0x0007ac0a 0x678 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_str 0x0007ac0a 0xe4f esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_str 0x0007ac0a 0x20bf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_str 0x0007ac0a 0x108f esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_str 0x0007ac0a 0xa2 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_str 0x0007ac0a 0x3a0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_str 0x0007ac0a 0x849 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_str 0x0007ac0a 0x5b95 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_str 0x0007ac0a 0x3a9 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_str 0x0007ac0a 0x342 esp-idf/newlib/libnewlib.a(init.c.obj) + .debug_str 0x0007ac0a 0x2d9 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_str 0x0007ac0a 0x37b esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_str 0x0007ac0a 0x7f7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_str 0x0007ac0a 0x960 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_str 0x0007ac0a 0x3c3 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_str 0x0007ac0a 0x2ac esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_str 0x0007ac0a 0xada esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_str 0x0007ac0a 0x7be esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_str 0x0007ac0a 0x8a1 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .debug_str 0x0007ac0a 0x9f9 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_str 0x0007ac0a 0x694 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_str 0x0007ac0a 0xc4a esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_str 0x0007ac0a 0x383 esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_str 0x0007ac0a 0xfa6 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_str 0x0007ac0a 0x957 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_str 0x0007ac0a 0x5ea esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_str 0x0007ac0a 0x6df esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_str 0x0007ac0a 0x46c esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_str 0x0007ac0a 0xb96 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_str 0x0007ac0a 0x55f esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_str 0x0007ac0a 0x34b esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_str 0x0007ac0a 0x492 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_str 0x0007ac0a 0x39c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_str 0x0007ac0a 0x5e4c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_str 0x0007ac0a 0x29d7 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_str 0x0007ac0a 0x802a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_str 0x0007ac0a 0xfa4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_str 0x0007ac0a 0xf31 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_str 0x0007ac0a 0x2278 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_str 0x0007ac0a 0x8265 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_str 0x0007ac0a 0x11ef esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_str 0x0007ac0a 0x1cd9 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_str 0x0007ac0a 0x1167 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_str 0x0007ac0a 0xaa6 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_str 0x0007ac0a 0x264 esp-idf/main/libmain.a(main.c.obj) + .debug_str 0x0007ac0a 0x17e5 esp-idf/main/libmain.a(wifi_init.c.obj) + .debug_str 0x0007ac0a 0x404 esp-idf/main/libmain.a(fs_init.c.obj) + .debug_str 0x0007ac0a 0x1248 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .debug_str 0x0007ac0a 0x227e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_str 0x0007ac0a 0xf69 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_str 0x0007ac0a 0xfb9 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_str 0x0007ac0a 0x10b1 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_str 0x0007ac0a 0x8d8 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_str 0x0007ac0a 0xb6b esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_str 0x0007ac0a 0x26ed esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .debug_str 0x0007ac0a 0x999 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .debug_str 0x0007ac0a 0x6c8 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .debug_str 0x0007ac0a 0x4f2 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .debug_str 0x0007ac0a 0xf8e esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .debug_str 0x0007ac0a 0xc17 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .debug_str 0x0007ac0a 0x345 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .debug_str 0x0007ac0a 0x10a1 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_str 0x0007ac0a 0x87 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_str 0x0007ac0a 0x9f esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_str 0x0007ac0a 0x3e1 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_str 0x0007ac0a 0x9f esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_str 0x0007ac0a 0x2beb esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_str 0x0007ac0a 0x280b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_str 0x0007ac0a 0x14db esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_str 0x0007ac0a 0x1128 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_str 0x0007ac0a 0x13ec esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x0007ac0a 0x290 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_str 0x0007ac0a 0xb75 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_str 0x0007ac0a 0x5f0e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_str 0x0007ac0a 0x1886 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_str 0x0007ac0a 0x1c07 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x0007ac0a 0x57c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x0007ac0a 0x1b7d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x0007ac0a 0x5d1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x0007ac0a 0x1105 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_str 0x0007ac0a 0x3ab esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_str 0x0007ac0a 0x5ca esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_str 0x0007ac0a 0x2ee esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_str 0x0007ac0a 0x7ac esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_str 0x0007ac0a 0x3a0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_str 0x0007ac0a 0x18b0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_str 0x0007ac0a 0xbdf esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_str 0x0007ac0a 0x7f2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_str 0x0007ac0a 0x2999 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_str 0x0007ac0a 0x4796 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_str 0x0007ac0a 0xd36 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_str 0x0007ac0a 0x7be esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_str 0x0007ac0a 0x1737 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .debug_str 0x0007ac0a 0xed2 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_str 0x0007ac0a 0xb33 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_str 0x0007ac0a 0x2013 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_str 0x0007ac0a 0xce5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_str 0x0007ac0a 0x17aa esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_str 0x0007ac0a 0xd92 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_str 0x0007ac0a 0xe3d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_str 0x0007ac0a 0xc44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_str 0x0007ac0a 0x1a69 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_str 0x0007ac0a 0xc3c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_str 0x0007ac0a 0x3c9c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_str 0x0007ac0a 0x349 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_str 0x0007ac0a 0xf65 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_str 0x0007ac0a 0xda6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_str 0x0007ac0a 0x8025 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_str 0x0007ac0a 0x9f esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_str 0x0007ac0a 0x581 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_str 0x0007ac0a 0x2b4 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_str 0x0007ac0a 0x670 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_str 0x0007ac0a 0x385e esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_str 0x0007ac0a 0x319d esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_str 0x0007ac0a 0x52a esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_str 0x0007ac0a 0x172e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_str 0x0007ac0a 0xe92 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_str 0x0007ac0a 0x1c82 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_str 0x0007ac0a 0x2a9c esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_str 0x0007ac0a 0x2da2 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_str 0x0007ac0a 0xc61 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_str 0x0007ac0a 0x27e esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_str 0x0007ac0a 0x2d5 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_str 0x0007ac0a 0x33b esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_str 0x0007ac0a 0x43a8 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_str 0x0007ac0a 0x318 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_str 0x0007ac0a 0x361 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_str 0x0007ac0a 0x7c9 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_str 0x0007ac0a 0x31d esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_str 0x0007ac0a 0x228b esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_str 0x0007ac0a 0x15ce esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_str 0x0007ac0a 0x16be esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_str 0x0007ac0a 0x5e56 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_str 0x0007ac0a 0x28a esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_str 0x0007ac0a 0x8c8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_str 0x0007ac0a 0x6b1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_str 0x0007ac0a 0xeeb esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_str 0x0007ac0a 0x5cd esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_str 0x0007ac0a 0x11c2 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_str 0x0007ac0a 0xb1f6 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_str 0x0007ac0a 0x5cda esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_str 0x0007ac0a 0xa93d esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_str 0x0007ac0a 0x9235 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_str 0x0007ac0a 0x1374 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_str 0x0007ac0a 0xa663 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_str 0x0007ac0a 0x3971 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_str 0x0007ac0a 0x521 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_str 0x0007ac0a 0x4677 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_str 0x0007ac0a 0x774e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_str 0x0007ac0a 0x1040 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_str 0x0007ac0a 0x9c7 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_str 0x0007ac0a 0x1faa esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_str 0x0007ac0a 0xd04 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_str 0x0007ac0a 0x345 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_str 0x0007ac0a 0x2cb esp-idf/lwip/liblwip.a(init.c.obj) + .debug_str 0x0007ac0a 0x9b2 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_str 0x0007ac0a 0x325 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_str 0x0007ac0a 0x6cf esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_str 0x0007ac0a 0x1198 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_str 0x0007ac0a 0xf14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_str 0x0007ac0a 0xd15 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_str 0x0007ac0a 0x132a esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_str 0x0007ac0a 0x1164 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_str 0x0007ac0a 0xfa6 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_str 0x0007ac0a 0xacc esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_str 0x0007ac0a 0xff1 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_str 0x0007ac0a 0x1683 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_str 0x0007ac0a 0xf69 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_str 0x0007ac0a 0x948 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_str 0x0007ac0a 0xb04 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_str 0x0007ac0a 0xe29 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_str 0x0007ac0a 0x81b esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_str 0x0007ac0a 0x73f esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_str 0x0007ac0a 0xbbc esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_str 0x0007ac0a 0xbe6 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_str 0x0007ac0a 0x8cd esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_str 0x0007ac0a 0x793 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_str 0x0007ac0a 0xd97 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_str 0x0007ac0a 0x1473 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_str 0x0007ac0a 0x9a6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_str 0x0007ac0a 0x62f esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_str 0x0007ac0a 0xba7 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_str 0x0007ac0a 0xa2b esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_str 0x0007ac0a 0xb01 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_str 0x0007ac0a 0xb71 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .debug_str 0x0007ac0a 0x9bc esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_str 0x0007ac0a 0x12f3 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_str 0x0007ac0a 0x193c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_str 0x0007ac0a 0x289 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_str 0x0007ac0a 0x65d esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_str 0x0007ac0a 0xcd0 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_str 0x0007ac0a 0x4d6 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_str 0x0007ac0a 0x4fb esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_str 0x0007ac0a 0x37b2 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_str 0x0007ac0a 0x527 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_str 0x0007ac0a 0x178e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_str 0x0007ac0a 0x488 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .debug_str 0x0007ac0a 0x38c esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_str 0x0007ac0a 0x41c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_str 0x0007ac0a 0x417 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_str 0x0007ac0a 0x5c9 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_str 0x0007ac0a 0x3c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_str 0x0007ac0a 0xd19 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_str 0x0007ac0a 0x1531 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_str 0x0007ac0a 0x75b esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_str 0x0007ac0a 0x2e58 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_str 0x0007ac0a 0x1354 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_str 0x0007ac0a 0x2acc esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_str 0x0007ac0a 0x4b3 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .debug_str 0x0007ac0a 0x2ce8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_str 0x0007ac0a 0xdbd esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .debug_str 0x0007ac0a 0x148a esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .debug_str 0x0007ac0a 0x6fd esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .debug_str 0x0007ac0a 0x128f esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .debug_str 0x0007ac0a 0x1272 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_str 0x0007ac0a 0x2a42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_str 0x0007ac0a 0x4752 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_str 0x0007ac0a 0x27aa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_str 0x0007ac0a 0x2b6b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_str 0x0007ac0a 0x300 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_str 0x0007ac0a 0x83c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_str 0x0007ac0a 0x1eb8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_str 0x0007ac0a 0x1002 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_str 0x0007ac0a 0xaa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_str 0x0007ac0a 0x1a28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_str 0x0007ac0a 0x1bd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_str 0x0007ac0a 0x471 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_str 0x0007ac0a 0x1303 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_str 0x0007ac0a 0xb61 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_str 0x0007ac0a 0xa45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_str 0x0007ac0a 0x1279 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_str 0x0007ac0a 0xa81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_str 0x0007ac0a 0xb82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_str 0x0007ac0a 0xf37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_str 0x0007ac0a 0x399 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_str 0x0007ac0a 0x1211 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_str 0x0007ac0a 0x6aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_str 0x0007ac0a 0xc05 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_str 0x0007ac0a 0x1b02 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_str 0x0007ac0a 0x35a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_str 0x0007ac0a 0x2b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_str 0x0007ac0a 0x13a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_str 0x0007ac0a 0x4fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_str 0x0007ac0a 0x485 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_str 0x0007ac0a 0x526 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_str 0x0007ac0a 0x540 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_str 0x0007ac0a 0x28a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_str 0x0007ac0a 0x2b9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_str 0x0007ac0a 0x432 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_str 0x0007ac0a 0x307 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_str 0x0007ac0a 0x6b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_str 0x0007ac0a 0x1193 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_str 0x0007ac0a 0x867 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .debug_str 0x0007ac0a 0x97b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .debug_str 0x0007ac0a 0x140e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_str 0x0007ac0a 0x5ef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_str 0x0007ac0a 0x593 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_str 0x0007ac0a 0x5c6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_str 0x0007ac0a 0x625 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_str 0x0007ac0a 0xacb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_str 0x0007ac0a 0x38b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_str 0x0007ac0a 0x586 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_str 0x0007ac0a 0x5a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_str 0x0007ac0a 0x62f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_str 0x0007ac0a 0x9f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_str 0x0007ac0a 0xc2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_str 0x0007ac0a 0xb46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_str 0x0007ac0a 0xbb3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_str 0x0007ac0a 0x15c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_str 0x0007ac0a 0x10b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_str 0x0007ac0a 0x1343 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_str 0x0007ac0a 0x1458 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_str 0x0007ac0a 0x47d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_str 0x0007ac0a 0x14cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_str 0x0007ac0a 0x1106 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_str 0x0007ac0a 0x713 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .debug_str 0x0007ac0a 0x3f1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_str 0x0007ac0a 0x494 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_str 0x0007ac0a 0x19a5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_str 0x0007ac0a 0xcec esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_str 0x0007ac0a 0x32d esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_str 0x0007ac0a 0x6a8 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_str 0x0007ac0a 0x530 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_str 0x0007ac0a 0x601 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_str 0x0007ac0a 0x4ac esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_str 0x0007ac0a 0x285 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_str 0x0007ac0a 0x2c2 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_str 0x0007ac0a 0x280 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_str 0x0007ac0a 0x8a4 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .debug_str 0x0007ac0a 0x6615 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_str 0x0007ac0a 0x502 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_str 0x0007ac0a 0xec4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_str 0x0007ac0a 0x1981 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_str 0x0007ac0a 0x2b2 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .debug_str 0x0007ac0a 0xbc2 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_str 0x0007ac0a 0x191f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_str 0x0007ac0a 0x990 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_str 0x0007ac0a 0x5df esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_str 0x0007ac0a 0x971 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_str 0x0007ac0a 0x789 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_str 0x0007ac0a 0x43d esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_str 0x0007ac0a 0x3dc9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_str 0x0007ac0a 0x236a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_str 0x0007ac0a 0x44cc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_str 0x0007ac0a 0x2ade esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_str 0x0007ac0a 0xb50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_str 0x0007ac0a 0x33cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_str 0x0007ac0a 0x1972 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_str 0x0007ac0a 0x1190 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_str 0x0007ac0a 0xcba esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_str 0x0007ac0a 0x2d74 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_str 0x0007ac0a 0xf3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_str 0x0007ac0a 0x678 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_str 0x0007ac0a 0x20e2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_str 0x0007ac0a 0x1b64 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_str 0x0007ac0a 0x48f esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_str 0x0007ac0a 0x1318 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_str 0x0007ac0a 0x5e9 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_str 0x0007ac0a 0x8a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_str 0x0007ac0a 0x2ff esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_str 0x0007ac0a 0x499 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_str 0x0007ac0a 0x34a esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_str 0x0007ac0a 0x2f6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_str 0x0007ac0a 0xc29 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_str 0x0007ac0a 0x28ac esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_str 0x0007ac0a 0xb38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_str 0x0007ac0a 0x41b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_str 0x0007ac0a 0xc95 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_str 0x0007ac0a 0x2e59 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_str 0x0007ac0a 0xbcf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_str 0x0007ac0a 0x736 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_str 0x0007ac0a 0x2b1 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_str 0x0007ac0a 0x2d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_str 0x0007ac0a 0x2d3 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_str 0x0007ac0a 0x41f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_str 0x0007ac0a 0x9de esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_str 0x0007ac0a 0xb51 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_str 0x0007ac0a 0x413 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_str 0x0007ac0a 0x62b esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + .debug_str 0x0007ac0a 0x562 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .debug_str 0x0007ac0a 0xf65 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_str 0x0007ac0a 0x1407 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_str 0x0007ac0a 0x49f esp-idf/hal/libhal.a(ds_hal.c.obj) + .debug_str 0x0007ac0a 0x710 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_str 0x0007ac0a 0x104 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .debug_str 0x0007ac0a 0x18b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .debug_str 0x0007ac0a 0x15d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .debug_str 0x0007ac0a 0x29b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .debug_str 0x0007ac0a 0xb14 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .debug_str 0x0007ac0a 0xcd8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .debug_str 0x0007ac0a 0x919 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .debug_str 0x0007ac0a 0x11a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .debug_str 0x0007ac0a 0x77f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_str 0x0007ac0a 0x425 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .debug_str 0x0007ac0a 0x957 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_str 0x0007ac0a 0x493 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .debug_str 0x0007ac0a 0x216 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .debug_str 0x0007ac0a 0x8d2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .debug_str 0x0007ac0a 0xf9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .debug_str 0x0007ac0a 0x993 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .debug_str 0x0007ac0a 0x105b esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_str 0x0007ac0a 0x3d2 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_str 0x0007ac0a 0x9f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + .debug_str 0x0007ac0a 0xa66 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .debug_str 0x0007ac0a 0x766 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .debug_str 0x0007ac0a 0x762 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .debug_str 0x0007ac0a 0x116 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + .debug_str 0x0007ac0a 0x5a5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .debug_str 0x0007ac0a 0x59a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .debug_str 0x0007ac0a 0x753 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .debug_str 0x0007ac0a 0x5cc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .debug_str 0x0007ac0a 0x576 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .debug_str 0x0007ac0a 0x501 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .debug_str 0x0007ac0a 0x586 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_str 0x0007ac0a 0x4e1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .debug_str 0x0007ac0a 0x5a2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .debug_str 0x0007ac0a 0x537 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .debug_str 0x0007ac0a 0x5a1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .debug_str 0x0007ac0a 0x55c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .debug_str 0x0007ac0a 0x548 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .debug_str 0x0007ac0a 0x53a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .debug_str 0x0007ac0a 0x552 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .debug_str 0x0007ac0a 0x551 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .debug_str 0x0007ac0a 0x53f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .debug_str 0x0007ac0a 0x54a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_str 0x0007ac0a 0x513 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .debug_str 0x0007ac0a 0x541 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .debug_str 0x0007ac0a 0x706 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .debug_str 0x0007ac0a 0x531 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .debug_str 0x0007ac0a 0xc8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_str 0x0007ac0a 0x532 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .debug_str 0x0007ac0a 0x77c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .debug_str 0x0007ac0a 0x503 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .debug_str 0x0007ac0a 0x4e3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_str 0x0007ac0a 0x4dd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .debug_str 0x0007ac0a 0x4e4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .debug_str 0x0007ac0a 0x4e9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .debug_str 0x0007ac0a 0x54d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_str 0x0007ac0a 0x52d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .debug_str 0x0007ac0a 0x4f2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .debug_str 0x0007ac0a 0x4f4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .debug_str 0x0007ac0a 0x12f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .debug_str 0x0007ac0a 0x134 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .debug_str 0x0007ac0a 0x8da C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .debug_str 0x0007ac0a 0x255 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .debug_str 0x0007ac0a 0x70a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_str 0x0007ac0a 0x7f8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .debug_str 0x0007ac0a 0x711 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_str 0x0007ac0a 0x97b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_str 0x0007ac0a 0xc80 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_str 0x0007ac0a 0x9e5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .debug_str 0x0007ac0a 0xd5f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_str 0x0007ac0a 0xc56 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_str 0x0007ac0a 0x4dd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .debug_str 0x0007ac0a 0x675 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .debug_str 0x0007ac0a 0x125 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .debug_str 0x0007ac0a 0x583 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .debug_str 0x0007ac0a 0x728 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .debug_str 0x0007ac0a 0x17c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_str 0x0007ac0a 0x89d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .debug_str 0x0007ac0a 0x776 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .debug_str 0x0007ac0a 0x77a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .debug_str 0x0007ac0a 0x70a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_str 0x0007ac0a 0x12c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .debug_str 0x0007ac0a 0x6c2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_str 0x0007ac0a 0xb9c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_loc 0x00000000 0x1188a2 + *(.debug_loc) + .debug_loc 0x00000000 0x10c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_loc 0x0000010c 0x4d esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_loc 0x00000159 0x74b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x000008a4 0xd05 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x000015a9 0x36e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00001917 0x13a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_loc 0x00001a51 0x37 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_loc 0x00001a88 0x19d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_loc 0x00001c25 0x4e3 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_loc 0x00002108 0x232 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_loc 0x0000233a 0xca esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_loc 0x00002404 0x3dc esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_loc 0x000027e0 0x34 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_loc 0x00002814 0xbd esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_loc 0x000028d1 0x358 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_loc 0x00002c29 0x8c esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_loc 0x00002cb5 0x134 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_loc 0x00002de9 0x329 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_loc 0x00003112 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_loc 0x00003127 0x1e0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_loc 0x00003307 0x588 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_loc 0x0000388f 0x2df esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_loc 0x00003b6e 0x443 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_loc 0x00003fb1 0xf2 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x000040a3 0x417 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_loc 0x000044ba 0x45 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x000044ff 0x188 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00004687 0xfa9 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_loc 0x00005630 0x20d esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_loc 0x0000583d 0x3f esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_loc 0x0000587c 0x49 esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x000058c5 0x22 esp-idf/log/liblog.a(log_write.c.obj) + .debug_loc 0x000058e7 0x4e esp-idf/log/liblog.a(log_level.c.obj) + .debug_loc 0x00005935 0xa5 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_loc 0x000059da 0x1c3 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_loc 0x00005b9d 0x317 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_loc 0x00005eb4 0xfdc esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x00006e90 0x7dd esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x0000766d 0x7e6 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x00007e53 0xc8d0 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_loc 0x00014723 0x385 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_loc 0x00014aa8 0x7d7 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_loc 0x0001527f 0x573 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_loc 0x000157f2 0x22d esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_loc 0x00015a1f 0x164 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_loc 0x00015b83 0x1a88 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_loc 0x0001760b 0x131c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_loc 0x00018927 0x28f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_loc 0x00018bb6 0x2b5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_loc 0x00018e6b 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_loc 0x00018e8e 0x12b esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_loc 0x00018fb9 0x92f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x000198e8 0x59f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x00019e87 0xe3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_loc 0x00019f6a 0x3c1 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x0001a32b 0xca esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_loc 0x0001a3f5 0x502b esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_loc 0x0001f420 0x322 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_loc 0x0001f742 0x378 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .debug_loc 0x0001faba 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_loc 0x0001fae5 0x2bf esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_loc 0x0001fda4 0x17ad esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_loc 0x00021551 0x360 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_loc 0x000218b1 0x98 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_loc 0x00021949 0x1f3f esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x00023888 0x3cbc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x00027544 0x842 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x00027d86 0x28b esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_loc 0x00028011 0x88 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_loc 0x00028099 0x2e1 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_loc 0x0002837a 0x8c esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x00028406 0x8a esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_loc 0x00028490 0x1fb esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_loc 0x0002868b 0x26e esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_loc 0x000288f9 0x37d esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_loc 0x00028c76 0x81 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_loc 0x00028cf7 0x86 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_loc 0x00028d7d 0x4b6 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_loc 0x00029233 0x81 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_loc 0x000292b4 0x222 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .debug_loc 0x000294d6 0x94 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_loc 0x0002956a 0x158 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_loc 0x000296c2 0x4e esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_loc 0x00029710 0x16dc esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x0002adec 0x576 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_loc 0x0002b362 0x4dc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x0002b83e 0x548 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_loc 0x0002bd86 0x4a6 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_loc 0x0002c22c 0x29f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x0002c4cb 0x15 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_loc 0x0002c4e0 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_loc 0x0002c4fa 0x317 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_loc 0x0002c811 0x11d9 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_loc 0x0002d9ea 0x4544 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_loc 0x00031f2e 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_loc 0x00031f66 0xc44 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_loc 0x00032baa 0x5e9 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_loc 0x00033193 0x340 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_loc 0x000334d3 0x4b9f esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_loc 0x00038072 0x34e esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_loc 0x000383c0 0x432 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_loc 0x000387f2 0x183 esp-idf/main/libmain.a(wifi_init.c.obj) + .debug_loc 0x00038975 0x15 esp-idf/main/libmain.a(fs_init.c.obj) + .debug_loc 0x0003898a 0x29e esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .debug_loc 0x00038c28 0x16c2 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_loc 0x0003a2ea 0x116 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_loc 0x0003a400 0x2102 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_loc 0x0003c502 0x3b41 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_loc 0x00040043 0x9b3 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_loc 0x000409f6 0xf3b esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_loc 0x00041931 0x22fb esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .debug_loc 0x00043c2c 0x1434 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .debug_loc 0x00045060 0x60b esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .debug_loc 0x0004566b 0x40 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .debug_loc 0x000456ab 0x1cf esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .debug_loc 0x0004587a 0x600 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .debug_loc 0x00045e7a 0xfe esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .debug_loc 0x00045f78 0x3b14 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_loc 0x00049a8c 0x1b6 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_loc 0x00049c42 0x2f8a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_loc 0x0004cbcc 0x176a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x0004e336 0xcb5 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_loc 0x0004efeb 0x820 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_loc 0x0004f80b 0x718 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x0004ff23 0x250 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x00050173 0xcdb esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x00050e4e 0x2f4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_loc 0x00051142 0x115e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x000522a0 0x236 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x000524d6 0x121b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x000536f1 0x17e esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x0005386f 0x1ed9 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_loc 0x00055748 0xcc esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_loc 0x00055814 0x88 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_loc 0x0005589c 0xa23 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_loc 0x000562bf 0x459 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x00056718 0xa0e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x00057126 0x1dd esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x00057303 0x1614 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x00058917 0x5eb esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x00058f02 0x6e0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x000595e2 0xd7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x000596b9 0x128 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .debug_loc 0x000597e1 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_loc 0x000597fa 0x118e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x0005a988 0x1c9 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x0005ab51 0x14c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x0005ac9d 0x2dd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x0005af7a 0x48f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x0005b409 0x15e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_loc 0x0005b567 0x693 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_loc 0x0005bbfa 0x15e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_loc 0x0005bd58 0x492 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x0005c1ea 0x16 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_loc 0x0005c200 0x181 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_loc 0x0005c381 0xea7 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_loc 0x0005d228 0x4d5 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_loc 0x0005d6fd 0xd93 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x0005e490 0x3d6 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_loc 0x0005e866 0x13d6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x0005fc3c 0xd5 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x0005fd11 0x3a0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_loc 0x000600b1 0xad9 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_loc 0x00060b8a 0xc54 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_loc 0x000617de 0xbf esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_loc 0x0006189d 0xb33 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_loc 0x000623d0 0x118 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_loc 0x000624e8 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_loc 0x0006250b 0xd9 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_loc 0x000625e4 0x604 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_loc 0x00062be8 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_loc 0x00062c86 0x179 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_loc 0x00062dff 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_loc 0x00062fff 0x17e9 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_loc 0x000647e8 0x2bf esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_loc 0x00064aa7 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_loc 0x00064aff 0x80b esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_loc 0x0006530a 0x1347 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_loc 0x00066651 0x1f1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x0006856f 0x1fe esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_loc 0x0006876d 0x198a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_loc 0x0006a0f7 0x1f99 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_loc 0x0006c090 0x34fa esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_loc 0x0006f58a 0x3800 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_loc 0x00072d8a 0x63c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_loc 0x000733c6 0x249 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_loc 0x0007360f 0xf3e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_loc 0x0007454d 0x2d0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_loc 0x0007481d 0x6d2 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_loc 0x00074eef 0x12f0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_loc 0x000761df 0x1be esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_loc 0x0007639d 0x93f esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_loc 0x00076cdc 0x4c76 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_loc 0x0007b952 0x39e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_loc 0x0007bcf0 0x43f esp-idf/lwip/liblwip.a(def.c.obj) + .debug_loc 0x0007c12f 0x1a4 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_loc 0x0007c2d3 0x80 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_loc 0x0007c353 0x193 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_loc 0x0007c4e6 0xe4c esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_loc 0x0007d332 0x1875 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_loc 0x0007eba7 0xa31 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_loc 0x0007f5d8 0x1916 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_loc 0x00080eee 0xef3 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_loc 0x00081de1 0x1841 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_loc 0x00083622 0x270 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_loc 0x00083892 0xf13 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_loc 0x000847a5 0x176f esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_loc 0x00085f14 0xf15 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_loc 0x00086e29 0x180 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_loc 0x00086fa9 0x6c8 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_loc 0x00087671 0x9fc esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_loc 0x0008806d 0x62a esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_loc 0x00088697 0x344 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_loc 0x000889db 0x1c1 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_loc 0x00088b9c 0xe4f esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_loc 0x000899eb 0x7c6 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_loc 0x0008a1b1 0x23e esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_loc 0x0008a3ef 0x579 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_loc 0x0008a968 0x1cd8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_loc 0x0008c640 0x128 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_loc 0x0008c768 0xaa esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_loc 0x0008c812 0x257 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_loc 0x0008ca69 0x335 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_loc 0x0008cd9e 0x816 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_loc 0x0008d5b4 0x188 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .debug_loc 0x0008d73c 0xc6 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_loc 0x0008d802 0x1271 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_loc 0x0008ea73 0x12d4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_loc 0x0008fd47 0x2b esp-idf/lwip/liblwip.a(err.c.obj) + .debug_loc 0x0008fd72 0x1f3 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_loc 0x0008ff65 0x1e82 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_loc 0x00091de7 0x906 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_loc 0x000926ed 0x26f esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_loc 0x0009295c 0x3aef esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_loc 0x0009644b 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_loc 0x00096476 0xe27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_loc 0x0009729d 0x40f esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .debug_loc 0x000976ac 0x6b esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_loc 0x00097717 0xd74 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_loc 0x0009848b 0x795 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_loc 0x00098c20 0x128e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_loc 0x00099eae 0x6ee esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_loc 0x0009a59c 0x1e5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_loc 0x0009a781 0x4af esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_loc 0x0009ac30 0x393 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_loc 0x0009afc3 0x78f esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_loc 0x0009b752 0x43f6 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_loc 0x0009fb48 0x17b5 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_loc 0x000a12fd 0x10b esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .debug_loc 0x000a1408 0xfe6 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_loc 0x000a23ee 0x93b esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .debug_loc 0x000a2d29 0x118c esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .debug_loc 0x000a3eb5 0x63 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .debug_loc 0x000a3f18 0x1ccb esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .debug_loc 0x000a5be3 0x495 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_loc 0x000a6078 0x2e67 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_loc 0x000a8edf 0x638a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_loc 0x000af269 0x30b5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_loc 0x000b231e 0x3bec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_loc 0x000b5f0a 0x51 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_loc 0x000b5f5b 0xd82 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_loc 0x000b6cdd 0x1994 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_loc 0x000b8671 0x2f26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_loc 0x000bb597 0x28b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_loc 0x000bde4f 0x2872 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_loc 0x000c06c1 0x4b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_loc 0x000c0b77 0x79a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_loc 0x000c1311 0xf48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_loc 0x000c2259 0xc4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_loc 0x000c2ea3 0x911 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_loc 0x000c37b4 0x3031 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_loc 0x000c67e5 0x5914 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_loc 0x000cc0f9 0x7f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_loc 0x000cc8eb 0x1045 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_loc 0x000cd930 0xbb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_loc 0x000cd9eb 0x19d1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_loc 0x000cf3bc 0x1b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_loc 0x000cf574 0x5e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_loc 0x000cfb5c 0x1d6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_loc 0x000d18c6 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_loc 0x000d1942 0x50e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_loc 0x000d6a25 0x6f1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_loc 0x000d7116 0x144 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_loc 0x000d725a 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_loc 0x000d7462 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_loc 0x000d766a 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_loc 0x000d7695 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_loc 0x000d76c0 0x459 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_loc 0x000d7b19 0x111 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_loc 0x000d7c2a 0xaf7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_loc 0x000d8721 0x5ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x000d8ccf 0x615 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .debug_loc 0x000d92e4 0x402 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .debug_loc 0x000d96e6 0x951 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_loc 0x000da037 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_loc 0x000da10b 0x3b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_loc 0x000da4c1 0x3bf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x000da880 0x437 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_loc 0x000dacb7 0xc09 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_loc 0x000db8c0 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_loc 0x000db96c 0x1274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_loc 0x000dcbe0 0x7b3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_loc 0x000dd393 0xc22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_loc 0x000ddfb5 0xb42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_loc 0x000deaf7 0xe87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_loc 0x000df97e 0x1b1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_loc 0x000e1499 0x8d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_loc 0x000e1d71 0x1867 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_loc 0x000e35d8 0xc3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_loc 0x000e4212 0xc08 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_loc 0x000e4e1a 0x8d3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_loc 0x000e56ed 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_loc 0x000e5718 0xc0d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_loc 0x000e6325 0x1d6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_loc 0x000e64fb 0x5b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .debug_loc 0x000e6ab1 0x13f7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_loc 0x000e7ea8 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_loc 0x000e7efe 0x3982 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_loc 0x000eb880 0x35f9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_loc 0x000eee79 0xa9 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_loc 0x000eef22 0x260 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_loc 0x000ef182 0x338 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_loc 0x000ef4ba 0x1bc esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_loc 0x000ef676 0x1c7 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_loc 0x000ef83d 0x23 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_loc 0x000ef860 0x3e5 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .debug_loc 0x000efc45 0x234a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_loc 0x000f1f8f 0xd9 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_loc 0x000f2068 0xf2a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_loc 0x000f2f92 0x3bd esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_loc 0x000f334f 0x5d4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_loc 0x000f3923 0x1c6f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_loc 0x000f5592 0x162 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_loc 0x000f56f4 0x3eb esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_loc 0x000f5adf 0x8d esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_loc 0x000f5b6c 0x4b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_loc 0x000f6024 0x362 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_loc 0x000f6386 0x20dc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_loc 0x000f8462 0x1019 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_loc 0x000f947b 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_loc 0x000f94de 0x7e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_loc 0x000f9cc1 0x2601 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_loc 0x000fc2c2 0x1098 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_loc 0x000fd35a 0x53f esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_loc 0x000fd899 0x1d7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_loc 0x000ff615 0x1427 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_loc 0x00100a3c 0x6ff esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_loc 0x0010113b 0x23b esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_loc 0x00101376 0x1812 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_loc 0x00102b88 0x465 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_loc 0x00102fed 0x57e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_loc 0x001087d5 0x893 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_loc 0x00109068 0x27d2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_loc 0x0010b83a 0x1c2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_loc 0x0010b9fc 0x1ea esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_loc 0x0010bbe6 0x318 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_loc 0x0010befe 0x153 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_loc 0x0010c051 0x7c7 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_loc 0x0010c818 0x3911 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_loc 0x00110129 0xf20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_loc 0x00111049 0x61e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_loc 0x00111667 0x1b02 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_loc 0x00113169 0x1377 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_loc 0x001144e0 0x2a7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_loc 0x00114787 0x8d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_loc 0x0011505d 0x1f2 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_loc 0x0011524f 0x1ef esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_loc 0x0011543e 0x21e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_loc 0x0011565c 0x6a5 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_loc 0x00115d01 0xaeb esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_loc 0x001167ec 0x2a2 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_loc 0x00116a8e 0x20c esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_loc 0x00116c9a 0xc7 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .debug_loc 0x00116d61 0x81 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_loc 0x00116de2 0x1863 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_loc 0x00118645 0x140 esp-idf/hal/libhal.a(ds_hal.c.obj) + .debug_loc 0x00118785 0x51 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_loc 0x001187d6 0xcc esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + +.debug_macinfo + *(.debug_macinfo) + +.debug_pubtypes + *(.debug_pubtypes) + +.debug_ranges 0x00000000 0x10488 + *(.debug_ranges) + .debug_ranges 0x00000000 0x28 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_ranges 0x00000028 0x30 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_ranges 0x00000058 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000100 0x138 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000238 0x68 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x000002a0 0x38 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_ranges 0x000002d8 0x40 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_ranges 0x00000318 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_ranges 0x000003c0 0x70 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_ranges 0x00000430 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_ranges 0x00000460 0x38 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_ranges 0x00000498 0x18 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_ranges 0x000004b0 0x30 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_ranges 0x000004e0 0x20 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_ranges 0x00000500 0x20 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_ranges 0x00000520 0x88 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_ranges 0x000005a8 0x40 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_ranges 0x000005e8 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_ranges 0x00000630 0x50 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_ranges 0x00000680 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_ranges 0x00000698 0x68 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_ranges 0x00000700 0x88 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_ranges 0x00000788 0x38 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_ranges 0x000007c0 0x70 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_ranges 0x00000830 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x00000848 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_ranges 0x00000868 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_ranges 0x000008a0 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x000008e0 0x60 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00000940 0x190 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_ranges 0x00000ad0 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_ranges 0x00000b00 0x18 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_ranges 0x00000b18 0x18 esp-idf/log/liblog.a(util.c.obj) + .debug_ranges 0x00000b30 0x48 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x00000b78 0x20 esp-idf/log/liblog.a(log_write.c.obj) + .debug_ranges 0x00000b98 0x18 esp-idf/log/liblog.a(log_level.c.obj) + .debug_ranges 0x00000bb0 0x30 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_ranges 0x00000be0 0x30 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_ranges 0x00000c10 0x40 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_ranges 0x00000c50 0x20 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_ranges 0x00000c70 0x198 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x00000e08 0xd8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x00000ee0 0xe8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x00000fc8 0x188 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_ranges 0x00001150 0x58 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_ranges 0x000011a8 0xe8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_ranges 0x00001290 0x18 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_ranges 0x000012a8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_ranges 0x00001310 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_ranges 0x00001338 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_ranges 0x000013a8 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_ranges 0x00001540 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_ranges 0x000015e8 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_ranges 0x00001630 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_ranges 0x000016c8 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_ranges 0x00001718 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_ranges 0x00001758 0x158 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x000018b0 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x00001900 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_ranges 0x00001938 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x000019a0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_ranges 0x000019b0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_ranges 0x00001a10 0x3c0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_ranges 0x00001dd0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_ranges 0x00001df8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .debug_ranges 0x00001e20 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_ranges 0x00001e30 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_ranges 0x00001e88 0x2b8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_ranges 0x00002140 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_ranges 0x00002198 0x28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_ranges 0x000021c0 0x1f8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x000023b8 0x408 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x000027c0 0x110 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x000028d0 0x40 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_ranges 0x00002910 0x18 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_ranges 0x00002928 0x28 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_ranges 0x00002950 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x00002980 0x20 esp-idf/newlib/libnewlib.a(init.c.obj) + .debug_ranges 0x000029a0 0x10 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_ranges 0x000029b0 0x40 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_ranges 0x000029f0 0x90 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_ranges 0x00002a80 0xd0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_ranges 0x00002b50 0x28 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_ranges 0x00002b78 0x18 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .debug_ranges 0x00002b90 0x70 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_ranges 0x00002c00 0x30 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_ranges 0x00002c30 0x40 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .debug_ranges 0x00002c70 0x38 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_ranges 0x00002ca8 0x48 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_ranges 0x00002cf0 0x30 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_ranges 0x00002d20 0x10 esp-idf/newlib/libnewlib.a(random.c.obj) + .debug_ranges 0x00002d30 0x1e0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x00002f10 0x78 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_ranges 0x00002f88 0x70 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x00002ff8 0x58 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_ranges 0x00003050 0x48 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_ranges 0x00003098 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x000030d8 0x18 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_ranges 0x000030f0 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_ranges 0x00003110 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_ranges 0x00003130 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_ranges 0x00003158 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_ranges 0x000031b0 0x1c8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_ranges 0x00003378 0x288 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_ranges 0x00003600 0x50 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_ranges 0x00003650 0x28 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .debug_ranges 0x00003678 0x170 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .debug_ranges 0x000037e8 0x60 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .debug_ranges 0x00003848 0x98 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .debug_ranges 0x000038e0 0x290 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_ranges 0x00003b70 0x90 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_ranges 0x00003c00 0x48 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_ranges 0x00003c48 0x10 esp-idf/main/libmain.a(main.c.obj) + .debug_ranges 0x00003c58 0x18 esp-idf/main/libmain.a(wifi_init.c.obj) + .debug_ranges 0x00003c70 0x10 esp-idf/main/libmain.a(fs_init.c.obj) + .debug_ranges 0x00003c80 0x40 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .debug_ranges 0x00003cc0 0x138 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_ranges 0x00003df8 0x38 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_ranges 0x00003e30 0x198 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_ranges 0x00003fc8 0x248 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_ranges 0x00004210 0x90 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_ranges 0x000042a0 0xb8 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_ranges 0x00004358 0x228 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .debug_ranges 0x00004580 0xf0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .debug_ranges 0x00004670 0x80 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .debug_ranges 0x000046f0 0x20 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .debug_ranges 0x00004710 0x10 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .debug_ranges 0x00004720 0x28 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .debug_ranges 0x00004748 0x10 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .debug_ranges 0x00004758 0x408 esp-idf/json/libjson.a(cJSON.c.obj) + .debug_ranges 0x00004b60 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_ranges 0x00004b88 0x70 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_ranges 0x00004bf8 0x248 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_ranges 0x00004e40 0x1f0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x00005030 0xc0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_ranges 0x000050f0 0x80 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_ranges 0x00005170 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x000051f0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x00005200 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x00005250 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x000052f0 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_ranges 0x00005358 0xe0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x00005438 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x00005460 0x108 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x00005568 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x000055a0 0x140 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_ranges 0x000056e0 0x38 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_ranges 0x00005718 0x10 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_ranges 0x00005728 0x60 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_ranges 0x00005788 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_ranges 0x000057a8 0x88 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x00005830 0xc8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x000058f8 0x60 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x00005958 0x160 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x00005ab8 0xa0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00005b58 0xb8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x00005c10 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00005c40 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .debug_ranges 0x00005c90 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_ranges 0x00005cb8 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_ranges 0x00005cc8 0x118 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x00005de0 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x00005e08 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x00005e28 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x00005e60 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x00005eb8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_ranges 0x00005ed0 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_ranges 0x00005f58 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_ranges 0x00005f70 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x00005fd8 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_ranges 0x00005ff8 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_ranges 0x00006040 0xd0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_ranges 0x00006110 0x60 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_ranges 0x00006170 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_ranges 0x00006180 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_ranges 0x00006190 0xa0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x00006230 0x48 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_ranges 0x00006278 0xb0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x00006328 0x40 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x00006368 0x90 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_ranges 0x000063f8 0x98 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_ranges 0x00006490 0x138 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_ranges 0x000065c8 0x18 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_ranges 0x000065e0 0x78 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_ranges 0x00006658 0x48 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_ranges 0x000066a0 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_ranges 0x000066d0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_ranges 0x000066e0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_ranges 0x000066f8 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_ranges 0x00006768 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_ranges 0x00006788 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_ranges 0x000067c0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_ranges 0x000067d8 0x128 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_ranges 0x00006900 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_ranges 0x00006950 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_ranges 0x00006968 0x80 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_ranges 0x000069e8 0x120 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_ranges 0x00006b08 0x188 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x00006c90 0x48 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_ranges 0x00006cd8 0x170 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_ranges 0x00006e48 0x338 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_ranges 0x00007180 0x450 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_ranges 0x000075d0 0x338 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_ranges 0x00007908 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_ranges 0x000079c0 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_ranges 0x00007a28 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_ranges 0x00007af0 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_ranges 0x00007b50 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_ranges 0x00007b78 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_ranges 0x00007bf8 0xf0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_ranges 0x00007ce8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_ranges 0x00007d00 0x48 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_ranges 0x00007d48 0x338 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_ranges 0x00008080 0x98 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_ranges 0x00008118 0xa0 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_ranges 0x000081b8 0x10 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_ranges 0x000081c8 0x28 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_ranges 0x000081f0 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_ranges 0x00008220 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_ranges 0x00008268 0x140 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_ranges 0x000083a8 0x198 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_ranges 0x00008540 0x78 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_ranges 0x000085b8 0x228 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_ranges 0x000087e0 0x78 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_ranges 0x00008858 0xf8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_ranges 0x00008950 0x60 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_ranges 0x000089b0 0x90 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_ranges 0x00008a40 0x188 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_ranges 0x00008bc8 0xe8 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_ranges 0x00008cb0 0x20 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_ranges 0x00008cd0 0xa0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_ranges 0x00008d70 0xd0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_ranges 0x00008e40 0x38 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_ranges 0x00008e78 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_ranges 0x00008e88 0x50 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_ranges 0x00008ed8 0x60 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_ranges 0x00008f38 0x20 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_ranges 0x00008f58 0x10 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_ranges 0x00008f68 0x90 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_ranges 0x00008ff8 0x118 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_ranges 0x00009110 0x18 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_ranges 0x00009128 0x18 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_ranges 0x00009140 0x30 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_ranges 0x00009170 0x18 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_ranges 0x00009188 0xe8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_ranges 0x00009270 0x50 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .debug_ranges 0x000092c0 0x40 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_ranges 0x00009300 0x170 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_ranges 0x00009470 0x190 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_ranges 0x00009600 0x10 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_ranges 0x00009610 0x50 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_ranges 0x00009660 0x108 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_ranges 0x00009768 0x60 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_ranges 0x000097c8 0x58 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_ranges 0x00009820 0x4a0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_ranges 0x00009cc0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_ranges 0x00009cd0 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_ranges 0x00009e10 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .debug_ranges 0x00009e38 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_ranges 0x00009e68 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_ranges 0x00009eb0 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_ranges 0x00009f30 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_ranges 0x0000a058 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_ranges 0x0000a0a8 0xb0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_ranges 0x0000a158 0xc8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_ranges 0x0000a220 0x60 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_ranges 0x0000a280 0x240 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_ranges 0x0000a4c0 0x168 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_ranges 0x0000a628 0x1a0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_ranges 0x0000a7c8 0x60 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .debug_ranges 0x0000a828 0x110 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_ranges 0x0000a938 0xf8 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .debug_ranges 0x0000aa30 0x158 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .debug_ranges 0x0000ab88 0x20 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .debug_ranges 0x0000aba8 0x160 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .debug_ranges 0x0000ad08 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_ranges 0x0000ad60 0x310 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_ranges 0x0000b070 0x5a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_ranges 0x0000b610 0x178 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_ranges 0x0000b788 0x1b8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_ranges 0x0000b940 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_ranges 0x0000b950 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_ranges 0x0000b9f0 0x120 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_ranges 0x0000bb10 0x1b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_ranges 0x0000bcc0 0x260 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_ranges 0x0000bf20 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_ranges 0x0000c050 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_ranges 0x0000c148 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_ranges 0x0000c180 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_ranges 0x0000c238 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_ranges 0x0000c2e0 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_ranges 0x0000c3b0 0x2a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_ranges 0x0000c658 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_ranges 0x0000c6e0 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_ranges 0x0000c760 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_ranges 0x0000c818 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_ranges 0x0000c830 0x140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_ranges 0x0000c970 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_ranges 0x0000c998 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_ranges 0x0000ca78 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_ranges 0x0000cb28 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_ranges 0x0000cb58 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_ranges 0x0000cb70 0x200 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_ranges 0x0000cd70 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_ranges 0x0000cda0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_ranges 0x0000cdb8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_ranges 0x0000cde0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_ranges 0x0000ce08 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_ranges 0x0000ce18 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_ranges 0x0000ce30 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_ranges 0x0000ce90 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_ranges 0x0000ceb8 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_ranges 0x0000cf28 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x0000cff8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .debug_ranges 0x0000d028 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .debug_ranges 0x0000d080 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_ranges 0x0000d0f0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_ranges 0x0000d140 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_ranges 0x0000d1e8 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x0000d290 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_ranges 0x0000d348 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_ranges 0x0000d3d0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_ranges 0x0000d410 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_ranges 0x0000d488 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_ranges 0x0000d550 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_ranges 0x0000d630 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_ranges 0x0000d6d0 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_ranges 0x0000d760 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_ranges 0x0000d868 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_ranges 0x0000d908 0x140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_ranges 0x0000da48 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_ranges 0x0000da90 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_ranges 0x0000dad0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_ranges 0x0000db00 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_ranges 0x0000db10 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .debug_ranges 0x0000db70 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_ranges 0x0000dba0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .debug_ranges 0x0000dbb8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_ranges 0x0000dbe8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_ranges 0x0000dc00 0x228 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_ranges 0x0000de28 0x188 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_ranges 0x0000dfb0 0x58 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_ranges 0x0000e008 0x98 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_ranges 0x0000e0a0 0x48 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_ranges 0x0000e0e8 0x70 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_ranges 0x0000e158 0x60 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .debug_ranges 0x0000e1b8 0x10 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_ranges 0x0000e1c8 0x40 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .debug_ranges 0x0000e208 0x158 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_ranges 0x0000e360 0x48 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_ranges 0x0000e3a8 0x150 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_ranges 0x0000e4f8 0xb8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_ranges 0x0000e5b0 0xa0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_ranges 0x0000e650 0x100 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_ranges 0x0000e750 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_ranges 0x0000e7a0 0x40 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_ranges 0x0000e7e0 0x18 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_ranges 0x0000e7f8 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_ranges 0x0000e8b8 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_ranges 0x0000e948 0x258 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_ranges 0x0000eba0 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_ranges 0x0000ec78 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_ranges 0x0000ec98 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_ranges 0x0000ecf8 0x1f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_ranges 0x0000eee8 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_ranges 0x0000ef68 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_ranges 0x0000efd8 0x240 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_ranges 0x0000f218 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_ranges 0x0000f2b0 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_ranges 0x0000f320 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_ranges 0x0000f380 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_ranges 0x0000f480 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_ranges 0x0000f4a8 0x230 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_ranges 0x0000f6d8 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_ranges 0x0000f720 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_ranges 0x0000f848 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_ranges 0x0000f858 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_ranges 0x0000f878 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_ranges 0x0000f890 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_ranges 0x0000f8a0 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_ranges 0x0000f928 0x290 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_ranges 0x0000fbb8 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_ranges 0x0000fbf8 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_ranges 0x0000fc78 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_ranges 0x0000fd08 0x1b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_ranges 0x0000feb8 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_ranges 0x0000ff20 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_ranges 0x0000fff0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_ranges 0x00010000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_ranges 0x00010010 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_ranges 0x00010020 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_ranges 0x00010060 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_ranges 0x000100c8 0xc0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_ranges 0x00010188 0x48 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_ranges 0x000101d0 0x28 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .debug_ranges 0x000101f8 0x90 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .debug_ranges 0x00010288 0x98 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .debug_ranges 0x00010320 0x60 esp-idf/hal/libhal.a(ds_hal.c.obj) + .debug_ranges 0x00010380 0x10 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_ranges 0x00010390 0xd8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_ranges 0x00010468 0x20 esp-idf/esp_phy/libesp_phy.a(lib_printf.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 + 0x00000000 0x26d0 + *(.debug_line_str) + .debug_line_str + 0x00000000 0x26d0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + 0x259 (size before relaxing) + .debug_line_str + 0x000026d0 0x265 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .debug_line_str + 0x000026d0 0x25f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .debug_line_str + 0x000026d0 0x38e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .debug_line_str + 0x000026d0 0x46b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .debug_line_str + 0x000026d0 0x552 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .debug_line_str + 0x000026d0 0x477 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .debug_line_str + 0x000026d0 0x259 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .debug_line_str + 0x000026d0 0x480 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_line_str + 0x000026d0 0x41f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .debug_line_str + 0x000026d0 0x37d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_line_str + 0x000026d0 0x356 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .debug_line_str + 0x000026d0 0x2ec C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .debug_line_str + 0x000026d0 0x374 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .debug_line_str + 0x000026d0 0x259 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .debug_line_str + 0x000026d0 0x3b9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .debug_line_str + 0x000026d0 0x184 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + .debug_line_str + 0x000026d0 0x3b2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .debug_line_str + 0x000026d0 0x335 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .debug_line_str + 0x000026d0 0x330 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .debug_line_str + 0x000026d0 0x1ca C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + .debug_line_str + 0x000026d0 0x2b5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .debug_line_str + 0x000026d0 0x2b5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .debug_line_str + 0x000026d0 0x2be C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .debug_line_str + 0x000026d0 0x2b1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .debug_line_str + 0x000026d0 0x2b2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .debug_line_str + 0x000026d0 0x2a1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .debug_line_str + 0x000026d0 0x2c3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_line_str + 0x000026d0 0x2a1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .debug_line_str + 0x000026d0 0x2b6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .debug_line_str + 0x000026d0 0x2b8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .debug_line_str + 0x000026d0 0x2b9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .debug_line_str + 0x000026d0 0x2b5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .debug_line_str + 0x000026d0 0x2c6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .debug_line_str + 0x000026d0 0x2c3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .debug_line_str + 0x000026d0 0x2c9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .debug_line_str + 0x000026d0 0x2a9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .debug_line_str + 0x000026d0 0x2bb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .debug_line_str + 0x000026d0 0x2c9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_line_str + 0x000026d0 0x2b5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .debug_line_str + 0x000026d0 0x2c6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .debug_line_str + 0x000026d0 0x351 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .debug_line_str + 0x000026d0 0x2b7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .debug_line_str + 0x000026d0 0x187 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_line_str + 0x000026d0 0x313 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .debug_line_str + 0x000026d0 0x334 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .debug_line_str + 0x000026d0 0x2a2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .debug_line_str + 0x000026d0 0x247 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .debug_line_str + 0x000026d0 0x255 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .debug_line_str + 0x000026d0 0x2b9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .debug_line_str + 0x000026d0 0x2b0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .debug_line_str + 0x000026d0 0x32a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_line_str + 0x000026d0 0x2d2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .debug_line_str + 0x000026d0 0x2b6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .debug_line_str + 0x000026d0 0x2b9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .debug_line_str + 0x000026d0 0x1d1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .debug_line_str + 0x000026d0 0x1d4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .debug_line_str + 0x000026d0 0x3b5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .debug_line_str + 0x000026d0 0x1fb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .debug_line_str + 0x000026d0 0x321 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_line_str + 0x000026d0 0x397 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .debug_line_str + 0x000026d0 0x321 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_line_str + 0x000026d0 0x3de C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_line_str + 0x000026d0 0x3ea C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_line_str + 0x000026d0 0x3e3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .debug_line_str + 0x000026d0 0x3e8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_line_str + 0x000026d0 0x3d8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_line_str + 0x000026d0 0x24d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .debug_line_str + 0x000026d0 0x343 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .debug_line_str + 0x000026d0 0x1d1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .debug_line_str + 0x000026d0 0x2be C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .debug_line_str + 0x000026d0 0x2c7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .debug_line_str + 0x000026d0 0x28e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_line_str + 0x000026d0 0x394 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .debug_line_str + 0x000026d0 0x330 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .debug_line_str + 0x000026d0 0x333 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .debug_line_str + 0x000026d0 0x315 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_line_str + 0x000026d0 0x29d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .debug_line_str + 0x000026d0 0x32c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_line_str + 0x000026d0 0x3da C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_loclists + 0x00000000 0x1356f + *(.debug_loclists) + .debug_loclists + 0x00000000 0x36 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .debug_loclists + 0x00000036 0x40 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .debug_loclists + 0x00000076 0x1b9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .debug_loclists + 0x0000022f 0x107 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .debug_loclists + 0x00000336 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .debug_loclists + 0x00000396 0x29 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .debug_loclists + 0x000003bf 0x5e C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .debug_loclists + 0x0000041d 0xd4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_loclists + 0x000004f1 0x96 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .debug_loclists + 0x00000587 0x29 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .debug_loclists + 0x000005b0 0xf9 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .debug_loclists + 0x000006a9 0x88 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .debug_loclists + 0x00000731 0xf8f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .debug_loclists + 0x000016c0 0x251 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .debug_loclists + 0x00001911 0x1f0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .debug_loclists + 0x00001b01 0x66 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .debug_loclists + 0x00001b67 0x145 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .debug_loclists + 0x00001cac 0x13d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .debug_loclists + 0x00001de9 0x60 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .debug_loclists + 0x00001e49 0x11b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .debug_loclists + 0x00001f64 0x5c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .debug_loclists + 0x00001fc0 0x3bf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_loclists + 0x0000237f 0x4a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .debug_loclists + 0x000023c9 0x89 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .debug_loclists + 0x00002452 0x54 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .debug_loclists + 0x000024a6 0x77 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .debug_loclists + 0x0000251d 0xe1 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .debug_loclists + 0x000025fe 0x7b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .debug_loclists + 0x00002679 0x51 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .debug_loclists + 0x000026ca 0x51 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .debug_loclists + 0x0000271b 0xc8 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .debug_loclists + 0x000027e3 0x44 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .debug_loclists + 0x00002827 0x4a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_loclists + 0x00002871 0x2f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .debug_loclists + 0x000028a0 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .debug_loclists + 0x000028e8 0x1d4 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .debug_loclists + 0x00002abc 0xd46 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .debug_loclists + 0x00003802 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_loclists + 0x00003826 0x1b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .debug_loclists + 0x00003841 0x53 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .debug_loclists + 0x00003894 0x2a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .debug_loclists + 0x000038be 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .debug_loclists + 0x000038e2 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .debug_loclists + 0x00003906 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_loclists + 0x0000392a 0x2c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .debug_loclists + 0x00003956 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .debug_loclists + 0x0000397a 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .debug_loclists + 0x0000399e 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .debug_loclists + 0x000039c2 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .debug_loclists + 0x000039e6 0x85d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .debug_loclists + 0x00004243 0x38a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .debug_loclists + 0x000045cd 0x67 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_loclists + 0x00004634 0x113f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .debug_loclists + 0x00005773 0x41 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_loclists + 0x000057b4 0x17f5 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_loclists + 0x00006fa9 0x2a49 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_loclists + 0x000099f2 0x1c93 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .debug_loclists + 0x0000b685 0x2b2d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_loclists + 0x0000e1b2 0x1571 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_loclists + 0x0000f723 0xa6 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .debug_loclists + 0x0000f7c9 0x82 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .debug_loclists + 0x0000f84b 0xfa C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .debug_loclists + 0x0000f945 0x111 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .debug_loclists + 0x0000fa56 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .debug_loclists + 0x0000fa9e 0x7f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_loclists + 0x0000fb1d 0x1206 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .debug_loclists + 0x00010d23 0x2c7 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .debug_loclists + 0x00010fea 0x2a3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .debug_loclists + 0x0001128d 0x43 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_loclists + 0x000112d0 0x24 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .debug_loclists + 0x000112f4 0x2b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_loclists + 0x0001131f 0x2250 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_macro + *(.debug_macro) + +.debug_names + *(.debug_names) + +.debug_rnglists + 0x00000000 0x8b7 + *(.debug_rnglists) + .debug_rnglists + 0x00000000 0x13 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .debug_rnglists + 0x00000013 0x19 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .debug_rnglists + 0x0000002c 0x13 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .debug_rnglists + 0x0000003f 0x13 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .debug_rnglists + 0x00000052 0x43 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .debug_rnglists + 0x00000095 0x43 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .debug_rnglists + 0x000000d8 0x3d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .debug_rnglists + 0x00000115 0x13 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .debug_rnglists + 0x00000128 0x1f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .debug_rnglists + 0x00000147 0x3d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_rnglists + 0x00000184 0x2b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .debug_rnglists + 0x000001af 0x1f C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .debug_rnglists + 0x000001ce 0x4c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .debug_rnglists + 0x0000021a 0x13 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .debug_rnglists + 0x0000022d 0x55 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .debug_rnglists + 0x00000282 0x2d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .debug_rnglists + 0x000002af 0x17 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .debug_rnglists + 0x000002c6 0x2d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .debug_rnglists + 0x000002f3 0x26 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_rnglists + 0x00000319 0x13 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .debug_rnglists + 0x0000032c 0x17 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .debug_rnglists + 0x00000343 0x27 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .debug_rnglists + 0x0000036a 0x48 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .debug_rnglists + 0x000003b2 0x148 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_rnglists + 0x000004fa 0x6a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_rnglists + 0x00000564 0x208 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .debug_rnglists + 0x0000076c 0x7a C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_rnglists + 0x000007e6 0x51 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_rnglists + 0x00000837 0x13 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_rnglists + 0x0000084a 0x1c C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .debug_rnglists + 0x00000866 0x51 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_str_offsets + *(.debug_str_offsets) + +.comment 0x00000000 0xb5 + *(.comment) + .comment 0x00000000 0xb5 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x30 (size before relaxing) + .comment 0x000000b5 0x30 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .comment 0x000000b5 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x000000b5 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x000000b5 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x000000b5 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .comment 0x000000b5 0x30 esp-idf/log/liblog.a(log_timestamp.c.obj) + .comment 0x000000b5 0x30 esp-idf/log/liblog.a(util.c.obj) + .comment 0x000000b5 0x30 esp-idf/log/liblog.a(log.c.obj) + .comment 0x000000b5 0x30 esp-idf/log/liblog.a(log_write.c.obj) + .comment 0x000000b5 0x30 esp-idf/log/liblog.a(log_level.c.obj) + .comment 0x000000b5 0x30 esp-idf/log/liblog.a(tag_log_level.c.obj) + .comment 0x000000b5 0x30 esp-idf/log/liblog.a(log_linked_list.c.obj) + .comment 0x000000b5 0x30 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .comment 0x000000b5 0x30 esp-idf/log/liblog.a(log_lock.c.obj) + .comment 0x000000b5 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + .comment 0x000000b5 0x30 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .comment 0x000000b5 0x30 esp-idf/heap/libheap.a(multi_heap.c.obj) + .comment 0x000000b5 0x30 esp-idf/heap/libheap.a(tlsf.c.obj) + .comment 0x000000b5 0x30 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .comment 0x000000b5 0x30 esp-idf/heap/libheap.a(memory_layout.c.obj) + .comment 0x000000b5 0x30 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_security/libesp_security.a(init.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .comment 0x000000b5 0x30 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .comment 0x000000b5 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) + .comment 0x000000b5 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .comment 0x000000b5 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) + .comment 0x000000b5 0x30 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .comment 0x000000b5 0x30 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .comment 0x000000b5 0x30 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .comment 0x000000b5 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(init.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(abort.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(assert.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(heap.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(locks.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(time.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(random.c.obj) + .comment 0x000000b5 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .comment 0x000000b5 0x30 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .comment 0x000000b5 0x30 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .comment 0x000000b5 0x30 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .comment 0x000000b5 0x30 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .comment 0x000000b5 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .comment 0x000000b5 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) + .comment 0x000000b5 0x30 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .comment 0x000000b5 0x30 esp-idf/main/libmain.a(main.c.obj) + .comment 0x000000b5 0x30 esp-idf/main/libmain.a(wifi_init.c.obj) + .comment 0x000000b5 0x30 esp-idf/main/libmain.a(fs_init.c.obj) + .comment 0x000000b5 0x30 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + .comment 0x000000b5 0x30 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .comment 0x000000b5 0x30 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .comment 0x000000b5 0x30 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .comment 0x000000b5 0x30 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .comment 0x000000b5 0x30 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .comment 0x000000b5 0x30 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .comment 0x000000b5 0x30 esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + .comment 0x000000b5 0x30 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .comment 0x000000b5 0x30 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .comment 0x000000b5 0x30 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .comment 0x000000b5 0x30 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .comment 0x000000b5 0x30 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .comment 0x000000b5 0x30 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .comment 0x000000b5 0x30 esp-idf/json/libjson.a(cJSON.c.obj) + .comment 0x000000b5 0x30 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .comment 0x000000b5 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .comment 0x000000b5 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x000000b5 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x000000b5 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .comment 0x000000b5 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x000000b5 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .comment 0x000000b5 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x000000b5 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x000000b5 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x000000b5 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .comment 0x000000b5 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(uart_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .comment 0x000000b5 0x30 esp-idf/soc/libsoc.a(interrupts.c.obj) + .comment 0x000000b5 0x30 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .comment 0x000000b5 0x30 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .comment 0x000000b5 0x30 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .comment 0x000000b5 0x30 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(netdb.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(def.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(init.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(ip.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(memp.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(netif.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(raw.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(tcp.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(udp.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(igmp.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(ip4.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(ip6.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(mld6.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(nd6.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(err.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .comment 0x000000b5 0x30 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .comment 0x000000b5 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .comment 0x000000b5 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .comment 0x000000b5 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .comment 0x000000b5 0x30 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .comment 0x000000b5 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(sha_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(aes_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .comment 0x000000b5 0x30 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .comment 0x000000b5 0x30 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .comment 0x000000b5 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + .comment 0x000000b5 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .comment 0x000000b5 0x27 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .comment 0x000000b5 0x30 esp-idf/hal/libhal.a(ds_hal.c.obj) + .comment 0x000000b5 0x30 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .comment 0x000000b5 0x26 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .comment 0x000000b5 0x30 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .comment 0x000000b5 0x3c C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .comment 0x000000b5 0x30 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .comment 0x000000b5 0x30 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + +.note.GNU-stack + *(.note.GNU-stack) + +.xtensa.info 0x00000000 0x38 + *(.xtensa.info) + .xtensa.info 0x00000000 0x38 CMakeFiles/esp32-s3_fota_test_wifi.elf.dir/project_elf_src_esp32s3.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_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(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(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(apb_backup_dma.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.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_handler.S.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(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(esp_ipc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.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_cache_esp32s2_esp32s3.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.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(cache_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(uart_hal_iram.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/esp_security/libesp_security.a(init.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(sleep_gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.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_sleep.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_memprot.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.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_console.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(sleep_cpu.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_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(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/newlib/libnewlib.a(init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.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_systimer.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/esp_phy/libesp_phy.a(phy_override.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/vfs/libvfs.a(nullfs.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/main/libmain.a(main.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(wifi_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(fs_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.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/mqtt/libmqtt.a(mqtt_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/json/libjson.a(cJSON.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_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/app_update/libapp_update.a(esp_ota_ops.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/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_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_random_esp32s3.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_esp32s3.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(flash_qio_mode.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_utils.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_mm/libesp_mm.a(esp_cache_msync.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(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(spi_flash_wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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(spi_flash_oct_flash_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.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(spi_flash_chip_boya.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.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(esp_system_console.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_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.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/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(clk_ctrl_os.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(mac_addr.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(sar_periph_ctrl_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.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(adc_share_hw_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_event/libesp_event.a(esp_event.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_page.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_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_item_hash_list.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.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_encrypted_partition.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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/http_parser/libhttp_parser.a(http_parser.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .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_rtc_calib.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(hmac_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_security/libesp_security.a(esp_ds.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_hw_support/libesp_hw_support.a(gdma.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(ds_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + .xtensa.info 0x00000038 0x0 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + +.xt.prop 0x00000000 0xad4 + *(.xt.prop .xt.prop.* .gnu.linkonce.prop.*) + .xt.prop._ZN14NVSHandleEntryD2Ev + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x00000024 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ + 0x00000078 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x000000b4 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x000000d8 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x000000fc 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x00000120 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x00000144 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x00000168 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x0000018c 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x000001b0 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x000001d4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc (size before relaxing) + .xt.prop._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x000001d4 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x00000240 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop._ZN3nvs4Item6getKeyEPcj + 0x0000027c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x48 (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x000002b8 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_ + 0x000002f4 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x48 (size before relaxing) + .xt.prop._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x00000330 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x00000330 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x00000378 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ + 0x000003c0 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x000003fc 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x00000450 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x0000048c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ + 0x000004c8 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev + 0x00000504 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE + 0x00000534 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE + 0x00000588 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZTVN3nvs9NVSHandleE + 0x000005dc 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.prop._ZTVN3nvs15NVSHandleSimpleE + 0x000005e8 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.prop._ZN3nvs12NVSPartitionD5Ev + 0x000005f4 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZN3nvs12NVSPartitionD2Ev + 0x00000600 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZN3nvs12NVSPartitionD0Ev + 0x00000624 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZTVN3nvs9PartitionE + 0x00000648 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZTVN3nvs12NVSPartitionE + 0x00000654 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZN3nvs19NVSPartitionManagerD5Ev + 0x00000660 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN3nvs7StorageC5EPNS_9PartitionE + 0x0000066c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .xt.prop._ZN3nvs19NVSPartitionManagerD2Ev + 0x0000066c 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN3nvs19NVSPartitionManagerD0Ev + 0x00000690 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN3nvs7StorageC2EPNS_9PartitionE + 0x000006b4 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs12NVSPartitionEE9push_backEPS1_ + 0x000006d8 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + 0x00000714 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ + 0x00000768 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x000007a4 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE + 0x000007f8 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ + 0x0000084c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZTVN3nvs19NVSPartitionManagerE + 0x00000888 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x00000894 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ + 0x000008e8 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x00000924 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x0000096c 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x000009cc 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x00000a08 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ + 0x00000a5c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZTISt9exception + 0x00000a98 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .xt.prop._ZTISt9bad_alloc + 0x00000aa4 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + .xt.prop._ZTVN10__cxxabiv120__si_class_type_infoE + 0x00000ab0 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + .xt.prop._ZTVSt9bad_alloc + 0x00000abc 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + .xt.prop._ZTVN10__cxxabiv117__class_type_infoE + 0x00000ac8 0xc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + +.xt.lit 0x00000000 0x30 + *(.xt.lit .xt.lit.* .gnu.linkonce.p.*) + .xt.lit._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN3nvs4Item6getKeyEPcj + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x00000000 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_ + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.lit._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x00000008 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.lit._ZN3nvs12NVSPartitionD5Ev + 0x00000010 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.lit._ZN3nvs19NVSPartitionManagerD5Ev + 0x00000018 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.lit._ZN3nvs7StorageC5EPNS_9PartitionE + 0x00000020 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x00000020 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.lit._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x00000028 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + +/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(esp32-s3_fota_test_wifi.elf elf32-xtensa-le) + +Cross Reference Table + +Symbol File +APB_SARADC esp-idf/hal/libhal.a(adc_hal_common.c.obj) +APRecvBcnStartTick C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ApFreqCalTimer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +BAROFDMSched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +BasicOFDMSched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +BasicOFDMSched_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +BcnInterval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +BcnSendTick C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +Cache_Count_Flash_Pages esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +Cache_Disable_DCache esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +Cache_Disable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +Cache_Enable_DCache esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Enable_ICache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_DCache_Disable esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_DCache_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_ICache_Disable esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Freeze_ICache_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Get_DCache_Line_Size esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +Cache_Get_ICache_Line_Size esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Get_Mode esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +Cache_Invalidate_Addr esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Invalidate_DCache_All esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Invalidate_ICache_All esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Occupy_DCache_MEMORY esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Occupy_ICache_MEMORY esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Resume_DCache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Resume_DCache_Autoload esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +Cache_Resume_ICache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_Set_DCache_Mode esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Set_ICache_Mode esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Set_IDROM_MMU_Info esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Set_IDROM_MMU_Size esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Suspend_DCache esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Suspend_DCache_Autoload esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +Cache_Suspend_ICache esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_WriteBack_Addr esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/hal/libhal.a(cache_hal.c.obj) +Cache_WriteBack_All esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) +CanDoFreqCal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +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) +CurFreeSigIdx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +CurSigIdxToBeUse C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +DEBUG_HELPER_TAG esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +DefFreqCalTimer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +DefFreqCalTimerCB C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +EFUSE esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC2_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC2_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC2_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC2_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC2_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC2_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC2_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_ADC2_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIG_DBIAS_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_DCACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_DCACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DIS_USB_OTG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_OTG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_ECC_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_ECC_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_PAGE_SIZE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TYPE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_K_DIG_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_K_RTC_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +ESP_EFUSE_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PIN_POWER_SELECTION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_PSRAM_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PSRAM_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PSRAM_VENDOR 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_BLOCK_KEY0 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_BLOCK_KEY1 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_BLOCK_KEY2 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_BLOCK_KEY3 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_BLOCK_KEY4 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_BLOCK_KEY5 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_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_SPI_BOOT_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_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CS 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_D4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D7 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_DQS 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_SPI_PAD_CONFIG_WP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_STRAP_JTAG_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +ESP_EFUSE_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USB_EXT_PHY_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USB_PHY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USER_DATA_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +ESP_EFUSE_VDD_SPI_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_VDD_SPI_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_VDD_SPI_XPD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_V_DIG_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR_HI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR_LO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WDT_DELAY_SEL 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_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK1 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_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLOCK_KEY0 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_BLOCK_KEY1 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_BLOCK_KEY2 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_BLOCK_KEY3 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_BLOCK_KEY4 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_BLOCK_KEY5 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_BLOCK_SYS_DATA2 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_BLOCK_USR_DATA 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_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIG_DBIAS_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DCACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_DCACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_ICACHE 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_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_OTG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_ECC_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_ECC_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_PAGE_SIZE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_TYPE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 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_KEY_PURPOSE_1 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_KEY_PURPOSE_2 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_KEY_PURPOSE_3 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_KEY_PURPOSE_4 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_KEY_PURPOSE_5 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_K_DIG_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_K_RTC_LDO 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_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PIN_POWER_SELECTION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PSRAM_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PSRAM_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_PSRAM_VENDOR 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_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 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_SECURE_BOOT_KEY_REVOKE1 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_SECURE_BOOT_KEY_REVOKE2 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_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_BOOT_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_WR_DIS_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS 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_D4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD 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_SPI_PAD_CONFIG_WP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_STRAP_JTAG_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SYS_DATA_PART1 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_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_USB_EXT_PHY_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_USB_PHY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VDD_SPI_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VDD_SPI_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VDD_SPI_XPD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_V_DIG_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +FreeRTOS_openocd_params esp-idf/freertos/libfreertos.a(tasks.c.obj) +GDMA esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +GPIO esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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) +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/hal/libhal.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +GPSPI2 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +GPSPI3 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +GetAccess C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +HighestFreqOffsetInOneChk C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +IP_EVENT esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) +LowestFreqOffsetInOneChk C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +MESH_EVENT esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) +MPI_BLOCK_BASES esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) +MPI_OPERATIONS_REG esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) +MQTT_EVENTS esp-idf/mqtt/libmqtt.a(mqtt_client.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) +NoiseTimerInterval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +RC_GetAckRate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) +RC_GetAckTime C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +RC_GetBlockAckTime C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +RC_GetCtsTime C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +RC_GetRtsRate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) +RC_SetBasicRate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +RFChannelSel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +ROM_Boot_Cache_Init esp-idf/hal/libhal.a(mmu_hal.c.obj) +RTCCNTL esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +RxNodeNum C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +SENS esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/hal/libhal.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) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.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) +SPIMEM0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SPIMEM1 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SYSCON esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +SYSTEM esp-idf/esp_hw_support/libesp_hw_support.a(gdma.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(adc_share_hw_ctrl.c.obj) + esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.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) +SYSTIMER esp-idf/hal/libhal.a(systimer_hal.c.obj) +SigInMacISR C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +SigSpaceFree C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +SigSpaceMalloc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +SysTickIsrHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) +TIMERG0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.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_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) +TRC_AMPDU_PER_DOWN_THRESHOLD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +TRC_AMPDU_PER_UP_THRESHOLD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +TRC_PER_IS_GOOD C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +TmpSTAAPCloseAP C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +TxNodeNum C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +TxRxCxt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +UART0 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_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +UART1 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) +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) +USB_SERIAL_JTAG esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.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) +WIFI_EVENT esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) +WIFI_MESH_EVENT C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +Xthal_intlevel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_Balloc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +_Bfree C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +_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) +_PathLocale C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) +_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) +__action_table C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) +__adddf3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +__any_on C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) +__ascii_mbtowc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) +__ascii_wctomb C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) +__assert esp-idf/newlib/libnewlib.a(assert.c.obj) +__assert_func esp-idf/newlib/libnewlib.a(assert.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_event/libesp_event.a(esp_event.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(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.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(io_mux.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/hal/libhal.a(mmu_hal.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/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.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/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/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.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_partition/libesp_partition.a(partition_target.c.obj) + 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_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_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/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port_common.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(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_cpu_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.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_sleep.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(sleep_gpio.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.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.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/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_compare_exchange esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_compare_exchange_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_exchange_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_add_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) +__atomic_fetch_and_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +__atomic_fetch_nand_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_or_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +__atomic_fetch_sub_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) +__atomic_fetch_xor_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_load esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_load_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) +__atomic_nand_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_or_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_store esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_store_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) +__atomic_sub_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_xor_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__b2d C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) +__bswapdi2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapdi2.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +__bswapsi2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +__chclass C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) +__copybits C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__cxa_begin_catch C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) +__cxa_end_catch C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) +__cxa_get_exception_ptr C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) +__cxa_get_globals C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) +__cxa_get_globals_fast C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + 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) +__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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__terminate(void (*)()) C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__terminate_handler C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__unexpected(void (*)()) C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__unexpected_handler C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) +__d2b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__default_global_locale C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) +__divdf3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdf3.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) +__divdi3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divdi3.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +__divsf3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_divsf3.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +__dso_handle esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__eh_globals_init::_S_init C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) +__env_lock C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) +__env_unlock C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) +__eqdf2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + esp-idf/json/libjson.a(cJSON.c.obj) +__errno C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/vfs/libvfs.a(nullfs.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.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/newlib/libnewlib.a(random.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(getentropy.c.obj) +__extendsfdf2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_extendsfdf2.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + esp-idf/json/libjson.a(cJSON.c.obj) +__fixdfdi C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfdi.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__fixdfsi C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixdfsi.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) +__fixunsdfsi C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_fixunsdfsi.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__floatdidf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__floatdisf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) +__floatsidf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) +__floatundidf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdidf.o) +__floatundisf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatdisf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +__floatunsidf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_floatsidf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +__fp_lock_all C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) +__fp_unlock_all C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) +__frame_state_for(void*, frame_state*) esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__gedf2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + esp-idf/json/libjson.a(cJSON.c.obj) +__gethex C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-errno.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +__gettzinfo C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gettzinfo.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) +__global_locale_ptr C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__gtdf2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + esp-idf/json/libjson.a(cJSON.c.obj) +__hexdig_fun C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) +__hexnan C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__hi0bits C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) +__hide_aliasing_typecast esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +__i2b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__init_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +__init_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +__itoa C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) +__ledf2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + esp-idf/json/libjson.a(cJSON.c.obj) +__lo0bits C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) +__locale_mb_cur_max C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) +__localeconv_l C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) +__lock___arc4random_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___at_quick_exit_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___atexit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___dd_hash_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___env_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) +__lock___malloc_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___sfp_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) +__lock___sinit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___tz_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) +__lshift C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__ltdf2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__match C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-hexnan.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__mcmp C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__mdiff C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__moddi3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_moddi3.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__month_lengths C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-month_lengths.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) +__mprec_bigtens C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__mprec_tens C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__mprec_tinytens C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) +__muldf3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_muldf3.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) +__multadd C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) +__multiply C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__nedf2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) +__popcountsi2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_popcountsi2.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__pow5mult C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__ratio C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__retarget_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-envlock.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__s2b C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__sccl C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sccl.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) +__sclose C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) +__seofread C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) +__sf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) +__sflags C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-flags.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) +__sflush_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) +__sfp C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) +__sfp_lock_acquire C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) +__sfp_lock_release C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) +__sfvwrite_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) +__sglue C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) +__sinit C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) +__smakebuf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) +__sprint_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) +__sread C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) +__srefill_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) +__sseek C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) +__ssprint_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) +__ssrefill_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) +__ssvfiscanf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) +__ssvfscanf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) +__state_table C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) +__stdio_exit_handler C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) +__subdf3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_addsubdf3.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) +__submore C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) +__swbuf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) +__swbuf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) +__swhatbuf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) +__swrite C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) +__swsetup_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__sync_add_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_and_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_bool_compare_and_swap_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_add_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_and_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_nand_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_or_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_sub_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_xor_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_lock_release_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_lock_test_and_set_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_nand_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_or_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_sub_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_val_compare_and_swap_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_xor_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__truncdfsf2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_truncdfsf2.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +__tz_lock C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) +__tz_unlock C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzlock.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) +__tzcalc_limits C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzcalc_limits.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) +__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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_udivdi3.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.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(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.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) +__ulp C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +__umoddi3 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_umoddi3.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +__unorddf2 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + esp-idf/json/libjson.a(cJSON.c.obj) +__utoa C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) +__wpa_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +__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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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) +_asprintf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) +_atoi_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) +_binary_x509_crt_bundle_end esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +_binary_x509_crt_bundle_start esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.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) +_calloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_cnx_start_connect_without_scan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +_ctype_ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ctype_.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) +_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_daylight C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) +_do_wifi_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +_do_wifi_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +_dtoa_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) +_esp_error_check_failed esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.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(wifi_init.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.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) +_etext esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +_exit esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fclose_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) +_fflush_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) +_fgets_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) +_findenv_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) +_flash_rodata_align esp-idf/freertos/libfreertos.a(port.c.obj) +_flash_rodata_start esp-idf/freertos/libfreertos.a(port.c.obj) +_fopen_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) +_fprintf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) +_fputc_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) +_fputs_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) +_fread_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) +_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.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_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.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) +_fseek_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) +_fseeko_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) +_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_ftell_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) +_ftello_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) +_fwalk_sglue C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwalk.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) +_fwrite_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) +_g_esp_netif_inherent_ap_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_inherent_eth_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) +_g_esp_netif_inherent_sta_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_netstack_default_eth esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +_g_esp_netif_netstack_default_wifi_ap esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_netstack_default_wifi_nan esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +_g_esp_netif_netstack_default_wifi_sta esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_soft_ap_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) +_getenv_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) +_getpid_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_gettimeofday_r esp-idf/newlib/libnewlib.a(time.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_global_impure_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_impure_data C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_impure_ptr C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-impure.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) +_instruction_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_instruction_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) +_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) +_iram_text_end esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +_iram_text_start esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +_isatty_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) +_kill_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_link_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_localeconv_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) +_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.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/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.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/efuse/libefuse.a(esp_efuse_api.c.obj) +_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) +_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.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/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.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/efuse/libefuse.a(esp_efuse_api.c.obj) +_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) +_lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_malloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_mbrtowc_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) +_mbtowc_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbtowc_r.o) +_mesh_check_roots_gone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_check_window_close_expire C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_check_window_open_expire C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_find_root_competitor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +_mesh_remove_gone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_reset_window_open_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_num_reach_max C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_announce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_conflict_table C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_fixed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_gone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_yield C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_set_flag_roots_found C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_timer_process_announce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_timer_process_conflict_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_timer_process_fixed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_timer_process_gone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_timer_process_yield C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mprec_log10 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) +_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_print_roots_count C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_printf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) +_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) +_putc_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.o) +_putchar_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) +_puts_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) +_raise_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_read_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_read_r_console esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) +_realloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_reclaim_reent C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_remove_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) +_rename_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_rodata_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.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) +_rodata_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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_force_fast_end esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_text_end esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +_rtc_text_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +_sbrk_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_setlocale_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) +_sfread_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) +_siscanf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) +_snprintf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) +_sprintf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) +_sscanf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) +_stat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_stext esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +_strdup_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) +_strerror_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) +_strndup_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) +_strtod_l C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +_strtod_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) +_strtol_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) +_strtoll_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) +_strtoul_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) +_strtoull_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) +_sungetc_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) +_svfiprintf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) +_svfprintf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) +_system_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.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/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_timezone C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) +_tzname C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzvars.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) +_tzset_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) +_tzset_unlocked C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) +_tzset_unlocked_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.o) +_ungetc_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) +_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_user_strerror C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-u_strerr.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) +_vector_table esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_vfiprintf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) +_vfprintf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) +_vprintf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) +_vsnprintf_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) +_wctomb_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-wctomb_r.o) +_wifi_vnd_ext_mesh_roots_free C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_wifi_vnd_ext_mesh_roots_malloc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_write_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_write_r_console esp-idf/newlib/libnewlib.a(reent_syscalls.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_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/newlib/libnewlib.a(abort.c.obj) + esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.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/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.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/app_update/libapp_update.a(esp_ota_ops.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.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(locks.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(esp_memprot.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_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.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/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.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.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +acd_add esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +acd_arp_reply esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +acd_netif_ip_addr_changed esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +acd_network_changed_link_down esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +acd_remove esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +acd_start esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +acs_int_st_bits esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +adc2_wifi_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc2_wifi_release esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_apb_periph_claim esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +adc_apb_periph_free esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +adc_calc_hw_calibration_code esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_hal_arbiter_config esp-idf/hal/libhal.a(adc_hal_common.c.obj) +adc_hal_calibration_init esp-idf/hal/libhal.a(adc_hal_common.c.obj) +adc_hal_self_calibration esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_hal_set_calibration_param esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_hal_set_controller esp-idf/hal/libhal.a(adc_hal_common.c.obj) +adc_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_lock_try_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_set_hw_calibration_code esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +add_mic_ie_bip C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +addba_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +adjtime esp-idf/newlib/libnewlib.a(time.c.obj) +aes_128_cbc_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_128_cbc_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_128_ctr_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +aes_ccm_ad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +aes_ccm_ae esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +aes_ctr_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) +aes_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) +aes_decrypt_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) +aes_decrypt_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) +aes_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) +aes_encrypt_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) +aes_encrypt_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) +aes_gcm_ad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) +aes_gcm_ae esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) +aes_gmac esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_hal_mode_init esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +aes_hal_read_iv esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +aes_hal_set_iv esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +aes_hal_setkey esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +aes_hal_transform_block esp-idf/hal/libhal.a(aes_hal.c.obj) +aes_hal_transform_dma_finish esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) +aes_hal_transform_dma_start esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) +aes_hal_wait_done esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) +aes_siv_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +aes_siv_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) +aes_unwrap esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +aes_wrap esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +aligned_alloc esp-idf/newlib/libnewlib.a(heap.c.obj) +ampdu_alloc_rx_ba_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ampdu_dispatch_all C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ampdu_dispatch_as_many_as_possible C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ampdu_dispatch_movement C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ampdu_dispatch_upto C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ampdu_free_rx_ba_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ampdu_process_multicast_address_qos_frame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ant_btrx_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +ant_bttx_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +ant_dft_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ant_rx_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +ant_tx_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +ant_wifirx_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ant_wifitx_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ap_for_each_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +ap_free_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +ap_get_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +ap_no_lr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ap_no_lr_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ap_rx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ap_rxcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ap_sa_query_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ap_sta_add esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +ap_sta_delayed_1x_auth_fail_disconnect esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +ap_sta_hash_add esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +ap_sta_pending_delayed_1x_auth_fail_disconnect esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +ap_try_sa_query_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +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) +app_scan_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +asprintf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-asprintf.o) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +assoc_ie_buf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +atoi C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) +auth_build_token_req esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +auth_sae_queue esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +band2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +bars C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +bb_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +bb_intr_handl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +bias_reg_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +bin_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.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_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_efuse_blk_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/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.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/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.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) + esp-idf/app_update/libapp_update.a(esp_ota_ops.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_esp32s3.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_qio_mode esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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_esp32s3.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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) + esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.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_esp32s3.c.obj) +bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +bootloader_flash_qe_list_count esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_flash_qe_support_list esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_flash_qe_support_list_default esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.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_set_dummy_out esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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_esp32s3.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_esp32s3.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_esp32s3.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_esp32s3.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_esp32s3.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_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.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_esp32s3.c.obj) +bootloader_read_status_16b_rdsr_rdsr2 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_read_status_8b_rdsr esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_read_status_8b_rdsr2 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_read_status_8b_rdsr3 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_read_status_8b_xmc25qu64a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.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) +bootloader_write_status_16b_wrsr esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_write_status_8b_wrsr esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_write_status_8b_wrsr2 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_write_status_8b_wrsr3 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_write_status_8b_xmc25qu64a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.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) +bt_agc_gain_max C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_corr_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_detect_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_dpo_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_filter_sel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_gain_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_restart_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_set_max_gain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_set_rx_sense C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_target_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_tx_cca_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_v2_init_cmplx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_v2_recorrect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_v2_rx_rssi_thresh C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_v2_rx_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_v2_tx_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_bb_v2_version C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_chan_pwr_interp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +bt_get_channel_pwr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_get_channel_pwr_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_get_channel_pwr_unset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_set_chn C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +bt_track_pll_cap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +bt_tx_gain_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +bt_tx_pwctrl_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +bt_txdc_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +bt_txiq_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +bt_txpwr_freq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +btbb_wifi_bb_cfg2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +buf_shift_right esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +bzero C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.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/newlib/libnewlib.a(heap.c.obj) +cJSON_AddArrayToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddBoolToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddFalseToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddItemReferenceToArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddItemReferenceToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddItemToArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddItemToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddItemToObjectCS esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddNullToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddNumberToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddObjectToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddRawToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddStringToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_AddTrueToObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Compare esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateArrayReference esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateBool esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateDoubleArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateFalse esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateFloatArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateIntArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateNull esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateNumber esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateObjectReference esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateRaw esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateString esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateStringArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateStringReference esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_CreateTrue esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Delete esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) +cJSON_DeleteItemFromArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DeleteItemFromObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DeleteItemFromObjectCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DetachItemFromArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DetachItemFromObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DetachItemFromObjectCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_DetachItemViaPointer esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Duplicate esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Duplicate_rec esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetArrayItem esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetArraySize esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetErrorPtr esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetNumberValue esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetObjectItem esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) +cJSON_GetObjectItemCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_GetStringValue esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_HasObjectItem esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_InitHooks esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_InsertItemInArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsBool esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsFalse esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsInvalid esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsNull esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsNumber esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsRaw esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsString esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_IsTrue esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Minify esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Parse esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) +cJSON_ParseWithLength esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ParseWithLengthOpts esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ParseWithOpts esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Print esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_PrintBuffered esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_PrintPreallocated esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_PrintUnformatted esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ReplaceItemInArray esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ReplaceItemInObject esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ReplaceItemInObjectCaseSensitive esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_ReplaceItemViaPointer esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_SetNumberHelper esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_SetValuestring esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_Version esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_free esp-idf/json/libjson.a(cJSON.c.obj) +cJSON_malloc esp-idf/json/libjson.a(cJSON.c.obj) +cache_hal_disable esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +cache_hal_enable esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +cache_hal_freeze esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) +cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +cache_hal_init esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.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) +cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +cache_hal_resume esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) +cache_hal_suspend esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) +cache_hal_unfreeze esp-idf/hal/libhal.a(cache_hal.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.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +cache_hal_writeback_addr esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +cache_writeback_items_freeze esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.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/newlib/libnewlib.a(heap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_event/libesp_event.a(esp_event.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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.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(esp_memprot.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +candidate_monitor_timer_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +candidate_monitor_timer_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +cannel_scan_connect_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +capture_tcp_transport_error esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +ccmp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ccmp_256_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +ccmp_256_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +ccmp_decap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) +ccmp_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +ccmp_encap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) +ccmp_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +ccmp_encrypt_pv1 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +ccmp_get_pn esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +cfree esp-idf/newlib/libnewlib.a(heap.c.obj) +challenge_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) +challenge_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) +chan14_mic_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +chan14_mic_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) +chap_md5 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) +check_bss_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +check_comeback_token esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +chip7_phy_init_ctrl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +chip_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +chip_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +chip_post_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +chip_v7_set_chan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +chip_v7_set_chan_ana C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +chip_v7_set_chan_misc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +chip_v7_set_chan_offset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +chm_acquire_lock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +chm_cancel_op C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) +chm_check_channel_is_valid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +chm_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +chm_end_op C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +chm_end_op_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +chm_get_band_from_chan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +chm_get_chan_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +chm_get_channel_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +chm_get_current_band C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +chm_get_current_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +chm_get_home_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +chm_get_snd_chan_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +chm_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +chm_is_at_home_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +chm_mhz2num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +chm_release_lock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) +chm_return_home_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) +chm_set_current_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +chm_set_home_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +chm_set_snd_chan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +chm_start_op C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cipher_map_net80211_to_public_cipher C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cipher_type_map_public_to_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +cipher_type_map_public_to_supp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +cipher_type_map_supp_to_public esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +clear_bss_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +clk_hal_apb_get_freq_hz esp-idf/hal/libhal.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/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_clock_output_teardown esp-idf/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_cpu_get_freq_hz esp-idf/hal/libhal.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/hal/libhal.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/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_xtal_get_freq_mhz esp-idf/hal/libhal.a(clk_tree_hal.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(esp_clk_tree_common.c.obj) +clock_getres esp-idf/newlib/libnewlib.a(time.c.obj) +clock_gettime esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +clock_settime esp-idf/newlib/libnewlib.a(time.c.obj) +close C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysclose.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +closedir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +cnx_add_rc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_add_to_blacklist C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_auth_done C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +cnx_auth_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_auth_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_beacon_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_bss_alloc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_bss_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_can_do_obss_scan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_check_bssid_in_blacklist C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_clear_blacklist C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cnx_connect_next_ap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_connect_next_ap_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_connect_next_ap_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_connect_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_connect_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_csa_fn C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_csa_fn_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_do_handoff_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +cnx_get_authtype_strength C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cnx_handshake_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_handshake_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_is_any_node_connecting C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +cnx_node_alloc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +cnx_node_is_existing C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +cnx_node_join C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +cnx_node_leave C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +cnx_node_remove C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_node_search C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +cnx_obss_scan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_obss_scan_done_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_obss_scan_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_rc_search C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +cnx_rc_update_age C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_rc_update_rssi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +cnx_rc_update_state_metric C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_remove_all_rc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cnx_remove_from_blacklist C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_remove_rc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_remove_rc_except C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_sta_associated C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_sta_connect_cmd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cnx_sta_connect_led_timer_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_sta_leave C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_sta_pm C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +cnx_sta_scan_cmd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cnx_start_handoff_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_start_obss_scan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cnx_stop_obss_scan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cnx_update_bss C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_update_bss_more C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_validate_owe_bss C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +coex_pti_print C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +coex_pti_v2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +comeback_token_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +config_get_wifi_task_stack_size C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +config_is_cache_tx_buf_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +connect_scan_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +console_access esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_close esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_end_select esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_fcntl esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_fstat esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_fsync esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_open esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_read esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_tcdrain esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_tcflush esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_tcgetattr esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_tcsetattr esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +console_write esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +core_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) +correct_rfpll_offset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +cpu_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +crc32_le C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +create_new_bss_for_sa_query_failed_sta C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +crypto_bignum_add esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_addmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +crypto_bignum_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_bignum_div esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_exptmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_bignum_init_set esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_bignum_init_uint esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_inverse esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_is_odd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +crypto_bignum_is_one esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_is_zero esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_legendre esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +crypto_bignum_mod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_mulmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_rand esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +crypto_bignum_rshift esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_sqrmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_sub esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_to_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_bignum_to_string esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +crypto_debug_print_point esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_dh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_ec_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_get_a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_get_affine_coordinates esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_b esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_get_curve_id esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_group_byname esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_group_from_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_mbedtls_to_nist_group_id esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_order esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_get_prime esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_get_priv_key_der esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_publickey_buf esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_key_compare esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_key_debug_print esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_key_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_key_gen esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_key_get_private_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_key_get_public_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_key_get_subject_public_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_key_group esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_key_parse_priv esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_key_parse_pub esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_key_set_pub esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_key_verify_signature esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_key_verify_signature_r_s esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_order_len esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_parse_subpub_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_point_add esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_compute_y_sqr esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_from_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_invert esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_is_at_infinity esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_is_on_curve esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_mul esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_solve_y_coord esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_point_to_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_prime_len esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_prime_len_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_write_pub_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ecdh esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ecdh_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +crypto_ecdh_get_pubkey esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +crypto_ecdh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +crypto_ecdh_set_peerkey esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +crypto_ecdsa_get_sign esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_free_buffer esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +crypto_get_order esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_global_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_global_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_hash_finish esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_hash_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_hash_update esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_is_ec_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_mbedtls_get_grp_id esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_mod_exp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) +crypto_pk_write_formatted_pubkey_der esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_write_pubkey_der esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +current_task_is_wifi_task C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +dbg_cnt_lmac_drop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +dbg_ebuf_loc_show C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_his_lmac_eb_show C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_his_lmac_event_show C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_his_lmac_int_show C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_his_lmac_rx_show C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_his_lmac_tx_show C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_hmac_rxtx_statis_dump C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) +dbg_hmac_statis_dump C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +dbg_lmac_diag_statis_dump C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_lmac_get_acs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +dbg_lmac_hw_statis_dump C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_lmac_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +dbg_lmac_ps_statis_dump C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_lmac_ps_statis_reset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +dbg_lmac_rxtx_statis_dump C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_lmac_statis_dump C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +dbg_perf_path_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_perf_path_show C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_perf_throughput_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +default_router_list esp-idf/lwip/liblwip.a(nd6.c.obj) +des3_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des3_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des3_key_setup esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des_block_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des_block_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) +des_key_setup esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +dh5_derive_shared esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +dh5_free esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +dh5_init esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) +dh5_init_fixed esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) +dh_derive_shared esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) +dh_groups_get esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) +dhcp_append_extra_opts esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_cleanup esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_coarse_tmr esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +dhcp_fine_timeout_cb esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_fine_tmr esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_inform esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_network_changed_link_up esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +dhcp_parse_extra_opts esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_release esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_release_and_stop esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_renew esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_search_ip_on_mac esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_set_struct esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_start esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_stop esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_supplied_address esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcps_delete esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_dns_getserver esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +dhcps_dns_getserver_by_type esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_dns_setserver esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +dhcps_dns_setserver_by_type esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_new esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_option_info esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_pbuf_alloc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +dhcps_set_new_lease_cb esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_set_option_info esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_start esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_stop esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dig_gain_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +discnx_reason_id2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +div C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-div.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +dns_clear_cache esp-idf/lwip/liblwip.a(dns.c.obj) +dns_gethostbyname esp-idf/lwip/liblwip.a(dns.c.obj) +dns_gethostbyname_addrtype esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +dns_getserver esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dns_init esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +dns_mquery_v4group esp-idf/lwip/liblwip.a(dns.c.obj) +dns_mquery_v6group esp-idf/lwip/liblwip.a(dns.c.obj) +dns_setserver esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +dns_tmr esp-idf/lwip/liblwip.a(dns.c.obj) +do_multicore_settings esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +dragonfly_generate_scalar esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_get_random_qr_qnr esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_is_quadratic_residue_blind esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_min_pwe_loop_iter esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_sqrt esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_suitable_group esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +ds_hal_busy esp-idf/hal/libhal.a(ds_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +ds_hal_configure_iv esp-idf/hal/libhal.a(ds_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +ds_hal_finish esp-idf/hal/libhal.a(ds_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +ds_hal_read_result esp-idf/hal/libhal.a(ds_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +ds_hal_start esp-idf/hal/libhal.a(ds_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +ds_hal_start_sign esp-idf/hal/libhal.a(ds_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +ds_hal_write_message esp-idf/hal/libhal.a(ds_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +ds_hal_write_private_key_params esp-idf/hal/libhal.a(ds_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +dup_binstr esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +dutytype2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +eap_allowed_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_client_get_eap_state esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +eap_deinit_prev_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_get_config esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_blob esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +eap_get_config_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_password2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_id esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_phase2_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +eap_get_phase2_types esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +eap_get_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_hdr_len_valid esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) +eap_hdr_validate esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_mbedtls_x509_crt_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +eap_msg_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +eap_peer_blob_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_blob_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_config_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_config_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_get_eap_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_get_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_get_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_method_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_peer_method_free esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_peer_method_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_peer_mschapv2_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_peap_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_register_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_select_phase2_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_build_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_derive_key esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_derive_session_id esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_phase2_nak esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_process_helper esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_process_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_reauth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_tls_reset_input esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_reset_output esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) +eap_peer_tls_ssl_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_ssl_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_status esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_ttls_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_unregister_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_set_config_blob esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_sm_abort esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_allowMethod esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_buildIdentity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) +eap_sm_build_identity_resp esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_build_nak esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_get_method_name esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_sm_process_request esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_request_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_sm_request_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_sm_request_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_sm_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_update_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_wsc_build_frag_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +eapol_sm_notify_eap_success esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +eapol_txcb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eb_space C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +eb_txdesc_space C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +efuse_hal_blk_version 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/bootloader_support/libbootloader_support.a(bootloader_common_loader.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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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_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) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.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) +eloop_cancel_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +eloop_cancel_timeout_one esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_deplete_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_destroy esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eloop_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eloop_is_timeout_registered esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +eloop_register_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +eloop_register_timeout_blocking esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_replenish_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_run esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +empty_func_p_pconfg_r_void C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +empty_func_p_ptsf_u32_r_void C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +empty_func_p_pvoid_r_void C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +empty_func_p_u32_r_void C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +empty_func_p_u8_r_void C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +empty_func_p_u8_u8_float_float_pparams_r_void C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +empty_func_p_u8_u8_pu16_pfloat_r_void C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +empty_func_p_void_r_bool C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +empty_func_p_void_r_float C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +empty_func_p_void_r_void C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +emul_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +encrypt_pw_block_with_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +environ C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-environ.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +err_to_errno esp-idf/lwip/liblwip.a(err.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +errno C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-reent.o) +esf_buf_alloc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +esf_buf_alloc_default_handler C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +esf_buf_alloc_dynamic C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +esf_buf_alloc_dynamic_default_handler C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +esf_buf_free_static C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +esf_buf_recycle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +esf_buf_recycle_default_handler C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +esf_buf_setdown C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +esf_buf_setup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +esf_buf_setup_for_mesh C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esf_buf_setup_static C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +esf_buf_statis_dump C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +esp_aes_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_crypt_cbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_crypt_cfb128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_crypt_cfb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_crypt_ctr esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_crypt_ecb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_crypt_ofb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_crypt_xts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_aes_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_dma_done esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) +esp_aes_dma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) +esp_aes_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_gcm_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_crypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_gcm_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_gcm_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_gcm_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_intr_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) +esp_aes_process_dma esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_xts_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_xts_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_aes_xts_setkey_dec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_aes_xts_setkey_enc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_apb_backup_dma_lock_init esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.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_base_mac_addr_get esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_base_mac_addr_set esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.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_aligned_calloc esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +esp_cache_aligned_calloc_prefer esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +esp_cache_aligned_malloc esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +esp_cache_aligned_malloc_prefer esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +esp_cache_err_acs_save_and_clr esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.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_freeze_caches_disable_interrupts esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +esp_cache_freeze_ext_mem_cache esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.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_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_unfreeze_caches_enable_interrupts esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +esp_cache_unfreeze_ext_mem_cache esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.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_system/libesp_system.a(cpu_start.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/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_coex/libesp_coex.a(esp_coex_adapter.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(esp_clk_tree_common.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_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_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(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.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_clk_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_coex_common_clk_slowclk_cal_get_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_env_is_chip_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_int_disable_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_int_restore_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_malloc_internal_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_create_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_delete_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_give_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_take_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_spin_lock_create_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_task_yield_from_isr_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_arm_us_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_disarm_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_done_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_setfn_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_config_data_cache_mode esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_config_instruction_cache_mode esp-idf/spi_flash/libspi_flash.a(cache_utils.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/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(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_create_mbedtls_handle esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.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(event_groups.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_crt_bundle_attach esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_crt_bundle_attach_fn esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_crt_bundle_detach esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +esp_crt_bundle_in_use esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +esp_crt_bundle_set esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +esp_crt_verify_callback esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +esp_crypto_aes_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_crypto_base64_encode esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_crypto_ds_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +esp_crypto_ds_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +esp_crypto_ds_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +esp_crypto_hmac_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +esp_crypto_hmac_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +esp_crypto_hmac_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +esp_crypto_mpi_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.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/library/libmbedcrypto.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/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_crypto_sha1 esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_crypto_sha_aes_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_crypto_sha_aes_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_crypto_sha_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +esp_crypto_shared_gdma_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +esp_crypto_shared_gdma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +esp_crypto_shared_gdma_start_axi_ahb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.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-idf/esp_phy/libesp_phy.a(phy_init.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_derive_local_mac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_dport_access_read_buffer esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) +esp_ds_deinit_data_ctx esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) +esp_ds_encrypt_params esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +esp_ds_finish_sign esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) +esp_ds_get_data_ctx esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) +esp_ds_get_hmac_key_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) +esp_ds_get_keylen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +esp_ds_hash_mprime esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) +esp_ds_init_data_ctx esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +esp_ds_is_busy esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +esp_ds_mgf_mask esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) +esp_ds_release_ds_lock esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +esp_ds_rsa_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +esp_ds_set_session_timeout esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +esp_ds_sign esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +esp_ds_start_sign esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) +esp_eap_client_clear_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_certificate_and_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_username esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_get_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_certificate_and_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_domain_name esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_eap_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_fast_params esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_pac_file esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_suiteb_192bit_certification esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_ttls_phase2_method esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_username esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_use_default_cert_bundle esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.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_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_destroy_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_enable_rom_secure_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-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_find_unused_key_block 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_efuse_get_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_get_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.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/bootloader_support/libbootloader_support.a(flash_encrypt.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-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_get_purpose_field esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_mac_get_custom esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_efuse_mac_get_default esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.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/esp_security/libesp_security.a(esp_hmac.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_rtc_calib.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.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_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_rtc_calib_get_cal_voltage esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +esp_efuse_rtc_calib_get_init_code esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +esp_efuse_rtc_calib_get_tsens_val esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) +esp_efuse_rtc_calib_get_ver esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +esp_efuse_set_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.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_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_keypurpose_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_set_write_protect_of_digest_revoke 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_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-idf/efuse/libefuse.a(esp_efuse_api_key.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_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-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_cnt 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_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.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_enable_cache_wrap esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_err_to_name esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + esp-idf/main/libmain.a(fs_init.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_err_to_name_r esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +esp_event_dump esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_handler_instance_register esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) +esp_event_handler_instance_register_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_instance_unregister esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_instance_unregister_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_register esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_event_handler_register_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_event_handler_register_with_internal esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_handler_unregister esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_event_handler_unregister_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_event_handler_unregister_with_internal esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_isr_post esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_isr_post_to esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_create esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_event_loop_create_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) +esp_event_loop_delete esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_event_loop_delete_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_run esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_event_post esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_event_post_to esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_fast_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_fill_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/newlib/libnewlib.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_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_init esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_flash_chip_boya esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 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_mxic_opi.c.obj) + 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_th.c.obj) + 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/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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/app_update/libapp_update.a(esp_ota_ops.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/esp_hw_support/libesp_hw_support.a(gdma.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-idf/app_update/libapp_update.a(esp_ota_ops.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_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-idf/esp_system/libesp_system.a(startup_funcs.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_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_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-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_get_free_internal_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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_get_tx_power esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_gpio_is_reserved esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.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/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.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_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_calculate esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +esp_hmac_jtag_disable esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +esp_hmac_jtag_enable esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +esp_iface_mac_addr_set esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.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/library/libmbedcrypto.a(esp_aes.c.obj) +esp_internal_aes_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_intr_alloc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.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_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.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_hw_support/libesp_hw_support.a(gdma.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_systimer.c.obj) +esp_intr_disable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.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_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_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_intr_enable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.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_intr_free esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.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_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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-idf/esp_mm/libesp_mm.a(esp_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-idf/esp_mm/libesp_mm.a(esp_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_ip4addr_aton esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_ip4addr_ntoa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.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/esp_hw_support/libesp_hw_support.a(sleep_modes.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_ipc_isr_stall_other_cpu 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_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/newlib/libnewlib.a(assert.c.obj) +esp_libc_include_getentropy_impl esp-idf/newlib/libnewlib.a(getentropy.c.obj) +esp_libc_include_heap_impl esp-idf/newlib/libnewlib.a(heap.c.obj) +esp_libc_include_init_funcs esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_libc_include_pthread_impl esp-idf/newlib/libnewlib.a(pthread.c.obj) +esp_libc_include_reent_syscalls_impl esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) +esp_libc_include_syscalls_impl esp-idf/newlib/libnewlib.a(syscalls.c.obj) +esp_libc_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(init.c.obj) +esp_libc_init_funcs esp-idf/newlib/libnewlib.a(init.c.obj) +esp_libc_init_global_stdio esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(init.c.obj) +esp_libc_locks_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_libc_time_init esp-idf/newlib/libnewlib.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/esp_phy/libesp_phy.a(lib_printf.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.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(sar_periph_ctrl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.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/spi_flash/libspi_flash.a(esp_flash_api.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/bootloader_support/libbootloader_support.a(flash_qio_mode.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_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 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_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + esp-idf/main/libmain.a(fs_init.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.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_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.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/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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_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(sleep_gpio.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/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-idf/esp_wifi/libesp_wifi.a(wifi_init.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/esp_phy/libesp_phy.a(lib_printf.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_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(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.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_oct_flash_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.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/bootloader_support/libbootloader_support.a(flash_qio_mode.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_esp32s3.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/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.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/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + esp-idf/main/libmain.a(fs_init.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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_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(sleep_gpio.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/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/esp_system/libesp_system.a(startup_funcs.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-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_log_writev esp-idf/log/liblog.a(log_write.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_mac_addr_len_get esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_mbedtls_cleanup esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +esp_mbedtls_conn_delete esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_free_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_get_bytes_avail esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_get_ciphersuites_list esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_get_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_get_ssl_context esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_handshake esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_init_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_mem_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +esp_mbedtls_mem_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +esp_mbedtls_read esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_server_session_continue_async esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_server_session_create esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_server_session_delete esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_server_session_init esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_set_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_verify_certificate esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +esp_mbedtls_write esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_md5_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) +esp_md5_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_mesh_add_conflict_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_allow_root_conflicts C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_ap_enqueue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_expire C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_invalid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) +esp_mesh_ap_list_find C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_expire C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_invalid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_update_invalid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_appie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_available_txupQ_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_best_effort_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_channel_enable_jp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_check_multi_redundant_ack C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_check_nonassociated_children C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_check_vnd_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_clear_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +esp_mesh_clear_parent_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_combine_multi_redundant_ack C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_compute_my_votes C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_compute_votes C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_conn_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_conn_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_connect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_copy_mgmt_announce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_create_context C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_create_mbox C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_decrypt_vnd_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_delete_group_addr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_delete_group_id C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_delete_sub_children C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_delivery_toDS C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_delivery_toSelf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_disable_ps C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_discard_context C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_disconnect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_enable_ps C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_encrypt_vnd_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_find_conflict_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_fix_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_flush_scan_result C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +esp_mesh_flush_tcpip_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_flush_upstream_packets C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_force_txupQ_pending C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_forward_check_active C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_forward_packet C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_free_context C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_free_mbox C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_active_duty_cycle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_announce_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_ap_assoc_expire C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_ap_authmode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_ap_connections C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_attempts C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_beacon_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_capacity_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_child_idx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_get_child_idx_lock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_get_child_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_get_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_conflict_root_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_group_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_group_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_id C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_ie_crypto_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_layer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_max_layer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_network_duty_cycle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_non_mesh_connections C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_optlen C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_get_parent_bssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_parent_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_get_parent_monitor_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_get_passive_scan_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_root_addr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_root_healing_delay C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_router C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_router_bssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_routing_table C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_get_routing_table_size C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_get_rssi_threshold C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_rssi_threshold_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_running_active_duty_cycle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +esp_mesh_get_rx_pending C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_self_organized C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_storage C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_sub_capacity C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_get_subnet_nodes_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_subnet_nodes_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_switch_parent_paras C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_topology C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_total_children_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_total_node_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_tsf_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +esp_mesh_get_tx_pending C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_get_type C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_vnd_ext_assoc_len C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_roots_len C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_ssid_len C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_vote_percentage C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_xon_qsize C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_ie_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_ie_monitor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_capacity C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_rssi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_insert_child C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_insert_group_addr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_io_sem_signal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_io_sem_wait C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +esp_mesh_is_device_active C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_my_group C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_is_my_ie_encrypted C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_is_nwk_inited C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_nwk_running C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_ps_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_root_conflicts_allowed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_is_root_fixed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_roots_found C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_is_rt_change_debug C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_is_same_router C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_is_scan_allowed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_is_start_pm_now C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_is_switch_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_look_for_network C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_lookup_route C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_lookup_sub_route C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_map_change_beacon_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_map_deauth C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_mesh_map_probe_response C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_map_reject_connection C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_map_stop_beacon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_match_self C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_mcast_cover_node C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_monitor_nonassociated_children C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_monitor_parent_candidate_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_monitor_parent_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_monitor_vote_candidate_rssi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_nvs_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_nvs_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_nvs_operate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) +esp_mesh_nvs_set_assoc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_nvs_set_layer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_nwk_redundant_route C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_nwk_task_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_nwk_task_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_operation_rxseqno C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_mesh_pack_multi_routing_table C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_pack_rmv_announcement C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_parent_reselect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_parent_select C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_parse_beacon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_assoc_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_roots_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_parse_ext_assoc_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_parse_ps_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_go_to_sleep C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_go_to_wake C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_rx_beacon_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_tbtt_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_tx_data_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_tx_null_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_post_toDS_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_print_route_table C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_print_rxQ_waiting C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_print_scan_result C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_print_txQ_waiting C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_mesh_process_bcast C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_process_mcast C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_process_options C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_process_ps_awake C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_process_ps_type C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_process_redundant_subchildren C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_process_txupQ_pending C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_process_ucast C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_ps_control_check_awake C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_ps_duty C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_ps_duty_cycle_get_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_cycle_set_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_ext_get_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_signaling C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_ps_get_duties C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_ps_get_ext_duty C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_push_to_ack_state_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_myself_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_push_to_nwk_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_push_to_ps_tx_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_push_to_rx_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_mesh_push_to_tcpip_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_tx_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_push_to_wnd_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_xmit_state_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_quick_funcs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +esp_mesh_quick_funcs_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_quick_funcs_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_recv C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_recv_release C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_recv_toDS C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_recv_xon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_mesh_refresh_routing_table C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_remove_child C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_remove_children C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_remove_conflict_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_remove_nonassociated_children C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_revote_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_root_process_duty_duration_expire C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_route_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_route_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_rt_change_debug C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_rx_task_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_rx_task_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_scan_done C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_get_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_vote C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_scan_get_ap_ie_len C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_scan_get_ap_record C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_send C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_send_add_announcement C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_send_block_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_send_block_event C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_send_block_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_send_block_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_send_block_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_send_event_internal esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_send_mgmt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_send_rmv_announcement C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_send_root_switch C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_send_rtable_ack C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_send_rtable_request C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_send_sem_signal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_send_sem_wait C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_send_stop_vote C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_send_xon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_set_6m_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +esp_mesh_set_active_duty_cycle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_announce_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ap_assoc_expire C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_set_ap_authmode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ap_connections C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ap_password C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_attempts C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_beacon_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_capacity_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_group_id C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_id C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_ie_crypto_funcs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_funcs_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_max_layer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_network_duty_cycle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_network_duty_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_set_non_mesh_connections C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_parent_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_candidate_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_monitor_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_passive_scan_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_root_healing_delay C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_router C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_router_bssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_set_rssi_threshold C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_rssi_threshold_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_self_organized C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_switch_parent_paras C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_topology C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_type C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_vote_percentage C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_xon_qsize C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_sta_connect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_sta_disassoc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_sta_disconnect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_sta_monitor_rssi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_stop_parent_reconnection C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +esp_mesh_switch_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_switch_channel_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +esp_mesh_sync_interface_tsf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +esp_mesh_tx_task_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_tx_task_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_tx_tid_flush C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_mesh_txupQ_pending C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_txupQ_pending_clear_xonseq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_txupQ_pending_delete_child C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_cidx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_xonseq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_insert_child C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_update_conflict_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_waive_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_wifi_recv_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +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_mpi_disable_hardware_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_enable_hardware_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_exp_mpi_mod_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_hardware_words esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_mpi_interrupt_clear esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_mpi_interrupt_enable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_mpi_mul_mpi_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_mul_mpi_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_mul_mpi_mod_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_mult_mpi_failover_mod_mult_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mprot_dump_configuration esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_active_intr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_default_main_split_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_monitor_en esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_monitor_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_pms_area esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_pms_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_split_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_split_addr_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_violate_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_violate_byte_enables esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_violate_operation esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_get_violate_world esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_has_byte_enables esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_is_conf_locked_any esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_mprot_is_intr_ena_any esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_ll_err_to_esp_err esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_ll_world_to_hl_world esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_monitor_clear_intr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_oper_type_to_str esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) +esp_mprot_pms_world_to_str esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) +esp_mprot_set_monitor_en esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_set_monitor_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_set_pms_area esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_set_pms_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_set_prot esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_mprot_set_split_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mprot_set_split_addr_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +esp_mqtt_client_destroy esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_client_disconnect esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_client_enqueue esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_client_get_outbox_size esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_client_get_transport esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_client_init esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) +esp_mqtt_client_publish esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) +esp_mqtt_client_reconnect esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_client_register_event esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) +esp_mqtt_client_set_uri esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_client_start esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) +esp_mqtt_client_stop esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_client_subscribe_multiple esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_client_subscribe_single esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) +esp_mqtt_client_unregister_event esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_client_unsubscribe esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_destroy_config esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_dispatch_custom_event esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_set_config esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_mqtt_set_if_config esp-idf/mqtt/libmqtt.a(mqtt_client.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_net80211_rom_version_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_netif_action_add_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_connected esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_disconnected esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_got_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_join_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_leave_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_remove_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_start esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_add_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_add_to_list_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_attach esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_attach_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_attach_wifi_station esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_mesh_netifs esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_sta esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) +esp_netif_create_ip6_linklocal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_create_wifi esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_deinit esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_destroy esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_destroy_default_wifi esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_dhcpc_get_status esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_dhcpc_option esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcpc_option_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcpc_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_dhcpc_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_dhcps_get_clients_by_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_get_status esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_option esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_option_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_down esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_find_if esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_free_rx_buffer esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_netif_get_all_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_all_preferred_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_desc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_dns_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_event_id esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_flags esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_handle_from_ifkey esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_handle_from_ifkey_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_handle_from_netif_impl esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) +esp_netif_get_hostname esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_netif_get_ifkey esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +esp_netif_get_io_driver esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_get_ip6_global esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_ip6_linklocal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl_index esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl_name esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl_name_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_nr_of_ifs esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_old_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_route_prio esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_init esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) +esp_netif_ip6_get_addr_type esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_is_netif_listed esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_is_netif_up esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_is_valid_static_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_join_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_leave_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_napt_disable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_napt_enable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_netstack_buf_free esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_netstack_buf_ref esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_new esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_next esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +esp_netif_next_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_ppp_set_auth esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_ppp_set_auth_internal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_receive esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_remove_from_list_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_remove_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_set_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_dns_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_driver_config esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_set_hostname esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_ip4_addr esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_link_speed esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_set_mac_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_old_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_set_route_prio esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_str_to_ip4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_str_to_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_tcpip_exec esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_transmit esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) +esp_netif_transmit_wrap esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_netif_tx_rx_event_disable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_tx_rx_event_enable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_up esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_update_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_newlib_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_newlib_locks_init esp-idf/newlib/libnewlib.a(locks.c.obj) +esp_newlib_time_init esp-idf/newlib/libnewlib.a(time.c.obj) +esp_opiflash_init esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_opiflash_set_required_regs esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.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-idf/fota_manager/libfota_manager.a(fota_manager.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-idf/fota_manager/libfota_manager.a(fota_manager.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-idf/fota_manager/libfota_manager.a(fota_manager.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-idf/fota_manager/libfota_manager.a(fota_manager.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-idf/fota_manager/libfota_manager.a(fota_manager.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-idf/fota_manager/libfota_manager.a(fota_manager.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_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/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 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(spiffs_api.c.obj) +esp_partition_find esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_find_first esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +esp_partition_get esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_get_main_flash_sector_size esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.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/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_munmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_next esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_read esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.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/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.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_write esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 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(spiffs_api.c.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_pbuf_allocate esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.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_apply_phy_init_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_phy_common_clock_disable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_common_clock_enable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_disable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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_phy_enable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_phy_erase_cal_data_in_nvs esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_get_ant esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +esp_phy_get_ant_gpio esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +esp_phy_get_init_data esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_load_cal_and_init esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_load_cal_data_from_nvs esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_modem_deinit esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_phy_modem_init esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_phy_release_init_data esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_set_ant esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +esp_phy_set_ant_gpio esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +esp_phy_store_cal_data_to_nvs esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_update_country_info esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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_pp_rom_version_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +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/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.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_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) +esp_read_mac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) +esp_reent_cleanup esp-idf/newlib/libnewlib.a(reent_init.c.obj) +esp_reent_init esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.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-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.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_wifi/libesp_wifi.a(wifi_default.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/mqtt_manager/libmqtt_manager.a(mqtt_manager.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(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_rom_crc32_le 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_api.cpp.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +esp_rom_delay_us esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.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-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.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(panic.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_efuse_get_flash_gpio_info esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +esp_rom_efuse_get_flash_wp_gpio esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +esp_rom_efuse_get_opiconfig esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.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(esp_clk.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) +esp_rom_get_reset_reason esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 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_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +esp_rom_gpio_connect_out_signal esp-idf/esp_phy/libesp_phy.a(phy_common.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-idf/esp_driver_uart/libesp_driver_uart.a(uart.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_rom_gpio_pad_set_drv esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.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_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_md5_final esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.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/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.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/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.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_newlib_init_common_mutexes esp-idf/newlib/libnewlib.a(locks.c.obj) +esp_rom_opiflash_cache_mode_config esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rom_opiflash_erase_area esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rom_opiflash_erase_block_64k esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rom_opiflash_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rom_opiflash_exec_cmd esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rom_opiflash_legacy_driver_init esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rom_opiflash_pin_config esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_rom_opiflash_read esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rom_opiflash_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rom_opiflash_wren esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rom_opiflash_write esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rom_output_flush_tx esp-idf/newlib/libnewlib.a(reent_syscalls.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/newlib/libnewlib.a(reent_syscalls.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_system/libesp_system.a(esp_system_console.c.obj) +esp_rom_output_tx_wait_idle esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_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(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(cpu_start.c.obj) +esp_rom_printf esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.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/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.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/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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_systimer.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(esp_memprot.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(sleep_gpio.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/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_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.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(cpu_start.c.obj) +esp_rom_set_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_set_rtc_wake_addr esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +esp_rom_spi_set_address_bit_len esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spi_set_dtr_swap_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rom_spi_set_op_mode 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_esp32s3.c.obj) +esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +esp_rom_spiflash_config_readmode esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_select_qio_pins esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write_enable esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +esp_rrm_is_rrm_supported_connection esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_rrm_send_neighbor_rep_request esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_rrm_send_neighbor_report_request esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.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/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.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_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_security_init_include_impl esp-idf/esp_security/libesp_security.a(init.c.obj) +esp_send_assoc_resp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_send_sae_auth_reply esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +esp_set_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_set_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_set_deep_sleep_wake_stub_default_entry esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_set_scan_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_set_time_from_rtc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_setup_newlib_syscalls esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_sha esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) +esp_sha512_set_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +esp_sha512_set_t esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +esp_sha_512_t_init_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +esp_sha_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) +esp_sha_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) +esp_sha_dma esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +esp_sha_dma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_read_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) +esp_sha_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) +esp_sha_set_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) +esp_sha_write_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +esp_sleep_config_gpio_isolate esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_cpu_pd_low_deinit esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +esp_sleep_cpu_pd_low_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +esp_sleep_cpu_retention_deinit esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +esp_sleep_cpu_retention_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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_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_gpio_include esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.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_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_sleep_sub_mode_force_disable esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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(fs_init.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_supplicant_common_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_supplicant_common_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_supplicant_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_supplicant_disable_pmk_caching esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_supplicant_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_supplicant_str_to_mac esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_supplicant_unset_all_appie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_sync_timekeeping_timers esp-idf/newlib/libnewlib.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/newlib/libnewlib.a(assert.c.obj) + esp-idf/newlib/libnewlib.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_system/libesp_system.a(esp_system_console.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) +esp_system_get_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +esp_system_get_time_resolution esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/newlib/libnewlib.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_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_test_dump_htc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +esp_time_impl_get_boot_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_time_impl_get_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_time_impl_get_time_since_boot esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_time_impl_set_boot_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_timer_create esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_delete esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_dump esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) +esp_timer_get_expiry_time esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_next_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_next_alarm_for_wake_up esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_period esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.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_systimer.c.obj) +esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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_systimer.c.obj) +esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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_systimer.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_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_init_include_func esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) +esp_timer_is_active esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_private_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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_systimer.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_timer_restart esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_start_once esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_start_periodic esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_tls_cfg_server_session_tickets_free esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_cfg_server_session_tickets_init esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_conn_destroy esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_tls_conn_http_new esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_conn_http_new_async esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_conn_http_new_sync esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_conn_new_async esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_tls_conn_new_sync esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_tls_conn_read esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_tls_conn_write esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_tls_free_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_get_and_clear_error_type esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) +esp_tls_get_and_clear_last_error esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_tls_get_bytes_avail esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_tls_get_ciphersuites_list esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_get_conn_sockfd esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_tls_get_conn_state esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_get_error_handle esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_tls_get_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_get_platform_time esp-idf/esp-tls/libesp-tls.a(esp_tls_platform_port.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_get_ssl_context esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_init esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_tls_init_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_internal_event_tracker_capture esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_internal_event_tracker_create esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_internal_event_tracker_destroy esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_plain_tcp_connect esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_tls_server_session_continue_async esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_server_session_create esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_server_session_delete esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_server_session_init esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_set_conn_sockfd esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_set_conn_state esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_set_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_transport_capture_errno esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_close esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_connect esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_connect_async esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) +esp_transport_destroy esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_destroy_foundation_transport esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_esp_tls_destroy esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_get_context_data esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_get_default_port esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_get_errno esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_get_error_handle esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_get_payload_transport_handle esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) +esp_transport_get_socket esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_init esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_init_foundation_transport esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_list_add esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_list_clean esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) +esp_transport_list_destroy esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_list_get_transport esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_list_init esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_poll_read esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_poll_write esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_read esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_set_async_connect_func esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_set_context_data esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_set_default_port esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_set_errors esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_set_func esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_set_parent_transport_func esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_ssl_crt_bundle_attach esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_enable_global_ca_store esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_init esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_addr_family esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_alpn_protocol esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_cert_data esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_cert_data_der esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_ciphersuites_list esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_client_cert_data esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_client_cert_data_der esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_client_key_data esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_client_key_data_der esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_client_key_password esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_common_name esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_ds_data esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_interface_name esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_keep_alive esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_set_tls_version esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_ssl_skip_common_name_check esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_tcp_init esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_tcp_set_interface_name esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_tcp_set_keep_alive esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_translate_error esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) +esp_transport_utils_ms_to_timeval esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) +esp_transport_write esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_ws_get_fin_flag esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_ws_get_read_opcode esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_ws_get_read_payload_len esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_ws_get_redir_uri esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_ws_get_upgrade_request_status esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_ws_init esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_ws_poll_connection_closed esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_ws_send_raw esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_ws_set_auth esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_ws_set_config esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_ws_set_headers esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_transport_ws_set_path esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_ws_set_subprotocol esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +esp_transport_ws_set_user_agent esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +esp_tx_state_out C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +esp_unregister_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.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.c.obj) +esp_vfs_close esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_closedir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_console_register esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +esp_vfs_dev_uart_port_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_port_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_register esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_use_driver esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_uart_use_nonblocking esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_dev_usb_serial_jtag_register esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +esp_vfs_dev_usb_serial_jtag_set_rx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +esp_vfs_dev_usb_serial_jtag_set_tx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.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.c.obj) +esp_vfs_fstat esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_fsync esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_include_console_register esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +esp_vfs_include_nullfs_register esp-idf/vfs/libvfs.a(nullfs.c.obj) +esp_vfs_ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_link esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_lseek esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_lwip_sockets_register esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) +esp_vfs_mkdir esp-idf/vfs/libvfs.a(vfs.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.c.obj) +esp_vfs_opendir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_pread esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_read esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_readdir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_readdir_r esp-idf/vfs/libvfs.a(vfs.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-idf/lwip/liblwip.a(vfs_lwip.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_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_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.c.obj) +esp_vfs_rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_select esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_select_triggered esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.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.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.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(fs_init.c.obj) +esp_vfs_spiffs_unregister esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +esp_vfs_stat esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_telldir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_truncate esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_uart_get_vfs esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +esp_vfs_unlink esp-idf/vfs/libvfs.a(vfs.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_usb_serial_jtag_get_vfs esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +esp_vfs_usb_serial_jtag_use_driver esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +esp_vfs_usb_serial_jtag_use_nonblocking esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +esp_vfs_utime esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_write esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_wifi_80211_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +esp_wifi_action_tx_req C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_ap_deauth_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_ap_get_gtk_rekeying_config_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_max_sta_conn C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_ap_ssid_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_authmode_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_pairwise_cipher_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_password_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_pmk_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +esp_wifi_ap_get_sae_ext_config_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_sta_aid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_ap_get_sta_aid_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ap_get_sta_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_ap_get_transition_disable_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_is_sta_sae_reauth_node C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_ap_notify_node_sae_auth_done C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_ap_set_group_mgmt_cipher_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_auth_done_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_band_get_config_channel_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_beacon_monitor_configure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_beacon_offset_configure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_beacon_offset_sample_beacon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_beacon_offset_set_rx_beacon_standard C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_bt_power_domain_off esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_wifi_bt_power_domain_on esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_wifi_build_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_clear_ap_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_clear_default_wifi_driver_and_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_clear_fast_connect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_coex_pwr_configure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_config_11b_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_config_80211_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_config_80211_tx_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_config_espnow_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_connect esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) +esp_wifi_connect_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_connectionless_module_set_wake_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_create_if_driver esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_deauth_sta C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_wifi_deauthenticate_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_deinit esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_deinit_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_del_key_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_destroy_if_driver esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_disable_pmf_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_disarm_sta_connection_timer_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_disconnect esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_disconnect_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_eb_tx_status_success_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_enable_easy_fragment C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +esp_wifi_enable_sae_pk_only_mode_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +esp_wifi_enable_sta_privacy_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_force_wakeup_acquire C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_force_wakeup_release C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_end_session C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_end_session_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_get_report C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_get_report_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_initiate_session C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_resp_set_offset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_resp_set_offset_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ant C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ant_gpio C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_appie_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_get_assoc_bssid_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_get_auto_connect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_band C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_band_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_bandwidth C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_bandwidths C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_beacon_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_wifi_get_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_get_config_channel_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_config_sae_pwe_h2e_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_get_country C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_country_code C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_event_mask C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +esp_wifi_get_hostap_private_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_if_mac esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_get_inactive_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_inactive_time_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_key_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_mac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_get_macaddr_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_max_tx_power C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wifi_get_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_get_negotiated_bw_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_negotiated_channel_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_pmf_config_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_get_promiscuous C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_ctrl_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_protocol C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_protocols C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ps C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_get_scan_parameters C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_spp_attrubute_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_get_sta_key_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_tsf_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_user_init_flag_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_get_wps_status_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_get_wps_type_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_improve_contention_ability C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_init esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) +esp_wifi_init_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_band_get_config_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_configure_wake_window C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +esp_wifi_internal_crypto_funcs_md5_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_esp_wifi_he_md5_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_esp_wifi_md5_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_free_rx_buffer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_internal_get_config_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_fix_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_log C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_mac_clock_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_mib C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +esp_wifi_internal_get_negotiated_bandwidth C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_negotiated_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_rts C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +esp_wifi_internal_ioctl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_is_tsf_active C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_issue_disconnect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wifi_internal_on_coex_schm_phase C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +esp_wifi_internal_on_coex_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +esp_wifi_internal_osi_funcs_md5_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_reg_netstack_buf_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_internal_reg_netstack_buf_cb_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_reg_rxcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_set_baw C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_internal_set_fix_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_log_level C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_set_log_mod C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_mac_sleep C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_msdu_lifetime C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_retry_counter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_rts C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +esp_wifi_internal_set_spp_amsdu C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_sta_ip C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_internal_supplicant_header_md5_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_internal_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_internal_tx_by_ref C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +esp_wifi_internal_tx_is_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +esp_wifi_internal_update_light_sleep_default_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_update_light_sleep_wake_ahead_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_update_modem_sleep_default_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_wifi_he_type_md5_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_wifi_type_md5_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ipc_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_btm_enabled_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_ft_enabled_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_if_ready_when_started esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_is_mbo_enabled_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_rm_enabled_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_mesh_reg_rxcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_wifi_mesh_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_wifi_op_class_supported_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_power_domain_off esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_power_domain_on esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_promiscuous_scan_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_register_80211_tx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_register_eapol_txdonecb_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_if_rxcb esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_register_mgmt_frame_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wifi_register_owe_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_tx_cb_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_register_wpa2_cb_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_register_wpa3_ap_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_wpa3_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_wpa_cb_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_remain_on_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_restart C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_restore C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_ap_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_get_ap_record C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_ap_records C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_cur_ap_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_get_cur_ap_record C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_ap_records C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_record C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_send_deauth_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_send_mgmt_frm_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wifi_set_11b_tx_plcp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +esp_wifi_set_ant C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ant_gpio C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ap_key_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wifi_set_appie_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_set_auto_connect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_band C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_band_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_bandwidth C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_bandwidths C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_beacon_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_wifi_set_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) +esp_wifi_set_country C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +esp_wifi_set_country_code C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_rx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_default_wifi_ap_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_set_default_wifi_nan_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_set_default_wifi_sta_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_set_dynamic_cs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_event_mask C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_home_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_igtk_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wifi_set_inactive_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_inactive_time_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_keep_alive_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_set_key_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_mac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_max_tx_power C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + esp-idf/main/libmain.a(wifi_init.c.obj) +esp_wifi_set_non_mesh_connections C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_set_okc_support esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_set_promiscuous C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_ctrl_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_rx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_protocol C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_protocols C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ps C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_set_rssi_threshold C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_scan_parameters C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_sigma_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_sleep_min_active_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_set_sleep_wait_broadcast_data_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_set_sta_key_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_set_sta_rx_probe_req C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_storage C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_tx_done_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_vendor_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_vendor_ie_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_wpa2_ent_state_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_set_wps_cb_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_set_wps_start_flag_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_set_wps_status_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_set_wps_type_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_skip_supp_pmkcaching C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_softap_set_obss_overlap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_connect_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_disable_owe_trans_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +esp_wifi_sta_disable_sae_pk_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_disable_wpa2_authmode_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +esp_wifi_sta_enterprise_disable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_sta_enterprise_enable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_sta_get_aid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_aid_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_ap_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_ap_info_prof_pmk_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_get_config_sae_pk_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_sta_get_group_cipher_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_mgmt_group_cipher C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_get_negotiated_phymode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_negotiated_phymode_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_pairwise_cipher_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_prof_authmode_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_prof_password_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_prof_pmk_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_get_prof_ssid_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_reset_nvs_pmk_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_get_rsnxe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_sta_get_rssi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_sae_identifier_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_sta_is_ap_notify_completed_rsne_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_is_running_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_pmf_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_prof_is_rsn_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_prof_is_wapi_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_prof_is_wpa2_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_prof_is_wpa_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +esp_wifi_sta_set_reset_nvs_pmk_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_update_ap_info_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_wpa2_ent_disable_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_sta_wpa2_ent_enable_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/main/libmain.a(wifi_init.c.obj) +esp_wifi_statis_dump C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_tbtt_quick_wake_configure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_unregister_wpa2_cb_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_unregister_wpa3_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_unregister_wpa_cb_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_unset_appie_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wifi_update_listen_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_update_tsf_tick_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_vnd_lora_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_lora_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_mesh_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_vnd_roots_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_vnd_roots_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_wpa_ptk_init_done_internal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wifi_wps_disable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_wps_enable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_wps_start esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wnm_is_btm_supported_connection esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wnm_send_bss_transition_mgmt_query esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wpa3_free_sae_data esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +etharp_acd_announce esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_acd_probe esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_add_static_entry esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +etharp_cleanup_netif esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +etharp_find_addr esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_get_entry esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_input esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) +etharp_output esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +etharp_query esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) +etharp_remove_static_entry esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +etharp_request esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +etharp_tmr esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +ethbroadcast esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ethernet_input esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +ethernet_output esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ethernetif_init esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +ethernetif_input esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +ethip6_output esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +ethzero esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ets_apb_backup_init_lock_func esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) +ets_backup_dma_copy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ets_delay_us C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ets_ds_encrypt_params esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +ets_efuse_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) +ets_efuse_rs_calculate esp-idf/hal/libhal.a(efuse_hal.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_install_uart_printf 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_jtag_enable_temporarily esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +ets_rom_layout_p esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +ets_set_appcpu_boot_addr esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +ets_timer_arm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +ets_timer_arm_us esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +ets_timer_deinit esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +ets_timer_disarm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +ets_timer_done esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +ets_timer_init esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +ets_timer_setfn esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +fast_psk_f esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) +fclose C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) +fcntl C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysfcntl.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +ferror C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ferror.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +fflush C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fflush.o) +fgets C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +flash_init_state esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +fopen C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fopen.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +force_coex_timer0_wifi_pti_v2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +force_coex_timer0_wifi_v2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +force_coex_timer11_bt_pti_v2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +force_coex_timer11_bt_v2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +force_coex_timer1_bt_pti_v2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +force_coex_timer1_bt_v2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +force_txrx_off C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +forced_memzero esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +forward_abort_uw_ctx esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +fota_manager_apply esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) +fprintf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fprintf.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fputc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputc.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +fread C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/fota_manager/libfota_manager.a(fota_manager.c.obj) +free esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_internal.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_error_capture.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.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.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/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.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/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_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/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/newlib/libnewlib.a(reent_init.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) +free_bss_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +freq_get_i2c_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +freq_i2c_data_write C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +freq_i2c_write_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +frexp C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_frexp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) +fs_init esp-idf/main/libmain.a(fs_init.c.obj) + esp-idf/main/libmain.a(main.c.obj) +fseek C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseek.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +fseeko C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) +fstat esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +fsync esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +ftell C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +ftello C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ftello.o) +ftm_add_resp_session C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_create_responder_session C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_free_resp_session C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_get_estimated_dist C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_get_resp_session_by_cookie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_get_resp_session_for_peer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_initiator_cleanup esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ftm_initiator_end_session_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ftm_initiator_get_report_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ftm_initiator_negotiate_session C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_initiator_post_event C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_initiator_process_resp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_initiator_session_abort C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_initiator_session_end C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_initiator_start_session C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_is_initiator_supported C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ftm_is_responder_supported C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ftm_is_supported C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_map_bw_param_to_phybw C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_offchan_end C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_offchan_tx_req C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_parse_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_record_t1t4_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_record_t2t3_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_request_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_resp_allocate_para C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_resp_ctx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_resp_get_burst_inst_delay C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_resp_get_burst_slot C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_responder_cleanup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ftm_responder_set_offset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ftm_send_initial_resp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_send_msmt_pkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_send_request C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_session_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_set_t1t4_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_start_initiator_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ftm_validate_initiator_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ftp_manager_download esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) +ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) +fwrite C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fwrite.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.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/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +gChmCxt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +gScanStruct C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +gWpaSm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +gWpsSm esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +g_allowed_groups esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +g_authmode_incompatible C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +g_authmode_threshold_failure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +g_beacon_eb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) +g_beacon_idx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) +g_chm C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +g_cnxMgr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +g_cnx_probe_rc_list_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +g_coex_adapter_funcs esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +g_config_func C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +g_deauth_mac_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +g_dig_dbias_pvt_240m 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) +g_dig_dbias_pvt_non_240m 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) +g_dynamic_cs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +g_eap_method_mask esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_eb_list_desc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_eb_list_desc_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_esp_mesh_quick_funcs_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_esp_wifi_he_md5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_esp_wifi_md5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_espnow_user_oui C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) +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_hmac_cnt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +g_hmac_cnt_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_ic C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +g_ic_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_in_blacklist_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +g_intr_lock_mux C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_is_mesh_started C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_is_root_fixed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +g_is_standalone_sta C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_is_wifi_connected C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_is_wifi_connecting C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_is_wifi_disconnecting C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_lmac_cnt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +g_lmac_cnt_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_log_level C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) +g_log_mod C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +g_mac_deinit_count C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +g_mac_deinit_rxing C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +g_mac_deinit_txing C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +g_mac_sleep_en C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mac_sleep_en_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_ann_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_cfg_attemps C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_cfg_switch_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +g_mesh_cfg_vote_percent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_chain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_conn C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +g_mesh_current_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_mesh_dfs_compensation_ms C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +g_mesh_ext_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_ext_vote_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_mesh_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_init_ps_type C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +g_mesh_init_ps_type_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_is_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +g_mesh_is_root_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_is_started C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_is_started_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_manual_nwk C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_max_layer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +g_mesh_monitor_parent_beacon_count C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_mesh_nvs_settings C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_packet_lifetime C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +g_mesh_passive_scan_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_rmv_opt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +g_mesh_root_conflicts_allowed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_root_healing_delay C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_rt_capacity C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +g_mesh_self_map_addr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_self_organized C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +g_mesh_self_sta_addr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_stop_event_group C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_stop_reconnection C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_mesh_topology C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +g_mesh_topology_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_xon_cfg_qsize C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +g_misc_nvs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +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_mt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +g_mt_version C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +g_net80211_tx_func C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +g_offchan_ctx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +g_offchan_current_op_id C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +g_osi_funcs_p C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +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_per_conn_trc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +g_phyFuns C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +g_phy_cap_rx_stbc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +g_pm C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +g_pm_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +g_pm_cfg_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_pm_cnt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +g_pm_cnt_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_pm_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_pp_timer_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +g_pp_tx_pkt_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +g_rssi_threshold_failure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +g_rtc_dbias_pvt_240m 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) +g_rtc_dbias_pvt_non_240m 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) +g_sa_query_mac_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +g_scan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +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_sta_connected_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +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) +g_t1_offset_psec C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +g_timer_func C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +g_timer_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +g_twdt_isr esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +g_tx_cacheq_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_tx_done_cb_func C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +g_txop_queue_status C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_txop_queue_status_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_uart_print esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +g_usb_print esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +g_wdev_csi_rx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wdev_csi_rx_ctx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wdev_last_desc_reset_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +g_wdev_record_t1t4_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wdev_record_t2t3_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wdev_set_t1t4_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wifi_coex_basic_md5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wifi_crypto_funcs_md5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wifi_default_mesh_crypto_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +g_wifi_default_wpa_crypto_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) +g_wifi_event_mask C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +g_wifi_global_lock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +g_wifi_he_type_md5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wifi_improve_contention_ability C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wifi_menuconfig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +g_wifi_menuconfig_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wifi_nvs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +g_wifi_osi_funcs esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) +g_wifi_osi_funcs_md5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wifi_supplicant_funcs_md5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +g_wifi_type_md5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wifi_types_generic_md5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wifi_types_native_md5 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wpa3_hostap_auth_api_lock esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +g_wpa_anonymous_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_anonymous_identity_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_ca_cert_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_client_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_client_cert_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_config_changed esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_default_cert_bundle esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_domain_match esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_new_password_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_pac_file esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_pac_file_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_password_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_phase1_options esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_pmk_caching_disabled esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +g_wpa_private_key esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_private_key_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_private_key_passwd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_private_key_passwd_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_suiteb_certification esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_supp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +g_wpa_ttls_phase2_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_username esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_username_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +gcmp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +gdma_ahb_hal_append esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_clear_intr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_connect_peri esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_disconnect_peri esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_enable_burst esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_enable_intr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_get_eof_desc_addr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_get_intr_status_reg esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_init esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_ahb_hal_read_intr_status esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_reset esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_set_burst_size esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_set_priority esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_set_strategy esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_start_with_desc esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_ahb_hal_stop esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) +gdma_append esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_apply_strategy esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_config_transfer esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gdma_connect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gdma_default_rx_isr esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_default_tx_isr esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_del_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gdma_disconnect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gdma_get_alignment_constraints esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_get_free_m2m_trig_id_mask esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_get_group_channel_id esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +gdma_hal_append esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_clear_intr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_connect_peri esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_deinit esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_disconnect_peri esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_enable_access_encrypt_mem esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_enable_burst esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_enable_intr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_get_eof_desc_addr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_get_intr_status_reg esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_read_intr_status esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_reset esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_set_burst_size esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_set_priority esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_set_strategy esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_start_with_desc esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_stop esp-idf/hal/libhal.a(gdma_hal_top.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_new_ahb_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gdma_new_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_periph_signals esp-idf/soc/libsoc.a(gdma_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_register_rx_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_register_tx_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_reset esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_set_priority esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_start esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +gdma_stop esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gen_rx_gain_table C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) +generate_authenticator_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +generate_authenticator_response_pwhash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) +generate_nt_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +generate_nt_response_pwhash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) +get_asymetric_start_key esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +get_bias_ref_code C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +get_channel_max_bandwidth C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +get_chip_version C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +get_dc_value C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +get_fm_sar_dout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) +get_iav_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +get_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +get_iq_value C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +get_master_key esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +get_max_power C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +get_operating_class esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +get_param esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +get_phy_version_str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +get_pll_ref_code C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +get_power_atten C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +get_power_db C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +get_rc_dout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) +get_rf_freq_cap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +get_rf_freq_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +get_rfcal_rxiq_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +get_rfrx_sat C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +get_sar_sig_ref C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +get_temp_buffer_not_supported esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +get_temp_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +get_tone_sar_dout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +get_total_scan_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +get_tx_gain_value C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +get_txcap_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +get_vendor_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +get_vfs_for_index esp-idf/vfs/libvfs.a(vfs.c.obj) +get_vfs_for_path esp-idf/vfs/libvfs.a(vfs.c.obj) +get_wifi_internal_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +get_wpa_sm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +getentropy esp-idf/newlib/libnewlib.a(getentropy.c.obj) +getle32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +getrandom esp-idf/newlib/libnewlib.a(random.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/newlib/libnewlib.a(getentropy.c.obj) +gettimeofday C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysgettod.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +global_hapd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +global_op_class esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +global_op_class_size esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +gmtime C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +gmtime_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) +gpio_config esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.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_force_hold_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_force_unhold_all 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) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.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/hal/libhal.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/hal/libhal.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_iomux_in esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_iomux_out esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_isolate_in_sleep esp-idf/hal/libhal.a(gpio_hal.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_uart/libesp_driver_uart.a(uart.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_in 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_out esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.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_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_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) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +gpio_reset_pin 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_set_direction 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_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) +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_driver_uart/libesp_driver_uart.a(uart.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_driver_uart/libesp_driver_uart.a(uart.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) +h_errno esp-idf/lwip/liblwip.a(netdb.c.obj) +hal_agreement_add_rx_ba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_agreement_clr_rx_ba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_agreement_del_rx_ba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_attenna_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_ba_session_restore C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_ba_session_restore_by_hw_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +hal_ba_session_store C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_beacon_ie_crc_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_beacon_ie_crc_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_clear_rx_beacon_pti C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_coex_pti_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_crypto_clr_key_entry C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_crypto_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_crypto_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +hal_crypto_get_key_entry C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_crypto_get_using_key_idx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) +hal_crypto_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_crypto_is_key_valid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_crypto_mgmt_rx_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_crypto_set_key_entry C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_disable_mac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_disable_softap_tsf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hal_disable_sta_beacon_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_disable_sta_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_disable_sta_tsf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +hal_disable_tsf_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +hal_disable_tsf_timer_wakeup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +hal_enable_mac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_enable_sta_beacon_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_enable_sta_dump_beacon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_enable_sta_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_enable_sta_tsf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +hal_enable_tsf_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +hal_enable_tsf_timer_wakeup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +hal_get_sta_next_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +hal_get_sta_tsf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_get_time_to_sta_next_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_get_tsf_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hal_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_is_sta_tsf_active C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_clr_bssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_clr_txq_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_disable_low_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_enable_low_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_fill_hwtxop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) +hal_mac_ftm_get_t3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_get_txq_pmd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_get_txq_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_interrupt_clr_event C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_interrupt_clr_watchdog C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_interrupt_get_event C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_is_dma_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_is_low_rate_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_is_txq_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_is_txq_valid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_rate_autoack_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_rx_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_rx_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_rx_get_end_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) +hal_mac_rx_get_end_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) +hal_mac_rx_get_last_dscr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_rx_is_dscr_reload C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_rx_read_rxdscrlast C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_rx_read_rxdscrnext C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_rx_set_base C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_rx_set_dscr_reload C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_rx_set_policy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_set_addr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_set_bssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_set_csi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_set_rxq_policy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_set_txq_invalid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tsf_get_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_tsf_reset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_tsf_set_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_tx_config_edca C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tx_config_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tx_get_blockack C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tx_is_cbw40 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tx_set_cca C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tx_set_ppdu C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_txq_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_txq_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_now C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_pwr_interrupt_clr_event C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_pwr_interrupt_get_event C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_random C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_rx_disable_bssid_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_rx_enable_bssid_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_set_rx_ack_pti C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_set_rx_active_pti C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_set_rx_beacon_pti C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_rx_beacon_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_sta_beacon_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_sta_light_sleep_wake_ahead_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_sta_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_sta_tbtt_ahead_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_sta_tbtt_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_sta_tsf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_set_sta_tsf_wakeup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_tx_pti C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_set_wifi_default_pti C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_sniffer_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_sniffer_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_sniffer_rx_clr_statistics C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) +hal_sniffer_rx_set_promis C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_sniffer_set_promis_misc_pkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_timer_update_by_rtc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_tsf_clear_soc_wakeup_request C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +hal_tsf_get_tbttstart C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_tsf_timer_get_target C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +hal_tsf_timer_set_target C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +handle_auth_sae esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +has_ctrl_char esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) +hash_nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +he_dcm_max_constellation_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.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/newlib/libnewlib.a(heap.c.obj) +heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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) + 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/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.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/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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/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/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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.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/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_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/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) +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/newlib/libnewlib.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.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/newlib/libnewlib.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) +hex2byte esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +hexstr2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +hmac_hal_clean esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) +hmac_hal_configure esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_next_block_normal esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_next_block_padding esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_read_result_256 esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_start esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_write_block_512 esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_hal_write_one_block_512 esp-idf/hal/libhal.a(hmac_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_hmac.c.obj) +hmac_md5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) +hmac_md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +hmac_sha1 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) +hmac_sha1_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) +hmac_sha256 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +hmac_sha256_kdf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +hmac_sha256_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_sha384 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +hmac_sha384_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +hostap_add_in_mac_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +hostap_auth_open C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hostap_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +hostap_del_mac_info_from_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +hostap_delete_ptk C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hostap_deliver_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hostap_eapol_resend_process esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +hostap_handle_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hostap_handle_timer_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +hostap_ht_operation_update C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hostap_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +hostap_input C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +hostap_new_assoc_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +hostap_query_mac_in_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +hostap_recv_ctl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hostap_recv_mgmt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hostapd_cleanup esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +hostapd_config_clear_wpa_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_config_defaults esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_config_defaults_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_config_free_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +hostapd_free_stas esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +hostapd_get_hapd_data esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +hostapd_get_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +hostapd_mac_comp esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_mac_comp_empty esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_maclist_found esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_rate_found esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +hostapd_setup_sae_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_setup_wpa_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +hostapd_wep_key_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +ht_action_output C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +http_body_is_final esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_errno_description esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_errno_name esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_message_needs_eof esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_method_str esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_parser_execute esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_parser_init esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_parser_parse_url esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +http_parser_pause esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_parser_settings_init esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_parser_url_init esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +http_parser_version esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_should_keep_alive esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +hwaddr_aton2 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +i2c_bbpll_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ic_add_rx_ba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ic_ampdu_op C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ic_bb_check_noise_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_beacon_monitor_configure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_beacon_offset_configure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_beacon_offset_set_rx_beacon_standard C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_clear_interrupt_handler C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_create_wifi_task C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_csi_set_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_del_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_del_key_all C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_del_ptk_and_gtk_alg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_del_rx_ba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ic_delete_wifi_task C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_disable_crypto C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_disable_rx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_disable_sniffer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_ebuf_alloc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_ebuf_recycle_rx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_ebuf_recycle_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_enable_rx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_enable_sniffer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_get_80211_tx_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_get_80211_tx_rate_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_get_G6M_sched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_get_addr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_get_default_sched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_get_espnow_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ic_get_fix_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_get_keep_alive_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ic_get_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_get_next_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_get_pp_hdl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_get_promis_ctrl_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_get_promis_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_get_ptk_alg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ic_get_random C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ic_get_rssi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_get_trc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_interface_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_is_mgmt_hwdecr_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_is_pure_sta C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_is_sta_tsf_active C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_mac_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +ic_mac_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +ic_obtain_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ic_pp_post C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_register_config_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_register_csi_rx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_register_ftm_callbacks C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ic_register_michael_mic_failure_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ic_register_net80211_tx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_register_pm_tx_null_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_register_pp_tx_done_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_register_promis_rx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_register_rx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ic_register_timer_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_register_timer_post_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_register_tx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_reset_rx_ba C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ic_reset_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_rx_disable_bssid_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ic_rx_enable_bssid_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ic_set_80211_tx_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_80211_tx_rate_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_ac_param C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) +ic_set_bar_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_beacon_int C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_set_bssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_csi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_set_current_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +ic_set_espnow_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_fix_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_set_interface C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ic_set_interrupt_handler C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_set_keep_alive_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_mac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_promis_ctrl_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_set_promis_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_set_rx_policy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_rx_policy_ubssid_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_sleep_min_active_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_sleep_wait_broadcast_data_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_sta C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ic_set_sta_auth_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_trc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ic_set_vif C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_stop_hw_txq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_stop_sw_txq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_trc_set_per_pkt_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_trc_update_def_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_trc_update_ifx_phy_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +ic_tx_is_idle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_tx_pkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_txq_empty C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_update_light_sleep_default_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_update_light_sleep_wake_ahead_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_update_listen_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_update_modem_sleep_default_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_update_sta_tsf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ic_update_tsf_tick_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +icmp6_dest_unreach esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +icmp6_input esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +icmp6_packet_too_big esp-idf/lwip/liblwip.a(icmp6.c.obj) +icmp6_param_problem esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +icmp6_time_exceeded esp-idf/lwip/liblwip.a(icmp6.c.obj) +icmp6_time_exceeded_with_addrs esp-idf/lwip/liblwip.a(icmp6.c.obj) +icmp_dest_unreach esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +icmp_input esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +ieee80211_action_vendor_spec_attach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_add_action_vendor_spec_esp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_assoc_req_ies C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_assoc_resp_ies C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_beacon_app_ies C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_bss_max_idle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_countryie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_csa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_dh_param C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_dsparams C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_extcap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_htcap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_htcap_vendor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo_body C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_add_htinfo_vendor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_esp_mesh_head C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_ie_vendor_esp_freq_annon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_head C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_add_ie_vendor_esp_manufacturer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_vendor_esp_mesh_group C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_now C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_ie_vendor_esp_now_head C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_simple_pair C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_ssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_mesh_assoc_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_duty_signaling C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ext_assoc_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ps_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_roots_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ssid_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_probe_req_ies C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_probe_resp_app_ies C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_rates C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_supportedchannels C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_tie_param C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_wme_param C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_xrates C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_adjust_2nd_chan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_align_eb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_alloc_action_vendor_spec C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_alloc_challenge C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_alloc_deauth C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_proberesp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_tx_buf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_ampdu_age_all C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_ampdu_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_reorder C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_ampdu_request C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_start_age_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_ampdu_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_amsdu_adjust_head C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_adjust_last_length C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_encap_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_length_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_negotiate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_amsdu_send_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_ap_sa_query_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_ap_try_sa_query C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_assoc_req_construct C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_assoc_resp_construct C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_auth_construct C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_beacon_alloc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_beacon_construct C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_better_rsn_pairwise_cipher C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ieee80211_cal_tx_pps C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_ccmp_decrypt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_ccmp_encrypt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) +ieee80211_classify C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_cnx_attach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_copy_eb_header C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_crypto_aes_128_cmac_decrypt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_crypto_attach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_crypto_available C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) +ieee80211_crypto_bip_encrypt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_crypto_decap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_crypto_encap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_crypto_gmac_decrypt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_crypto_setkey C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) +ieee80211_deauth_construct C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_decap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_decap1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_decap_amsdu C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_decrypt_espnow_pkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_deliver_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ieee80211_disassoc_construct C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_empty_txq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_encap_amsdu C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_encap_esfbuf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_encap_keep_alive_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_encap_null_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_espnow_get_init_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_espnow_set_init_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_ethbroadcast C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_find_elem C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_find_elem_match C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_find_ext_elem C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_find_ext_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_find_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_find_ie_match C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_free_beacon_eb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_freedom_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_freedom_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_freedom_inside_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_ftm_attach esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_ftm_detach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_ftm_measurement_txcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ieee80211_ftm_req_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_ftm_request_txcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ieee80211_ftm_sess_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_get_cipher_mic_len C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_get_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_get_mac_addr_from_frame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_nvs_he_dcm_max_constellation_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_get_ptk C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_regdomain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_robustmgtframe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_get_spp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_sta_gtk_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_tx_info_from_eb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +ieee80211_getbcnframe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_getcapinfo C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_getmgtframe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_gettid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_gpsq_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_has_ht40_bss C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_hostap_attach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_hostap_send_beacon_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_hostapd_beacon_txcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +ieee80211_hostapd_data_txcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_hostapd_ps_txcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_attach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_ht_deattach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_node_cleanup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_node_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updatehtcap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updateparams C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_ifattach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_ifdetach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_init_mesh_assoc_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_ioctl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_ioctl_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_is_11b_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ieee80211_is_40mhz_valid_bw C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_is_bufferable_mmpdu C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_is_ht_cipher C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_is_lr_only C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_is_mesh_roots_announce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_announce_used C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_fixed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_gone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_valid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield_used C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_robust_mgmt_frm C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_is_support_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ieee80211_is_tx_allowed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_iserp_rateset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) +ieee80211_mesh_quick_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_mesh_quick_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_mgmt_output C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_mlme_connect_bss C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_mt_key_clear_mask C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +ieee80211_mt_key_is_mask C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +ieee80211_mt_key_is_mask_zero C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +ieee80211_mt_key_set_mask C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +ieee80211_node_pwrsave C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_nvs_set_default_ssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +ieee80211_opcap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_output C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_output_do C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_output_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_output_pending_eb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_output_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_output_raw_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) +ieee80211_parse_action C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_parse_beacon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_parse_htcap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_parse_obss_scan_param C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_parse_rsn C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_parse_wapi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_parse_wmeparams C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_parse_wpa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_phy_2nd_chan_is_valid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_phy_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_phy_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_phy_mode_show C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_phy_type_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_pm_tx_null_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_post_hmac_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ieee80211_process_bar_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_proto_attach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_protocol_attach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_psq_cleanup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_drop_one_pkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_find_max_bss C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_psq_is_buff_pkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_send_one_pkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_head C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_tail C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_public_action_recv_mesh_awake C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_public_action_send_mesh_awake C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_pwrsave C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_pwrsave_node_cleanup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_pwrsave_txcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_rate_ref_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_raw_frame_sanity_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_recv_action C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_recv_action_register C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_recv_action_unregister C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) +ieee80211_recv_action_vendor_esp_now C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_recv_action_vendor_spec C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_recv_bar C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_recv_mesh_duty_signaling C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_recycle_cache_eb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_reg_encap_amsdu_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_reg_netstack_buf_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_ap_max_chan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_regdomain_ap_min_chan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +ieee80211_regdomain_chan_in_range C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ieee80211_regdomain_chan_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_check_ap_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +ieee80211_regdomain_check_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_regdomain_get_country C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_regdomain_get_country_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_regdomain_is_active_scan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_regdomain_max_chan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +ieee80211_regdomain_max_tx_power C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_min_chan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +ieee80211_regdomain_policy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_update C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_update_in_connect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_regdomain_update_in_scan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_register_ftm_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ieee80211_register_hostap_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_register_wapi_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_rfid_locp_recv C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_rfid_locp_recv_close C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_open C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_reset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_rsn_cipher_priority C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ieee80211_scan_attach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_scan_deattach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_search_node C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_send_action C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_action_register C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_send_action_unregister C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) +ieee80211_send_action_vendor_spec C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +ieee80211_send_deauth_no_bss C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_ftmr_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_send_mgmt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_nulldata C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_probereq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_send_proberesp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_setup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_set_appie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_bss_max_idle_period C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_set_gtk C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_hmac_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_max_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_set_phy_2nd_chan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_phy_bw C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_set_phy_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_shortslottime C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_set_sta_gtk_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_tim C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_set_tx_desc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_set_tx_pti C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_set_user_sup_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_basic_htrates C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_setup_htrates C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_setup_lr_rates C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_phy_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_pmf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_setup_rates C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_rateset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_setup_ratetable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_robust_mgmtframe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_sta_connect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_disconnect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_is_connected C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_sta_new_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_sta_scan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_do_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_tx_ftm_msmt_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_tx_mgt_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) +ieee80211_unregister_wapi_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_update_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_update_phy_country C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_user_ie_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_vnd_ie_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_ie_size C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_size C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_mesh_fully_associated C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_vnd_mesh_quick_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_quick_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_update_beacon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_wapi_alloc_tx_buf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_wme_initparams C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) +ieee80211_wme_standard_ac_to_esp_ac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_wme_updateparams C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211w_get_active_igtk_key_id C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211w_get_igtk_from_keyidx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) +ieee802154_set_rx_sense C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) +ieee802_11_ext_capab esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +ieee802_11_ie_count esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +ieee802_11_parse_candidate_list esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +ieee802_11_parse_elems esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +ieee802_11_vendor_ie_concat esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +if_ctrl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +if_ctrl_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +igmp_init esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +igmp_input esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +igmp_joingroup esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +igmp_joingroup_netif esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +igmp_leavegroup esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +igmp_leavegroup_netif esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +igmp_lookfor_group esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +igmp_report_groups esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +igmp_start esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +igmp_stop esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +igmp_tmr esp-idf/lwip/liblwip.a(igmp.c.obj) +ilg_int_st_bits esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +in_rssi_adjust C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +inc_byte_array esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +include_esp_phy_override esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +inet_chksum esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) +inet_chksum_pbuf esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) +inet_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +inet_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.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_array_len esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.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::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +intrusive_list::push_back(nvs::NVSPartition*) 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::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) +io_cfg2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +io_mux_enable_lp_io_clock esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.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) +io_mux_force_disable_lp_io_clock esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +io_mux_set_clock_source esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) +ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) +ip4_addr_isbroadcast_u32 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_addr_netmask_valid esp-idf/lwip/liblwip.a(ip4_addr.c.obj) +ip4_frag esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_input esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip4_netif_exist esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) +ip4_output esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_output_if esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_output_if_opt esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) +ip4_output_if_opt_src esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_output_if_src esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip4_route esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ip4_route_src esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_route_src_hook esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_set_default_multicast_netif esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4addr_aton esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +ip4addr_ntoa esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip4addr_ntoa_r esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +ip6_addr_any esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +ip6_frag esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_input esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip6_options_add_hbh_ra esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) +ip6_output esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_output_if esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_output_if_src esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip6_route esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_select_source_address esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6addr_aton esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +ip6addr_ntoa esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip6addr_ntoa_r esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +ip_addr_any esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +ip_addr_any_type esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip_addr_broadcast esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +ip_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +ip_data esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip_input esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +ipaddr_addr esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +ipaddr_aton esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) +ipaddr_ntoa esp-idf/lwip/liblwip.a(ip.c.obj) +ipaddr_ntoa_r esp-idf/lwip/liblwip.a(ip.c.obj) +is_esp_mesh_assoc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +is_esp_mesh_duty_signaling C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +is_esp_mesh_ext_assoc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +is_esp_mesh_ps C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +is_fragmented_pkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +is_lmac_idle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +is_mesh_child C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +is_mesh_last_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +is_my_ie_encrypted C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +is_off_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +is_self_mac_greater C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +is_wapi_alloc_tx_buf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +is_wps_enabled esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +iswspace C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) +iswspace_l C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace_l.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-iswspace.o) +itoa C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-itoa.o) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) +ld_include_highint_hdl esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +len_dh_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +libcore_reversion_git C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) +libmesh_reversion_git C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +libnet80211_reversion_git C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +libnet80211_reversion_remote C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +libpp_reversion_git C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacAdjustTimestamp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacConfMib C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacConfMib_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacDisableTransmit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacDiscardAgedMSDU C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacDiscardFrameExchangeSequence C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacDiscardMSDU C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacEndFrameExchangeSequence C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacEndRetryAMPDUFail C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacGetTxFrame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacInit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +lmacInitAc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacIsIdle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +lmacIsLongFrame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacMSDUAged C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacPostTxComplete C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacProcessAckTimeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessAllTxTimeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacProcessCollision C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessCollisions C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacProcessCollisions_task C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacProcessCtsTimeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessLongFrameSuccess C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessLongRetryFail C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessRxSucData C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacProcessShortFrameSuccess C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessShortRetryFail C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTBSuccess C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxComplete C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacProcessTxError C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxRtsError C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxSuccess C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxTimeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacProcessTxopQComplete C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxopSuccess C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxseckiderr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacReachLongLimit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacReachShortLimit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacRecycleMPDU C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacReleaseTxopQueue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacRequestTxopQueue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacRetryTxFrame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacRxDone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacSetAcParam C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +lmacSetTxFrame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacStopTransmit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacTxDone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacTxFrame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmac_record_txtime C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmac_stop_hw_txq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +lmac_update_tx_statistic C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +localeconv C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-localeconv.o) +lwip_accept esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +lwip_bind esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +lwip_close esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_connect esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) +lwip_cyclic_timers esp-idf/lwip/liblwip.a(timeouts.c.obj) +lwip_fcntl esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_freeaddrinfo esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) +lwip_getaddrinfo esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) +lwip_gethostbyname esp-idf/lwip/liblwip.a(netdb.c.obj) +lwip_gethostbyname_r esp-idf/lwip/liblwip.a(netdb.c.obj) +lwip_getpeername esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_getsockname esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +lwip_getsockopt esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +lwip_getsockopt_impl_ext esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_hook_ip6_input esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +lwip_hook_tcp_isn esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +lwip_htonl esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +lwip_htons esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) +lwip_inet_ntop esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_inet_pton esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +lwip_init esp-idf/lwip/liblwip.a(init.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +lwip_init_tcp_isn esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +lwip_ioctl esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_itoa esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +lwip_listen esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +lwip_netconn_do_accepted esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_bind esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_bind_if esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_close esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_connect esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_delconn esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_disconnect esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_getaddr esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_gethostbyname esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_join_leave_group esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_join_leave_group_netif esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_listen esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_newconn esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_recv esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_send esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_write esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_is_deallocated_msg esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_is_err_msg esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_num_cyclic_timers esp-idf/lwip/liblwip.a(timeouts.c.obj) +lwip_poll esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_read esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_readv esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_recv esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) +lwip_recvfrom esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +lwip_recvmsg esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_select esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_send esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) +lwip_sendmsg esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_sendto esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_setsockopt esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +lwip_setsockopt_impl_ext esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_shutdown esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +lwip_socket esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) +lwip_socket_dbg_get_socket esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_socket_thread_cleanup esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_socket_thread_init esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_standard_chksum esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +lwip_stricmp esp-idf/lwip/liblwip.a(def.c.obj) +lwip_strnicmp esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +lwip_strnistr esp-idf/lwip/liblwip.a(def.c.obj) +lwip_strnstr esp-idf/lwip/liblwip.a(def.c.obj) +lwip_write esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_writev esp-idf/lwip/liblwip.a(sockets.c.obj) +mac_last_rxbuf_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_list_lock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +mac_rxbuf_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_rxbuf_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_duration C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_htsig C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_plcp0 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_plcp1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_plcp2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_pti C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_txop_q C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_txrx_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gmtime.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.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_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.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/json/libjson.a(cJSON.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) +malloc_stats esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc_trim esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc_usable_size esp-idf/newlib/libnewlib.a(heap.c.obj) +mallopt esp-idf/newlib/libnewlib.a(heap.c.obj) +map_assoc_expire C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +map_wifi_config_sae_pwe_to_supp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mbedtls_aes_cmac_prf_128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_aria_crypt_cbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_crypt_cfb128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_crypt_ctr esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_crypt_ecb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) +mbedtls_aria_setkey_dec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_setkey_enc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_asn1_find_named_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_free_named_data_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_free_named_data_list_shallow esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_asn1_get_alg_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_asn1_get_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_asn1_get_bitstring_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_asn1_get_bool esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_enum esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_get_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_asn1_get_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_asn1_get_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_asn1_get_sequence_of esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_asn1_sequence_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_store_named_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_traverse_sequence_of esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_write_algorithm_identifier esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_asn1_write_algorithm_identifier_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_bool esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_enum esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_ia5_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_asn1_write_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_asn1_write_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_asn1_write_named_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_octet_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_oid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_asn1_write_printable_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_raw_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_asn1_write_tagged_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_utf8_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_base64_decode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) +mbedtls_base64_encode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) +mbedtls_base64_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) +mbedtls_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ccm_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_encrypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) +mbedtls_ccm_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_ccm_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_ccm_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_ccm_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_ccm_star_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_ccm_star_encrypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_ccm_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) +mbedtls_cipher_auth_decrypt_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_cipher_auth_encrypt_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_cipher_base_lookup_table esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_check_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_cmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_cmac_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_cmac_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_cmac_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_cmac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_crypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_cipher_definitions esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_info_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +mbedtls_cipher_info_from_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_info_from_values esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_set_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_cipher_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_cipher_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_supported esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_values_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) +mbedtls_cipher_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cmac_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_ct_memcmp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ct_memcpy_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ct_memcpy_offset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ct_memmove_left esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_ct_zeroize_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_ctr_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ctr_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ctr_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ctr_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ctr_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_nonce_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ecc_group_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_ecc_group_to_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_ecdh_calc_secret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ecdh_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_compute_shared esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ecdh_gen_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdh_get_grp_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_get_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ecdh_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ecdh_make_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ecdh_make_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ecdh_read_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ecdh_read_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ecdh_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ecdsa_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_der_to_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_ecdsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_from_keypair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_genkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_ecdsa_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_raw_to_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_ecdsa_read_signature esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_read_signature_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_sign_det_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_sign_det_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_sign_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_write_signature esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_write_signature_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_eckey_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_eckeydh_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_ecp_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecp_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) +mbedtls_ecp_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_curve_info_from_grp_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_curve_info_from_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_curve_info_from_tls_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_curve_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_export esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_gen_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_gen_keypair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_gen_keypair_base esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_gen_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_group_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_group_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_group_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_group_load esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_grp_id_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_ecp_is_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_keypair_calc_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_keypair_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecp_keypair_get_group_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_keypair_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecp_mul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) +mbedtls_ecp_mul_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_muladd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_muladd_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_point_cmp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_point_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_point_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_point_read_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) +mbedtls_ecp_point_read_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_point_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_read_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) +mbedtls_ecp_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_set_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_set_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_tls_read_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_tls_read_group_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_read_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_write_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_write_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_write_key_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_ecp_write_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_entropy_add_source esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_entropy_func esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_entropy_gather esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_entropy_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_source_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_update_manual esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_gcm_auth_decrypt_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) +mbedtls_gcm_crypt_and_tag_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) +mbedtls_gcm_finish_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) +mbedtls_gcm_free_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) +mbedtls_gcm_init_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) +mbedtls_gcm_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) +mbedtls_gcm_setkey_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) +mbedtls_gcm_starts_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) +mbedtls_gcm_update_ad_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) +mbedtls_gcm_update_soft esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) +mbedtls_hardware_poll esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_hmac_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed_buf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_internal_sha1_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +mbedtls_internal_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_internal_sha512_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +mbedtls_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_md5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md5_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) +mbedtls_md_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_md_error_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_get_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_get_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_md_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_hmac_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_md_hmac_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_info_from_ctx esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_info_from_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_add_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_mpi_add_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_add_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_cmp_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_cmp_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_cmp_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_mpi_core_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_add_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_bigendian_to_host esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_check_zero_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_clz esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_exp_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_exp_mod_unsafe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_exp_mod_working_limbs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_fill_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_from_mont_rep esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_get_mont_r2_unsafe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_lt_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_mla esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_mpi_core_montmul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_montmul_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_mul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_read_be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_read_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_shift_l esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_shift_r esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_sub esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_sub_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_to_mont_rep esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_uint_le_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_write_be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_write_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_div_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_mpi_div_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_exp_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_exp_mod_unsafe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_fill_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_gcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_gen_prime esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_get_bit esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_grow esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_mpi_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_inv_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_is_prime_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_lsb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_lset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_lt_mpi_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_mpi_mod_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_mod_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_mul_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_mul_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_read_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_read_binary_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_read_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_read_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_safe_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_safe_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_set_bit esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_shift_l esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_shift_r esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_shrink esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_mpi_sub_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_sub_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_sub_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_write_binary_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_mpi_write_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_write_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +mbedtls_ms_time esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_net_accept esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_bind esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_connect esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_net_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +mbedtls_net_recv esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_net_recv_timeout esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_send esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_net_set_block esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_set_nonblock esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_usleep esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_oid_from_numeric_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_attr_short_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_certificate_policies esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_oid_get_cipher_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_oid_get_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_ec_grp_algid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_extended_key_usage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_oid_get_md_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_md_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_oid_get_numeric_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_oid_by_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_oid_get_oid_by_ec_grp_algid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_oid_get_oid_by_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_oid_get_oid_by_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_oid_get_oid_by_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_pkcs12_pbe_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_sig_alg_desc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_x509_ext_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pem_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pem_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pem_read_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pem_write_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pk_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_pk_check_pair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_copy_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_copy_public_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_debug esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_pk_ecc_set_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_ecc_set_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_ecc_set_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_ecc_set_pubkey_from_prv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_pk_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_pk_get_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_pk_get_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pk_get_psa_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_pk_import_into_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pk_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_pk_load_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pk_parse_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_pk_parse_keyfile esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pk_parse_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_parse_public_keyfile esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pk_parse_subpubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pk_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pk_setup_rsa_alt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_pk_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_pk_sign_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_sign_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_pk_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_pk_verify_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_pk_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_pk_write_key_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_key_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pk_write_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_formatted esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pkcs12_derivation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_pkcs12_pbe_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs5_pbes2_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs5_pbkdf2_hmac_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_pkcs5_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_platform_set_calloc_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_teardown esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_zeroize esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) +mbedtls_psa_aead_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_crypto_configure_entropy_sources esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_crypto_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecdsa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecdsa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_ecp_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_load_public_part esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_ecp_load_representation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_get_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_psa_get_stats esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +mbedtls_psa_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_key_agreement_ecdh esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_psa_rsa_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_load_representation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_psa_rsa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_rsa_alt_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_primes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_private_exponent esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_export esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_export_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_export_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_rsa_gen_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_get_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_get_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_get_md_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_get_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_import esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_import_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_rsa_parse_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_parse_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_pkcs1_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_pkcs1_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_pkcs1_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_pkcs1_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_private esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_oaep_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsaes_oaep_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign_no_mode_check esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_rsassa_pss_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_verify_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_set_padding esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_validate_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_validate_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_write_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_write_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_sha1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) +mbedtls_sha1_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha224_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) +mbedtls_sha256 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) +mbedtls_sha256_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha384_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) +mbedtls_sha512 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha512_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha512_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha512_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) +mbedtls_sha512_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha512_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_ssl_add_hs_hdr_to_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) +mbedtls_ssl_add_hs_msg_to_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_check_cert_usage esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_check_curve esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_check_curve_tls_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_check_pending esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_check_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_check_timer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_ciphersuite_from_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_ciphersuite_from_string esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) +mbedtls_ssl_ciphersuite_get_cipher_key_bitlen esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) +mbedtls_ssl_ciphersuite_uses_ec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_close_notify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_conf_alpn_protocols esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_authmode esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_ca_chain esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_cert_profile esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_conf_cert_req_ca_list esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_ciphersuites esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_dbg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_dtls_badmac_limit esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_encrypt_then_mac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_endpoint esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_extended_master_secret esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_groups esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_legacy_renegotiation esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_max_frag_len esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_own_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_preference_order esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_conf_read_timeout esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_renegotiation esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_renegotiation_enforced esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_renegotiation_period esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_rng esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_session_cache esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_session_tickets esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_session_tickets_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_sig_algs esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_conf_sni esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_transport esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_verify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +mbedtls_ssl_config_defaults esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_config_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_config_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_decrypt_buf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_derive_keys esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_encrypt_buf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_fetch_input esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_finish_handshake_msg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) +mbedtls_ssl_flush_output esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_get_alpn_protocol esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_bytes_avail esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_get_ciphersuite esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_get_ciphersuite_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) +mbedtls_ssl_get_ciphersuite_id_from_ssl esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_ciphersuite_name esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_ciphersuite_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_get_ciphersuite_sig_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_get_ecp_group_id_from_tls_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_get_extension_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_extension_mask esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_handshake_transcript esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_hostname_pointer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) +mbedtls_ssl_get_hs_sni esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_input_max_frag_len esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_key_exchange_md_tls1_2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_get_max_in_record_payload esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_max_out_record_payload esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_get_mode_from_ciphersuite esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_get_mode_from_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_get_output_max_frag_len esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_peer_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_psa_curve_info_from_tls_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_record_expansion esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_get_session esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_tls_id_from_ecp_group_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_get_verify_result esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_get_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_handle_message_type esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_handle_pending_alert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_handshake_client_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake_server_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_handshake_wrapup esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_handshake_wrapup_free_hs_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_hash_from_md_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_list_ciphersuites esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_md_alg_from_hash esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_optimize_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_parse_alpn_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_parse_certificate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_parse_change_cipher_spec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_parse_finished esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_parse_server_name_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_parse_sig_alg_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_pend_fatal_alert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_pk_alg_from_sig esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_prepare_handshake_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_read esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_read_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_read_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_renegotiate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_reset_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_reset_in_pointers esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_reset_out_pointers esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_send_alert_message esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_send_fatal_handshake_failure esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_session_copy esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_session_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_session_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_session_load esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_session_reset esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_session_reset_int esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_session_reset_msg_layer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_session_save esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_bio esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_set_calc_verify_md esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_set_export_keys_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_set_hostname esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_set_hs_authmode esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_hs_ca_chain esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_hs_dn_hints esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_hs_own_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_inbound_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_set_outbound_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_set_session esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_timer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_timer_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_verify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_setup esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_sig_from_pk esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_sig_from_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_start_handshake_msg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) +mbedtls_ssl_start_renegotiation esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_tls12_write_client_hello_exts esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) +mbedtls_ssl_tls_prf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_transform_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_transform_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_update_handshake_status esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_update_in_pointers esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_update_out_pointers esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_validate_ciphersuite esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_verify_certificate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_write esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_write_alpn_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_write_certificate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_write_change_cipher_spec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_write_client_hello esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_write_finished esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_write_handshake_msg_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_write_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_write_sig_alg_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) +mbedtls_ssl_write_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_to_psa_error esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) +mbedtls_x509_crt_check_extended_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_check_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_free esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_x509_crt_get_ca_istrue esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_info esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_init esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_x509_crt_is_revoked esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_x509_crt_parse_cn_inet_pton esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_parse_der_nocopy esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_der_with_ext_cb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_file esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_path esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_profile_default esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_profile_next esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_profile_none esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_profile_suiteb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_verify esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_verify_info esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_verify_with_profile esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_dn_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_free_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_get_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_alg_null esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_get_ext esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_ns_cert_type esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_rsassa_pss_params esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_get_serial esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_sig esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_subject_alt_name_ext esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_time esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_info_cert_type esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_info_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_info_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_key_size_helper esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_parse_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_serial_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_sig_alg_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_time_cmp esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_time_is_future esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_time_is_past esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_zeroize_and_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbo_add_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +mbrtowc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mbrtowc.o) +md4_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) +md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) +meas_tone_pwr_db C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) +mem_calloc esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +mem_free esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +mem_free_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) +mem_init esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +mem_malloc esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) +mem_trim esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +memchr C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memchr.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +memcmp C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcmp.o) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +memcpy C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memcpy.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fgets.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/hal/libhal.a(ds_hal.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.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_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.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_security/libesp_security.a(esp_hmac.c.obj) + esp-idf/hal/libhal.a(touch_sens_hal.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.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_api.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.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_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.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/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(assert.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(esp_memprot.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.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/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +memmove C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memmove.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fvwrite.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) +memp_ARP_QUEUE esp-idf/lwip/liblwip.a(memp.c.obj) +memp_FRAG_PBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_IGMP_GROUP esp-idf/lwip/liblwip.a(memp.c.obj) +memp_MLD6_GROUP esp-idf/lwip/liblwip.a(memp.c.obj) +memp_ND6_QUEUE esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETCONN esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETDB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_PBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_PBUF_POOL esp-idf/lwip/liblwip.a(memp.c.obj) +memp_RAW_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_SYS_TIMEOUT esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCPIP_MSG_API esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCPIP_MSG_INPKT esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_PCB_LISTEN esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_SEG esp-idf/lwip/liblwip.a(memp.c.obj) +memp_UDP_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_free esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) +memp_free_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_init esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +memp_init_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_malloc esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) +memp_malloc_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_pools esp-idf/lwip/liblwip.a(memp.c.obj) +memset C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-memset.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-bzero.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_rsa_sign_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.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/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.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_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.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/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + esp-idf/main/libmain.a(wifi_init.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/vfs/libvfs.a(nullfs.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_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/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/newlib/libnewlib.a(abort.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(sleep_cpu.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_sleep.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/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/efuse/libefuse.a(esp_efuse_api.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) +mesh_add_invalid_rc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_add_option C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_adjust_passive_scan_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_bcn_change_timer_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_chain_header_add_ttl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_check_conflict_beacon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_check_last_rcandidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_check_rc_expire C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_check_tid_mbox_full C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_child_clr_ps_duty C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_child_set_ps_duty C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_clear_parent_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_coding_ie_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_conn_leave C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_conn_mutex C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_connect_to_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_connect_to_router C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_construct_rmv_announcement C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_create_task C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) +mesh_csa_set_bssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_deinit_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_disable_parent_switch_monitor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_encrypt_ie_plain_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_fill_rmv_sub_child C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_find_root_competitor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_flush_txQ C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_flush_upstream_packets C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_free C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_get_parent_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_get_parent_monitor_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_get_rssi_threshold C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_get_sub_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_get_subnet_nodes_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_get_subnet_nodes_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_get_tx_pending C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_get_vnd_roots_len C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_ie_monitor_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ie_monitor_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_ie_type2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_init_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_init_rcandidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ioctl_sem C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_is_better_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_is_ie_ignored C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_is_last_rc_existing C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_is_new_found_conflict_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_is_new_root_found C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_is_new_root_invalid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_is_yield_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_look_for_network C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_malloc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_malloc_rmv_announcement C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_multi_recv_ack C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_multi_send_ack C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_mutex_lock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_mutex_unlock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_myself_mbox C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_node_process_cycle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_node_process_disconnect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_node_process_healing C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_add_conflict_roots C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_change_layer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_check_conflict_roots C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_check_layer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_check_no_parent_found C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +mesh_nwk_delete_timers C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_duty_check_allowed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_check_duration_expire C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_clr_master_identity C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_clr_remaining C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_master_is_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_post_event C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_process_remaining C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_set_master_identity C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_set_remaining C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_find_conflict_roots C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_io_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_manual_networking C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_nwk_process_allow_switch C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_child_event C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_conflict_discnx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_disconnected C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_ie_change C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_leaf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_look_for_network C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_no_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_nvs_settings C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_reselect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_rootless C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_done C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_request C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_vote_done C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_announce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_monitor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_remove_conflict_roots C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_task_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_task_main C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_pack_rmv_announcement C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_parent_check_root_conflict C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_parent_insert_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_parent_select_done C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_parse_conflict_roots_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_parse_option C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_parse_ps_entire_rule C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_parse_ps_uplink_rule C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_pm_set_null C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +mesh_pm_tbtt_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +mesh_post_parent_assoc_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_post_parent_switch_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_post_parent_weak_rssi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_print_txQ_waiting C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_process_child_macconnected C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_process_mcast_cover_node C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_process_mgmt_announce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_switch C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_waive C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_process_mgmt_routing_table C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_process_parent_organized C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +mesh_process_root_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_process_roots_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_process_roots_ie_ttl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_process_same_root_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ps_control_get_min_duty C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ps_control_set_awake C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ps_control_set_sleep C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ps_control_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ps_control_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_ps_get_duties C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_ps_keep_cnx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +mesh_ps_set_new_duty C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_ps_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_recv C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_recv_add_option C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_recv_process_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_register_timer_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_remove_myself_from_forwarding C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_root_connect_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_root_connect_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_root_connect_timer_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_root_process_connect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_root_process_disconnect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_root_process_roots_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_route_announce_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_rt_change_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_rt_change_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_rt_change_timer_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_rx_task_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +mesh_rx_task_main C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +mesh_rxcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +mesh_scan_done_process_weak C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_is_better_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_parent_compute_rank C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_parent_limit_layer2_cap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_parent_try_layer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_parent_try_rssi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_router C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_set_ignore C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_self_xonseq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_send_block_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_send_block_main C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_send_process_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_send_process_topo C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_send_roots_fixed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_send_roots_gone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_send_roots_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_send_stop_vote C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_set_default_rssi_threshold C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_set_id C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_set_ie_crypto_funcs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_set_io_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_set_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_set_parent_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_set_parent_monitor_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_set_root_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_set_root_candidate_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_set_router C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_set_rssi_threshold C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_set_self_organized C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_set_type C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_sta_auth_expire_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_stop_recv C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_switch_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_tcpip_mbox C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_timer_bcn_change C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_candidate_monitor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_do_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_timer_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_mie_monitor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_ps_control C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_root_connect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_route_announce C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_rt_change C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_topo_get_ttl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_tx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_tx_task_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_tx_task_main C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_tx_tid_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_update_current_parent C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_update_ie_rssi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_update_rcandidate_rssi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_update_route_table C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_vote_root_candidate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_waive_root C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_wifi_event_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_wifi_event_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_wifi_event_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_xmit_state_mbox C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_xon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_deliver_packet C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_flush_packets C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_process_disconnected C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_process_expired C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_process_no_wnd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_task_main C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mgd_probe_send_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +misc_nvs_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +misc_nvs_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +misc_nvs_load C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) +misc_nvs_restore C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) +mktime C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-mktime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +mld6_input esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) +mld6_joingroup esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +mld6_joingroup_netif esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +mld6_leavegroup esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +mld6_leavegroup_netif esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +mld6_lookfor_group esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +mld6_report_groups esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +mld6_stop esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +mld6_tmr esp-idf/lwip/liblwip.a(mld6.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_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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +mmu_hal_paddr_to_vaddr esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.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) +modem_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +mpi_hal_calc_hardware_words esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mpi_hal_clear_interrupt esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mpi_hal_disable_hardware_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) +mpi_hal_enable_constant_time esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_enable_hardware_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_enable_search esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_interrupt_enable esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mpi_hal_read_result_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mpi_hal_set_mode esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_set_search_position esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_start_op esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_wait_op_complete esp-idf/hal/libhal.a(mpi_hal.c.obj) +mpi_hal_write_at_offset esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_write_m_prime esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_write_rinv esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_write_to_mem_block esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpu_hal_set_region_access esp-idf/hal/libhal.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) +mqtt_get_id esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_get_publish_data esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_get_publish_topic esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_get_suback_data esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_get_total_length esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_has_valid_msg_hdr esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_header_complete esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) +mqtt_manager_init esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + esp-idf/main/libmain.a(main.c.obj) +mqtt_msg_buffer_destroy esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_msg_buffer_init esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_msg_connect esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_msg_disconnect esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_msg_pingreq esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_msg_pingresp esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) +mqtt_msg_puback esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_msg_pubcomp esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_msg_publish esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_msg_pubrec esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_msg_pubrel esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_msg_subscribe esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_msg_unsubscribe esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +mqtt_send_response esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) +mschapv2_derive_response esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +mschapv2_remove_domain esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +mschapv2_verify_auth_response esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +mspi_timing_change_speed_mode_cache_safe esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +mspi_timing_config_set_flash_clock esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_config_set_psram_clock esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_config.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_enter_high_speed_mode esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_enter_low_speed_mode esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_flash_tuning esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +mspi_timing_psram_tuning esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_set_pin_drive_strength esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +mt_add_peer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_del_peer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_fetch_peer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_get_peer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_get_peer_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_get_user_oui C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_get_version C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_is_peer_exist C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_mod_peer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_register_recv_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_register_send_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_send C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_set_peer_rate_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_set_pmk C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_set_user_oui C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_set_wake_window C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_unregister_recv_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +mt_unregister_send_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +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) +nan C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-s_nan.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +nan_dp_delete_peer esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +nan_dp_post_tx esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +nan_dp_search_node esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +nan_input esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +nan_ndp_resp_timeout_process esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +nan_sm_handle_event esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +nan_start esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +nan_stop esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +nanf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libm_a-sf_nan.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +nd6_adjust_mld_membership esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_cleanup_netif esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_clear_destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +nd6_find_route esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +nd6_get_destination_mtu esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +nd6_get_next_hop_addr_or_queue esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ethip6.c.obj) +nd6_input esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) +nd6_reachability_hint esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +nd6_restart_netif esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_tmr esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +neighbor_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +net80211_data_ptr_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +net80211_funcs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +net80211_funcs_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +net80211_funcs_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +net80211_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +net80211_softap_funcs_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +netbuf_alloc esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netbuf_chain esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_data esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_delete esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netbuf_first esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_free esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netbuf_new esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_next esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_ref esp-idf/lwip/liblwip.a(netbuf.c.obj) +netconn_accept esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_alloc esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_bind esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_bind_if esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_close esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_connect esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_delete esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_disconnect esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_err esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_free esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_getaddr esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_gethostbyname_addrtype esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) +netconn_join_leave_group esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_join_leave_group_netif esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_listen_with_backlog esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_new_with_proto_and_callback esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_prepare_delete esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_recv esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_recv_tcp_pbuf esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_recv_tcp_pbuf_flags esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_recv_udp_raw_netbuf esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_recv_udp_raw_netbuf_flags esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_send esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_sendto esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_shutdown esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_tcp_recvd esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_thread_cleanup esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_thread_init esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_write_partly esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_write_vectors_partly esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netif_add esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_add_ext_callback esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_add_ip6_address esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_add_noaddr esp-idf/lwip/liblwip.a(netif.c.obj) +netif_create_ip6_linklocal_address esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_default esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +netif_find esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netif_get_by_index esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netif_get_ip6_addr_match esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +netif_index_to_name esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_init esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +netif_input esp-idf/lwip/liblwip.a(netif.c.obj) +netif_invoke_ext_callback esp-idf/lwip/liblwip.a(netif.c.obj) +netif_ip6_addr_set esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_ip6_addr_set_parts esp-idf/lwip/liblwip.a(netif.c.obj) +netif_ip6_addr_set_state esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +netif_list esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +netif_loop_output esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +netif_name_to_index esp-idf/lwip/liblwip.a(netif.c.obj) +netif_poll esp-idf/lwip/liblwip.a(netif.c.obj) +netif_remove esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_remove_ext_callback esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_addr esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +netif_set_default esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_down esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_gw esp-idf/lwip/liblwip.a(netif.c.obj) +netif_set_ipaddr esp-idf/lwip/liblwip.a(netif.c.obj) +netif_set_link_down esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_link_up esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_netmask esp-idf/lwip/liblwip.a(netif.c.obj) +netif_set_up esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +new_password_encrypted_with_old_nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +node_remove_from_list esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +noise_check_loop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +nt_challenge_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) +nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +nt_password_hash_encrypted_with_block esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.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::HashList() 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::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) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::HashList::~HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.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) esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.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) +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) +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) +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) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::Page() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::SEC_SIZE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.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::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) 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) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Storage::~Storage() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::partition_lookup::lookup_nvs_encrypted_partition(char const*, nvs_sec_cfg_t*, nvs::NVSPartition**) 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::NVSPartition**) 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_close esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_commit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +nvs_erase_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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_erase esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(wifi_init.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(wifi_init.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) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.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/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.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) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_get_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.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) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_get_used_entry_count esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_op2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) +nvs_open esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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_sec_provider_register_hmac 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/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.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) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_set_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.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) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nwk_event_id2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +offchan_action_tx_fail C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +offchan_action_tx_sess_handler C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +offchan_flush_tx_buf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +offchan_in_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +offchan_recv_action C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +offchan_roc_in_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +offchan_send_action_tx_status C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +offchan_tx_in_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +offchan_tx_progress_in C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) +offchan_txop_end C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +offchan_txop_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +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) +old_nt_password_hash_encrypted_with_new_nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +omac1_aes_128 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +omac1_aes_128_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +omac1_aes_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) +open C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysopen.o) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +opendir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +operator delete(void*) C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_op.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) +operator delete(void*, unsigned int) C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_ops.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) +operator delete[](void*) C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(del_opv.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +operator new(unsigned int) C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) +operator new[](unsigned int) C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opv.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) +operator new[](unsigned int, std::nothrow_t const&) C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +opt_type2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +optype2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +os_get_random esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +os_get_time esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +os_gmtime esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +os_memdup esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +os_mktime esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +os_random esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +os_reltime_expired esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +os_reltime_initialized esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +os_sleep esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +os_timer_arm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_arm_us esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_disarm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_done esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_setfn esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +our_controls_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) +our_instances_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +our_tx_eb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +our_wait_eb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +outbox_delete esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_delete_all_items esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_delete_expired esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_delete_item esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_delete_single_expired esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) +outbox_dequeue esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_destroy esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_enqueue esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_get esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) +outbox_get_size esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_init esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_item_get_data esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_item_get_pending esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_set_pending esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +outbox_set_tick esp-idf/mqtt/libmqtt.a(mqtt_outbox.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +owe_build_assoc_req esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +owe_build_dhie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +owe_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +owe_process_assoc_resp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +pTxRx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +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_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) +pbkdf2_sha1 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +pbuf_add_header esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_add_header_force esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +pbuf_alloc esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +pbuf_alloc_reference esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_alloced_custom esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) +pbuf_cat esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +pbuf_chain esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_clen esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +pbuf_clone esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +pbuf_coalesce esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_copy esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +pbuf_copy_partial esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +pbuf_copy_partial_pbuf esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) +pbuf_dechain esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_free esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +pbuf_free_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) +pbuf_free_header esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +pbuf_free_ooseq_pending esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_get_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +pbuf_get_contiguous esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_header esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_header_force esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +pbuf_memcmp esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_memfind esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_put_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_realloc esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +pbuf_ref esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +pbuf_remove_header esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_skip esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_strstr esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_take esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_take_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_try_get_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +pbus_print C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +pbus_rx_dco_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) +pbus_rx_dco_cal_1step C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +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) +peap_prfplus esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +pend_flag_periodic_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +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) +periph_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.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/esp_wifi/libesp_wifi.a(esp_adapter.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_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.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_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.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_hw_support/libesp_hw_support.a(gdma.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(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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_hw_support/libesp_hw_support.a(gdma.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(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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) +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) +periph_rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +periph_rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +periph_rtc_dig_clk8m_get_freq esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +phy_11p_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +phy_2448m_spur_pwr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_analog_delay_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) +phy_ant_clr_update_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_ant_need_update esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_ant_update esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_bbpll_en_usb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_bt_power_track C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_cal_print C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_chan_dump_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +phy_chan_filt_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +phy_change_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +phy_close_pa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +phy_close_rf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_clr_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_dig_ldo_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_dig_reg_backup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_disable_low_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +phy_enable_low_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +phy_enabled_modem_contains esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +phy_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +phy_fft_scale_force C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +phy_force_rx_gain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_freq_correct C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +phy_freq_mem_backup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_ftm_comp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_get_adc_rand C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_get_cca C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_get_cca_cnt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_get_fetx_delay C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +phy_get_i2c_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_get_lock esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_get_mac_addr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_get_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_get_most_tpw C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +phy_get_noise_floor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_get_rf_cal_version C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_get_rfdata_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_get_romfunc_addr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_get_romfuncs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_get_rssi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_get_rx_gain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_get_tsens_value esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_get_tx_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_get_tx_seed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_get_txpwr_param C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +phy_get_vdd33 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +phy_i2c_bbtop_wakeup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_i2c_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_i2c_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) +phy_i2c_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) +phy_i2c_init2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_init_data esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_init_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_init_magic_post esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) +phy_init_magic_pre esp-idf/esp_phy/libesp_phy.a(phy_init_data.c.obj) +phy_init_param_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_internal_delay C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_param C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +phy_param_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_param_track C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +phy_param_track_tot C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +phy_reg_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_rfcal_data_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_rfcal_data_check_value C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_rfcal_data_sub C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_rx11blr_cfg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_rx_band_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_rx_rifs_en C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_rx_sense_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +phy_set_cca_cnt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_set_freq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +phy_set_mac_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_set_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_set_most_tpw C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +phy_set_pwdet_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_set_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_set_signal_test C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_set_tsens_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_set_tsens_range C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) +phy_set_tx_seed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_set_wifi_mode_only C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_track_pll esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_track_pll_deinit esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_track_pll_init esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_tsens_attribute C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) +phy_tx_gain_print C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_txpwr_backoff C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_txtone_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_txtone_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_version_print C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_version_str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_wakeup_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_wftx_ref_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_wifi_enable_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +phy_xpd_tsens C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phymode2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +platform_create_id_string esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +platform_random esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) +platform_tick_get_ms esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +pll_cap_mem_update C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +pm_active_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_allow_to_enable_bcn_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_allow_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_attach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_beacon_add_loss_counter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_add_total_counter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_loss_info_clean C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_loss_info_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_misc_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_beacon_miss_exceeded_wakeup_disabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_monitor_configure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_beacon_monitor_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_monitor_tbtt_allowed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_monitor_tbtt_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_monitor_tbtt_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_monitor_tbtt_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_beacon_monitor_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_beacon_offset_add_loss_counter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_add_total_counter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_configure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_funcs_empty_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +pm_beacon_offset_funcs_init esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +pm_beacon_offset_get_average C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_get_expect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_get_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_get_rx_beacon_success_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_is_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_is_sampling C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_resample_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_reset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_sample C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_sample_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_offset_set_rx_beacon_standard C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +pm_beacon_timestamp_statistic C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_check_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_clear_wakeup_signal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_coex_pwr_configure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_coex_pwr_update C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_coex_recalculate_wifi_time_slice C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) +pm_coex_reconnect_policy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_coex_restart_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_coex_schm_overall_period_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_coex_schm_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_coex_schm_process_restart C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_coex_separate_connectionless_window C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_coex_set_reconnect_policy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +pm_coex_slice_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_coex_tbtt_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_coex_update_wifi_time_slice_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +pm_connectionless_module_set_wake_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_connectionless_wake_interval_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_connectionless_wake_window_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_deattach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_disable_beacon_monitor_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_disable_disconnected_sleep_delay_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_disable_dream_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_disable_sleep_delay_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_disconnected_sleep C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_disconnected_sleep_delay_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_disconnected_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_disconnected_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_disconnected_wake C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_dream C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_dream_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_enable_active_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_enable_beacon_monitor_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_enable_disconnected_sleep_delay_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_enable_dream_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_enable_max_idle_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_enable_sleep_delay_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_enable_sta_disconnected_power_management C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_force_scan_unlock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_funcs_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +pm_funcs_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +pm_get_beacon_duration C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_get_connectionless_status C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_get_idle_wait_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_get_keep_alive_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_get_null_max_tx_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_get_sleep_type C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +pm_get_tbtt_count C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_get_tx_blocks_retention_mask C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +pm_go_to_sleep C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +pm_go_to_wake C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_handle_tbtt_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_hmac_rx_data_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +pm_is_dream C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +pm_is_hw_beacon_filter_active C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_is_in_wifi_slice_threshold C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_is_open C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +pm_is_sending_keep_alive C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +pm_is_sleeping C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +pm_is_waked C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_keep_alive C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_local_tsf_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_mac_sleep C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_mac_sleep_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +pm_mac_sleep_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +pm_mac_wakeup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_max_idle_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_mesh_set_next_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_noise_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_noise_check_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_off_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +pm_offchan_execute_ready_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +pm_offchan_is_waiting C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +pm_offchan_ready_or_defer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_on_beacon_rx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_on_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) +pm_on_coex_schm_process_restart C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +pm_on_coex_schm_status_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +pm_on_coex_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_on_data_rx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_on_data_tx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_on_data_tx_done C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_on_probe_resp_rx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +pm_on_sample_beacon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_on_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_on_tsf_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_parse_beacon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_parse_beacon_trace C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_pend_noise_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_process_tim C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_register_connectionless_wake_window C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_register_pm_tx_null_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_rx_beacon_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_rx_data_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_save_tbtt_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_scale_listen_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_scan_lock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_scan_unlock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_send_nullfunc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +pm_send_probe_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +pm_send_probe_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +pm_send_sleep_null_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_send_wake_null_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_set_beacon_duration C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_set_beacon_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_set_bss_max_idle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +pm_set_keep_alive_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_set_next_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_set_sleep_min_active_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_set_sleep_type C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_set_sleep_wait_broadcast_data_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_sleep C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_sleep_delay_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_sleep_for C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +pm_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +pm_tbtt_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_tbtt_quick_wake_configure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_try_scan_unlock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_tx_data_done_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_tx_data_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_tx_null_data_done_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +pm_tx_null_data_done_quick_wake_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_unregister_connectionless_wake_window C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_update_at_next_beacon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) +pm_update_by_connectionless_status C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_update_light_sleep_default_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_update_modem_sleep_default_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_update_next_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_update_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_update_tsf_tick_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_wake_done C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +pm_wake_up C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +pmksa_cache_add esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_add_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +pmksa_cache_auth_add esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_add_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_auth_create_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_auth_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_flush esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_auth_get esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_list esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_clear_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +pmksa_cache_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_flush esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_free_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_get esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_get_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_get_opportunistic esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +pmksa_cache_init esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_list esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +pmksa_cache_set_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pocket_sar_power C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +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/newlib/libnewlib.a(heap.c.obj) +ppAMPDU2Normal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppAdd2AMPDUTail C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppAddTimCount C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppAssembleAMPDU C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppAssembleMicHdr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppCalFrameTimes C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppCalSubFrameLength C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppCalTkipMic C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppCalTxAMPDULength C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppCalTxopDur C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppCheckIsConnTraffic C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppCheckTxAMPDUlength C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppCheckTxConnTrafficIdle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +ppCheckTxIdle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ppCheckTxQIdle C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +ppClearRxFragment C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ppClearTxq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppDequeueRxq_Locked C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppDequeueTxDone_Locked C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppDequeueTxQ C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppDirectRecycleAmpdu C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppDisableQueue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppDiscardMPDU C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppEmptyDelimiterLength C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppEnableQueue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppEnqueueRxq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppEnqueueTxDone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppFetchTxQFirstAvail C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppFillAMPDUBar C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppGetTaskHdl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppGetTxQFirstAvail_Locked C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppGetTxframe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppInitTxq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppInstallKey C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ppMapTxQueue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppMapWaitTxq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppMessageInQ C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppPauseTxAMPDU C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppPrepareBarFrame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppProcTxCallback C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppProcTxDone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppProcTxSecFrame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppProcessLifeTime C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppProcessRxPktHdr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppProcessTxQ C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppProcessWaitQ C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppProcessWaitingQueue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +ppReSendBar C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppRecordBarRRC C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppRecycleAmpdu C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppRecycleRxPkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppRecycleTxBuf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppRegisterPromisRxCallback C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppRegisterRxCallback C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppRegisterTxCallback C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +ppRegisterTxDoneUserActionCallback C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppRegressAmpdu C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppResortTxAMPDU C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppResumeTxAMPDU C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppRollBackTxQ C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppRxFragmentProc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppRxPkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppRxProtoProc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppSearchTxQueue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppSearchTxframe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppSelectNextQueue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppSetBarRate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppSetInterface C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppSubFromAMPDU C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppTask C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppTxFragmentProc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppTxPkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ppTxProtoProc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppTxqEmpty C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppTxqUpdateBitmap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppUnregisterTxCallback C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_allow_cut_sevt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_attach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_can_cut_evt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_can_cut_sevt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_coex_tx_release C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_coex_tx_request C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_create_task C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_deattach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_default_event_handler C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_delete_task C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_gettid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_hdrsize C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_need_cut_rx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_post C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +pp_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_process_hmac_waiting_txq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_register_config_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_register_michael_mic_failure_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_register_net80211_tx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_register_timer_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_register_tx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +pp_set_cut_evt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_set_cut_rx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_sig_cnt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_sig_cnt_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_stop_sw_txq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_task_hdl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_timer_do_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_timer_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pp_timer_register_post_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_unregister_tx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +pp_wdev_funcs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pread esp-idf/vfs/libvfs.a(vfs.c.obj) +prefix_list esp-idf/lwip/liblwip.a(nd6.c.obj) +print_rc_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +print_roots_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +print_sta_pmk C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +print_txupQ_pending C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +printf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-printf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +printf_decode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +printf_encode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +prvReleaseKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +prvTakeKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.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/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_generate_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_allocate_buffer_to_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_can_do_cipher esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_can_do_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_generate_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_close_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_copy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_copy_key_material_into_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_crypto_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_input_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_input_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_output_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_output_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_custom_key_parameters_are_default esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_destroy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_destroy_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_get_builtin_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) +psa_driver_wrapper_get_key_buffer_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_export_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_export_public_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) +psa_format_key_data_for_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_free_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_free_persistent_key_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generate_key_custom esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generate_key_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generate_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generate_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_generic_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +psa_get_and_lock_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_get_key_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_hash_compare esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_import_key_into_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_initialize_key_slots esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_interruptible_get_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_is_key_present_in_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_is_valid_key_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_its_get esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_get_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_remove esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_set esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_key_agreement_raw_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_get_capacity esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_bytes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_integer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_bytes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_key_custom esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_key_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_set_capacity esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_load_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_open_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_parse_key_data_from_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_pk_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_purge_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_raw_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_remove_key_data_from_memory esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_reserve_free_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_reset_key_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_save_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_message_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +psa_to_lms_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_to_md_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +psa_to_pk_rsa_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_unregister_read esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_unregister_read_under_mutex esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_key_location esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_key_persistence esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_unstructured_key_bit_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_message_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_wipe_all_key_slots esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_wipe_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.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/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.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/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_signal esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_cond_timedwait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_cond_wait esp-idf/pthread/libpthread.a(pthread_cond_var.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_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_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/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_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/newlib/libnewlib.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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_sigmask esp-idf/newlib/libnewlib.a(pthread.c.obj) +ptr_beacon_offset_funcs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +putc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putc.o) +putchar C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-putchar.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +putle32 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +puts C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/lwip/liblwip.a(sockets_ext.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(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(port_common.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/newlib/libnewlib.a(heap.c.obj) +pwdet_code_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +pwdet_ref_code C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +pwdet_tone_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) +pwr_limit_force C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) +pwrsave_flushq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +raise esp-idf/newlib/libnewlib.a(syscalls.c.obj) +ram_bb_reg_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +ram_bt_get_tx_gain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_bt_set_tx_gain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_bt_track_pll_cap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +ram_bt_track_tx_power C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_check_noise_floor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +ram_chip_i2c_readReg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_chip_i2c_writeReg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_disable_wifi_agc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_enable_wifi_agc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_fe_i2c_reg_renew C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_get_chan_target_power C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +ram_get_i2c_hostid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_get_rate_fcc_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +ram_i2c_master_reset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_pbus_force_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) +ram_phy_close_rf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +ram_phy_dis_hw_set_freq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_phy_en_hw_set_freq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_phy_i2c_init1 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_phy_wakeup_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +ram_pll_vol_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_read_sar2_code C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_set_chan_cal_interp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_set_noise_floor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_set_pbus_reg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_set_txcap_reg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_temp_to_power C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +ram_tsens_code_read C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_tsens_temp_read C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_tsens_temp_read_new C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) +ram_tx_pwctrl_background C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +ram_txpwr_cal_track C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_wifi_get_tx_gain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_wifi_set_tx_gain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_wifi_track_tx_power C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_wifi_tx_dig_gain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_wifi_tx_dig_gain_reg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +ram_write_pll_cap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rand C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.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) +raw_bind esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_bind_netif esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +raw_connect esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_disconnect esp-idf/lwip/liblwip.a(raw.c.obj) +raw_input esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +raw_netif_ip_addr_changed esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +raw_new esp-idf/lwip/liblwip.a(raw.c.obj) +raw_new_ip_type esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_recv esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_remove esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_send esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_sendto esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_sendto_if_src esp-idf/lwip/liblwip.a(raw.c.obj) +rc11BSchedTbl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rc11BSchedTbl_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rc11GSchedTbl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rc11NSchedTbl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rc11NSchedTbl_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rc4_skip esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +rcAmpduLowerRate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcAttach C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +rcClearCurAMPDUSched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcClearCurSched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcClearCurStat C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcGet11BHighestRateIdx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcGet11GHighestRateIdx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcGet11NHighestRateIdx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcGetAmpduSched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rcGetDefaultHigestRateIdx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcGetHighestRateIdx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcGetRate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rcGetSched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rcLoRaRate2SchedIdx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcLoRaSchedTbl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcLoRaSchedTbl_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcLowerSched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcP2P11GSchedTbl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcP2P11NSchedTbl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcReachRetryLimit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +rcSetBarRate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rcSetTxAmpduLimit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcTxUpdatePer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcUpSched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcUpdateAMPDUParam C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rcUpdateAckSnr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcUpdatePhyMode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rcUpdateRate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcUpdateRxDone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rcUpdateTxDone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +rcUpdateTxDoneAmpdu2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rc_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rc_disable_trc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_disable_trc_by_interface C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_enable_trc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_get_G6M_sched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_get_default_sched C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_get_fix_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_get_mask C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rc_get_sta_trc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rc_get_trc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_get_trc_by_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_get_trc_default C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rc_only_sta_trc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rc_set_fix_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_set_per_conn_fix_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +reachable_time esp-idf/lwip/liblwip.a(nd6.c.obj) +read C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysread.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +read_hw_noisefloor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +read_pll_cap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +readdir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) +realloc esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiscanf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) +reconnect_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +reconnect_type2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +regdomain_table esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) +regi2c_analog_cali_reg_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +regi2c_analog_cali_reg_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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_hw_support/libesp_hw_support.a(rtc_init.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/hal/libhal.a(adc_hal_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.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) +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) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +regi2c_saradc_enable 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_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +register_chipv7_phy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +register_chipv7_phy_init_param C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +register_ieee80211_action_vendor_get_key_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +register_ieee80211_action_vendor_spec_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +register_ieee80211_rfid_locp_recv_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) +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) +regulatory_data esp-idf/esp_wifi/libesp_wifi.a(esp_wifi_regulatory.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) +remove C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-remove.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) +rename C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rename.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) +resend_eapol_handle esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +reset_cs_thres C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +restart_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +retrans_timer esp-idf/lwip/liblwip.a(nd6.c.obj) +rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) +rf_cal_data_backup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rf_cal_data_recovery C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rf_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rfcal_pwrctrl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +rfcal_rxiq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rfcal_txcap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +rfcal_txiq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +rfpll_cap_correct C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +rfpll_cap_init_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +rfpll_cap_track C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +rfpll_set_freq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +rfrx_sat_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rfrx_sat_rst C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) +roc_done_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +roc_op_end C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +roc_op_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +roc_sess_handler C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +rom_Cache_Count_Flash_Pages esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_Cache_Freeze_DCache_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_Cache_Freeze_ICache_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_Cache_Suspend_DCache esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_Cache_Suspend_ICache esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_Cache_WriteBack_Addr esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +rom_agc_reg_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_bt_filter_reg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_bt_tx_dig_gain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_config_data_cache_mode esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +rom_config_instruction_cache_mode esp-idf/esp_system/libesp_system.a(cpu_start.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) +rom_i2c_sar2_init_code C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) +rom_index_to_txbbgain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +rom_noise_check_loop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rom_open_i2c_xpd C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_opiflash_cmd_def esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +rom_pbus_xpd_tx_on C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) +rom_phy_ant_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_phy_bbpll_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_phy_dig_reg_backup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +rom_phy_freq_mem_backup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +rom_phy_param_addr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rom_phy_reg_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rom_phy_xpd_rf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rom_phy_xpd_tsens C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_read_hw_noisefloor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +rom_rx_gain_force C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +rom_set_chan_reg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) +rom_set_tx_dig_gain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_set_tx_gain_mem C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +rom_spiflash_api_funcs esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +rom_spiflash_legacy_data esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.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(flash_brownout_hook.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +rom_spiflash_legacy_funcs esp-idf/spi_flash/libspi_flash.a(spi_flash_oct_flash_init.c.obj) +rom_txbbgain_to_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +rom_wifi_agc_sat_gain C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_wifi_track_pll_cap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +rom_write_txrate_power_offset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +roots_type2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +rotl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rotr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +roundup2 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +route_announce_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +route_announce_timer_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +route_announce_timer_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +routetype2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +rpc_job_parse esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) +rsn_cipher_put_suites esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +rsn_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +rssi_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +rssi_margin C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rssi_saved C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +rssi_to_rcpi esp-idf/wpa_supplicant/libwpa_supplicant.a(common.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_divider_set 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_bbpll_add_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) +rtc_clk_bbpll_remove_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.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(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(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cal_internal 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) +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_hw_support/libesp_hw_support.a(rtc_init.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_hw_support/libesp_hw_support.a(rtc_init.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) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(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) +rtc_clk_divider_set 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) +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_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) +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_hw_support/libesp_hw_support.a(rtc_init.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) +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_cntl_hal_disable_cpu_retention esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +rtc_cntl_hal_disable_tagmem_retention esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +rtc_cntl_hal_dma_link_init esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +rtc_cntl_hal_enable_cpu_retention esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +rtc_cntl_hal_enable_tagmem_retention esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.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) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.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) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_force_hold_en_all 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_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.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) +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) +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) +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/soc/libsoc.a(rtc_io_periph.c.obj) + esp-idf/hal/libhal.a(rtc_io_hal.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_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +rtc_io_num_map esp-idf/soc/libsoc.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_modes.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_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_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.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_pu esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.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_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.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(rtc_init.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(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.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/hal/libhal.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/hal/libhal.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/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rx11NRate2AMPDULimit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rx_11b_opt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rx_agc_reg_opt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rx_blocking_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) +rx_chan_dc_sort C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rxdc_est_min C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rxiq_cover_mg_mp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rxiq_get_mis C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rxiq_set_reg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +s_cache_hal_init_ctx esp-idf/hal/libhal.a(cache_hal.c.obj) +s_eapol_txdone_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +s_encap_amsdu_func C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +s_fix_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +s_fix_rate_mask C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +s_fragment C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +s_fragment_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +s_head esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +s_ioctl_table C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +s_is_6m C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +s_map C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) +s_mesh_beacon_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +s_mesh_running_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +s_mesh_send_mutex C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +s_mesh_stop_mutex C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +s_michael_mic_failure_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +s_microseconds_offset esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +s_netstack_free C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +s_netstack_ref C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +s_pm_beacon_offset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +s_pm_beacon_offset_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) +s_pp_task_create_sem C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +s_pp_task_del_sem C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +s_record_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +s_register_config_driver esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +s_revoke_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.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_tbttstart C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +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_systimer.c.obj) +s_tx_cacheq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +s_wifi_api_lock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +s_wifi_nvs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +s_wifi_queue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +s_wifi_stop_in_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +s_wifi_task_hdl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +s_wps_api_lock esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +s_wps_api_sem esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +s_wps_enabled esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +sae_accept_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +sae_check_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_check_confirm_pk esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_clear_data esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_clear_temp_data esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +sae_deinit_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_derive_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_derive_pwe_from_pt_ecc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_derive_pwe_from_pt_ffc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_ecc_prime_len_2_hash_len esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_ffc_prime_len_2_hash_len esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_group_allowed esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +sae_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_parse_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_pk_base32_decode esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_base32_encode esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_buf_shift_left_19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_get_be19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_set_password esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_pk_valid_password esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_prepare_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_prepare_commit_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_process_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_set_group esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_state_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_write_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_write_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.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) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +sar_periph_ctrl_adc_oneshot_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_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) +save_pbus_reg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) +sc_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) +scan_add_bssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_add_probe_ssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_bitmap_to_channel_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_build_chan_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_cancel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +scan_check_hidden C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_connect_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_enter_oper_channel_handler C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_enter_oper_channel_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +scan_fill_wps_scan_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_flush_all_tx_buf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +scan_get_apnum C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +scan_get_owe_channel_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_get_scan_id C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +scan_get_type C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_hidden_ssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_inter_channel_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +scan_parse_beacon C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +scan_parse_ht2040_coex C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_pm_channel_op_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_pm_offchan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_prefer_chan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_profile_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_remove_bssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_remove_probe_ssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_reset_cipher_and_akm C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_reset_default_app_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +scan_result_print C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +scan_set_act_duration C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_set_current_scan_times C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_set_default_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_set_desChan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_set_home_chan_dwell_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_set_pas_duration C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_set_scan_id C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +scan_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_start_handler C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_status2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +scan_update_scan_history C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_validate_owe_scenarios C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scannum C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +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.c.obj) +select esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.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) +send_ap_probe C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +send_deauth C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +send_wake_null_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +send_wake_null_timeout_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +set_adc_rand C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +set_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +set_chan_freq_hw_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +set_chan_freq_sw_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a(bt_bb_v2.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +set_chanfreq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +set_channel_rfpll_freq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +set_client_config esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +set_pbus_mem C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +set_rf_freq_offset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +set_rfpll_freq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +set_rx_gain_cal_dc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) +set_rx_gain_cal_iq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) +set_rx_gain_param C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) +set_rx_gain_table C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +set_rx_sense C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +set_xpd_sar esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +setbuf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +setlocale C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) +settimeofday esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +setvbuf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-setbuf.o) +sha1_op esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpsk.c.obj) +sha1_prf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +sha1_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +sha256_prf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +sha256_prf_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sha256_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +sha384_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +sha512_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +sha_hal_hash_block esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_hash_dma esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_read_digest esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_set_mode esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_sha512_init_hash esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha.c.obj) +sha_hal_wait_idle esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_write_digest esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sigfillset esp-idf/newlib/libnewlib.a(pthread.c.obj) +siscanf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) +sleep esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) +sleep_console_usj_pad_backup_and_disable esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sleep_console_usj_pad_restore esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sleep_cpu_configure esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) +sleep_disable_cpu_retention esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sleep_enable_cpu_retention esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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) +sms4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +snprintf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-snprintf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.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_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/newlib/libnewlib.a(assert.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.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_boya_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) +spi_flash_chip_boya_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_opi.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_th.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.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_opi_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_read_id esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_read_reg esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_opi_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_mxic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_th_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) +spi_flash_chip_th_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.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_chip_xmic_opi_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) +spi_flash_chip_xmic_opi_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.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/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.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_high_performance_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_enable_interrupts_caches_and_other_cpu 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) + esp-idf/spi_flash/libspi_flash.a(flash_ops.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/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_disable_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_disable_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_erase_block esp-idf/hal/libhal.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/hal/libhal.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/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_check_status esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_common_command esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_device_config esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_init esp-idf/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_setup_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_setup_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_setup_read_suspend esp-idf/hal/libhal.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/hal/libhal.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/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hpm_dummy_adjust esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) +spi_flash_hpm_get_dummy esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) +spi_flash_hpm_get_dummy_generic esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.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/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-idf/esp_partition/libesp_partition.a(partition.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/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-idf/esp_partition/libesp_partition.a(partition.c.obj) +spi_flash_needs_reset_check esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.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_flash_support_wrap_size esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_timing_is_tuned esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_wrap_clear_77 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_clear_c0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_disable esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +spi_flash_wrap_enable esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_wrap_enable_77 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_enable_c0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_list esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_flash_wrap_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +spi_flash_wrap_probe_c0 esp-idf/spi_flash/libspi_flash.a(spi_flash_wrap.c.obj) +spi_periph_signal esp-idf/soc/libsoc.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) +spi_timing_get_flash_timing_param esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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_bus_using_iomux 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_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) +sprintf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfscanf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/mqtt/libmqtt.a(platform_esp32_idf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +spur_coef_cfg_new C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +srand C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-rand.o) +sscanf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) +sta_auth_ft C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_auth_open C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_auth_sae C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_auth_shared C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_bip_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +sta_con_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +sta_csa_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +sta_eapol_txdone_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_get_beacon_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +sta_get_owe_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +sta_input C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +sta_is_11r_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +sta_is_bss_max_idle_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +sta_is_wifi_ent_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +sta_is_wpa3_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +sta_michael_mic_failure C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +sta_recv_assoc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_recv_ctl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +sta_recv_mgmt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +sta_reset_beacon_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +sta_retry_assoc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +sta_rx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +sta_rx_csa C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +sta_rx_eapol C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +sta_rxcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +sta_sa_query_process_timeout C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +sta_try_sa_query_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +sta_update_power_off_reset_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +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_tx_tone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +start_tx_tone_step C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +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 C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sysstat.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +std::bad_alloc::what() const C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) +std::bad_alloc::~bad_alloc() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_exception::what() const C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +std::exception::~exception() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +std::exception::~exception() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) +std::exception::~exception() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +std::get_new_handler() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) +std::get_terminate() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) +std::get_unexpected() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) +std::nothrow C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +std::set_new_handler(void (*)()) C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_handler.o) +std::set_terminate(void (*)()) C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) +std::set_unexpected(void (*)()) C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) +std::terminate() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) +std::type_info::__do_catch(std::type_info const*, void**, unsigned int) const C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) +std::type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) +std::type_info::__is_function_p() const C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) +std::type_info::__is_pointer_p() const C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) +std::type_info::~type_info() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) +std::type_info::~type_info() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) +std::type_info::~type_info() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) +std::uncaught_exception() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) +std::uncaught_exceptions() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_catch.o) +std::unexpected() C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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) +stop_tx_tone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) +str_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strcasecmp C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasecmp.o) + esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) +strcasestr C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) +strcat C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcat.o) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +strchr C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strchr.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/ftp_manager/libftp_manager.a(ftp_manager.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +strcmp C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcmp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_nucleus.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/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:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcpy.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/rpc_job_parser/librpc_job_parser.a(rpc_job_parser.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +strcspn C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strdup C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +strerror C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +strerror_l C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror.o) +strerror_r C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlcat C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +strlcpy C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcpy.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlen C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlen.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-siscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strlcat.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strerror_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strdup_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-sscanf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-fputs.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ssl.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.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/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_msg.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +strncasecmp C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncasecmp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strcasestr.o) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +strncmp C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncmp.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-getenv_r.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-gdtoa-gethex.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/json/libjson.a(cJSON.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strncpy C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strncpy.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 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) +strndup C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strndup.o) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +strnlen C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strnlen.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +strrchr C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strstr C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strstr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/tcp_transport/libtcp_transport.a(transport_ws.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strtod C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) + esp-idf/json/libjson.a(cJSON.c.obj) +strtod_l C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +strtof C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +strtof_l C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtod.o) +strtol C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-atoi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +strtol_l C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtol.o) +strtoll C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) +strtoll_l C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoll.o) +strtoul C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset_r.o) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +strtoul_l C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoul.o) +strtoull C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) +strtoull_l C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-strtoull.o) +supplicant_sta_conn_handler esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +supplicant_sta_disconn_handler esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +sys_arch_mbox_fetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_arch_mbox_tryfetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_arch_protect esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_arch_sem_wait esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_arch_unprotect esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_check_timeouts esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_delay_ms esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_init esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +sys_jiffies esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mbox_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_mbox_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mbox_post esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mbox_trypost esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mbox_trypost_fromisr esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mutex_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mutex_lock esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mutex_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mutex_unlock esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_now esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +sys_restart_timeouts esp-idf/lwip/liblwip.a(timeouts.c.obj) +sys_sem_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_sem_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_sem_signal esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_sem_signal_isr esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +sys_thread_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_thread_sem_deinit esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_thread_sem_get esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_thread_sem_init esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_thread_tcpip esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_timeout esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +sys_timeouts_deinit esp-idf/lwip/liblwip.a(timeouts.c.obj) +sys_timeouts_init esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +sys_timeouts_sleeptime esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_untimeout esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(acd_dhcp_check.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +syscall_table_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +system esp-idf/newlib/libnewlib.a(syscalls.c.obj) +systimer_hal_connect_alarm_counter esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_counter_can_stall_by_cpu esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_counter_value_advance esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_deinit esp-idf/hal/libhal.a(systimer_hal.c.obj) +systimer_hal_enable_alarm_int esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_enable_counter esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_get_alarm_value esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_get_clock_source esp-idf/hal/libhal.a(systimer_hal.c.obj) +systimer_hal_get_counter_value esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_get_time esp-idf/hal/libhal.a(systimer_hal.c.obj) +systimer_hal_init esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_select_alarm_mode esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_set_alarm_period esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_set_alarm_target esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_set_tick_rate_ops esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_ticks_to_us esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_us_to_ticks esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +target_power_backoff C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +target_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.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) +tcdrain esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +tcflow esp-idf/vfs/libvfs.a(vfs.c.obj) +tcflush esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +tcgetattr esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +tcgetsid esp-idf/vfs/libvfs.a(vfs.c.obj) +tcp_abandon esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_abort esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_accept esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_active_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +tcp_active_pcbs_changed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_alloc esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_arg esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_backlog_accepted esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_backlog_delayed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_bind esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_bind_netif esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +tcp_bound_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_close esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_close_ext esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_connect esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_debug_state_str esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_eff_send_mss_netif esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_enqueue_flags esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_err esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_fasttmr esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_free_ooseq esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +tcp_init esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +tcp_input esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +tcp_input_pcb esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_keepalive esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_listen_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_listen_with_backlog esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_listen_with_backlog_and_err esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_netif_ip_addr_changed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +tcp_new esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_new_ip_type esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_next_iss esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_output esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_pcb_lists esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_pcb_purge esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_pcb_remove esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_poll esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_process_refused_data esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_recv esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_recv_null esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_recved esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_rexmit esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_fast esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_rto esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_rto_commit esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_rexmit_rto_prepare esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_rst esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_rst_netif esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_seg_copy esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_seg_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_segs_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_send_empty_ack esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_send_fin esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_sent esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_setprio esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_shutdown esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_slowtmr esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_split_unsent_seg esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tcp_get_tcp_addrinfo esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_ticks esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_timer_needed esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tmr esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +tcp_trigger_input_pcb_close esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tw_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_txnow esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_update_rcv_ann_wnd esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_write esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_zero_window_probe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcpip_api_call esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcpip_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +tcpip_callback_wait esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_callbackmsg_delete esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_callbackmsg_new esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_callbackmsg_trycallback esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_callbackmsg_trycallback_fromisr esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_init esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +tcpip_inpkt esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_input esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +tcpip_send_msg_wait_sem esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +tcpip_try_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +tcsendbreak esp-idf/vfs/libvfs.a(vfs.c.obj) +tcsetattr esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +telldir esp-idf/vfs/libvfs.a(vfs.c.obj) +temp_sensor_get_raw_value esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +temp_sensor_sync_tsens_idx esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +temperature_sensor_attributes esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +temperature_sensor_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +temperature_sensor_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +time C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-time.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.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_systimer.c.obj) +tkip C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +tkip_decap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) +tkip_encap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) +tls_connection_client_hello_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_enable_workaround esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_established esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +tls_connection_export_key esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_get_eap_fast_key esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_get_failed esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_get_random esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_get_read_alerts esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_get_write_alerts esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_init esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_resumed esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +tls_connection_server_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_set_cipher_list esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_set_params esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_set_session_ticket_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_set_verify esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_shutdown esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +tls_get_cipher esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_get_errors esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_get_version esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_global_set_params esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_global_set_verify esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_init esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +tls_instance_count esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.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) +touch_hal_config_controller esp-idf/hal/libhal.a(touch_sens_hal.c.obj) +touch_hal_prepare_deep_sleep esp-idf/hal/libhal.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/hal/libhal.a(touch_sens_hal.c.obj) +transaction clone for std::bad_exception::what() const C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::bad_exception::~bad_exception() const C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::exception::what() const C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::exception::~exception() const C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +trcAmpduSetState C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +trc_NeedRTS C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +trc_SetTxAmpduState C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +trc_calc_duration C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +trc_ctl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +trc_ctl_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +trc_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_get_80211_tx_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_get_80211_tx_rate_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_get_espnow_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_isAmpduOn C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +trc_isTxAmpduOperational C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +trc_onAmpduOp C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_onDisconnect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +trc_onPPTxDone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +trc_onScanDone C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +trc_onScanStart C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +trc_set_80211_tx_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_set_80211_tx_rate_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_set_espnow_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_set_per_pkt_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_tid_isTxAmpduOperational C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +trc_update_def_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_update_ifx_phy_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +truncate esp-idf/vfs/libvfs.a(vfs.c.obj) +tsens_dac_cal_new C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) +tsens_dac_to_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) +tsens_read_init_new C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +tsf_hal_clear_mac_modem_rf_power_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_clear_soc_wakeup_request C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_get_counter_value C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_get_mac_modem_rf_power_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_get_tbtt_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_get_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_get_timer_target C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_is_tsf_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_map_tbtt_target_to_rx_frame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_select_rx_start_default_tsf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_counter_value C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_modem_wakeup_early_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_rx_beacon_abort_tsf_time_deviation_sync_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_rx_beacon_abort_tsf_time_deviation_sync_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_rx_beacon_fail_tsf_time_deviation_sync_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_rx_beacon_fail_tsf_time_deviation_sync_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_rx_beacon_success_tsf_time_deviation_sync_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_rx_beacon_success_tsf_time_deviation_sync_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_rx_control_timestamp_use_tsf_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_rx_control_timestamp_use_tsf_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_early_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_intr_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_intr_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_modem_wakeup_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_modem_wakeup_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_rf_ctrl_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_rf_ctrl_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_rf_ctrl_wait_cycles C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_soc_wakeup_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_soc_wakeup_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_start_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_time C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_timer_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_intr_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_intr_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_modem_wakeup_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_timer_modem_wakeup_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_timer_rf_ctrl_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_timer_rf_ctrl_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_timer_rf_ctrl_wait_cycles C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_timer_soc_wakeup_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_soc_wakeup_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_target C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_tsf_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tsf_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tsf_time_deviation C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tsf_time_deviation_sync_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tsf_time_deviation_sync_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_unmap_tbtt_target_to_rx_frame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tx_cap_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +tx_gain_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +tx_msg_id2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +tx_pwctrl_background C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +tx_pwctrl_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +tx_pwctrl_init_cal C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +tx_state_id2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +tx_state_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +tx_task_main C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +tx_wifi_err2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) +txcal_debuge_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +txcal_work_mode C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +txdc_cal_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +txdc_cal_v70 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +txiq_cal_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +txiq_cover C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +txiq_get_mis_pwr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +txiq_set_reg C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +txopstart_index C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +txpwr_offset C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +txq_opr2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +txtone_linear_pwr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +typeinfo for std::bad_alloc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) +typeinfo for std::exception C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) +typeinfo name for std::bad_alloc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) +typeinfo name for std::exception C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) +tzset C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-tzset.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) +uart_driver_install esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.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) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_get_baudrate 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_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) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.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) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.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) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_hal_get_baudrate esp-idf/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_parity esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_sclk esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_symb_len esp-idf/hal/libhal.a(uart_hal.c.obj) +uart_hal_get_wakeup_edge_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_init esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_inverse_signal esp-idf/hal/libhal.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/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_read_rxfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_rxfifo_rst esp-idf/hal/libhal.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/hal/libhal.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/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_dtr esp-idf/hal/libhal.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/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_loop_back esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_mode esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_parity esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_rx_timeout esp-idf/hal/libhal.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/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_stop_bits esp-idf/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.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/hal/libhal.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_tx_break esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_txfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_write_txfifo esp-idf/hal/libhal.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) +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/soc/libsoc.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/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) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.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) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_set_pin 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) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.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) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.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/esp_driver_uart/libesp_driver_uart.a(uart_vfs.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/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) +udp_bind esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_bind_netif esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +udp_connect esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_disconnect esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +udp_init esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +udp_input esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +udp_netif_ip_addr_changed esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +udp_new esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_new_ip_type esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +udp_pcbs esp-idf/lwip/liblwip.a(udp.c.obj) +udp_recv esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_remove esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_send esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +udp_sendto esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +udp_sendto_if esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_sendto_if_src esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +ulTaskGenericNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +ulTaskGenericNotifyValueClear esp-idf/freertos/libfreertos.a(tasks.c.obj) +ulp_code_track C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +ulp_ext_code_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +ungetc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-ungetc.o) +unregister_ieee80211_action_vendor_get_key_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +unregister_ieee80211_action_vendor_spec_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +unregister_ieee80211_rfid_locp_recv_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) +update_cs_thres C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +usb_serial_jtag_connection_monitor_include esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) +usb_serial_jtag_driver_install esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) +usb_serial_jtag_driver_uninstall esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) +usb_serial_jtag_get_read_bytes_available esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_is_connected esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) +usb_serial_jtag_is_driver_installed esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_read_bytes esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_read_ready esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) +usb_serial_jtag_set_select_notif_callback esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_include_dev_init esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_register esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_set_rx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_set_tx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_use_driver esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_vfs_use_nonblocking esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_wait_tx_done esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_write_bytes esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usb_serial_jtag_write_ready esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) +usleep esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) +utime esp-idf/vfs/libvfs.a(vfs.c.obj) +utoa C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-utoa.o) +uuid_gen_mac_addr esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +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/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.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/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread.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) + esp-idf/freertos/libfreertos.a(event_groups.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) +vEventGroupClearBitsCallback esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vEventGroupDelete esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +vEventGroupSetBitsCallback esp-idf/freertos/libfreertos.a(event_groups.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(event_groups.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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_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(io_mux.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.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_mm/libesp_mm.a(esp_cache_utils.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_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_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/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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/newlib/libnewlib.a(locks.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(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) + esp-idf/esp_system/libesp_system.a(apb_backup_dma.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(event_groups.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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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/newlib/libnewlib.a(locks.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) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) +vRingbufferReturnItem esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.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) +vSystimerSetup esp-idf/freertos/libfreertos.a(port_systick.c.obj) +vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/esp_security/libesp_security.a(esp_ds.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +vTaskDelete esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/pthread/libpthread.a(pthread.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_timer/libesp_timer.a(esp_timer.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) + esp-idf/freertos/libfreertos.a(event_groups.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) + esp-idf/freertos/libfreertos.a(event_groups.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) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskSuspendAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.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/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +valloc esp-idf/newlib/libnewlib.a(heap.c.obj) +vfiprintf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfiprintf.o) +vfprintf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vfprintf.o) +vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) +vote_done2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +vote_start2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +vprintf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vprintf.o) + esp-idf/log/liblog.a(log_write.c.obj) +vsnprintf C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-vsnprintf.o) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +vtable for __cxxabiv1::__class_type_info C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) +vtable for __cxxabiv1::__forced_unwind C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +vtable for __cxxabiv1::__foreign_exception C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +vtable for __cxxabiv1::__si_class_type_info C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(si_class_type_info.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/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) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_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) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +vtable for std::bad_alloc C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(new_op.o) +vtable for std::bad_exception C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +vtable for std::exception C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(eh_exception.o) +vtable for std::type_info C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libstdc++.a(tinfo.o) +wDevCheckBlockError C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +wDevCtrl C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wDevCtrl_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDevMacSleep C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDevMacSleep_ptr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_AppendRxBlocks C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +wDev_Crypto_Disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_DiscardFrame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_FetchFirstDesc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_GetNoiseFloor C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_Get_Next_TBTT C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_IndicateAmpdu C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_IndicateCtrlFrame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_IndicateFrame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_Insert_KeyEntry C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_Mesh_Disable_Tsf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +wDev_Mesh_Enable_Tsf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +wDev_Mesh_Set_TBTT C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +wDev_ProcessFiq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_ProcessRxSucData C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_Reset_TBTT C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_RxSecError C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_Rxbuf_Deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_Rxbuf_Init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_SetAuthed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_SetCurChannel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_Set_Beacon_Int C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wDev_SnifferRxAmpdu C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_SnifferRxData C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_disable_low_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +wDev_enable_low_rate C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +wDev_ftm_record_t1t4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +wDev_ftm_record_t2t3 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_ftm_set_t1t4 C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +wDev_is_low_rate_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_record_ftm_data C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_record_ftm_data_local C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_remove_KeyEntry C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_remove_KeyEntry_all_cnx C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_reset_bcnSendTick C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +wait_freq_set_busy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +wait_hw_freq_busy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +wait_rfpll_cal_end C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +wapi_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) +wdevProcessRxSucDataAll C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +wdev_bank_load C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_bank_store C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_csi_hw_bug_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_csi_len_align C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_csi_rx_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_data_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_dump_rx_linked_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_ftm_set_callbacks C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_funcs_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wdev_funcs_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wdev_get_promis_ctrl_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_get_promis_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_is_data_in_rxlist C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_is_mgmt_hwdecr_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_mac_reg_load C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_mac_reg_store C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_mac_sleep C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wdev_mac_sleep_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wdev_mac_sleep_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wdev_mac_special_reg_load C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_mac_special_reg_store C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_mac_wakeup C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wdev_process_beacon_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_process_tbtt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_process_tsf_timer C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_record_rx_linked_list C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_set_csi_rx_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_set_promis C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_pkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_set_promis_filter C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_set_promis_misc_buf C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_set_promis_misc_pkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdt_hal_config_stage 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_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) +wdt_hal_disable 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_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_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_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) +wdt_hal_init 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_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_system/libesp_system.a(system_internal.c.obj) +wdt_hal_write_protect_disable 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_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) +wep C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wep_decap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) +wep_encap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) +wifi_action_tx_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_ant_config_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_to_ant_type C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_update C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_update_empty_func C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_ap_pmf_enabled C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) +wifi_ap_reg_rxcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_ap_remove_sta_node_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_ap_sta_sae_auth_done_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_apb80m_release C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wifi_apb80m_request C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wifi_api_lock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_api_unlock C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_bt_common_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +wifi_bt_common_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +wifi_calloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_check_chan_param C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_check_home_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_clear_ap_list_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_coex_pwr_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_configure_wake_interval_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_configure_wake_window_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_connect_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_copy_ap_record C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_create_nan esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +wifi_create_queue esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_create_softap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_create_sta C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +wifi_crypto_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_crypto_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_csi_set_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_deauth_sta_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_deinit_in_caller_task C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_deinit_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_delete_queue esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_destroy_softap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_destroy_sta C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_disable_pmf_config_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_disconnect_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_event_id2str C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +wifi_event_post C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +wifi_force_wakeup_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_ftm_start_initiator_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_get_ap_info_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_ap_list_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_ap_record_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_bw_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_channel_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_country C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_init_state C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_get_macaddr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +wifi_get_protocol_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_rand_macaddr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +wifi_get_rand_macaddr_keep_oui C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +wifi_get_scan_params_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_sta_list_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_tsf_time_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_user_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_gpio_debug C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +wifi_gpio_debug_max_event_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +wifi_hmac_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_hmac_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_init esp-idf/main/libmain.a(wifi_init.c.obj) + esp-idf/main/libmain.a(main.c.obj) +wifi_init_completed C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_init_in_caller_task C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_init_key C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_init_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_internal_ioctl_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_ioctl_ht2040_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_ioctl_ht2040_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_ipc_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_is_started C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_is_stop_in_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_log C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_beacon_offset.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm_coex.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +wifi_malloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_menuconfig_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_act_duty_signaling_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_assoc_expire_set_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_event_post C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +wifi_mesh_ie_crypto_funcs_set_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_crypto_key_set_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_deinit_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_get_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_init_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_set_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_is_roots_found_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_map_deauth_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_parent_candidate_clear_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_get_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_set_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_monitor_get_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_monitor_set_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_cycle_get_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_cycle_set_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_ext_get_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_root_conflicts_set_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_roots_ie_get_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_roots_ie_set_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_router_bssid_get_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_router_bssid_set_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_rssi_threshold_get_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_rssi_threshold_set_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_set_beacon_interval_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_sta_disassoc C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_sta_disassoc_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_switch_channel_progress C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mode_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_nan_set_config_local esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +wifi_nvs_ap_restore C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_item_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_commit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_compare_cfg_diff C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_deinit C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_get C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_get_sta_listen_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wifi_nvs_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_reset_current_ap_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +wifi_nvs_restore C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_set C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_set_sta_listen_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wifi_nvs_sta_restore C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_chan C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_password C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_ssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_country C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_lr_info C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_listen_interval C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_password C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_on_coex_schm_phase_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_on_coex_start_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_osi_funcs_register C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_osi_ready C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_realloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_recycle_rx_pkt C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +wifi_register_mgmt_frame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_register_user_ie_manufacturer_recv_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_reset_mac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_restart_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_restore_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_rf_phy_disable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_rf_phy_enable C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_rifs_mode_en C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +wifi_roc_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_sample_beacon_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_scan_start_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_scan_stop_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_send_mgmt_frame C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_ant C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_ant_gpio C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_appie_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_auto_connect_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_band_mode_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_band_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_bw_nvs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_set_bw_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_channel_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_config_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_country C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_csi C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_default_ssid C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +wifi_set_dynamic_cs_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_event_mask C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_fix_rate_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_gpio_debug_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +wifi_set_home_channel_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_log_mod_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_mac_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_max_tpw C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_mode_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_phy_2nd_chan_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_set_promis_ctrl_filter_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_promis_filter_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_promis_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_protocol_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_ps_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_rssi_threshold C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_rx_policy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_set_rxcb_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_scan_params_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_user_ie C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_vnd_ie_cb_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_vnd_ie_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_wps_cb_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_start_flag C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_status_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_type_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_softap_cacl_mac C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_cur_max_ap_bss_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_get_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_get_station_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_max_support_num C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +wifi_softap_set_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_set_obss_overlap_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_staconnected_event_policy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wifi_softap_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_toomany_deny C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wifi_sta_connect_internal_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_sta_disconnect C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_get_enterprise_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +wifi_sta_get_prof_password C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wifi_sta_reg_eapol_txdone_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_sta_reg_rxcb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_rx_probe_req C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_sta_set_scan_default_params C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_start_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_station_ap_check C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_station_get_config C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_station_get_reconnect_policy C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wifi_station_save_ap_channel C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wifi_station_start C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_station_stop C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_station_wps_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_eapol_start_handle esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wifi_station_wps_eapol_start_handle_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_msg_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_msg_timeout_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_start esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_success esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_success_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_timeout_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_stop_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_stop_sw_txq C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_tbtt_quick_wake_configure_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_txq_empty C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_unregister_user_ie_manufacturer_recv_cb C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_update_listen_interval_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_update_tsf_tick_interval_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_wpa2_ent_disable_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_wpa2_ent_enable_process C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_wpa2_is_started C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wifi_wps_disable_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_wps_enable_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_wps_is_started C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wifi_wps_scan esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_wps_scan_done esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_wps_scan_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wl_clear_ap_no_lr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +wl_is_ap_no_lr C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +wlanif_init esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +wlanif_init_ap esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wlanif_init_nan esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wlanif_init_sta esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wlanif_input esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wpa2_post esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +wpa2_task esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +wpa3_hostap_auth_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa3_hostap_auth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa3_hostap_post_evt esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +wpa_add_kde esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_akm_to_suite esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +wpa_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpa_ap_get_peer_spp_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_get_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_remove esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_attach esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_auth_add_sae_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_auth_for_each_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_gen_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_pmksa_add_sae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +wpa_auth_pmksa_remove esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sm_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sta_associated esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_auth_sta_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_auth_sta_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_auth_sta_no_wpa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_uses_mfp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_auth_uses_sae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpa_cipher_key_len esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_cipher_put_suites esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_cipher_rsc_len esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) +wpa_cipher_to_alg esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_cipher_to_suite esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_cipher_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) +wpa_cipher_valid_mgmt_group esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_cipher_valid_pairwise esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_compare_rsn_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_config_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_config_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_done esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_parse_string esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_crypto_funcs C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a(manatick.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wpa_crypto_funcs_init C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wpa_deattach esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_deauthenticate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +wpa_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_drv_send_action esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +wpa_eapol_key_mic esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_eapol_key_send esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_ether_send esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpa_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpa_gen_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_gen_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_get_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_get_ntp_timestamp esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_insert_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) +wpa_install_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_is_hex esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +wpa_merge_byte_arrays esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +wpa_mic_len esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_michael_mic_failure esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_neg_complete esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_parse_kde_ies esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_parse_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_parse_wpa_ie_rsn esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpa_parse_wpa_ie_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) +wpa_parse_wpa_ie_wpa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_parse_wpa_ie_wrapper esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_pmk_to_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_receive esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_remove_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_report_ie_mismatch esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_res_to_status_code esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_sendto_wrapper esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_set_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_set_passphrase esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_set_pmk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpa_set_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_deauthenticate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_disassociate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_drop_sa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_get_auth_addr esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_get_beacon_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +wpa_sm_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_mlme_setprotection esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_notify_assoc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +wpa_sm_notify_disassoc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_pmksa_cache_flush esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_set_ap_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_assoc_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_key esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_pmk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_pmk_from_pmksa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_state esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_snprintf_hex esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +wpa_snprintf_hex_uppercase esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) +wpa_ssid_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +wpa_sta_clear_curr_pmksa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sta_connect esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sta_cur_pmksa_matches_akm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpa_sta_in_4way_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sta_is_cur_pmksa_set esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +wpa_status_to_reason_code esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_supplicant_clr_countermeasures esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_connect esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +wpa_supplicant_gtk_tx_bit_workaround esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_key_neg_complete esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_pairwise_gtk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_parse_ies esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_process_1_of_4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_send_2_of_4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_stop_countermeasures esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_transition_disable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_use_aes_key_wrap esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_use_akm_defined esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_validate_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_write_rsn_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_write_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpabuf_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpabuf_alloc_copy esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpabuf_alloc_ext_data esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +wpabuf_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpabuf_concat esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_dup esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) +wpabuf_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpabuf_printf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_put esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpabuf_resize esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpabuf_zeropad esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wps_add_discard_ap esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_ap_priority_compar esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_attr_text esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_ap_channel esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) +wps_build_application_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_build_assoc_req_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_build_assoc_resp_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_assoc_state esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_auth_type_flags esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_authenticator esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_config_error esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_config_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_conn_type_flags esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_dev_name esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_dev_password_id esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_device_attrs esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_encr_settings esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_encr_type_flags esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_enrollee_nonce esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_build_key_wrap_auth esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_mac_addr esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_manufacturer esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_model_name esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_model_number esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_msg_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_build_os_version esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_primary_dev_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_probe_req_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_build_public_key esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_build_registrar_nonce esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_build_req_dev_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_req_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_resp_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_rf_bands esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_rf_bands_attr esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_build_secondary_dev_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_serial_number esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_build_uuid_e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_vendor_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_build_vendor_ext_m1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_version esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_wfa_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_wsc_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_wsc_nack esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_check_wifi_mode esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_config_methods_str2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_decrypt_encr_settings esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_delete_timer esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_derive_keys esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_derive_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_dev_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_dev_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_dev_type_bin2str esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_dev_type_str2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_device_data_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_enrollee_get_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_enrollee_process_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_enrollee_process_msg_frag esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_fail_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_finish esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_generate_pin esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_get_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_get_uuid_e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_get_wps_sm_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wps_ie_encapsulate esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_init_cfg_pin esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_is_20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_is_addr_authorized esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_is_selected_pbc_registrar esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_is_selected_pin_registrar esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_kdf esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_model_number esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_parse_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_pbc_active_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_pbc_disable_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_pbc_overlap_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_pbc_timeout_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_pin_checksum esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_pin_str_valid esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_pin_valid esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_post esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_post_block esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_process_ap_settings esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_process_authenticator esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_process_cred esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_process_device_attrs esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_process_key_wrap_auth esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_process_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_process_os_version esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_process_rf_bands esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_process_vendor_ext_m1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_process_wps_mX_req esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_pwd_auth_fail_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_registrar_get_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_registrar_process_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_selected_registrar_timeout_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_send_eap_identity_rsp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_send_frag_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_send_wps_mX_rsp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_set_default_factory esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_set_factory_info esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_sm_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_sm_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_sm_get esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_sm_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_sm_rx_eapol_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_start_msg_timer esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_start_pending esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_stop_process esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_success_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_task esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_task_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_task_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_tx_start esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wr_rf_freq_mem C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +wr_rx_gain_mem C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +write C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/no-rtti\libc.a(libc_a-syswrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) +write_freq_mem_all C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +write_rfpll_sdm C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +x509_crt_bundle esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) +x509_crt_bundle_length esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) +xEventGroupClearBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +xEventGroupCreate esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +xEventGroupCreateStatic esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupGetBitsFromISR esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupGetStaticBuffer esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupSetBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) +xEventGroupSync esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupWaitBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_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(io_mux.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.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_mm/libesp_mm.a(esp_cache_utils.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_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_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/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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/newlib/libnewlib.a(locks.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(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) + esp-idf/esp_system/libesp_system.a(apb_backup_dma.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_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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(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.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(apb_backup_dma.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) +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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) +xQueueCreateMutexStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/newlib/libnewlib.a(locks.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/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) +xQueueGenericCreateStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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/esp_wifi/libesp_wifi.a(esp_adapter.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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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/newlib/libnewlib.a(locks.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_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.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/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueGetMutexHolderFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(locks.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) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/newlib/libnewlib.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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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/newlib/libnewlib.a(locks.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/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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) + esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.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_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.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/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/mqtt_manager/libmqtt_manager.a(mqtt_manager.c.obj) + esp-idf/pthread/libpthread.a(pthread.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/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/pthread/libpthread.a(pthread.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/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/pthread/libpthread.a(pthread.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/mbedtls/mbedtls/library/libmbedcrypto.a(esp_ds_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/mqtt/libmqtt.a(mqtt_client.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.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/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.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) +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/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/newlib/libnewlib.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/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(tasks.c.obj) +xon_task_main C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +xphyQueue C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +xswap C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +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_wifi/libesp_wifi.a(esp_adapter.c.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) +xt_ints_on esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.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_wifi/libesp_wifi.a(esp_adapter.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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +xthal_save_extra_nw C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +xthal_set_intclear C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) +xthal_window_spill C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) diff --git a/build/flash_app_args b/build/flash_app_args new file mode 100644 index 0000000..c0210a8 --- /dev/null +++ b/build/flash_app_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +0x20000 esp32-s3_fota_test_wifi.bin diff --git a/build/flash_args b/build/flash_args new file mode 100644 index 0000000..4e0b70f --- /dev/null +++ b/build/flash_args @@ -0,0 +1,5 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +0x0 bootloader/bootloader.bin +0x20000 esp32-s3_fota_test_wifi.bin +0x8000 partition_table/partition-table.bin +0xe000 ota_data_initial.bin diff --git a/build/flash_args.in b/build/flash_args.in new file mode 100644 index 0000000..cabda34 --- /dev/null +++ b/build/flash_args.in @@ -0,0 +1,5 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +0x0 bootloader/bootloader.bin +0x20000 $.bin +0x8000 partition_table/partition-table.bin +0xe000 ota_data_initial.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..0837e62 --- /dev/null +++ b/build/flash_bootloader_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +0x0 bootloader/bootloader.bin diff --git a/build/flash_project_args b/build/flash_project_args new file mode 100644 index 0000000..4e0b70f --- /dev/null +++ b/build/flash_project_args @@ -0,0 +1,5 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +0x0 bootloader/bootloader.bin +0x20000 esp32-s3_fota_test_wifi.bin +0x8000 partition_table/partition-table.bin +0xe000 ota_data_initial.bin diff --git a/build/flasher_args.json b/build/flasher_args.json new file mode 100644 index 0000000..4902e2a --- /dev/null +++ b/build/flasher_args.json @@ -0,0 +1,26 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "4MB", + "--flash_freq", "80m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "4MB", + "flash_freq": "80m" + }, + "flash_files" : { + "0x0" : "bootloader/bootloader.bin", + "0x20000" : "esp32-s3_fota_test_wifi.bin", + "0x8000" : "partition_table/partition-table.bin", + "0xe000" : "ota_data_initial.bin" + }, + "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x20000", "file" : "esp32-s3_fota_test_wifi.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "otadata" : { "offset" : "0xe000", "file" : "ota_data_initial.bin", "encrypted" : "false" }, + "extra_esptool_args" : { + "after" : "hard_reset", + "before" : "default_reset", + "stub" : true, + "chip" : "esp32s3" + } +} 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..02870d4 --- /dev/null +++ b/build/gdbinit/gdbinit @@ -0,0 +1,2 @@ +source F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/gdbinit/symbols +source F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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..5be6e35 --- /dev/null +++ b/build/gdbinit/symbols @@ -0,0 +1,20 @@ +# Load esp32s3 ROM ELF symbols +define target hookpost-remote +set confirm off + # if $_streq((char *) 0x3ff194ad, "Mar 1 2021") + if (*(int*) 0x3ff194ad) == 0x2072614d && (*(int*) 0x3ff194b1) == 0x32203120 && (*(int*) 0x3ff194b5) == 0x313230 + add-symbol-file C:/Users/Vecmocon/.espressif/tools/esp-rom-elfs/20241011/esp32s3_rev0_rom.elf + else + echo Warning: Unknown esp32s3 ROM revision.\n + end +set confirm on +end + + +# Load bootloader symbols +set confirm off + add-symbol-file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.elf +set confirm on + +# Load application symbols +file F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp32-s3_fota_test_wifi.elf diff --git a/build/kconfigs.in b/build/kconfigs.in new file mode 100644 index 0000000..183a115 --- /dev/null +++ b/build/kconfigs.in @@ -0,0 +1,79 @@ +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/Kconfig" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/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..b00f886 --- /dev/null +++ b/build/kconfigs_projbuild.in @@ -0,0 +1,5 @@ +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild" +source "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild" +source "C:/Users/Vecmocon/esp/v5.5.1/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..1643564 --- /dev/null +++ b/build/ldgen_libraries @@ -0,0 +1,170 @@ +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/xtensa/libxtensa.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx/libcxx.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/libnewlib.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos/libfreertos.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/libesp_hw_support.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap/libheap.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log/liblog.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc/libsoc.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal/libhal.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom/libesp_rom.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common/libesp_common.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/libesp_system.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/xtensa/libxtensa.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash/libspi_flash.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support/libbootloader_support.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/libmbedtls.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm/libesp_pm.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer/libesp_timer.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip/liblwip.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs/libvfs.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart/libesp_driver_uart.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf/libesp_ringbuf.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm/libesp_mm.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs/libvfs.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console/libesp_vfs_console.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security/libesp_security.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/libefuse.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition/libesp_partition.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/libapp_update.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format/libesp_app_format.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm/libesp_mm.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub/libesp_gdbstub.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver/libdriver.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi/libesp_driver_spi.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc/libsdmmc.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai/libesp_driver_twai.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc/libesp_adc.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client/libesp_http_client.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event/libesp_event.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport/libtcp_transport.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls/libesp-tls.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser/libhttp_parser.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server/libesp_http_server.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash/libnvs_flash.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/libmbedtls.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi/libesp_wifi.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy/libesp_phy.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif/libesp_netif.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant/libwpa_supplicant.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex/libesp_coex.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota/libesp_https_ota.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security/libesp_security.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread/libpthread.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm/libesp_pm.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format/libesp_app_format.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/libapp_update.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition/libesp_partition.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/libefuse.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support/libbootloader_support.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash/libspi_flash.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/libesp_system.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common/libesp_common.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom/libesp_rom.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal/libhal.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log/liblog.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap/libheap.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc/libsoc.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/libesp_hw_support.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos/libfreertos.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/libnewlib.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread/libpthread.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx/libcxx.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer/libesp_timer.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf/libesp_ringbuf.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart/libesp_driver_uart.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_trace/libapp_trace.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event/libesp_event.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash/libnvs_flash.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy/libesp_phy.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console/libesp_vfs_console.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip/liblwip.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif/libesp_netif.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant/libwpa_supplicant.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex/libesp_coex.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi/libesp_wifi.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi/libesp_driver_spi.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub/libesp_gdbstub.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity/libunity.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmock/libcmock.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity/libunity.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console/libconsole.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc/libsdmmc.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai/libesp_driver_twai.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver/libdriver.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser/libhttp_parser.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls/libesp-tls.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc/libesp_adc.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_cam/libesp_driver_cam.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_eth/libesp_eth.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hid/libesp_hid.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport/libtcp_transport.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client/libesp_http_client.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server/libesp_http_server.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota/libesp_https_ota.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server/libesp_https_server.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_lcd/libesp_lcd.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c/libprotobuf-c.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm/libprotocomm.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c/libprotobuf-c.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console/libconsole.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm/libprotocomm.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server/libesp_https_server.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/espcoredump/libespcoredump.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling/libwear_levelling.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fatfs/libfatfs.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling/libwear_levelling.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json/libjson.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt/libmqtt.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/perfmon/libperfmon.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rt/librt.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spiffs/libspiffs.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/touch_element/libtouch_element.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/usb/libusb.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wifi_provisioning/libwifi_provisioning.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json/libjson.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/main/libmain.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager/libfota_manager.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager/libftp_manager.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser/librpc_job_parser.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt_manager/libmqtt_manager.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt/libmqtt.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser/librpc_job_parser.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager/libftp_manager.a +F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager/libfota_manager.a diff --git a/build/ldgen_libraries.in b/build/ldgen_libraries.in new file mode 100644 index 0000000..b67a8f1 --- /dev/null +++ b/build/ldgen_libraries.in @@ -0,0 +1,170 @@ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ \ No newline at end of file diff --git a/build/ota_data_initial.bin b/build/ota_data_initial.bin new file mode 100644 index 0000000..b4033a7 --- /dev/null +++ b/build/ota_data_initial.bin @@ -0,0 +1 @@ +ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file diff --git a/build/otadata-flash_args b/build/otadata-flash_args new file mode 100644 index 0000000..5158c30 --- /dev/null +++ b/build/otadata-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +0xe000 ota_data_initial.bin diff --git a/build/partition-table-flash_args b/build/partition-table-flash_args new file mode 100644 index 0000000..356e297 --- /dev/null +++ b/build/partition-table-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 4MB +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..921b87e 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..387b129 --- /dev/null +++ b/build/project_description.json @@ -0,0 +1,3048 @@ +{ + "version": "1.2", + "project_name": "esp32-s3_fota_test_wifi", + "project_version": "1", + "project_path": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi", + "idf_path": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf", + "build_dir": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build", + "config_file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig", + "config_defaults": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/sdkconfig.defaults", + "bootloader_elf": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/bootloader/bootloader.elf", + "app_elf": "esp32-s3_fota_test_wifi.elf", + "app_bin": "esp32-s3_fota_test_wifi.bin", + "build_type": "flash_app", + "git_revision": "v5.5.1", + "target": "esp32s3", + "rev": "", + "min_rev": "0", + "max_rev": "99", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32s3-elf-", + "c_compiler": "C:/Users/Vecmocon/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/Kconfig;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild" + }, + "common_component_reqs": [ "cxx", "newlib", "freertos", "esp_hw_support", "heap", "log", "soc", "hal", "esp_rom", "esp_common", "esp_system", "xtensa" ], + "build_components" : [ "app_trace", "app_update", "bootloader", "bootloader_support", "bt", "cmock", "console", "cxx", "driver", "efuse", "esp-tls", "esp_adc", "esp_app_format", "esp_bootloader_format", "esp_coex", "esp_common", "esp_driver_ana_cmpr", "esp_driver_bitscrambler", "esp_driver_cam", "esp_driver_dac", "esp_driver_gpio", "esp_driver_gptimer", "esp_driver_i2c", "esp_driver_i2s", "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_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_hid", "esp_http_client", "esp_http_server", "esp_https_ota", "esp_https_server", "esp_hw_support", "esp_lcd", "esp_local_ctrl", "esp_mm", "esp_netif", "esp_netif_stack", "esp_partition", "esp_phy", "esp_pm", "esp_psram", "esp_ringbuf", "esp_rom", "esp_security", "esp_system", "esp_timer", "esp_vfs_console", "esp_wifi", "espcoredump", "esptool_py", "fatfs", "fota_manager", "freertos", "ftp_manager", "hal", "heap", "http_parser", "idf_test", "ieee802154", "json", "log", "lwip", "main", "mbedtls", "mqtt", "mqtt_manager", "newlib", "nvs_flash", "nvs_sec_provider", "openthread", "partition_table", "perfmon", "protobuf-c", "protocomm", "pthread", "rpc_job_parser", "rt", "sdmmc", "soc", "spi_flash", "spiffs", "tcp_transport", "touch_element", "ulp", "unity", "usb", "vfs", "wear_levelling", "wifi_provisioning", "wpa_supplicant", "xtensa", "" ], + "build_component_paths" : [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif_stack", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs", "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos", "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip", "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/main", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt", "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread", "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa", "" ], + "build_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace", + "type": "LIBRARY", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_trace/libapp_trace.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/app_trace.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/app_trace_util.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/host_file_io.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace/port/port_uart.c" ], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/app_update/libapp_update.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/esp_ota_ops.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update/esp_ota_app_desc.c" ], + "include_dirs": [ "include" ] + }, + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/secure_boot.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32s3.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_partitions.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp_image_format.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_sha.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/secure_boot_secure_features.c" ], + "include_dirs": [ "include", "bootloader_flash/include" ] + }, + "bt": { + "alias": "idf::bt", + "target": "___idf_bt", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock", + "type": "LIBRARY", + "lib": "__idf_cmock", + "reqs": [ "unity" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cmock/libcmock.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock/CMock/src/cmock.c" ], + "include_dirs": [ "CMock/src" ] + }, + "console": { + "alias": "idf::console", + "target": "___idf_console", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console", + "type": "LIBRARY", + "lib": "__idf_console", + "reqs": [ "vfs", "esp_vfs_console" ], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/console/libconsole.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/commands.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/esp_console_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/esp_console_repl_internal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/split_argv.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/linenoise/linenoise.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/esp_console_repl_chip.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_cmd.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_date.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dbl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dstr.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_end.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_file.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_hashtable.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_int.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_lit.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rem.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rex.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_str.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/arg_utils.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console/argtable3/argtable3.c" ], + "include_dirs": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx", + "type": "LIBRARY", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "esp_system", "pthread" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/cxx/libcxx.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx/cxx_exception_stubs.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx/cxx_guards.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx/cxx_init.cpp" ], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver", + "type": "LIBRARY", + "lib": "__idf_driver", + "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support", "esp_driver_gpio", "esp_driver_pcnt", "esp_driver_gptimer", "esp_driver_spi", "esp_driver_mcpwm", "esp_driver_ana_cmpr", "esp_driver_i2s", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_sdio", "esp_driver_dac", "esp_driver_rmt", "esp_driver_tsens", "esp_driver_sdm", "esp_driver_i2c", "esp_driver_uart", "esp_driver_ledc", "esp_driver_parlio", "esp_driver_usb_serial_jtag", "esp_driver_twai" ], + "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/driver/libdriver.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/adc_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/adc_dma_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/timer_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/i2c/i2c.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/i2s_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/mcpwm_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/pcnt_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/rmt_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/sigma_delta_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/touch_sensor_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/touch_sensor.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver/twai/twai.c" ], + "include_dirs": [ "deprecated", "i2c/include", "touch_sensor/include", "twai/include", "touch_sensor/esp32s3/include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse", + "type": "LIBRARY", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/efuse/libefuse.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_fields.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_rtc_calib.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_utility.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_startup.c" ], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp-tls/libesp-tls.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_error_capture.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_platform_port.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_mbedtls.c" ], + "include_dirs": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc", + "type": "LIBRARY", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_adc/libesp_adc.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_oneshot.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_cali.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_cali_curve_fitting.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_continuous.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_monitor.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/gdma/adc_dma.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/adc_filter.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/esp32s3/curve_fitting_coefficients.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc/deprecated/esp32s3/esp_adc_cal_legacy.c" ], + "include_dirs": [ "include", "interface", "esp32s3/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format", + "type": "LIBRARY", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_app_format/libesp_app_format.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format/esp_app_desc.c" ], + "include_dirs": [ "include" ] + }, + "esp_bootloader_format": { + "alias": "idf::esp_bootloader_format", + "target": "___idf_esp_bootloader_format", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format", + "type": "LIBRARY", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_coex/libesp_coex.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/esp32s3/esp_coex_adapter.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex/src/coexist_debug_diagram.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_common/libesp_common.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_bitscrambler", + "reqs": [], + "priv_reqs": [ "esp_mm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam", + "type": "LIBRARY", + "lib": "__idf_esp_driver_cam", + "reqs": [ "esp_driver_isp", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_cam/libesp_driver_cam.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/src/esp_cam_ctlr_dvp_gdma.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp/src/esp_cam_ctlr_dvp_cam.c" ], + "include_dirs": [ "include", "interface", "dvp/include" ] + }, + "esp_driver_dac": { + "alias": "idf::esp_driver_dac", + "target": "___idf_esp_driver_dac", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_dac", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "./include" ] + }, + "esp_driver_gpio": { + "alias": "idf::esp_driver_gpio", + "target": "___idf_esp_driver_gpio", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio", + "type": "LIBRARY", + "lib": "__idf_esp_driver_gpio", + "reqs": [], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/rtc_io.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_gptimer": { + "alias": "idf::esp_driver_gptimer", + "target": "___idf_esp_driver_gptimer", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer", + "type": "LIBRARY", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c", + "type": "LIBRARY", + "lib": "__idf_esp_driver_i2c", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_master.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_common.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s", + "type": "LIBRARY", + "lib": "__idf_esp_driver_i2s", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_std.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_pdm.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_tdm.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_platform.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_isp": { + "alias": "idf::esp_driver_isp", + "target": "___idf_esp_driver_isp", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_isp", + "reqs": [ "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_jpeg", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm", "esp_psram" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc", + "type": "LIBRARY", + "lib": "__idf_esp_driver_ledc", + "reqs": [ "esp_driver_gpio" ], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm", + "type": "LIBRARY", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cmpr.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_com.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_fault.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_gen.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_oper.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_sync.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_parlio", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt", + "type": "LIBRARY", + "lib": "__idf_esp_driver_pcnt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_ppa", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt", + "type": "LIBRARY", + "lib": "__idf_esp_driver_rmt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_bytes.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_copy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_simple.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_rx.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_tx.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sdio": { + "alias": "idf::esp_driver_sdio", + "target": "___idf_esp_driver_sdio", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_sdio", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdm": { + "alias": "idf::esp_driver_sdm", + "target": "___idf_esp_driver_sdm", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "sdmmc", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/src/sdmmc_transaction.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/src/sdmmc_host.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi", + "type": "LIBRARY", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_spi/libesp_driver_spi.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_touch_sens": { + "alias": "idf::esp_driver_touch_sens", + "target": "___idf_esp_driver_touch_sens", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens", + "type": "LIBRARY", + "lib": "__idf_esp_driver_touch_sens", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/common/touch_sens_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens/hw_ver2/touch_version_specific.c" ], + "include_dirs": [ "include", "hw_ver2/include" ] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens", + "type": "LIBRARY", + "lib": "__idf_esp_driver_tsens", + "reqs": [], + "priv_reqs": [ "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_twai": { + "alias": "idf::esp_driver_twai", + "target": "___idf_esp_driver_twai", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai", + "type": "LIBRARY", + "lib": "__idf_esp_driver_twai", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_twai/libesp_driver_twai.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai/esp_twai.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart", + "type": "LIBRARY", + "lib": "__idf_esp_driver_uart", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_uart/libesp_driver_uart.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uart.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uart_wakeup.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uhci.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", + "type": "LIBRARY", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_vfs.c" ], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_eth/libesp_eth.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/src/esp_eth.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/src/phy/esp_eth_phy_802_3.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c" ], + "include_dirs": [ "include" ] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_event/libesp_event.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/default_event_loop.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event/esp_event.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub", + "type": "LIBRARY", + "lib": "__idf_esp_gdbstub", + "reqs": [ "freertos" ], + "priv_reqs": [ "soc", "esp_rom", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_gdbstub/libesp_gdbstub.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/gdbstub.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/packet.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub_xtensa.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub-entry.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub/src/port/xtensa/xt_debugexception.S" ], + "include_dirs": [ "include" ] + }, + "esp_hid": { + "alias": "idf::esp_hid", + "target": "___idf_esp_hid", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid", + "type": "LIBRARY", + "lib": "__idf_esp_hid", + "reqs": [ "esp_event", "bt" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hid/libesp_hid.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/src/esp_hidd.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid/src/esp_hidh.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_client/libesp_http_client.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/esp_http_client.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/http_auth.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client/lib/http_header.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_http_server/libesp_http_server.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_main.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_parse.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_sess.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_txrx.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_uri.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_ws.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_ota/libesp_https_ota.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_https_server/libesp_https_server.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_driver_gpio", "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/cpu.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/cpu_region_protect.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_clk.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/clk_ctrl_os.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/hw_random.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/intr_alloc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mac_addr.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/periph_ctrl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/revision.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/rtc_module.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/regi2c_ctrl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_gpio_reserve.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/io_mux.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_clk_tree.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma_link.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/spi_bus_lock.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/clk_utils.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_modem.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_modes.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_console.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_usb.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_gpio.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_event.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/systimer.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/mspi_timing_tuning.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_wake_stub.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_clock_output.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/brownout.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_sleep.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_time.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/chip_info.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_memprot.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp_memprot_conv.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/port/esp32s3/sleep_cpu.c" ], + "include_dirs": [ "include", "include/soc", "include/soc/esp32s3", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd", + "type": "LIBRARY", + "lib": "__idf_esp_lcd", + "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], + "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_lcd/libesp_lcd.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_nt35510.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v1.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c_v2.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/spi/esp_lcd_panel_io_spi.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/i80/esp_lcd_panel_io_i80.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd/rgb/esp_lcd_panel_rgb.c" ], + "include_dirs": [ "include", "interface", "rgb/include" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm", + "type": "LIBRARY", + "lib": "__idf_esp_mm", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_mm/libesp_mm.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/esp_mmu_map.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/port/esp32s3/ext_mem_layout.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/esp_cache_msync.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm/esp_cache_utils.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_netif/libesp_netif.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_handlers.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_objects.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_defaults.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip/netif/wlanif.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif/lwip/netif/ethernetif.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition", + "type": "LIBRARY", + "lib": "__idf_esp_partition", + "reqs": [], + "priv_reqs": [ "esp_system", "spi_flash", "partition_table", "bootloader_support", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_partition/libesp_partition.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition/partition.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy", + "type": "LIBRARY", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "esp_driver_gpio", "efuse", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_phy/libesp_phy.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_override.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/src/lib_printf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/esp32s3/phy_init_data.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy/src/btbb_init.c" ], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm", + "type": "LIBRARY", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_pm/libesp_pm.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/pm_locks.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm/pm_trace.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include", "xip_impl/include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf", + "type": "LIBRARY", + "lib": "__idf_esp_ringbuf", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_ringbuf/libesp_ringbuf.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf/ringbuf.c" ], + "include_dirs": [ "include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S" ], + "include_dirs": [ "include", "esp32s3/include", "esp32s3/include/esp32s3", "esp32s3" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security", + "type": "LIBRARY", + "lib": "__idf_esp_security", + "reqs": [], + "priv_reqs": [ "efuse", "esp_hw_support", "esp_system", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_security/libesp_security.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp_hmac.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp_ds.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_lock.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_periph_clk.c" ], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [], + "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "bootloader_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_system/libesp_system.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/esp_err.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/crosscore_int.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/esp_ipc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/esp_system_console.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/freertos_hooks.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/int_wdt.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/panic.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/esp_system.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/startup.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/startup_funcs.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/system_time.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/stack_check.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/ubsan.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/xt_wdt.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/task_wdt/task_wdt.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/cpu_start.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/panic_handler.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/esp_system_chip.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/image_process.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/esp_ipc_isr.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_port.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/panic_arch.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/panic_handler_asm.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers_asm.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/debug_stubs.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/trax.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/highint_hdl.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/clk.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/reset_reason.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/system_internal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/cache_err_int.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/apb_backup_dma.c" ], + "include_dirs": [ "include" ] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer", + "type": "LIBRARY", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_timer/libesp_timer.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/ets_timer_legacy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/system_time.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c" ], + "include_dirs": [ "include" ] + }, + "esp_vfs_console": { + "alias": "idf::esp_vfs_console", + "target": "___idf_esp_vfs_console", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console", + "type": "LIBRARY", + "lib": "__idf_esp_vfs_console", + "reqs": [], + "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_vfs_console/libesp_vfs_console.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console/vfs_console.c" ], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi", + "type": "LIBRARY", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/esp_wifi/libesp_wifi.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/lib_printf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/mesh_event.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/smartconfig.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_default.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_netif.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_default_ap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/esp32s3/esp_adapter.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi/regulatory/esp_wifi_regulatory.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump", + "type": "LIBRARY", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/espcoredump/libespcoredump.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_flash.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_uart.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_elf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_binary.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_sha.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/core_dump_crc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump/src/port/xtensa/core_dump_port.c" ], + "include_dirs": [ "include", "include/port/xtensa" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fatfs/libfatfs.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio_rawflash.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio_wl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src/ff.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/src/ffunicode.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/port/freertos/ffsystem.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio_sdmmc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs/vfs_fat.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c" ], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "fota_manager": { + "alias": "idf::fota_manager", + "target": "___idf_fota_manager", + "prefix": "idf", + "dir": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager", + "type": "LIBRARY", + "lib": "__idf_fota_manager", + "reqs": [ "app_update", "log" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/fota_manager/libfota_manager.a", + "sources": [ "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager/fota_manager.c" ], + "include_dirs": [ "." ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos", + "type": "LIBRARY", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/freertos/libfreertos.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/heap_idf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/app_startup.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/port_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/port_systick.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/list.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/freertos_compatibility.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c", "C:/Users/Vecmocon/esp/v5.5.1/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" ] + }, + "ftp_manager": { + "alias": "idf::ftp_manager", + "target": "___idf_ftp_manager", + "prefix": "idf", + "dir": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager", + "type": "LIBRARY", + "lib": "__idf_ftp_manager", + "reqs": [ "lwip", "esp_netif", "log" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/ftp_manager/libftp_manager.a", + "sources": [ "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager/ftp_manager.c" ], + "include_dirs": [ "." ] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/hal/libhal.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/hal_utils.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mpu_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/efuse_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/efuse_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mmu_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/cache_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/color_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal_iram.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/clk_tree_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/systimer_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/uart_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/uart_hal_iram.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/gpio_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/rtc_io_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/timer_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/ledc_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/ledc_hal_iram.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/i2c_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/i2c_hal_iram.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/rmt_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/pcnt_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mcpwm_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/uhci_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/twai_hal_sja1000.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/gdma_hal_top.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/gdma_hal_ahb_v1.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/i2s_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/sdm_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/sdmmc_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/adc_hal_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/adc_oneshot_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/adc_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/lcd_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/mpi_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/sha_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/aes_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/brownout_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_hal_iram.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_slave_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_slave_hal_iram.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_slave_hd_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal_gpspi.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/hmac_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/ds_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/cam_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/usb_serial_jtag_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/usb_dwc_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/usb_wrap_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/touch_sensor_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/touch_sensor_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/touch_sens_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/xt_wdt_hal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal/esp32s3/rtc_cntl_hal.c" ], + "include_dirs": [ "platform_port/include", "esp32s3/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap", + "type": "LIBRARY", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/heap/libheap.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/heap_caps_base.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/heap_caps.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/heap_caps_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/multi_heap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/tlsf/tlsf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/port/memory_layout_utils.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap/port/esp32s3/memory_layout.c" ], + "include_dirs": [ "include", "tlsf" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser", + "type": "LIBRARY", + "lib": "__idf_http_parser", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/http_parser/libhttp_parser.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser/http_parser.c" ], + "include_dirs": [ "." ] + }, + "idf_test": { + "alias": "idf::idf_test", + "target": "___idf_idf_test", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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/esp32s3" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154", + "type": "CONFIG_ONLY", + "lib": "__idf_ieee802154", + "reqs": [ "esp_coex" ], + "priv_reqs": [ "esp_phy", "esp_timer", "soc", "hal", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "json": { + "alias": "idf::json", + "target": "___idf_json", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json", + "type": "LIBRARY", + "lib": "__idf_json", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/json/libjson.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON/cJSON.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json/cJSON/cJSON_Utils.c" ], + "include_dirs": [ "cJSON" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log", + "type": "LIBRARY", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "hal", "soc", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/log/liblog.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/os/log_timestamp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/os/log_lock.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/os/util.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/util.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_format_text.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_print.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/os/log_write.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_level/log_level.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip", + "type": "LIBRARY", + "lib": "__idf_lwip", + "reqs": [], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/lwip/liblwip.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/apps/sntp/sntp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/api_lib.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/api_msg.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/err.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/if_api.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/netbuf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/netdb.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/netifapi.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/sockets.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/tcpip.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/def.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/dns.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/inet_chksum.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ip.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/mem.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/memp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/netif.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/pbuf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/raw.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/stats.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/sys.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/tcp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/tcp_in.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/tcp_out.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/timeouts.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/udp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ethernet.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/bridgeif.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/slipif.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/hooks/tcp_isn_default.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/debug/lwip_debug.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/sockets_ext.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/freertos/sys_arch.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/if_index.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/acd_dhcp_check.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/apps/ping/esp_ping.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/apps/ping/ping.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/apps/ping/ping_sock.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/arc4.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/des.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md4.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md5.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/sha1.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c" ], + "include_dirs": [ "include", "include/apps", "include/apps/sntp", "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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/main", + "type": "LIBRARY", + "lib": "__idf_main", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/main/libmain.a", + "sources": [ "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/main/main.c", "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/main/wifi_init.c", "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/main/fs_init.c" ], + "include_dirs": [ "." ] + }, + "mbedtls": { + "alias": "idf::mbedtls", + "target": "___idf_mbedtls", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls", + "type": "LIBRARY", + "lib": "__idf_mbedtls", + "reqs": [], + "priv_reqs": [ "soc", "esp_hw_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mbedtls/libmbedtls.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c", "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/x509_crt_bundle.S" ], + "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library", "esp_crt_bundle/include" ] + }, + "mqtt": { + "alias": "idf::mqtt", + "target": "___idf_mqtt", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt", + "type": "LIBRARY", + "lib": "__idf_mqtt", + "reqs": [ "esp_event", "tcp_transport" ], + "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support", "heap" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt/libmqtt.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c" ], + "include_dirs": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include" ] + }, + "mqtt_manager": { + "alias": "idf::mqtt_manager", + "target": "___idf_mqtt_manager", + "prefix": "idf", + "dir": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager", + "type": "LIBRARY", + "lib": "__idf_mqtt_manager", + "reqs": [ "mqtt", "esp_system", "esp_event", "rpc_job_parser", "ftp_manager", "fota_manager", "log" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/mqtt_manager/libmqtt_manager.a", + "sources": [ "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager/mqtt_manager.c" ], + "include_dirs": [ ".", "../../main" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib", + "type": "LIBRARY", + "lib": "__idf_newlib", + "reqs": [], + "priv_reqs": [ "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/newlib/libnewlib.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/abort.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/assert.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/heap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/locks.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/poll.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/pthread.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/random.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/getentropy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/termios.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/stdatomic.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/time.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/sysconf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/realpath.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/scandir.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/syscalls.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/reent_syscalls.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/port/esp_time_impl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/flockfile.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/reent_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/newlib_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib/src/port/esp_time_impl.c" ], + "include_dirs": [ "platform_include" ] + }, + "nvs_flash": { + "alias": "idf::nvs_flash", + "target": "___idf_nvs_flash", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash", + "type": "LIBRARY", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash", "newlib" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_flash/libnvs_flash.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_api.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_page.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_storage.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_types.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_platform.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader_aes.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider", + "type": "LIBRARY", + "lib": "__idf_nvs_sec_provider", + "reqs": [], + "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider/nvs_sec_provider.c" ], + "include_dirs": [ "include" ] + }, + "openthread": { + "alias": "idf::openthread", + "target": "___idf_openthread", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread", + "type": "CONFIG_ONLY", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "driver" ], + "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:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon", + "type": "LIBRARY", + "lib": "__idf_perfmon", + "reqs": [ "xtensa" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/perfmon/libperfmon.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/xtensa_perfmon_access.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon/xtensa_perfmon_apis.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c", + "type": "LIBRARY", + "lib": "__idf_protobuf-c", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protobuf-c/libprotobuf-c.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/protocomm/libprotocomm.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/common/protocomm.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c/constants.pb-c.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c/sec0.pb-c.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c/sec1.pb-c.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c/sec2.pb-c.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/proto-c/session.pb-c.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/transports/protocomm_console.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/transports/protocomm_httpd.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/security/security0.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/security/security1.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/security/security2.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread", + "type": "LIBRARY", + "lib": "__idf_pthread", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/pthread/libpthread.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/pthread.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/pthread_cond_var.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/pthread_local_storage.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/pthread_rwlock.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread/pthread_semaphore.c" ], + "include_dirs": [ "include" ] + }, + "rpc_job_parser": { + "alias": "idf::rpc_job_parser", + "target": "___idf_rpc_job_parser", + "prefix": "idf", + "dir": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser", + "type": "LIBRARY", + "lib": "__idf_rpc_job_parser", + "reqs": [ "json" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rpc_job_parser/librpc_job_parser.a", + "sources": [ "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser/rpc_job_parser.c" ], + "include_dirs": [ "." ] + }, + "rt": { + "alias": "idf::rt", + "target": "___idf_rt", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt", + "type": "LIBRARY", + "lib": "__idf_rt", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/rt/librt.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/FreeRTOS_POSIX_mqueue.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt/FreeRTOS_POSIX_utils.c" ], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc", + "type": "LIBRARY", + "lib": "__idf_sdmmc", + "reqs": [], + "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/sdmmc/libsdmmc.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_cmd.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_io.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_mmc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_sd.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c" ], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/soc/libsoc.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/lldesc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/dport_access_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/interrupts.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/gpio_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/uart_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/adc_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/dedic_gpio_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/gdma_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/spi_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/ledc_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/pcnt_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/rmt_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/sdm_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/i2s_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/i2c_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/temperature_sensor_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/timer_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/lcd_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/mcpwm_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/mpi_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/sdmmc_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/touch_sensor_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/twai_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/wdt_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/usb_dwc_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/rtc_io_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/cam_periph.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc/esp32s3/power_supply_periph.c" ], + "include_dirs": [ "include", "esp32s3", "esp32s3/include", "esp32s3/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash", + "type": "LIBRARY", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "app_update", "soc", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spi_flash/libspi_flash.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/flash_brownout_hook.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_hpm_enable.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_drivers.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_generic.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_issi.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_gd.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_winbond.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_boya.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_th.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/memspi_host_driver.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/cache_utils.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/flash_mmap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/flash_ops.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_wrap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/esp_flash_api.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/esp_flash_spi_init.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_os_func_app.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs", + "type": "LIBRARY", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/spiffs/libspiffs.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs_api.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_check.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs/esp_spiffs.c" ], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/tcp_transport/libtcp_transport.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/transport.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/transport_ssl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/transport_internal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/transport_socks_proxy.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport/transport_ws.c" ], + "include_dirs": [ "include" ] + }, + "touch_element": { + "alias": "idf::touch_element", + "target": "___idf_touch_element", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element", + "type": "LIBRARY", + "lib": "__idf_touch_element", + "reqs": [ "driver" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/touch_element/libtouch_element.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/touch_element.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/touch_button.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/touch_slider.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element/touch_matrix.c" ], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp", + "type": "CONFIG_ONLY", + "lib": "__idf_ulp", + "reqs": [ "driver", "esp_adc" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "unity": { + "alias": "idf::unity", + "target": "___idf_unity", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity", + "type": "LIBRARY", + "lib": "__idf_unity", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/unity/libunity.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity/src/unity.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_compat.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_runner.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_utils_freertos.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_utils_cache.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_utils_memory.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/unity_port_esp32.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c" ], + "include_dirs": [ "include", "unity/src" ] + }, + "usb": { + "alias": "idf::usb", + "target": "___idf_usb", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb", + "type": "LIBRARY", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/usb/libusb.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/hcd_dwc.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/enum.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/hub.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/usb_helpers.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/usb_host.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/usb_private.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/usbh.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb/usb_phy.c" ], + "include_dirs": [ "include" ] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs", + "type": "LIBRARY", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/vfs/libvfs.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/vfs.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/vfs_eventfd.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/vfs_semihost.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs/nullfs.c" ], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling", + "type": "LIBRARY", + "lib": "__idf_wear_levelling", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wear_levelling/libwear_levelling.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/Partition.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/SPI_Flash.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Flash.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/crc32.cpp", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling/wear_levelling.cpp" ], + "include_dirs": [ "include" ] + }, + "wifi_provisioning": { + "alias": "idf::wifi_provisioning", + "target": "___idf_wifi_provisioning", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning", + "type": "LIBRARY", + "lib": "__idf_wifi_provisioning", + "reqs": [ "lwip", "protocomm" ], + "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wifi_provisioning/libwifi_provisioning.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/wifi_config.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/wifi_scan.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/wifi_ctrl.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/manager.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/handlers.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/scheme_console.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning/src/scheme_softap.c" ], + "include_dirs": [ "include" ] + }, + "wpa_supplicant": { + "alias": "idf::wpa_supplicant", + "target": "___idf_wpa_supplicant", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/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": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/wpa_supplicant/libwpa_supplicant.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/os_xtensa.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/port/eloop.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/ap/ap_config.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/ap/pmksa_cache_auth.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/ap/sta_info.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/ap/ieee802_11.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/ap/comeback_token.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/common/sae.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/common/dragonfly.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/common/wpa_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils/bitfield.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/aes-siv.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-kdf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/aes-gcm.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-tlsprf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-tlsprf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/sha384-tlsprf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/sha256-prf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-prf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/sha384-prf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/sha1-tprf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_common/eap_wsc_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/common/ieee802_11_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils/base64.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils/common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils/ext_password.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils/uuid.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/utils/json.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/wps/wps.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/wps/wps_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/common/sae_pk.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_common.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wps.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_owe.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpsk.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/rc4.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c", "C:/Users/Vecmocon/esp/v5.5.1/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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa", + "type": "LIBRARY", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/esp-idf/xtensa/libxtensa.a", + "sources": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/eri.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xt_trax.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xtensa_context.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xtensa_intr_asm.S", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xtensa_intr.c", "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa/xtensa_vectors.S" ], + "include_dirs": [ "esp32s3/include", "include", "deprecated_include" ] + } + }, + "all_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_trace", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/app_update", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bootloader_support", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "spi_flash", "mbedtls", "efuse", "heap", "esp_bootloader_format", "esp_app_format" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "bootloader_flash/include" ] + }, + "bt": { + "alias": "idf::bt", + "target": "___idf_bt", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/bt", + "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" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cmock", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console", + "lib": "__idf_console", + "reqs": [ "vfs", "esp_vfs_console" ], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/console" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/cxx", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/driver", + "lib": "__idf_driver", + "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support", "esp_driver_gpio", "esp_driver_pcnt", "esp_driver_gptimer", "esp_driver_spi", "esp_driver_mcpwm", "esp_driver_ana_cmpr", "esp_driver_i2s", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_sdio", "esp_driver_dac", "esp_driver_rmt", "esp_driver_tsens", "esp_driver_sdm", "esp_driver_i2c", "esp_driver_uart", "esp_driver_ledc", "esp_driver_parlio", "esp_driver_usb_serial_jtag", "esp_driver_twai" ], + "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "deprecated", "i2c/include", "touch_sensor/include", "twai/include", "touch_sensor/esp32s3/include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/efuse", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls", + "lib": "__idf_esp-tls", + "reqs": [ "mbedtls" ], + "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp-tls", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_adc", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "esp32s3/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_app_format", + "lib": "__idf_esp_app_format", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_bootloader_format", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_coex", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_common", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler", + "lib": "__idf_esp_driver_bitscrambler", + "reqs": [], + "priv_reqs": [ "esp_mm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_cam", + "lib": "__idf_esp_driver_cam", + "reqs": [ "esp_driver_isp", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "dvp/include" ] + }, + "esp_driver_dac": { + "alias": "idf::esp_driver_dac", + "target": "___idf_esp_driver_dac", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_dac", + "lib": "__idf_esp_driver_dac", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gpio", + "lib": "__idf_esp_driver_gpio", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_gptimer", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2c", + "lib": "__idf_esp_driver_i2c", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_i2s", + "lib": "__idf_esp_driver_i2s", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_isp", + "lib": "__idf_esp_driver_isp", + "reqs": [ "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_jpeg", + "lib": "__idf_esp_driver_jpeg", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm", "esp_psram" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ledc", + "lib": "__idf_esp_driver_ledc", + "reqs": [ "esp_driver_gpio" ], + "priv_reqs": [ "esp_pm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_parlio", + "lib": "__idf_esp_driver_parlio", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_pcnt", + "lib": "__idf_esp_driver_pcnt", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_ppa", + "lib": "__idf_esp_driver_ppa", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_rmt", + "lib": "__idf_esp_driver_rmt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdio", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdm", + "lib": "__idf_esp_driver_sdm", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "sdmmc", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_sdspi", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_spi", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens", + "lib": "__idf_esp_driver_touch_sens", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "hw_ver2/include" ] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_tsens", + "lib": "__idf_esp_driver_tsens", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_twai", + "lib": "__idf_esp_driver_twai", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_uart", + "lib": "__idf_esp_driver_uart", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf", "esp_mm" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_eth", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_event", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_gdbstub", + "lib": "__idf_esp_gdbstub", + "reqs": [ "freertos" ], + "priv_reqs": [ "soc", "esp_rom", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hid": { + "alias": "idf::esp_hid", + "target": "___idf_esp_hid", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hid", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_client", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_http_server", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_ota", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_https_server", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_hw_support", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_driver_gpio", "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/soc", "include/soc/esp32s3", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_lcd", + "lib": "__idf_esp_lcd", + "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], + "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "rgb/include" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_local_ctrl", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_mm", + "lib": "__idf_esp_mm", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_netif": { + "alias": "idf::esp_netif", + "target": "___idf_esp_netif", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_netif_stack", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_partition", + "lib": "__idf_esp_partition", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_phy", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "esp_driver_gpio", "efuse", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_pm", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_psram", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "xip_impl/include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_ringbuf", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_rom", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include", "esp32s3/include/esp32s3", "esp32s3" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_security", + "lib": "__idf_esp_security", + "reqs": [], + "priv_reqs": [ "efuse", "esp_hw_support", "esp_system", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_system", + "lib": "__idf_esp_system", + "reqs": [], + "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "bootloader_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_tee": { + "alias": "idf::esp_tee", + "target": "___idf_esp_tee", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_tee", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_timer", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_vfs_console": { + "alias": "idf::esp_vfs_console", + "target": "___idf_esp_vfs_console", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_vfs_console", + "lib": "__idf_esp_vfs_console", + "reqs": [], + "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esp_wifi", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "esptool_py", "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/espcoredump", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/port/xtensa" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/esptool_py", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/fatfs", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], + "priv_reqs": [ "vfs", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/freertos", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/hal", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_port/include", "esp32s3/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/heap", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/http_parser", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/idf_test", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32s3" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ieee802154", + "lib": "__idf_ieee802154", + "reqs": [ "esp_coex" ], + "priv_reqs": [ "esp_phy", "esp_timer", "soc", "hal", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "json": { + "alias": "idf::json", + "target": "___idf_json", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/json", + "lib": "__idf_json", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "cJSON" ] + }, + "linux": { + "alias": "idf::linux", + "target": "___idf_linux", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/linux", + "lib": "__idf_linux", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "cJSON" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/log", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/lwip", + "lib": "__idf_lwip", + "reqs": [], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/apps", "include/apps/sntp", "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mbedtls", + "lib": "__idf_mbedtls", + "reqs": [], + "priv_reqs": [ "soc", "esp_hw_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library", "esp_crt_bundle/include" ] + }, + "mqtt": { + "alias": "idf::mqtt", + "target": "___idf_mqtt", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt", + "lib": "__idf_mqtt", + "reqs": [ "esp_event", "tcp_transport" ], + "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support", "heap" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/newlib", + "lib": "__idf_newlib", + "reqs": [], + "priv_reqs": [ "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_include" ] + }, + "nvs_flash": { + "alias": "idf::nvs_flash", + "target": "___idf_nvs_flash", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_flash", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash", "newlib" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/nvs_sec_provider", + "lib": "__idf_nvs_sec_provider", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/openthread", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "driver" ], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/partition_table", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/perfmon", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protobuf-c", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/protocomm", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/pthread", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/riscv", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/rt", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/sdmmc", + "lib": "__idf_sdmmc", + "reqs": [], + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/soc", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3", "esp32s3/include", "esp32s3/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spi_flash", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "app_update", "soc", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "spiffs": { + "alias": "idf::spiffs", + "target": "___idf_spiffs", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/spiffs", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/tcp_transport", + "lib": "__idf_tcp_transport", + "reqs": [ "esp-tls", "lwip", "esp_timer" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "touch_element": { + "alias": "idf::touch_element", + "target": "___idf_touch_element", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/touch_element", + "lib": "__idf_touch_element", + "reqs": [ "driver" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/ulp", + "lib": "__idf_ulp", + "reqs": [ "driver", "esp_adc" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "unity": { + "alias": "idf::unity", + "target": "___idf_unity", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/unity", + "lib": "__idf_unity", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "unity/src" ] + }, + "usb": { + "alias": "idf::usb", + "target": "___idf_usb", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/usb", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/vfs", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wear_levelling", + "lib": "__idf_wear_levelling", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wifi_provisioning": { + "alias": "idf::wifi_provisioning", + "target": "___idf_wifi_provisioning", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wifi_provisioning", + "lib": "__idf_wifi_provisioning", + "reqs": [ "lwip", "protocomm" ], + "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wpa_supplicant": { + "alias": "idf::wpa_supplicant", + "target": "___idf_wpa_supplicant", + "prefix": "idf", + "dir": "C:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/wpa_supplicant", + "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:/Users/Vecmocon/esp/v5.5.1/esp-idf/components/xtensa", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32s3/include", "include", "deprecated_include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/main", + "lib": "__idf_main", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "." ] + }, + "fota_manager": { + "alias": "idf::fota_manager", + "target": "___idf_fota_manager", + "prefix": "idf", + "dir": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/fota_manager", + "lib": "__idf_fota_manager", + "reqs": [ "app_update", "log" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "." ] + }, + "ftp_manager": { + "alias": "idf::ftp_manager", + "target": "___idf_ftp_manager", + "prefix": "idf", + "dir": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/ftp_manager", + "lib": "__idf_ftp_manager", + "reqs": [ "lwip", "esp_netif", "log" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "." ] + }, + "mqtt_manager": { + "alias": "idf::mqtt_manager", + "target": "___idf_mqtt_manager", + "prefix": "idf", + "dir": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/mqtt_manager", + "lib": "__idf_mqtt_manager", + "reqs": [ "mqtt", "esp_system", "esp_event", "rpc_job_parser", "ftp_manager", "fota_manager", "log" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ ".", "../../main" ] + }, + "rpc_job_parser": { + "alias": "idf::rpc_job_parser", + "target": "___idf_rpc_job_parser", + "prefix": "idf", + "dir": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/components/rpc_job_parser", + "lib": "__idf_rpc_job_parser", + "reqs": [ "json" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "." ] + } + }, + "debug_prefix_map_gdbinit": "", + "gdbinit_files": { + "01_symbols": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/gdbinit/symbols", + "02_prefix_map": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/gdbinit/prefix_map", + "03_py_extensions": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/gdbinit/py_extensions", + "04_connect": "F:/ESP_32_Projects/esp32-s3_fota_test_wifi/build/gdbinit/connect" + }, + "debug_arguments_openocd": "-f board/esp32s3-builtin.cfg" +} diff --git a/build/project_elf_src_esp32s3.c b/build/project_elf_src_esp32s3.c new file mode 100644 index 0000000..e69de29 diff --git a/build/x509_crt_bundle.S b/build/x509_crt_bundle.S new file mode 100644 index 0000000..049a852 --- /dev/null +++ b/build/x509_crt_bundle.S @@ -0,0 +1,4336 @@ +/* * Data converted from F:/ESP_32_Projects/esp32-s3_fota_test_wifi/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 0x58, 0x02, 0x00, 0x00, 0xb8, 0x03, 0x00, 0x00, 0x1b, 0x06, 0x00, 0x00, 0x7f, 0x08, 0x00, 0x00 +.byte 0xe4, 0x09, 0x00, 0x00, 0x49, 0x0c, 0x00, 0x00, 0xe3, 0x0c, 0x00, 0x00, 0x9a, 0x0d, 0x00, 0x00 +.byte 0x01, 0x10, 0x00, 0x00, 0x68, 0x11, 0x00, 0x00, 0xd0, 0x12, 0x00, 0x00, 0x39, 0x15, 0x00, 0x00 +.byte 0xf4, 0x15, 0x00, 0x00, 0x5d, 0x18, 0x00, 0x00, 0xca, 0x1a, 0x00, 0x00, 0x37, 0x1d, 0x00, 0x00 +.byte 0xa5, 0x1f, 0x00, 0x00, 0x14, 0x22, 0x00, 0x00, 0x84, 0x24, 0x00, 0x00, 0xf4, 0x25, 0x00, 0x00 +.byte 0x64, 0x27, 0x00, 0x00, 0xd5, 0x29, 0x00, 0x00, 0x46, 0x2c, 0x00, 0x00, 0xb7, 0x2e, 0x00, 0x00 +.byte 0x7a, 0x2f, 0x00, 0x00, 0x3e, 0x30, 0x00, 0x00, 0xb0, 0x32, 0x00, 0x00, 0x23, 0x35, 0x00, 0x00 +.byte 0xe8, 0x35, 0x00, 0x00, 0x5b, 0x38, 0x00, 0x00, 0xce, 0x3a, 0x00, 0x00, 0x93, 0x3b, 0x00, 0x00 +.byte 0x58, 0x3c, 0x00, 0x00, 0xcc, 0x3e, 0x00, 0x00, 0x40, 0x41, 0x00, 0x00, 0xb4, 0x43, 0x00, 0x00 +.byte 0x7a, 0x44, 0x00, 0x00, 0xee, 0x46, 0x00, 0x00, 0xb4, 0x47, 0x00, 0x00, 0x28, 0x4a, 0x00, 0x00 +.byte 0x9c, 0x4b, 0x00, 0x00, 0x12, 0x4e, 0x00, 0x00, 0x88, 0x4f, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00 +.byte 0x78, 0x53, 0x00, 0x00, 0x42, 0x54, 0x00, 0x00, 0xba, 0x56, 0x00, 0x00, 0x33, 0x59, 0x00, 0x00 +.byte 0xac, 0x5a, 0x00, 0x00, 0x25, 0x5d, 0x00, 0x00, 0x9e, 0x5f, 0x00, 0x00, 0x18, 0x62, 0x00, 0x00 +.byte 0x92, 0x64, 0x00, 0x00, 0x5e, 0x65, 0x00, 0x00, 0x2a, 0x66, 0x00, 0x00, 0xa4, 0x68, 0x00, 0x00 +.byte 0x1e, 0x6b, 0x00, 0x00, 0xea, 0x6b, 0x00, 0x00, 0xb6, 0x6c, 0x00, 0x00, 0x30, 0x6f, 0x00, 0x00 +.byte 0xab, 0x71, 0x00, 0x00, 0x26, 0x74, 0x00, 0x00, 0xf3, 0x74, 0x00, 0x00, 0x6f, 0x76, 0x00, 0x00 +.byte 0xeb, 0x78, 0x00, 0x00, 0x9c, 0x79, 0x00, 0x00, 0x6a, 0x7a, 0x00, 0x00, 0xe7, 0x7c, 0x00, 0x00 +.byte 0x64, 0x7e, 0x00, 0x00, 0xe1, 0x80, 0x00, 0x00, 0xb0, 0x81, 0x00, 0x00, 0x2d, 0x83, 0x00, 0x00 +.byte 0xaa, 0x85, 0x00, 0x00, 0x28, 0x88, 0x00, 0x00, 0xa8, 0x8a, 0x00, 0x00, 0x7a, 0x8b, 0x00, 0x00 +.byte 0xfc, 0x8d, 0x00, 0x00, 0x7e, 0x8f, 0x00, 0x00, 0x01, 0x91, 0x00, 0x00, 0x87, 0x93, 0x00, 0x00 +.byte 0x5f, 0x94, 0x00, 0x00, 0xe5, 0x96, 0x00, 0x00, 0x6b, 0x98, 0x00, 0x00, 0x43, 0x99, 0x00, 0x00 +.byte 0xcc, 0x9a, 0x00, 0x00, 0x56, 0x9d, 0x00, 0x00, 0x33, 0x9e, 0x00, 0x00, 0xbe, 0xa0, 0x00, 0x00 +.byte 0x49, 0xa2, 0x00, 0x00, 0x28, 0xa3, 0x00, 0x00, 0xb5, 0xa5, 0x00, 0x00, 0x42, 0xa7, 0x00, 0x00 +.byte 0xcf, 0xa8, 0x00, 0x00, 0xae, 0xa9, 0x00, 0x00, 0x3c, 0xac, 0x00, 0x00, 0xca, 0xae, 0x00, 0x00 +.byte 0xab, 0xaf, 0x00, 0x00, 0x3a, 0xb2, 0x00, 0x00, 0xc7, 0xb3, 0x00, 0x00, 0x58, 0xb5, 0x00, 0x00 +.byte 0xe9, 0xb6, 0x00, 0x00, 0xcc, 0xb7, 0x00, 0x00, 0xaf, 0xb8, 0x00, 0x00, 0x40, 0xbb, 0x00, 0x00 +.byte 0xd3, 0xbc, 0x00, 0x00, 0x65, 0xbe, 0x00, 0x00, 0xfa, 0xc0, 0x00, 0x00, 0xe3, 0xc1, 0x00, 0x00 +.byte 0x7a, 0xc4, 0x00, 0x00, 0x64, 0xc5, 0x00, 0x00, 0xfc, 0xc7, 0x00, 0x00, 0x94, 0xc9, 0x00, 0x00 +.byte 0x2d, 0xcb, 0x00, 0x00, 0x18, 0xcc, 0x00, 0x00, 0x04, 0xcd, 0x00, 0x00, 0x9f, 0xcf, 0x00, 0x00 +.byte 0x71, 0xd0, 0x00, 0x00, 0x63, 0xd1, 0x00, 0x00, 0x59, 0xd2, 0x00, 0x00, 0xff, 0xd4, 0x00, 0x00 +.byte 0xa6, 0xd6, 0x00, 0x00, 0xa0, 0xd7, 0x00, 0x00, 0x48, 0xda, 0x00, 0x00, 0xf2, 0xdb, 0x00, 0x00 +.byte 0xef, 0xdc, 0x00, 0x00, 0x9c, 0xdf, 0x00, 0x00, 0x4a, 0xe1, 0x00, 0x00, 0xf9, 0xe2, 0x00, 0x00 +.byte 0xa8, 0xe4, 0x00, 0x00, 0x57, 0xe6, 0x00, 0x00, 0x06, 0xe9, 0x00, 0x00, 0xb5, 0xea, 0x00, 0x00 +.byte 0x65, 0xec, 0x00, 0x00, 0x16, 0xef, 0x00, 0x00, 0x1a, 0xf0, 0x00, 0x00, 0xcc, 0xf2, 0x00, 0x00 +.byte 0x81, 0xf5, 0x00, 0x00, 0x88, 0xf6, 0x00, 0x00, 0x3d, 0xf9, 0x00, 0x00, 0xf9, 0xfa, 0x00, 0x00 +.byte 0xec, 0xfb, 0x00, 0x00, 0xfc, 0xfc, 0x00, 0x00, 0xc1, 0xfe, 0x00, 0x00, 0x94, 0x01, 0x01, 0x00 +.byte 0x68, 0x03, 0x01, 0x00, 0x91, 0x04, 0x01, 0x00, 0x6e, 0x06, 0x01, 0x00, 0x4f, 0x08, 0x01, 0x00 +.byte 0x3a, 0x0a, 0x01, 0x00, 0x78, 0x0b, 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, 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, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09 +.byte 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50, 0x75 +.byte 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x2d, 0x30, 0x31, 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, 0x4b, 0x36 +.byte 0xe9, 0xae, 0x57, 0x5e, 0xa8, 0x70, 0xd7, 0xd0, 0x8f, 0x74, 0x62, 0x77, 0xc3, 0x5e, 0x7a, 0xaa +.byte 0xe5, 0xb6, 0xa2, 0xf1, 0x78, 0xfd, 0x02, 0x7e, 0x57, 0xdd, 0x91, 0x79, 0x9c, 0x6c, 0xb9, 0x52 +.byte 0x88, 0x54, 0xbc, 0x2f, 0x04, 0xbe, 0xb8, 0xcd, 0xf6, 0x10, 0xd1, 0x29, 0xec, 0xb5, 0xd0, 0xa0 +.byte 0xc3, 0xf0, 0x89, 0x70, 0x19, 0xbb, 0x51, 0x65, 0xc5, 0x43, 0x9c, 0xc3, 0x9b, 0x63, 0x9d, 0x20 +.byte 0x83, 0x3e, 0x06, 0x0b, 0xa6, 0x42, 0x44, 0x85, 0x11, 0xa7, 0x4a, 0x3a, 0x2d, 0xe9, 0xd6, 0x68 +.byte 0x2f, 0x48, 0x4e, 0x53, 0x2b, 0x07, 0x3f, 0x4d, 0xbd, 0xb9, 0xac, 0x77, 0x39, 0x57, 0x50, 0x00 +.byte 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x43, 0x6f, 0x6d, 0x6d +.byte 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22 +.byte 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63 +.byte 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x2d +.byte 0x30, 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, 0x78, 0x30, 0x81, 0xe8, 0x63, 0x1e +.byte 0xe5, 0xeb, 0x71, 0x51, 0x0f, 0xf7, 0x07, 0x07, 0xca, 0x39, 0x99, 0x7c, 0x4e, 0xd5, 0x0f, 0xcc +.byte 0x30, 0x30, 0x0b, 0x8f, 0x66, 0x93, 0x3e, 0xcf, 0xbd, 0xc5, 0x86, 0xbd, 0xf9, 0xb1, 0xb7, 0xb4 +.byte 0x3e, 0xb4, 0x07, 0xc8, 0xf3, 0x96, 0x31, 0xf3, 0xed, 0xa4, 0x4f, 0xf8, 0xa3, 0x4e, 0x8d, 0x29 +.byte 0x15, 0x58, 0xb8, 0xd5, 0x6f, 0x7f, 0xee, 0x6c, 0x22, 0xb5, 0xb0, 0xaf, 0x48, 0x45, 0x0a, 0xbd +.byte 0xa8, 0x49, 0x94, 0xbf, 0x84, 0x43, 0xb0, 0xdb, 0x84, 0x4a, 0x03, 0x23, 0x19, 0x67, 0x6a, 0x6f +.byte 0xc1, 0x6e, 0xbc, 0x06, 0x39, 0x37, 0xd1, 0x88, 0x22, 0xf7, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30 +.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70 +.byte 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d +.byte 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x2d, 0x30, 0x31, 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, 0xb0 +.byte 0x48, 0x65, 0xa3, 0x0d, 0x1d, 0x42, 0xe3, 0x91, 0x6d, 0x9d, 0x84, 0xa4, 0x61, 0x96, 0x12, 0xc2 +.byte 0xed, 0xc3, 0xda, 0x23, 0x34, 0x19, 0x76, 0xf6, 0xea, 0xfd, 0x55, 0x5a, 0xf6, 0x55, 0x01, 0x53 +.byte 0x0f, 0xf2, 0xcc, 0x8c, 0x97, 0x4f, 0xb9, 0x50, 0xcb, 0xb3, 0x01, 0x44, 0x56, 0x96, 0xfd, 0x9b +.byte 0x28, 0xec, 0x7b, 0x74, 0x0b, 0xe7, 0x42, 0x6b, 0x55, 0xce, 0xc9, 0x61, 0xb2, 0xe8, 0xad, 0x40 +.byte 0x3c, 0xba, 0xb9, 0x41, 0x0a, 0x05, 0x4f, 0x1b, 0x26, 0x85, 0x8f, 0x43, 0xb5, 0x40, 0xb5, 0x85 +.byte 0xd1, 0xd4, 0x71, 0xdc, 0x83, 0x41, 0xf3, 0xf6, 0x45, 0xc7, 0x80, 0xa2, 0x84, 0x50, 0x97, 0x46 +.byte 0xce, 0xa0, 0x0c, 0xc4, 0x60, 0x56, 0x04, 0x1d, 0x07, 0x5b, 0x46, 0xa5, 0x0e, 0xb2, 0x4b, 0xa4 +.byte 0x0e, 0xa5, 0x7c, 0xee, 0xf8, 0xd4, 0x62, 0x03, 0xb9, 0x93, 0x6a, 0x8a, 0x14, 0xb8, 0x70, 0xf8 +.byte 0x2e, 0x82, 0x46, 0x38, 0x23, 0x0e, 0x74, 0xc7, 0x6b, 0x41, 0xb7, 0xd0, 0x29, 0xa3, 0x9d, 0x80 +.byte 0xb0, 0x7e, 0x77, 0x93, 0x63, 0x42, 0xfb, 0x34, 0x83, 0x3b, 0x73, 0xa3, 0x5a, 0x21, 0x36, 0xeb +.byte 0x47, 0xfa, 0x18, 0x17, 0xd9, 0xba, 0x66, 0xc2, 0x93, 0xa4, 0x8f, 0xfc, 0x5d, 0xa4, 0xad, 0xfc +.byte 0x50, 0x6a, 0x95, 0xac, 0xbc, 0x24, 0x33, 0xd1, 0xbd, 0x88, 0x7f, 0x86, 0xf5, 0xf5, 0xb2, 0x73 +.byte 0x2a, 0x8f, 0x7c, 0xaf, 0x08, 0xf2, 0x1a, 0x98, 0x3f, 0xa9, 0x81, 0x65, 0x3f, 0xc1, 0x8c, 0x89 +.byte 0xc5, 0x96, 0x30, 0x9a, 0x0a, 0xcf, 0xf4, 0xd4, 0xc8, 0x34, 0xed, 0x9d, 0x2f, 0xbc, 0x8d, 0x38 +.byte 0x86, 0x53, 0xee, 0x97, 0x9f, 0xa9, 0xb2, 0x63, 0x94, 0x17, 0x8d, 0x0f, 0xdc, 0x66, 0x2a, 0x7c +.byte 0x52, 0x51, 0x75, 0xcb, 0x99, 0x8e, 0xe8, 0x3d, 0x5c, 0xbf, 0x9e, 0x3b, 0x28, 0x8d, 0x83, 0x02 +.byte 0x0f, 0xa9, 0x9f, 0x72, 0xe2, 0x2c, 0x2b, 0xb3, 0xdc, 0x66, 0x97, 0x00, 0x40, 0xd0, 0xa4, 0x54 +.byte 0x8e, 0x9b, 0x5d, 0x7b, 0x45, 0x36, 0x26, 0xd6, 0x72, 0x43, 0xeb, 0xcf, 0xc0, 0xea, 0x0d, 0xdc +.byte 0xce, 0x12, 0xe6, 0x7d, 0x38, 0x9f, 0x05, 0x27, 0xa8, 0x97, 0x3e, 0xe9, 0x51, 0xc6, 0x6c, 0x05 +.byte 0x28, 0xc1, 0x02, 0x0f, 0xe9, 0x18, 0x6d, 0xec, 0xbd, 0x9c, 0x06, 0xd4, 0xa7, 0x49, 0xf4, 0x54 +.byte 0x05, 0x6b, 0x6c, 0x30, 0xf1, 0xeb, 0x03, 0xd5, 0xea, 0x3d, 0x6a, 0x76, 0xc2, 0xcb, 0x1a, 0x28 +.byte 0x49, 0x4d, 0x7f, 0x64, 0xe0, 0xfa, 0x2b, 0xda, 0x73, 0x83, 0x81, 0xff, 0x91, 0x03, 0xbd, 0x94 +.byte 0xbb, 0xe4, 0xb8, 0x8e, 0x9c, 0x32, 0x63, 0xcd, 0x9f, 0xbb, 0x68, 0x81, 0xb1, 0x84, 0x5b, 0xaf +.byte 0x36, 0xbf, 0x77, 0xee, 0x1d, 0x7f, 0xf7, 0x49, 0x9b, 0x52, 0xec, 0xd2, 0x77, 0x5a, 0x7d, 0x91 +.byte 0x9d, 0x4d, 0xc2, 0x39, 0x2d, 0xe4, 0xba, 0x82, 0xf8, 0x6f, 0xf2, 0x4e, 0x1e, 0x0f, 0x4e, 0xe6 +.byte 0x3f, 0x59, 0xa5, 0x23, 0xdc, 0x3d, 0x87, 0xa8, 0x28, 0x58, 0x28, 0xd1, 0xf1, 0x1b, 0x36, 0xdb +.byte 0x4f, 0xc4, 0xff, 0xe1, 0x8c, 0x5b, 0x72, 0x8c, 0xc7, 0x26, 0x03, 0x27, 0xa3, 0x39, 0x0a, 0x01 +.byte 0xaa, 0xc0, 0xb2, 0x31, 0x60, 0x83, 0x22, 0xa1, 0x4f, 0x12, 0x09, 0x01, 0x11, 0xaf, 0x34, 0xd4 +.byte 0xcf, 0xd7, 0xae, 0x62, 0xd3, 0x05, 0x07, 0xb4, 0x31, 0x75, 0xe0, 0x0d, 0x6d, 0x57, 0x4f, 0x69 +.byte 0x87, 0xf9, 0x57, 0xa9, 0xba, 0x15, 0xf6, 0xc8, 0x52, 0x6d, 0xa1, 0xcb, 0x9c, 0x1f, 0xe5, 0xfc +.byte 0x78, 0xa8, 0x35, 0x9a, 0x9f, 0x41, 0x14, 0xce, 0xa5, 0xb4, 0xce, 0x94, 0x08, 0x1c, 0x09, 0xad +.byte 0x56, 0xe5, 0xda, 0xb6, 0x49, 0x9a, 0x4a, 0xea, 0x63, 0x18, 0x53, 0x9c, 0x2c, 0x2e, 0xc3, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20 +.byte 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x53, 0x41 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x2d, 0x30, 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, 0xe1, 0xfa, 0x0e, 0xfb, 0x68, 0x00, 0x12 +.byte 0xc8, 0x4d, 0xd5, 0xac, 0x22, 0xc4, 0x35, 0x01, 0x3b, 0xc5, 0x54, 0xe5, 0x59, 0x76, 0x63, 0xa5 +.byte 0x7f, 0xeb, 0xc1, 0xc4, 0x6a, 0x98, 0xbd, 0x32, 0x8d, 0x17, 0x80, 0xeb, 0x5d, 0xba, 0xd1, 0x62 +.byte 0x3d, 0x25, 0x23, 0x19, 0x35, 0x14, 0xe9, 0x7f, 0x89, 0xa7, 0x1b, 0x62, 0x3c, 0xd6, 0x50, 0xe7 +.byte 0x34, 0x95, 0x03, 0x32, 0xb1, 0xb4, 0x93, 0x22, 0x3d, 0xa7, 0xe2, 0xb1, 0xed, 0xe6, 0x7b, 0x4e +.byte 0x2e, 0x87, 0x9b, 0x0d, 0x33, 0x75, 0x0a, 0xde, 0xaa, 0x35, 0xe7, 0x7e, 0xe5, 0x36, 0x98, 0xa2 +.byte 0xae, 0x25, 0x9e, 0x95, 0xb3, 0x32, 0x96, 0xa4, 0x2b, 0x58, 0x1e, 0xef, 0x3f, 0xfe, 0x62, 0x34 +.byte 0x48, 0x51, 0xd1, 0xb4, 0x8d, 0x42, 0xad, 0x60, 0xda, 0x49, 0x6a, 0x95, 0x70, 0xdd, 0xd2, 0x00 +.byte 0xe2, 0xcc, 0x57, 0x63, 0x02, 0x7b, 0x96, 0xdd, 0x49, 0x97, 0x5b, 0x92, 0x4e, 0x95, 0xd3, 0xf9 +.byte 0xcb, 0x29, 0x1f, 0x18, 0x4a, 0xf8, 0x01, 0x2a, 0xd2, 0x63, 0x09, 0x6e, 0x24, 0xe9, 0x89, 0xd2 +.byte 0xe5, 0xc7, 0x22, 0x4c, 0xdc, 0x73, 0x86, 0x47, 0x00, 0xaa, 0x0d, 0x88, 0x8e, 0xae, 0x85, 0x7d +.byte 0x4a, 0xe9, 0xbb, 0x33, 0x4f, 0x0e, 0x52, 0x70, 0x9d, 0x95, 0xe3, 0x7c, 0x6d, 0x96, 0x5b, 0x2d +.byte 0x3d, 0x5f, 0xa1, 0x83, 0x46, 0x5d, 0xb6, 0xe3, 0x25, 0xb8, 0x7c, 0xa7, 0x19, 0x80, 0x1c, 0xea +.byte 0x65, 0x43, 0xdc, 0x91, 0x79, 0x36, 0x2c, 0x74, 0x7c, 0xf2, 0x67, 0x06, 0xc9, 0x89, 0xc9, 0xdb +.byte 0xbf, 0xda, 0x68, 0xbf, 0x23, 0xed, 0xdc, 0x6b, 0xad, 0x28, 0x83, 0x79, 0x2f, 0xec, 0x38, 0xa5 +.byte 0x0d, 0x37, 0x01, 0x67, 0x27, 0x9a, 0xe9, 0x33, 0xd9, 0x33, 0x5f, 0x37, 0xa1, 0xc5, 0xf0, 0xab +.byte 0x3d, 0xfa, 0x78, 0xb0, 0xe7, 0x2c, 0x9f, 0xf6, 0x3e, 0x9f, 0x60, 0xe0, 0xef, 0x48, 0xe9, 0x90 +.byte 0x45, 0x1e, 0x05, 0x51, 0x78, 0x1a, 0x2c, 0x12, 0x2c, 0x5c, 0x28, 0xac, 0x0d, 0xa2, 0x23, 0x9e +.byte 0x34, 0x8f, 0x05, 0xe6, 0xa2, 0x33, 0xce, 0x11, 0x77, 0x13, 0xd4, 0x0e, 0xa4, 0x1e, 0x42, 0x1f +.byte 0x86, 0xcd, 0x70, 0xfe, 0xd9, 0x2e, 0x15, 0x3d, 0x1d, 0xbb, 0xb8, 0xf2, 0x53, 0x57, 0xdb, 0xcc +.byte 0xc6, 0x74, 0x29, 0x9c, 0x18, 0xb3, 0x36, 0x75, 0x38, 0x2e, 0x0f, 0x54, 0xa1, 0xf8, 0x92, 0x1f +.byte 0x89, 0x96, 0x4f, 0xbb, 0xd4, 0xee, 0x9d, 0xe9, 0x3b, 0x36, 0x42, 0xb5, 0x0a, 0x3b, 0x2a, 0xd4 +.byte 0x64, 0x79, 0x36, 0x10, 0xe1, 0xf9, 0x91, 0x03, 0x2b, 0x7b, 0x20, 0x54, 0xcd, 0x0d, 0x19, 0x1a +.byte 0xc8, 0x41, 0x32, 0x34, 0xd1, 0xb0, 0x99, 0xe1, 0x90, 0x1e, 0x01, 0x40, 0x36, 0xb5, 0xb7, 0xfa +.byte 0xa9, 0xe5, 0x77, 0x75, 0xa4, 0x22, 0x81, 0x5d, 0xb0, 0x8b, 0xe4, 0x27, 0x12, 0x0f, 0x54, 0x88 +.byte 0xc6, 0xdb, 0x85, 0x74, 0xe6, 0xb7, 0xc0, 0xd7, 0xa6, 0x29, 0xfa, 0xdb, 0xde, 0xf3, 0x93, 0x97 +.byte 0x27, 0x04, 0x55, 0x2f, 0x0a, 0x6f, 0x37, 0xc5, 0x3d, 0x13, 0xaf, 0x0a, 0x00, 0xa9, 0x2c, 0x8b +.byte 0x1c, 0x81, 0x28, 0xd7, 0xef, 0x86, 0x31, 0xa9, 0xae, 0xf2, 0x6e, 0xb8, 0xca, 0x6a, 0x2c, 0x54 +.byte 0x47, 0xd8, 0x2a, 0x88, 0x2e, 0xaf, 0xc1, 0x07, 0x10, 0x78, 0xac, 0x11, 0xa2, 0x2f, 0x42, 0xf0 +.byte 0x37, 0xc5, 0xf2, 0xb8, 0x56, 0xdd, 0x0e, 0x62, 0x2d, 0xce, 0x2d, 0x56, 0x7e, 0x55, 0xf2, 0xa7 +.byte 0x44, 0xf6, 0x2b, 0x32, 0xf4, 0x23, 0xa8, 0x47, 0xe8, 0xd4, 0x2a, 0x01, 0x78, 0xcf, 0x6a, 0xc3 +.byte 0x37, 0xa8, 0x9e, 0x65, 0xd2, 0x2c, 0xe5, 0xfa, 0xba, 0x33, 0xc1, 0x06, 0x44, 0xf6, 0xe6, 0xcf +.byte 0xa5, 0x0d, 0xa7, 0x66, 0x08, 0x34, 0x8a, 0x2c, 0xf3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00 +.byte 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0e, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x1d, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x4c +.byte 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x47, 0x35, 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, 0xc1, 0x44, 0xa1, 0xcf, 0x11, 0x97 +.byte 0x50, 0x9a, 0xde, 0x23, 0x82, 0x35, 0x07, 0xcd, 0xd0, 0xcb, 0x18, 0x9d, 0xd2, 0xf1, 0x7f, 0x77 +.byte 0x35, 0x4f, 0x3b, 0xdd, 0x94, 0x72, 0x52, 0xed, 0xc2, 0x3b, 0xf8, 0xec, 0xfa, 0x7b, 0x6b, 0x58 +.byte 0x20, 0xec, 0x99, 0xae, 0xc9, 0xfc, 0x68, 0xb3, 0x75, 0xb9, 0xdb, 0x09, 0xec, 0xc8, 0x13, 0xf5 +.byte 0x4e, 0xc6, 0x0a, 0x1d, 0x66, 0x30, 0x4c, 0xbb, 0x1f, 0x47, 0x0a, 0x3c, 0x61, 0x10, 0x42, 0x29 +.byte 0x7c, 0xa5, 0x08, 0x0e, 0xe0, 0x22, 0xe9, 0xd3, 0x35, 0x68, 0xce, 0x9b, 0x63, 0x9f, 0x84, 0xb5 +.byte 0x99, 0x4d, 0x58, 0xa0, 0x8e, 0xf5, 0x54, 0xe7, 0x95, 0xc9, 0x50, 0x00, 0x78, 0x00, 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, 0x45, 0x43 +.byte 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x32, 0x30, 0x76 +.byte 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04 +.byte 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x45, 0x29, 0x35, 0x73, 0xfa, 0xc2, 0xb8, 0x23, 0xce, 0x14 +.byte 0x7d, 0xa8, 0xb1, 0x4d, 0xa0, 0x5b, 0x36, 0xee, 0x2a, 0x2c, 0x53, 0xc3, 0x60, 0x09, 0x35, 0xb2 +.byte 0x24, 0x66, 0x26, 0x69, 0xc0, 0xb3, 0x95, 0xd6, 0x5d, 0x92, 0x40, 0x19, 0x0e, 0xc6, 0xa5, 0x13 +.byte 0x70, 0xf4, 0xef, 0x12, 0x51, 0x28, 0x5d, 0xe7, 0xcc, 0xbd, 0xf9, 0x3c, 0x85, 0xc1, 0xcf, 0x94 +.byte 0x90, 0xc9, 0x2b, 0xce, 0x92, 0x42, 0x58, 0x59, 0x67, 0xfd, 0x94, 0x27, 0x10, 0x64, 0x8c, 0x4f +.byte 0x04, 0xb1, 0x4d, 0x49, 0xe4, 0x7b, 0x4f, 0x9b, 0xf5, 0xe7, 0x08, 0xf8, 0x03, 0x88, 0xf7, 0xa7 +.byte 0xc3, 0x92, 0x4b, 0x19, 0x54, 0x81, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x53, 0x53 +.byte 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x32, 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, 0xd0, 0xa4, 0x09, 0x72, 0x4f +.byte 0x40, 0x88, 0x12, 0x61, 0x3e, 0x35, 0x23, 0x9e, 0xee, 0xf6, 0x74, 0xcf, 0x2f, 0x7b, 0x58, 0x3d +.byte 0xce, 0x3c, 0x0d, 0x10, 0x28, 0x90, 0x2f, 0x97, 0xf7, 0x8c, 0x48, 0xd8, 0xa0, 0xd8, 0x25, 0xb1 +.byte 0x4c, 0xb0, 0x11, 0x4c, 0x17, 0x73, 0x50, 0xd0, 0x22, 0x4a, 0x63, 0xbb, 0x81, 0xd3, 0x29, 0x6e +.byte 0xd5, 0xb5, 0x09, 0x3e, 0x26, 0x18, 0x7f, 0xb2, 0x12, 0x7f, 0x93, 0x98, 0xb7, 0xaf, 0xf0, 0x36 +.byte 0xbf, 0xf2, 0xee, 0x18, 0x9e, 0x9c, 0x3b, 0x52, 0xc5, 0x47, 0x19, 0x5d, 0x74, 0xf3, 0x64, 0x66 +.byte 0xd5, 0x5d, 0xc7, 0x68, 0xb4, 0xbf, 0x1b, 0x1c, 0x06, 0xa3, 0xbc, 0x8f, 0x40, 0x23, 0xb6, 0x1e +.byte 0xc6, 0x84, 0xbd, 0x51, 0xc4, 0x1b, 0x39, 0xc1, 0x95, 0xd2, 0x29, 0xec, 0x4b, 0xae, 0x7b, 0x2d +.byte 0xbf, 0x39, 0xfd, 0xb4, 0x62, 0xde, 0x96, 0x7b, 0x41, 0xc6, 0x9c, 0xa0, 0xe0, 0x06, 0x72, 0xfb +.byte 0xf0, 0x07, 0x97, 0x09, 0x39, 0x81, 0x74, 0xaf, 0xf7, 0x34, 0x59, 0x11, 0x57, 0x0a, 0xc2, 0x5b +.byte 0xc1, 0x24, 0xf4, 0x31, 0x73, 0x30, 0x82, 0xc6, 0x9d, 0xba, 0x02, 0xf7, 0x3e, 0x7c, 0x44, 0x5f +.byte 0x83, 0x0d, 0xf3, 0xf1, 0xdd, 0x20, 0x69, 0x16, 0x09, 0x50, 0xe2, 0xd4, 0x55, 0xb6, 0xe0, 0x80 +.byte 0x72, 0x76, 0x6e, 0x4c, 0x47, 0xb7, 0x75, 0x55, 0x59, 0xb4, 0x53, 0x74, 0xd9, 0x94, 0xc6, 0x41 +.byte 0xad, 0x58, 0x8a, 0x31, 0x66, 0x0f, 0x1e, 0xa2, 0x1b, 0x29, 0x40, 0x4e, 0x2f, 0xdf, 0x7b, 0xe6 +.byte 0x16, 0x2c, 0x2d, 0xfc, 0xbf, 0xec, 0xf3, 0xb4, 0xfa, 0xbe, 0x18, 0xf6, 0x9b, 0x49, 0xd4, 0xee +.byte 0x05, 0x6e, 0xd9, 0x34, 0xf3, 0x9c, 0xf1, 0xec, 0x01, 0x8b, 0xd1, 0x20, 0xc6, 0x0f, 0xa0, 0xb5 +.byte 0xbc, 0x17, 0x4e, 0x48, 0x7b, 0x51, 0xc2, 0xfc, 0xe9, 0x5c, 0x69, 0x37, 0x47, 0x66, 0xb3, 0x68 +.byte 0xf8, 0x15, 0x28, 0xf0, 0xb9, 0xd3, 0xa4, 0x15, 0xcc, 0x5a, 0x4f, 0xba, 0x52, 0x70, 0xa3, 0x12 +.byte 0x45, 0xdd, 0xc6, 0xba, 0x4e, 0xfb, 0xc2, 0xd0, 0xf7, 0xa8, 0x52, 0x27, 0x6d, 0x6e, 0x79, 0xb5 +.byte 0x8c, 0xfc, 0x7b, 0x8c, 0xc1, 0x16, 0x4c, 0xee, 0x80, 0x7f, 0xbe, 0xf0, 0x76, 0xbe, 0x41, 0x53 +.byte 0x12, 0x33, 0xae, 0x5a, 0x38, 0x42, 0xab, 0xd7, 0x0f, 0x3e, 0x41, 0x8d, 0x76, 0x07, 0x32, 0xd5 +.byte 0xab, 0x89, 0xf6, 0x4e, 0x67, 0xd9, 0xb1, 0x42, 0x75, 0x23, 0x6e, 0xf3, 0xcd, 0x42, 0xb2, 0xfc +.byte 0x55, 0xf5, 0x53, 0x87, 0x17, 0x3b, 0xc0, 0x33, 0x58, 0xf1, 0x52, 0xd2, 0xf9, 0x80, 0xa4, 0xf0 +.byte 0xe8, 0xf0, 0x3b, 0x8b, 0x38, 0xcc, 0xa4, 0xc6, 0x90, 0x7f, 0x0f, 0x9c, 0xfd, 0x8b, 0xd1, 0xa3 +.byte 0xcf, 0xda, 0x83, 0xa7, 0x69, 0xc9, 0x50, 0x36, 0xd5, 0x5c, 0x05, 0xd2, 0x0a, 0x41, 0x74, 0xdb +.byte 0x63, 0x11, 0x37, 0xc1, 0xa5, 0xa0, 0x96, 0x4b, 0x1e, 0x8c, 0x16, 0x12, 0x77, 0xae, 0x94, 0x34 +.byte 0x7b, 0x1e, 0x7f, 0xc2, 0x66, 0x00, 0xe4, 0xaa, 0x83, 0xea, 0x8a, 0x90, 0xad, 0xce, 0x36, 0x44 +.byte 0x4d, 0xd1, 0x51, 0xe9, 0xbc, 0x1f, 0xf3, 0x6a, 0x05, 0xfd, 0xc0, 0x74, 0x1f, 0x25, 0x19, 0x40 +.byte 0x51, 0x6e, 0xea, 0x82, 0x51, 0x40, 0xdf, 0x9b, 0xb9, 0x08, 0x2a, 0x06, 0x02, 0xd5, 0x23, 0x1c +.byte 0x13, 0xd6, 0xe9, 0xdb, 0xdb, 0xc6, 0xb0, 0x7a, 0xcb, 0x7b, 0x27, 0x9b, 0xfb, 0xe0, 0xd5, 0x46 +.byte 0x24, 0xed, 0x10, 0x4b, 0x63, 0x4b, 0xa5, 0x05, 0x8f, 0xba, 0xb8, 0x1d, 0x2b, 0xa6, 0xfa, 0x91 +.byte 0xe2, 0x92, 0x52, 0xbd, 0xec, 0xeb, 0x67, 0x97, 0x6d, 0x9a, 0x2d, 0x9f, 0x81, 0x32, 0x05, 0x67 +.byte 0x32, 0xfb, 0x48, 0x08, 0x3f, 0xd9, 0x25, 0xb8, 0x04, 0x25, 0x2f, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x51, 0x00, 0x26, 0x02, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x54, 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68 +.byte 0x75, 0x6e, 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43 +.byte 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x12, 0x48, 0x69, 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x2d, 0x20, 0x47, 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, 0xf4, 0x1e, 0x7f, 0x52, 0x73, 0x32, 0x0c, 0x73, 0xe4, 0xbd +.byte 0x13, 0x74, 0xa3, 0xd4, 0x30, 0xa8, 0xd0, 0xae, 0x4b, 0xd8, 0xb6, 0xdf, 0x75, 0x47, 0x66, 0xf4 +.byte 0x7c, 0xe7, 0x39, 0x04, 0x1e, 0x6a, 0x70, 0x20, 0xd2, 0x5a, 0x47, 0x72, 0x67, 0x55, 0xf4, 0xa5 +.byte 0xe8, 0x9d, 0xd5, 0x1e, 0x21, 0xa1, 0xf0, 0x67, 0xba, 0xcc, 0x21, 0x68, 0xbe, 0x44, 0x53, 0xbf +.byte 0x8d, 0xf9, 0xe2, 0xdc, 0x2f, 0x55, 0xc8, 0x37, 0x3f, 0x1f, 0xa4, 0xc0, 0x9c, 0xb3, 0xe4, 0x77 +.byte 0x5c, 0xa0, 0x46, 0xfe, 0x77, 0xfa, 0x1a, 0xa0, 0x38, 0xea, 0xed, 0x9a, 0x72, 0xde, 0x2b, 0xbd +.byte 0x94, 0x57, 0x3a, 0xba, 0xec, 0x79, 0xe7, 0x5f, 0x7d, 0x42, 0x64, 0x39, 0x7a, 0x26, 0x36, 0xf7 +.byte 0x24, 0xf0, 0xd5, 0x2f, 0xba, 0x95, 0x98, 0x11, 0x66, 0xad, 0x97, 0x35, 0xd6, 0x75, 0x01, 0x80 +.byte 0xe0, 0xaf, 0xf4, 0x84, 0x61, 0x8c, 0x0d, 0x1e, 0x5f, 0x7c, 0x87, 0x96, 0x5e, 0x41, 0xaf, 0xeb +.byte 0x87, 0xea, 0xf8, 0x5d, 0xf1, 0x2e, 0x88, 0x05, 0x3e, 0x4c, 0x22, 0xbb, 0xda, 0x1f, 0x2a, 0xdd +.byte 0x52, 0x46, 0x64, 0x39, 0xf3, 0x42, 0xce, 0xd9, 0x9e, 0x0c, 0xb3, 0xb0, 0x77, 0x97, 0x64, 0x9c +.byte 0xc0, 0xf4, 0xa3, 0x2e, 0x1f, 0x95, 0x07, 0xb0, 0x17, 0xdf, 0x30, 0xdb, 0x00, 0x18, 0x96, 0x4c +.byte 0xa1, 0x81, 0x4b, 0xdd, 0x04, 0x6d, 0x53, 0xa3, 0x3d, 0xfc, 0x07, 0xac, 0xd4, 0xc5, 0x37, 0x82 +.byte 0xeb, 0xe4, 0x95, 0x08, 0x19, 0x28, 0x82, 0xd2, 0x42, 0x3a, 0xa3, 0xd8, 0x53, 0xec, 0x79, 0x89 +.byte 0x60, 0x48, 0x60, 0xc8, 0x72, 0x92, 0x50, 0xdc, 0x03, 0x8f, 0x83, 0x3f, 0xb2, 0x42, 0x57, 0x5a +.byte 0xdb, 0x6a, 0xe9, 0x11, 0x97, 0xdd, 0x85, 0x28, 0xbc, 0x30, 0x4c, 0xab, 0xe3, 0xc2, 0xb1, 0x45 +.byte 0x44, 0x47, 0x1f, 0xe0, 0x8a, 0x16, 0x07, 0x96, 0xd2, 0x21, 0x0f, 0x53, 0xc0, 0xed, 0xa9, 0x7e +.byte 0xd4, 0x4e, 0xec, 0x9b, 0x09, 0xec, 0xaf, 0x42, 0xac, 0x30, 0xd6, 0xbf, 0xd1, 0x10, 0x45, 0xe0 +.byte 0xa6, 0x16, 0xb2, 0xa5, 0xc5, 0xd3, 0x4f, 0x73, 0x94, 0x33, 0x71, 0x02, 0xa1, 0x6a, 0xa3, 0xd6 +.byte 0x33, 0x97, 0x4f, 0x21, 0x63, 0x1e, 0x5b, 0x8f, 0xd9, 0xc1, 0x5e, 0x45, 0x71, 0x77, 0x0f, 0x81 +.byte 0x5d, 0x5f, 0x21, 0x9a, 0xad, 0x83, 0xcc, 0xfa, 0x5e, 0xd6, 0x8d, 0x23, 0x5f, 0x1b, 0x3d, 0x41 +.byte 0xaf, 0x20, 0x75, 0x66, 0x5a, 0x4a, 0xf6, 0x9f, 0xfb, 0xab, 0x18, 0xf7, 0x71, 0xc0, 0xb6, 0x1d +.byte 0x31, 0xec, 0x3b, 0x20, 0xeb, 0xcb, 0xe2, 0xb8, 0xf5, 0xae, 0x92, 0xb2, 0xf7, 0xe1, 0x84, 0x4b +.byte 0xf2, 0xa2, 0xf2, 0x93, 0x9a, 0x22, 0x9e, 0xd3, 0x14, 0x6f, 0x36, 0x54, 0xbd, 0x1f, 0x5e, 0x59 +.byte 0x15, 0xb9, 0x73, 0xa8, 0xc1, 0x7c, 0x6f, 0x7b, 0x62, 0xe9, 0x16, 0x6c, 0x47, 0x5a, 0x65, 0xf3 +.byte 0x0e, 0x11, 0x9b, 0x46, 0xd9, 0xfd, 0x6d, 0xdc, 0xd6, 0x9c, 0xc0, 0xb4, 0x7d, 0xa5, 0xb0, 0xdd +.byte 0x3f, 0x56, 0x6f, 0xa1, 0xf9, 0xf6, 0xe4, 0x12, 0x48, 0xfd, 0x06, 0x7f, 0x12, 0x57, 0xb6, 0xa9 +.byte 0x23, 0x4f, 0x5b, 0x03, 0xc3, 0xe0, 0x71, 0x2a, 0x23, 0xb7, 0xf7, 0xb0, 0xb1, 0x3b, 0xbc, 0x98 +.byte 0xbd, 0xd6, 0x98, 0xa8, 0x0c, 0x6b, 0xf6, 0x8e, 0x12, 0x67, 0xa6, 0xf2, 0xb2, 0x58, 0xe4, 0x02 +.byte 0x09, 0x13, 0x3c, 0xa9, 0xbb, 0x10, 0xb4, 0xd2, 0x30, 0x45, 0xf1, 0xec, 0xf7, 0x00, 0x11, 0xdf +.byte 0x65, 0xf8, 0xdc, 0x2b, 0x43, 0x55, 0xbf, 0x16, 0x97, 0xc4, 0x0f, 0xd5, 0x2c, 0x61, 0x84, 0xaa +.byte 0x72, 0x86, 0xfe, 0xe6, 0x3a, 0x7e, 0xc2, 0x3f, 0x7d, 0xee, 0xfc, 0x2f, 0x14, 0x3e, 0xe6, 0x85 +.byte 0xdd, 0x50, 0x6f, 0xb7, 0x49, 0xed, 0x02, 0x03, 0x01, 0x00, 0x01, 0x51, 0x00, 0x26, 0x02, 0x30 +.byte 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29 +.byte 0x30, 0x27, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65 +.byte 0x74, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61 +.byte 0x72, 0x63, 0x68, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x0c, 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x31 +.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, 0xad, 0xe8, 0x24, 0x73, 0xf4, 0x14, 0x37, 0xf3, 0x9b, 0x9e, 0x2b, 0x57, 0x28, 0x1c, 0x87 +.byte 0xbe, 0xdc, 0xb7, 0xdf, 0x38, 0x90, 0x8c, 0x6e, 0x3c, 0xe6, 0x57, 0xa0, 0x78, 0xf7, 0x75, 0xc2 +.byte 0xa2, 0xfe, 0xf5, 0x6a, 0x6e, 0xf6, 0x00, 0x4f, 0x28, 0xdb, 0xde, 0x68, 0x86, 0x6c, 0x44, 0x93 +.byte 0xb6, 0xb1, 0x63, 0xfd, 0x14, 0x12, 0x6b, 0xbf, 0x1f, 0xd2, 0xea, 0x31, 0x9b, 0x21, 0x7e, 0xd1 +.byte 0x33, 0x3c, 0xba, 0x48, 0xf5, 0xdd, 0x79, 0xdf, 0xb3, 0xb8, 0xff, 0x12, 0xf1, 0x21, 0x9a, 0x4b +.byte 0xc1, 0x8a, 0x86, 0x71, 0x69, 0x4a, 0x66, 0x66, 0x6c, 0x8f, 0x7e, 0x3c, 0x70, 0xbf, 0xad, 0x29 +.byte 0x22, 0x06, 0xf3, 0xe4, 0xc0, 0xe6, 0x80, 0xae, 0xe2, 0x4b, 0x8f, 0xb7, 0x99, 0x7e, 0x94, 0x03 +.byte 0x9f, 0xd3, 0x47, 0x97, 0x7c, 0x99, 0x48, 0x23, 0x53, 0xe8, 0x38, 0xae, 0x4f, 0x0a, 0x6f, 0x83 +.byte 0x2e, 0xd1, 0x49, 0x57, 0x8c, 0x80, 0x74, 0xb6, 0xda, 0x2f, 0xd0, 0x38, 0x8d, 0x7b, 0x03, 0x70 +.byte 0x21, 0x1b, 0x75, 0xf2, 0x30, 0x3c, 0xfa, 0x8f, 0xae, 0xdd, 0xda, 0x63, 0xab, 0xeb, 0x16, 0x4f +.byte 0xc2, 0x8e, 0x11, 0x4b, 0x7e, 0xcf, 0x0b, 0xe8, 0xff, 0xb5, 0x77, 0x2e, 0xf4, 0xb2, 0x7b, 0x4a +.byte 0xe0, 0x4c, 0x12, 0x25, 0x0c, 0x70, 0x8d, 0x03, 0x29, 0xa0, 0xe1, 0x53, 0x24, 0xec, 0x13, 0xd9 +.byte 0xee, 0x19, 0xbf, 0x10, 0xb3, 0x4a, 0x8c, 0x3f, 0x89, 0xa3, 0x61, 0x51, 0xde, 0xac, 0x87, 0x07 +.byte 0x94, 0xf4, 0x63, 0x71, 0xec, 0x2e, 0xe2, 0x6f, 0x5b, 0x98, 0x81, 0xe1, 0x89, 0x5c, 0x34, 0x79 +.byte 0x6c, 0x76, 0xef, 0x3b, 0x90, 0x62, 0x79, 0xe6, 0xdb, 0xa4, 0x9a, 0x2f, 0x26, 0xc5, 0xd0, 0x10 +.byte 0xe1, 0x0e, 0xde, 0xd9, 0x10, 0x8e, 0x16, 0xfb, 0xb7, 0xf7, 0xa8, 0xf7, 0xc7, 0xe5, 0x02, 0x07 +.byte 0x98, 0x8f, 0x36, 0x08, 0x95, 0xe7, 0xe2, 0x37, 0x96, 0x0d, 0x36, 0x75, 0x9e, 0xfb, 0x0e, 0x72 +.byte 0xb1, 0x1d, 0x9b, 0xbc, 0x03, 0xf9, 0x49, 0x05, 0xd8, 0x81, 0xdd, 0x05, 0xb4, 0x2a, 0xd6, 0x41 +.byte 0xe9, 0xac, 0x01, 0x76, 0x95, 0x0a, 0x0f, 0xd8, 0xdf, 0xd5, 0xbd, 0x12, 0x1f, 0x35, 0x2f, 0x28 +.byte 0x17, 0x6c, 0xd2, 0x98, 0xc1, 0xa8, 0x09, 0x64, 0x77, 0x6e, 0x47, 0x37, 0xba, 0xce, 0xac, 0x59 +.byte 0x5e, 0x68, 0x9d, 0x7f, 0x72, 0xd6, 0x89, 0xc5, 0x06, 0x41, 0x29, 0x3e, 0x59, 0x3e, 0xdd, 0x26 +.byte 0xf5, 0x24, 0xc9, 0x11, 0xa7, 0x5a, 0xa3, 0x4c, 0x40, 0x1f, 0x46, 0xa1, 0x99, 0xb5, 0xa7, 0x3a +.byte 0x51, 0x6e, 0x86, 0x3b, 0x9e, 0x7d, 0x72, 0xa7, 0x12, 0x05, 0x78, 0x59, 0xed, 0x3e, 0x51, 0x78 +.byte 0x15, 0x0b, 0x03, 0x8f, 0x8d, 0xd0, 0x2f, 0x05, 0xb2, 0x3e, 0x7b, 0x4a, 0x1c, 0x4b, 0x73, 0x05 +.byte 0x12, 0xfc, 0xc6, 0xea, 0xe0, 0x50, 0x13, 0x7c, 0x43, 0x93, 0x74, 0xb3, 0xca, 0x74, 0xe7, 0x8e +.byte 0x1f, 0x01, 0x08, 0xd0, 0x30, 0xd4, 0x5b, 0x71, 0x36, 0xb4, 0x07, 0xba, 0xc1, 0x30, 0x30, 0x5c +.byte 0x48, 0xb7, 0x82, 0x3b, 0x98, 0xa6, 0x7d, 0x60, 0x8a, 0xa2, 0xa3, 0x29, 0x82, 0xcc, 0xba, 0xbd +.byte 0x83, 0x04, 0x1b, 0xa2, 0x83, 0x03, 0x41, 0xa1, 0xd6, 0x05, 0xf1, 0x1b, 0xc2, 0xb6, 0xf0, 0xa8 +.byte 0x7c, 0x86, 0x3b, 0x46, 0xa8, 0x48, 0x2a, 0x88, 0xdc, 0x76, 0x9a, 0x76, 0xbf, 0x1f, 0x6a, 0xa5 +.byte 0x3d, 0x19, 0x8f, 0xeb, 0x38, 0xf3, 0x64, 0xde, 0xc8, 0x2b, 0x0d, 0x0a, 0x28, 0xff, 0xf7, 0xdb +.byte 0xe2, 0x15, 0x42, 0xd4, 0x22, 0xd0, 0x27, 0x5d, 0xe1, 0x79, 0xfe, 0x18, 0xe7, 0x70, 0x88, 0xad +.byte 0x4e, 0xe6, 0xd9, 0x8b, 0x3a, 0xc6, 0xdd, 0x27, 0x51, 0x6e, 0xff, 0xbc, 0x64, 0xf5, 0x33, 0x43 +.byte 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x51, 0x00, 0x78, 0x00, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x53, 0x65, 0x63 +.byte 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x47 +.byte 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0c, 0x49 +.byte 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x32, 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, 0xcd, 0x9b, 0xd5, 0x9f, 0x80, 0x83, 0x0a, 0xec, 0x09, 0x4a, 0xf3, 0x16, 0x4a +.byte 0x3e, 0x5c, 0xcf, 0x77, 0xac, 0xde, 0x67, 0x05, 0x0d, 0x1d, 0x07, 0xb6, 0xdc, 0x16, 0xfb, 0x5a +.byte 0x8b, 0x14, 0xdb, 0xe2, 0x71, 0x60, 0xc4, 0xba, 0x45, 0x95, 0x11, 0x89, 0x8e, 0xea, 0x06, 0xdf +.byte 0xf7, 0x2a, 0x16, 0x1c, 0xa4, 0xb9, 0xc5, 0xc5, 0x32, 0xe0, 0x03, 0xe0, 0x1e, 0x82, 0x18, 0x38 +.byte 0x8b, 0xd7, 0x45, 0xd8, 0x0a, 0x6a, 0x6e, 0xe6, 0x00, 0x77, 0xfb, 0x02, 0x51, 0x7d, 0x22, 0xd8 +.byte 0x0a, 0x6e, 0x9a, 0x5b, 0x77, 0xdf, 0xf0, 0xfa, 0x41, 0xec, 0x39, 0xdc, 0x75, 0xca, 0x68, 0x07 +.byte 0x0c, 0x1f, 0xea, 0x52, 0x00, 0x26, 0x01, 0x30, 0x50, 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, 0x2a, 0x30 +.byte 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x21, 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, 0x45, 0x56, 0x20, 0x32, 0x30, 0x30, 0x39, 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, 0x99, 0xf1, 0x84, 0x34, 0x70, 0xba +.byte 0x2f, 0xb7, 0x30, 0xa0, 0x8e, 0xbd, 0x7c, 0x04, 0xcf, 0xbe, 0x62, 0xbc, 0x99, 0xfd, 0x82, 0x97 +.byte 0xd2, 0x7a, 0x0a, 0x67, 0x96, 0x38, 0x09, 0xf6, 0x10, 0x4e, 0x95, 0x22, 0x73, 0x99, 0x8d, 0xda +.byte 0x15, 0x2d, 0xe7, 0x05, 0xfc, 0x19, 0x73, 0x22, 0xb7, 0x8e, 0x98, 0x00, 0xbc, 0x3c, 0x3d, 0xac +.byte 0xa1, 0x6c, 0xfb, 0xd6, 0x79, 0x25, 0x4b, 0xad, 0xf0, 0xcc, 0x64, 0xda, 0x88, 0x3e, 0x29, 0xb8 +.byte 0x0f, 0x09, 0xd3, 0x34, 0xdd, 0x33, 0xf5, 0x62, 0xd1, 0xe1, 0xcd, 0x19, 0xe9, 0xee, 0x18, 0x4f +.byte 0x4c, 0x58, 0xae, 0xe2, 0x1e, 0xd6, 0x0c, 0x5b, 0x15, 0x5a, 0xd8, 0x3a, 0xb8, 0xc4, 0x18, 0x64 +.byte 0x1e, 0xe3, 0x33, 0xb2, 0xb5, 0x89, 0x77, 0x4e, 0x0c, 0xbf, 0xd9, 0x94, 0x6b, 0x13, 0x97, 0x6f +.byte 0x12, 0xa3, 0xfe, 0x99, 0xa9, 0x04, 0xcc, 0x15, 0xec, 0x60, 0x68, 0x36, 0xed, 0x08, 0x7b, 0xb7 +.byte 0xf5, 0xbf, 0x93, 0xed, 0x66, 0x31, 0x83, 0x8c, 0xc6, 0x71, 0x34, 0x87, 0x4e, 0x17, 0xea, 0xaf +.byte 0x8b, 0x91, 0x8d, 0x1c, 0x56, 0x41, 0xae, 0x22, 0x37, 0x5e, 0x37, 0xf2, 0x1d, 0xd9, 0xd1, 0x2d +.byte 0x0d, 0x2f, 0x69, 0x51, 0xa7, 0xbe, 0x66, 0xa6, 0x8a, 0x3a, 0x2a, 0xbd, 0xc7, 0x1a, 0xb1, 0xe1 +.byte 0x14, 0xf0, 0xbe, 0x3a, 0x1d, 0xb9, 0xcf, 0x5b, 0xb1, 0x6a, 0xfe, 0xb4, 0xb1, 0x46, 0x20, 0xa2 +.byte 0xfb, 0x1e, 0x3b, 0x70, 0xef, 0x93, 0x98, 0x7d, 0x8c, 0x73, 0x96, 0xf2, 0xc5, 0xef, 0x85, 0x70 +.byte 0xad, 0x29, 0x26, 0xfc, 0x1e, 0x04, 0x3e, 0x1c, 0xa0, 0xd8, 0x0f, 0xcb, 0x52, 0x83, 0x62, 0x7c +.byte 0xee, 0x8b, 0x53, 0x95, 0x90, 0xa9, 0x57, 0xa2, 0xea, 0x61, 0x05, 0xd8, 0xf9, 0x4d, 0xc4, 0x27 +.byte 0xfa, 0x6e, 0xad, 0xed, 0xf9, 0xd7, 0x51, 0xf7, 0x6b, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x52 +.byte 0x00, 0x26, 0x02, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x54, 0x41, 0x49 +.byte 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x12, 0x54, 0x57, 0x43, 0x41, 0x20, 0x43, 0x59, 0x42, 0x45, 0x52, 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, 0xc6, 0xf8, 0xca, 0x1e, 0xd9, 0x09, 0x20, 0x7e, 0x1d, 0x6c +.byte 0x4e, 0xce, 0x8f, 0xe3, 0x47, 0x33, 0x44, 0x9c, 0xc7, 0xc9, 0x69, 0xaa, 0x3a, 0x5b, 0x78, 0xee +.byte 0x70, 0xd2, 0x92, 0xf8, 0x04, 0xb3, 0x52, 0x52, 0x1d, 0x67, 0x72, 0x28, 0xa1, 0xdf, 0x8b, 0x5d +.byte 0x95, 0x0a, 0xfe, 0xea, 0xcd, 0xed, 0xf7, 0x29, 0xce, 0xf0, 0x6f, 0x7f, 0xac, 0xcd, 0x3d, 0xef +.byte 0xb3, 0x1c, 0x45, 0x6a, 0xf7, 0x28, 0x90, 0xf1, 0x61, 0x57, 0xc5, 0x0c, 0xc4, 0xa3, 0x50, 0x5d +.byte 0xde, 0xd4, 0xb5, 0xcb, 0x19, 0xca, 0x80, 0xb9, 0x75, 0xce, 0x29, 0xce, 0xd2, 0x85, 0x22, 0xec +.byte 0x02, 0x63, 0xcc, 0x44, 0x30, 0x20, 0xda, 0xea, 0x91, 0x5b, 0x56, 0xe6, 0x1d, 0x1c, 0xd5, 0x9d +.byte 0x66, 0xc7, 0x3f, 0xdf, 0x86, 0xca, 0x4b, 0x53, 0xc4, 0xd9, 0x8d, 0xb2, 0x1d, 0xea, 0xf8, 0xdc +.byte 0x27, 0x53, 0xa3, 0x47, 0xe1, 0x61, 0xcc, 0x7d, 0xb5, 0xb0, 0xf8, 0xee, 0x73, 0x91, 0xc5, 0xce +.byte 0x73, 0x6f, 0xce, 0xee, 0x10, 0x1f, 0x1a, 0x06, 0xcf, 0xe9, 0x27, 0x60, 0xc5, 0x4f, 0x19, 0xe4 +.byte 0xeb, 0xce, 0x22, 0x26, 0x45, 0xd7, 0x60, 0x99, 0xdd, 0xce, 0x4f, 0x37, 0xe0, 0x7f, 0xe7, 0x63 +.byte 0xad, 0xb0, 0xb8, 0x59, 0xb8, 0xd0, 0x06, 0x68, 0x35, 0x60, 0xd3, 0x36, 0xae, 0x71, 0x43, 0x04 +.byte 0xf1, 0x69, 0x65, 0x78, 0x7c, 0xf3, 0x1f, 0xf3, 0xca, 0x28, 0x9f, 0x5a, 0x20, 0x95, 0x66, 0xb4 +.byte 0xcd, 0xb7, 0xee, 0x8f, 0x78, 0xa4, 0x45, 0x18, 0xe9, 0x26, 0x2f, 0x8d, 0x9b, 0x29, 0x28, 0xb1 +.byte 0xa4, 0xb7, 0x3a, 0x6d, 0xb9, 0xd4, 0x1c, 0x38, 0x72, 0x45, 0x58, 0xb1, 0x5e, 0xeb, 0xf0, 0x28 +.byte 0x9b, 0xb7, 0x82, 0xca, 0xfd, 0xcf, 0xd6, 0x33, 0x0f, 0x9f, 0xfb, 0x97, 0x9e, 0xb1, 0x1c, 0x9c +.byte 0x9e, 0xea, 0x5f, 0x5e, 0xdb, 0xaa, 0xdd, 0x54, 0xe9, 0x30, 0x21, 0x28, 0x6d, 0x8e, 0x79, 0xf3 +.byte 0x75, 0x92, 0x8c, 0x26, 0xfe, 0xdc, 0xc5, 0xf6, 0xc3, 0xb0, 0xdf, 0x44, 0x59, 0x43, 0xa3, 0xb6 +.byte 0x03, 0x28, 0xf6, 0x08, 0x30, 0xaa, 0x0d, 0x33, 0xe1, 0xef, 0x9c, 0xa9, 0x07, 0x22, 0xe3, 0x59 +.byte 0x5b, 0x40, 0x8f, 0xda, 0x88, 0xb7, 0x69, 0x08, 0xa8, 0xb7, 0x23, 0x2e, 0x44, 0x09, 0x59, 0x37 +.byte 0x5b, 0xc7, 0xe3, 0x17, 0xf2, 0x22, 0xeb, 0x6e, 0x39, 0x52, 0xc5, 0xde, 0x54, 0xa7, 0x98, 0xc9 +.byte 0x4b, 0x20, 0x95, 0xdc, 0x46, 0x89, 0x5f, 0xb4, 0x12, 0xf9, 0x85, 0x29, 0x8e, 0xeb, 0xc8, 0x27 +.byte 0x15, 0x20, 0xc0, 0x4b, 0xd4, 0xcc, 0x7c, 0x0c, 0x6c, 0x34, 0x0c, 0x26, 0x9b, 0x26, 0x31, 0xa6 +.byte 0x3c, 0xa7, 0xf6, 0xd9, 0xd0, 0x4b, 0xa2, 0x64, 0xff, 0x3b, 0x99, 0x41, 0x72, 0xc1, 0xe0, 0x70 +.byte 0x97, 0xf1, 0x24, 0xbb, 0x2b, 0xc4, 0x74, 0x22, 0xb1, 0xac, 0x6b, 0x22, 0x32, 0x24, 0xd3, 0x78 +.byte 0x2a, 0xc0, 0xc0, 0xa1, 0x2f, 0xf1, 0x52, 0x05, 0xc9, 0x3f, 0xef, 0x76, 0x66, 0xe2, 0x45, 0xd8 +.byte 0x0d, 0x3d, 0xad, 0x95, 0xc8, 0xc7, 0x89, 0x26, 0xc8, 0x0f, 0xae, 0xa7, 0x03, 0x2e, 0xfb, 0xc1 +.byte 0x5f, 0xfa, 0x20, 0xe1, 0x70, 0xad, 0xb0, 0x65, 0x20, 0x37, 0x33, 0x60, 0xb0, 0xd5, 0xaf, 0xd7 +.byte 0x0c, 0x1c, 0xc2, 0x90, 0x70, 0xd7, 0x4a, 0x18, 0xbc, 0x7e, 0x01, 0xb0, 0xb0, 0xeb, 0x15, 0x1e +.byte 0x44, 0x06, 0xcd, 0xa4, 0x4f, 0xe8, 0x0c, 0xd1, 0xc3, 0x20, 0x10, 0xe1, 0x54, 0x65, 0x9e, 0xb6 +.byte 0x51, 0xd0, 0x1a, 0x76, 0x6b, 0x42, 0x5a, 0x58, 0x76, 0x34, 0xea, 0xb7, 0x37, 0x19, 0xae, 0x2e +.byte 0x75, 0xf9, 0x96, 0xe5, 0xc1, 0x59, 0xf7, 0x94, 0x57, 0x29, 0x25, 0x8d, 0x3a, 0x4c, 0xab, 0x4d +.byte 0x9a, 0x41, 0xd0, 0x5f, 0x26, 0x03, 0x02, 0x03, 0x01, 0x00, 0x01, 0x52, 0x00, 0x5b, 0x00, 0x30 +.byte 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x34, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 +.byte 0x6e, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08 +.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0xb8, 0xc6, 0x79, 0xd3 +.byte 0x8f, 0x6c, 0x25, 0x0e, 0x9f, 0x2e, 0x39, 0x19, 0x1c, 0x03, 0xa4, 0xae, 0x9a, 0xe5, 0x39, 0x07 +.byte 0x09, 0x16, 0xca, 0x63, 0xb1, 0xb9, 0x86, 0xf8, 0x8a, 0x57, 0xc1, 0x57, 0xce, 0x42, 0xfa, 0x73 +.byte 0xa1, 0xf7, 0x65, 0x42, 0xff, 0x1e, 0xc1, 0x00, 0xb2, 0x6e, 0x73, 0x0e, 0xff, 0xc7, 0x21, 0xe5 +.byte 0x18, 0xa4, 0xaa, 0xd9, 0x71, 0x3f, 0xa8, 0xd4, 0xb9, 0xce, 0x8c, 0x1d, 0x52, 0x00, 0x78, 0x00 +.byte 0x30, 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x35, 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, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x47, 0x45, 0x0e, 0x96, 0xfb, 0x7d +.byte 0x5d, 0xbf, 0xe9, 0x39, 0xd1, 0x21, 0xf8, 0x9f, 0x0b, 0xb6, 0xd5, 0x7b, 0x1e, 0x92, 0x3a, 0x48 +.byte 0x59, 0x1c, 0xf0, 0x62, 0x31, 0x2d, 0xc0, 0x7a, 0x28, 0xfe, 0x1a, 0xa7, 0x5c, 0xb3, 0xb6, 0xcc +.byte 0x97, 0xe7, 0x45, 0xd4, 0x58, 0xfa, 0xd1, 0x77, 0x6d, 0x43, 0xa2, 0xc0, 0x87, 0x65, 0x34, 0x0a +.byte 0x1f, 0x7a, 0xdd, 0xeb, 0x3c, 0x33, 0xa1, 0xc5, 0x9d, 0x4d, 0xa4, 0x6f, 0x41, 0x95, 0x38, 0x7f +.byte 0xc9, 0x1e, 0x84, 0xeb, 0xd1, 0x9e, 0x49, 0x92, 0x87, 0x94, 0x87, 0x0c, 0x3a, 0x85, 0x4a, 0x66 +.byte 0x9f, 0x9d, 0x59, 0x93, 0x4d, 0x97, 0x61, 0x06, 0x86, 0x4a, 0x53, 0x00, 0x26, 0x02, 0x30, 0x51 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x42, 0x30 +.byte 0x40, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61 +.byte 0x64, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69, 0x6f +.byte 0x6e, 0x61, 0x6c, 0x20, 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34, 0x30, 0x36 +.byte 0x38, 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, 0xca, 0x96, 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2, 0x35, 0xe0, 0x7f, 0x4c, 0xda +.byte 0xe0, 0xc3, 0x52, 0xd7, 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3, 0x43, 0x2a, 0xc4, 0x4f, 0x6a +.byte 0xb2, 0xca, 0x1c, 0x5d, 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59, 0x57, 0xaf, 0xb5, 0x20, 0x42 +.byte 0xe4, 0x8b, 0x0f, 0xe6, 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5, 0x11, 0xe4, 0x62, 0xd7, 0x32 +.byte 0x71, 0x38, 0xd9, 0x04, 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f, 0x07, 0xdf, 0x63, 0x05, 0x5c +.byte 0xe9, 0xbf, 0x94, 0x6f, 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51, 0xb0, 0xc1, 0x3c, 0xbb, 0xad +.byte 0x37, 0x4a, 0x5c, 0xca, 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf, 0xc3, 0x84, 0x77, 0xfd, 0xa8 +.byte 0x50, 0xf4, 0xb1, 0xe7, 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a, 0x0a, 0x4e, 0x96, 0x69, 0x52 +.byte 0x02, 0xaa, 0x36, 0x98, 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37, 0x1f, 0xc9, 0x92, 0x37, 0x7f +.byte 0xd7, 0x81, 0x2d, 0xe5, 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67, 0xf4, 0x3e, 0x66, 0xd1, 0xd3 +.byte 0xf4, 0x40, 0xcf, 0x5e, 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20, 0x18, 0x5a, 0xce, 0xf7, 0x72 +.byte 0x1b, 0x25, 0x6c, 0x93, 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e, 0xaa, 0x87, 0x10, 0x23, 0x59 +.byte 0x5f, 0x20, 0x05, 0x19, 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca, 0x5d, 0xfc, 0xd6, 0x2b, 0xb2 +.byte 0x92, 0x3c, 0x20, 0xcf, 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76, 0x7f, 0x76, 0xe5, 0xec, 0x1a +.byte 0x86, 0x61, 0x33, 0x3e, 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e, 0xa2, 0xb9, 0x6a, 0x6f, 0xb9 +.byte 0x87, 0x26, 0x6f, 0x41, 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63, 0x0b, 0xf5, 0x93, 0x16, 0x1b +.byte 0x19, 0x8f, 0xb2, 0xed, 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c, 0xdf, 0x19, 0x3d, 0x0f, 0x3e +.byte 0x38, 0x23, 0xc9, 0x2f, 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55, 0xd6, 0x4e, 0xd0, 0x8d, 0x3c +.byte 0xaf, 0x4f, 0xa4, 0xf3, 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79, 0x08, 0xa1, 0xcb, 0x57, 0x31 +.byte 0xb4, 0x9c, 0xc8, 0x90, 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a, 0xfc, 0x47, 0xd8, 0xd1, 0x78 +.byte 0x96, 0x31, 0x1f, 0xba, 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63, 0x89, 0x5a, 0x24, 0x20, 0x76 +.byte 0xd8, 0xdf, 0xfd, 0xab, 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6, 0x27, 0x8a, 0x7d, 0x68, 0x29 +.byte 0xa3, 0xe7, 0x8a, 0xb8, 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d, 0x13, 0x24, 0x46, 0xf7, 0xc5 +.byte 0xe2, 0xd8, 0x9f, 0x8e, 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2, 0xe8, 0x72, 0xf5, 0xac, 0xee +.byte 0x24, 0x10, 0xad, 0x2f, 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71, 0x47, 0xbe, 0x42, 0xdf, 0xbb +.byte 0x01, 0xdb, 0xf4, 0x7f, 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3, 0xc9, 0x02, 0xa6, 0xb4, 0x52 +.byte 0xca, 0x6e, 0x97, 0xfb, 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4, 0xbb, 0xfd, 0x9f, 0x28, 0xaa +.byte 0x0d, 0xd5, 0x45, 0xf3, 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f, 0x41, 0x67, 0x3c, 0x1e, 0x94 +.byte 0x64, 0xae, 0x7b, 0x0b, 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a, 0x97, 0x86, 0x64, 0x41, 0xd5 +.byte 0x3b, 0x87, 0x0c, 0x6e, 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf, 0x39, 0x4d, 0xd4, 0x9e, 0x41 +.byte 0xb6, 0x8f, 0x96, 0x1d, 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78, 0x31, 0x68, 0x9e, 0x37, 0x06 +.byte 0x3b, 0x80, 0x89, 0x45, 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3, 0x15, 0xe5, 0x1c, 0xf8, 0x92 +.byte 0x30, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26, 0x01, 0x30, 0x51, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31 +.byte 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65 +.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x32, 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, 0xba +.byte 0x39, 0xc1, 0x37, 0x7a, 0x68, 0x45, 0x2b, 0x14, 0xb4, 0xeb, 0xe4, 0x13, 0xeb, 0x57, 0x75, 0x23 +.byte 0x4d, 0x8f, 0x24, 0x2d, 0x16, 0xe8, 0xae, 0x8e, 0xc9, 0x7d, 0xa4, 0x57, 0x3b, 0x2a, 0x76, 0x25 +.byte 0x33, 0x83, 0x6c, 0xea, 0x32, 0x8a, 0x94, 0x9b, 0x4e, 0x3c, 0x96, 0xe4, 0xfd, 0x51, 0xbf, 0x99 +.byte 0xc9, 0x93, 0x7e, 0xbf, 0xf9, 0xad, 0xa7, 0xb2, 0x48, 0x2b, 0x07, 0x1c, 0x27, 0xf5, 0x4c, 0xbc +.byte 0x70, 0x12, 0x77, 0xa4, 0x85, 0x54, 0xb5, 0xfd, 0x90, 0x7a, 0xe4, 0xa3, 0xe4, 0x51, 0x58, 0x03 +.byte 0xcd, 0x10, 0x79, 0x79, 0xee, 0x6b, 0x93, 0x1f, 0x64, 0x8e, 0x6b, 0x64, 0xab, 0xa3, 0x13, 0xe3 +.byte 0x71, 0xfe, 0x7d, 0xab, 0x9c, 0xdd, 0x27, 0x53, 0x37, 0xb3, 0xaa, 0x18, 0xc2, 0x59, 0x26, 0xec +.byte 0x5b, 0x1f, 0xd2, 0xe6, 0x65, 0x7c, 0xef, 0x93, 0xbd, 0xd8, 0x58, 0x5c, 0x0b, 0xc0, 0xe3, 0x65 +.byte 0x6f, 0x3c, 0xc7, 0xca, 0x59, 0xe3, 0xfe, 0x6e, 0x5f, 0xac, 0x83, 0xbe, 0xfd, 0x5d, 0x25, 0x4e +.byte 0x2a, 0x29, 0x3b, 0xd6, 0x0b, 0xab, 0x17, 0x32, 0x78, 0xa4, 0xe1, 0x3e, 0x94, 0x46, 0xbe, 0x62 +.byte 0x6e, 0x9b, 0xde, 0x46, 0xa8, 0xb1, 0x16, 0xe7, 0x85, 0x6e, 0xf4, 0x08, 0x40, 0x45, 0x11, 0xa0 +.byte 0x9e, 0x54, 0x44, 0x84, 0xf7, 0xd8, 0x36, 0xce, 0xf5, 0x50, 0x47, 0xdc, 0x2c, 0x30, 0x9b, 0xee +.byte 0xc0, 0xf5, 0x96, 0xd2, 0xfe, 0x09, 0x86, 0xc7, 0x06, 0x59, 0xae, 0x4f, 0xae, 0x8e, 0x11, 0x98 +.byte 0x7b, 0xf3, 0x0b, 0x52, 0xaa, 0x62, 0x26, 0xaa, 0x21, 0xdf, 0x8e, 0x25, 0x33, 0x79, 0x97, 0x16 +.byte 0x49, 0x8d, 0xf5, 0x3e, 0xd5, 0x47, 0x9f, 0x37, 0x31, 0x49, 0x33, 0x72, 0x05, 0x4d, 0x0c, 0xb6 +.byte 0x55, 0x8c, 0xf1, 0x57, 0x8f, 0x8a, 0x87, 0xd1, 0xad, 0xc5, 0x11, 0x12, 0x39, 0xa0, 0xad, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26, 0x02, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x1a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4a, 0x61, 0x70 +.byte 0x61, 0x6e, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1d, 0x30, 0x1b +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x34, 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, 0xc5, 0xd2, 0x7a, 0xa1 +.byte 0xd6, 0x8a, 0xbf, 0x16, 0x31, 0xd0, 0x98, 0xd1, 0x3a, 0x94, 0xfc, 0x5a, 0xb8, 0x6e, 0x22, 0xc1 +.byte 0x62, 0xf7, 0xa7, 0x0a, 0x27, 0xef, 0x50, 0xf6, 0x2e, 0xb1, 0x9e, 0x68, 0x12, 0xf0, 0x6c, 0x24 +.byte 0x63, 0x39, 0xf1, 0xf0, 0xdf, 0x10, 0xc6, 0xde, 0xb7, 0x52, 0x20, 0xd5, 0x52, 0x5b, 0x42, 0x99 +.byte 0x9e, 0xf3, 0xa0, 0xbe, 0x52, 0x1f, 0x5f, 0xcc, 0x67, 0x6d, 0xa7, 0x2e, 0x50, 0xa2, 0xc1, 0x97 +.byte 0x8d, 0xb6, 0xf8, 0x95, 0xf5, 0xb0, 0xba, 0xdc, 0x9d, 0xe0, 0xbe, 0xcb, 0xdf, 0xf7, 0x38, 0xf2 +.byte 0x47, 0xf5, 0xa6, 0x9a, 0x92, 0x95, 0x2a, 0x62, 0x59, 0x50, 0x0b, 0xa2, 0xb1, 0x35, 0xe7, 0x65 +.byte 0xb2, 0x61, 0xb2, 0xea, 0x92, 0x71, 0x69, 0xe4, 0x29, 0xf0, 0x4f, 0x81, 0x81, 0x04, 0x3c, 0xb2 +.byte 0xa5, 0x5b, 0xd4, 0xc5, 0xa8, 0x59, 0x67, 0x7b, 0x55, 0x1c, 0x49, 0xab, 0x7a, 0x9d, 0xc2, 0xe7 +.byte 0x73, 0x4d, 0xef, 0xcd, 0x09, 0xc2, 0xc4, 0x57, 0x12, 0xdb, 0x01, 0x0e, 0x23, 0x79, 0x09, 0x07 +.byte 0x3b, 0xa2, 0xe8, 0xfc, 0x8a, 0xcf, 0x8f, 0xc0, 0x46, 0x24, 0x9c, 0x38, 0x27, 0xe0, 0x83, 0x9d +.byte 0x1b, 0xa0, 0xbf, 0x78, 0x15, 0x10, 0xeb, 0x86, 0x4e, 0x0a, 0x5a, 0xfd, 0xdf, 0xda, 0x2c, 0x82 +.byte 0x7e, 0xee, 0xca, 0xf6, 0x29, 0xe1, 0xfa, 0x71, 0xa1, 0xf7, 0x88, 0x68, 0x9c, 0x9c, 0xf0, 0x8d +.byte 0xbe, 0x0f, 0x49, 0x91, 0xd8, 0xea, 0x3a, 0xf9, 0xfd, 0xd0, 0x68, 0x71, 0xdb, 0xe9, 0xb5, 0x2b +.byte 0x4e, 0x82, 0x92, 0x6f, 0x66, 0x1f, 0xe0, 0xf0, 0xdc, 0x4c, 0xec, 0xca, 0xd1, 0xea, 0xba, 0x74 +.byte 0x06, 0xf9, 0xb3, 0x84, 0x90, 0x94, 0xd1, 0x5f, 0x8e, 0x73, 0x19, 0x10, 0x5d, 0x02, 0xe5, 0x70 +.byte 0xa5, 0xc0, 0x10, 0xd0, 0x10, 0x7c, 0x6f, 0xc5, 0x58, 0x49, 0xb4, 0xb0, 0x6e, 0x9a, 0xda, 0x7d +.byte 0x95, 0xf5, 0xcc, 0xda, 0x02, 0xaf, 0xb8, 0x2c, 0x7d, 0x79, 0x8f, 0xbe, 0x43, 0xf1, 0xf9, 0x28 +.byte 0x28, 0x8d, 0x09, 0x43, 0xf8, 0x08, 0xdd, 0x6b, 0xc8, 0x8b, 0x2c, 0x24, 0xb1, 0x8d, 0x52, 0x07 +.byte 0xbd, 0x78, 0x9b, 0xcb, 0xca, 0x68, 0xb2, 0xa4, 0xdd, 0x0c, 0x4c, 0x79, 0x60, 0xc6, 0x99, 0xd1 +.byte 0x93, 0xf1, 0x30, 0x1a, 0x07, 0xd3, 0xae, 0x22, 0xc2, 0xea, 0xce, 0xf1, 0x84, 0x09, 0xcc, 0xe0 +.byte 0x14, 0x6e, 0x7f, 0x3f, 0x7e, 0xd2, 0x82, 0x85, 0xac, 0xdc, 0xa9, 0x16, 0x4e, 0x85, 0xa0, 0x60 +.byte 0xcb, 0xf6, 0x9c, 0xd7, 0xc8, 0xb3, 0x8e, 0xed, 0xc6, 0x9b, 0x98, 0x75, 0x0d, 0x55, 0xe8, 0x5f +.byte 0xe5, 0x95, 0x8b, 0x02, 0xa4, 0xae, 0x43, 0x29, 0x28, 0x11, 0xa4, 0xe6, 0x12, 0x30, 0x01, 0x4b +.byte 0x75, 0x6b, 0x1e, 0x66, 0x9d, 0x79, 0x2f, 0xa5, 0x76, 0x2f, 0x1d, 0x40, 0xb4, 0x6d, 0xc9, 0x7d +.byte 0x79, 0x08, 0xec, 0xd1, 0x6a, 0xb6, 0x5d, 0x2a, 0xb2, 0xa5, 0x66, 0xbd, 0x6b, 0x85, 0xf4, 0x74 +.byte 0x56, 0xc3, 0xf5, 0xe7, 0x75, 0x52, 0x28, 0x2c, 0xa5, 0xff, 0x66, 0x47, 0xa5, 0xd4, 0xfe, 0xfe +.byte 0x9e, 0x54, 0xbf, 0x65, 0x7e, 0x01, 0xd6, 0x30, 0x8f, 0xa5, 0x36, 0x9c, 0xa2, 0x50, 0x1c, 0xee +.byte 0x38, 0x80, 0x01, 0x48, 0xc6, 0xc7, 0x74, 0xf4, 0xc6, 0xac, 0xc3, 0x40, 0x49, 0x16, 0x61, 0x74 +.byte 0x2c, 0xaf, 0x8c, 0x6f, 0x35, 0xed, 0x7b, 0x18, 0x00, 0x5b, 0x36, 0x3c, 0x9c, 0x50, 0x0d, 0xca +.byte 0x92, 0x33, 0x10, 0xf1, 0x26, 0x49, 0x6d, 0xdf, 0x75, 0x24, 0x37, 0x82, 0x22, 0xd7, 0xe8, 0x96 +.byte 0xfd, 0x15, 0x4b, 0x02, 0x96, 0x3e, 0x07, 0x72, 0x95, 0x7e, 0xab, 0x3d, 0x4c, 0x2e, 0xd7, 0xca +.byte 0xf0, 0xdf, 0xe0, 0x58, 0x3f, 0x2d, 0x2f, 0x04, 0x9a, 0x38, 0xa3, 0x01, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x53, 0x00, 0x78, 0x00, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x43 +.byte 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20 +.byte 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x35, 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 0x0b, 0x50, 0x74, 0x8d, 0x64, 0x32, 0x99, 0x99, 0xb3, 0xd2, 0x60, 0x08, 0xb8, 0x22, 0x8e, 0x46 +.byte 0x74, 0x2c, 0x78, 0xc0, 0x2b, 0x44, 0x2d, 0x6d, 0x5f, 0x1d, 0xc9, 0xae, 0x4b, 0x52, 0x20, 0x83 +.byte 0x3d, 0xb8, 0x14, 0x6d, 0x53, 0x87, 0x60, 0x9e, 0x5f, 0x6c, 0x85, 0xdb, 0x06, 0x14, 0x95, 0xe0 +.byte 0xc7, 0x28, 0xff, 0x9d, 0x5f, 0xe4, 0xaa, 0xf1, 0xb3, 0x8b, 0x6d, 0xed, 0x4f, 0x2f, 0x4b, 0xc9 +.byte 0x4a, 0x94, 0x91, 0x64, 0x75, 0xfe, 0x01, 0xec, 0xc1, 0xd8, 0xeb, 0x7a, 0x94, 0x78, 0x56, 0x18 +.byte 0x43, 0x5f, 0x6b, 0x81, 0xcb, 0xf6, 0xbc, 0xda, 0xb4, 0x0c, 0xb6, 0x29, 0x93, 0x08, 0x69, 0x8f +.byte 0x53, 0x00, 0x26, 0x01, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x50, 0x4c, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1f, 0x4b, 0x72 +.byte 0x61, 0x6a, 0x6f, 0x77, 0x61, 0x20, 0x49, 0x7a, 0x62, 0x61, 0x20, 0x52, 0x6f, 0x7a, 0x6c, 0x69 +.byte 0x63, 0x7a, 0x65, 0x6e, 0x69, 0x6f, 0x77, 0x61, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x18, 0x30 +.byte 0x16, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0f, 0x53, 0x5a, 0x41, 0x46, 0x49, 0x52, 0x20, 0x52 +.byte 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x32, 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, 0xb7, 0xbc, 0x3e, 0x50, 0xa8, 0x4b, 0xcd, 0x40 +.byte 0xb5, 0xce, 0x61, 0xe7, 0x96, 0xca, 0xb4, 0xa1, 0xda, 0x0c, 0x22, 0xb0, 0xfa, 0xb5, 0x7b, 0x76 +.byte 0x00, 0x77, 0x8c, 0x0b, 0xcf, 0x7d, 0xa8, 0x86, 0xcc, 0x26, 0x51, 0xe4, 0x20, 0x3d, 0x85, 0x0c +.byte 0xd6, 0x58, 0xe3, 0xe7, 0xf4, 0x2a, 0x18, 0x9d, 0xda, 0xd1, 0xae, 0x26, 0xee, 0xeb, 0x53, 0xdc +.byte 0xf4, 0x90, 0xd6, 0x13, 0x4a, 0x0c, 0x90, 0x3c, 0xc3, 0xf4, 0xda, 0xd2, 0x8e, 0x0d, 0x92, 0x3a +.byte 0xdc, 0xb1, 0xb1, 0xff, 0x38, 0xde, 0xc3, 0xba, 0x2d, 0x5f, 0x80, 0xb9, 0x02, 0xbd, 0x4a, 0x9d +.byte 0x1b, 0x0f, 0xb4, 0xc3, 0xc2, 0xc1, 0x67, 0x03, 0xdd, 0xdc, 0x1b, 0x9c, 0x3d, 0xb3, 0xb0, 0xde +.byte 0x00, 0x1e, 0xa8, 0x34, 0x47, 0xbb, 0x9a, 0xeb, 0xfe, 0x0b, 0x14, 0xbd, 0x36, 0x84, 0xda, 0x0d +.byte 0x20, 0xbf, 0xfa, 0x5b, 0xcb, 0xa9, 0x16, 0x20, 0xad, 0x39, 0x60, 0xee, 0x2f, 0x75, 0xb6, 0xe7 +.byte 0x97, 0x9c, 0xf9, 0x3e, 0xfd, 0x7e, 0x4d, 0x6f, 0x4d, 0x2f, 0xef, 0x88, 0x0d, 0x6a, 0xfa, 0xdd +.byte 0xf1, 0x3d, 0x6e, 0x20, 0xa5, 0xa0, 0x12, 0xb4, 0x4d, 0x70, 0xb9, 0xce, 0xd7, 0x72, 0x3b, 0x89 +.byte 0x93, 0xa7, 0x80, 0x84, 0x1c, 0x27, 0x49, 0x72, 0x49, 0xb5, 0xff, 0x3b, 0x95, 0x9e, 0xc1, 0xcc +.byte 0xc8, 0x01, 0xec, 0xe8, 0x0e, 0x8a, 0x0a, 0x96, 0xe7, 0xb3, 0xa6, 0x87, 0xe5, 0xd6, 0xf9, 0x05 +.byte 0x2b, 0x0d, 0x97, 0x40, 0x70, 0x3c, 0xba, 0xac, 0x75, 0x5a, 0x9c, 0xd5, 0x4d, 0x9d, 0x02, 0x0a +.byte 0xd2, 0x4b, 0x9b, 0x66, 0x4b, 0x46, 0x07, 0x17, 0x65, 0xad, 0x9f, 0x6c, 0x88, 0x00, 0xdc, 0x22 +.byte 0x89, 0xe0, 0xe1, 0x64, 0xd4, 0x67, 0xbc, 0x31, 0x79, 0x61, 0x3c, 0xbb, 0xca, 0x41, 0xcd, 0x5c +.byte 0x6a, 0x00, 0xc8, 0x3c, 0x38, 0x8e, 0x58, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26 +.byte 0x02, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57 +.byte 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x54, 0x41, 0x49, 0x57, 0x41 +.byte 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x13, 0x54, 0x57, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 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, 0xb0, 0x05, 0xdb, 0xc8, 0xeb, 0x8c, 0xc4, 0x6e, 0x8a, 0x21, 0xef +.byte 0x8e, 0x4d, 0x9c, 0x71, 0x0a, 0x1f, 0x52, 0x70, 0xed, 0x6d, 0x82, 0x9c, 0x97, 0xc5, 0xd7, 0x4c +.byte 0x4e, 0x45, 0x49, 0xcb, 0x40, 0x42, 0xb5, 0x12, 0x34, 0x6c, 0x19, 0xc2, 0x74, 0xa4, 0x31, 0x5f +.byte 0x85, 0x02, 0x97, 0xec, 0x43, 0x33, 0x0a, 0x53, 0xd2, 0x9c, 0x8c, 0x8e, 0xb7, 0xb8, 0x79, 0xdb +.byte 0x2b, 0xd5, 0x6a, 0xf2, 0x8e, 0x66, 0xc4, 0xee, 0x2b, 0x01, 0x07, 0x92, 0xd4, 0xb3, 0xd0, 0x02 +.byte 0xdf, 0x50, 0xf6, 0x55, 0xaf, 0x66, 0x0e, 0xcb, 0xe0, 0x47, 0x60, 0x2f, 0x2b, 0x32, 0x39, 0x35 +.byte 0x52, 0x3a, 0x28, 0x83, 0xf8, 0x7b, 0x16, 0xc6, 0x18, 0xb8, 0x62, 0xd6, 0x47, 0x25, 0x91, 0xce +.byte 0xf0, 0x19, 0x12, 0x4d, 0xad, 0x63, 0xf5, 0xd3, 0x3f, 0x75, 0x5f, 0x29, 0xf0, 0xa1, 0x30, 0x1c +.byte 0x2a, 0xa0, 0x98, 0xa6, 0x15, 0xbd, 0xee, 0xfd, 0x19, 0x36, 0xf0, 0xe2, 0x91, 0x43, 0x8f, 0xfa +.byte 0xca, 0xd6, 0x10, 0x27, 0x49, 0x4c, 0xef, 0xdd, 0xc1, 0xf1, 0x85, 0x70, 0x9b, 0xca, 0xea, 0xa8 +.byte 0x5a, 0x43, 0xfc, 0x6d, 0x86, 0x6f, 0x73, 0xe9, 0x37, 0x45, 0xa9, 0xf0, 0x36, 0xc7, 0xcc, 0x88 +.byte 0x75, 0x1e, 0xbb, 0x6c, 0x06, 0xff, 0x9b, 0x6b, 0x3e, 0x17, 0xec, 0x61, 0xaa, 0x71, 0x7c, 0xc6 +.byte 0x1d, 0xa2, 0xf7, 0x49, 0xe9, 0x15, 0xb5, 0x3c, 0xd6, 0xa1, 0x61, 0xf5, 0x11, 0xf7, 0x05, 0x6f +.byte 0x1d, 0xfd, 0x11, 0xbe, 0xd0, 0x30, 0x07, 0xc2, 0x29, 0xb0, 0x09, 0x4e, 0x26, 0xdc, 0xe3, 0xa2 +.byte 0xa8, 0x91, 0x6a, 0x1f, 0xc2, 0x91, 0x45, 0x88, 0x5c, 0xe5, 0x98, 0xb8, 0x71, 0xa5, 0x15, 0x19 +.byte 0xc9, 0x7c, 0x75, 0x11, 0xcc, 0x70, 0x74, 0x4f, 0x2d, 0x9b, 0x1d, 0x91, 0x44, 0xfd, 0x56, 0x28 +.byte 0xa0, 0xfe, 0xbb, 0x86, 0x6a, 0xc8, 0xfa, 0x5c, 0x0b, 0x58, 0xdc, 0xc6, 0x4b, 0x76, 0xc8, 0xab +.byte 0x22, 0xd9, 0x73, 0x0f, 0xa5, 0xf4, 0x5a, 0x02, 0x89, 0x3f, 0x4f, 0x9e, 0x22, 0x82, 0xee, 0xa2 +.byte 0x74, 0x53, 0x2a, 0x3d, 0x53, 0x27, 0x69, 0x1d, 0x6c, 0x8e, 0x32, 0x2c, 0x64, 0x00, 0x26, 0x63 +.byte 0x61, 0x36, 0x4e, 0xa3, 0x46, 0xb7, 0x3f, 0x7d, 0xb3, 0x2d, 0xac, 0x6d, 0x90, 0xa2, 0x95, 0xa2 +.byte 0xce, 0xcf, 0xda, 0x82, 0xe7, 0x07, 0x34, 0x19, 0x96, 0xe9, 0xb8, 0x21, 0xaa, 0x29, 0x7e, 0xa6 +.byte 0x38, 0xbe, 0x8e, 0x29, 0x4a, 0x21, 0x66, 0x79, 0x1f, 0xb3, 0xc3, 0xb5, 0x09, 0x67, 0xde, 0xd6 +.byte 0xd4, 0x07, 0x46, 0xf3, 0x2a, 0xda, 0xe6, 0x22, 0x37, 0x60, 0xcb, 0x81, 0xb6, 0x0f, 0xa0, 0x0f +.byte 0xe9, 0xc8, 0x95, 0x7f, 0xbf, 0x55, 0x91, 0x05, 0x7a, 0xcf, 0x3d, 0x15, 0xc0, 0x6f, 0xde, 0x09 +.byte 0x94, 0x01, 0x83, 0xd7, 0x34, 0x1b, 0xcc, 0x40, 0xa5, 0xf0, 0xb8, 0x9b, 0x67, 0xd5, 0x98, 0x91 +.byte 0x3b, 0xa7, 0x84, 0x78, 0x95, 0x26, 0xa4, 0x5a, 0x08, 0xf8, 0x2b, 0x74, 0xb4, 0x00, 0x04, 0x3c +.byte 0xdf, 0xb8, 0x14, 0x8e, 0xe8, 0xdf, 0xa9, 0x8d, 0x6c, 0x67, 0x92, 0x33, 0x1d, 0xc0, 0xb7, 0xd2 +.byte 0xec, 0x92, 0xc8, 0xbe, 0x09, 0xbf, 0x2c, 0x29, 0x05, 0x6f, 0x02, 0x6b, 0x9e, 0xef, 0xbc, 0xbf +.byte 0x2a, 0xbc, 0x5b, 0xc0, 0x50, 0x8f, 0x41, 0x70, 0x71, 0x87, 0xb2, 0x4d, 0xb7, 0x04, 0xa9, 0x84 +.byte 0xa3, 0x32, 0xaf, 0xae, 0xee, 0x6b, 0x17, 0x8b, 0xb2, 0xb1, 0xfe, 0x6c, 0xe1, 0x90, 0x8c, 0x88 +.byte 0xa8, 0x97, 0x48, 0xce, 0xc8, 0x4d, 0xcb, 0xf3, 0x06, 0xcf, 0x5f, 0x6a, 0x0a, 0x42, 0xb1, 0x1e +.byte 0x1e, 0x77, 0x2f, 0x8e, 0xa0, 0xe6, 0x92, 0x0e, 0x06, 0xfc, 0x05, 0x22, 0xd2, 0x26, 0xe1, 0x31 +.byte 0x51, 0x7d, 0x32, 0xdc, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x54, 0x00, 0x26, 0x02, 0x30, 0x52 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x53, 0x4b, 0x31, 0x13, 0x30 +.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x42, 0x72, 0x61, 0x74, 0x69, 0x73, 0x6c, 0x61 +.byte 0x76, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x44, 0x69, 0x73 +.byte 0x69, 0x67, 0x20, 0x61, 0x2e, 0x73, 0x2e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x10, 0x43, 0x41, 0x20, 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x52, 0x32, 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, 0xa2, 0xa3, 0xc4, 0x00, 0x09, 0xd6, 0x85, 0x5d, 0x2d, 0x6d, 0x14, 0xf6, 0xc2 +.byte 0xc3, 0x73, 0x9e, 0x35, 0xc2, 0x71, 0x55, 0x7e, 0x81, 0xfb, 0xab, 0x46, 0x50, 0xe0, 0xc1, 0x7c +.byte 0x49, 0x78, 0xe6, 0xab, 0x79, 0x58, 0x3c, 0xda, 0xff, 0x7c, 0x1c, 0x9f, 0xd8, 0x97, 0x02, 0x78 +.byte 0x3e, 0x6b, 0x41, 0x04, 0xe9, 0x41, 0xbd, 0xbe, 0x03, 0x2c, 0x45, 0xf6, 0x2f, 0x64, 0xd4, 0xab +.byte 0x5d, 0xa3, 0x47, 0x3d, 0x64, 0x9b, 0xe9, 0x68, 0x9a, 0xc6, 0xcc, 0x1b, 0x3f, 0xba, 0xbe, 0xb2 +.byte 0x8b, 0x34, 0x02, 0x2e, 0x98, 0x55, 0x19, 0xfc, 0x8c, 0x6f, 0xaa, 0x5f, 0xda, 0x4c, 0xce, 0x4d +.byte 0x03, 0x21, 0xa3, 0xd8, 0xd2, 0x34, 0x93, 0x56, 0x96, 0xcb, 0x4c, 0x0c, 0x00, 0x16, 0x3c, 0x5f +.byte 0x1a, 0xcd, 0xc8, 0xc7, 0x6c, 0xa6, 0xad, 0xd3, 0x31, 0xa7, 0xbc, 0xe8, 0xe5, 0xe1, 0x66, 0xd6 +.byte 0xd2, 0xfb, 0x03, 0xb4, 0x41, 0x65, 0xc9, 0x10, 0xae, 0x0e, 0x05, 0x63, 0xc6, 0x80, 0x6a, 0x69 +.byte 0x30, 0xfd, 0xd2, 0xee, 0x90, 0xef, 0x0d, 0x27, 0xdf, 0x9f, 0x95, 0x73, 0xf4, 0xe1, 0x25, 0xda +.byte 0x6c, 0x16, 0xde, 0x41, 0x38, 0x34, 0xea, 0x8b, 0xfc, 0xd1, 0xe8, 0x04, 0x14, 0x61, 0x2d, 0x41 +.byte 0x7e, 0xac, 0xc7, 0x77, 0x4e, 0xcb, 0x51, 0x54, 0xfb, 0x5e, 0x92, 0x18, 0x1b, 0x04, 0x5a, 0x68 +.byte 0xc6, 0xc9, 0xc4, 0xfa, 0xb7, 0x13, 0xa0, 0x98, 0xb7, 0x11, 0x2b, 0xb7, 0xd6, 0x57, 0xcc, 0x7c +.byte 0x9e, 0x17, 0xd1, 0xcb, 0x25, 0xfe, 0x86, 0x4e, 0x24, 0x2e, 0x56, 0x0c, 0x78, 0x4d, 0x9e, 0x01 +.byte 0x12, 0xa6, 0x2b, 0xa7, 0x01, 0x65, 0x6e, 0x7c, 0x62, 0x1d, 0x84, 0x84, 0xdf, 0xea, 0xc0, 0x6b +.byte 0xb5, 0xa5, 0x2a, 0x95, 0x83, 0xc3, 0x53, 0x11, 0x0c, 0x73, 0x1d, 0x0b, 0xb2, 0x46, 0x90, 0xd1 +.byte 0x42, 0x3a, 0xce, 0x40, 0x6e, 0x95, 0xad, 0xff, 0xc6, 0x94, 0xad, 0x6e, 0x97, 0x84, 0x8e, 0x7d +.byte 0x6f, 0x9e, 0x8a, 0x80, 0x0d, 0x49, 0x6d, 0x73, 0xe2, 0x7b, 0x92, 0x1e, 0xc3, 0xf3, 0xc1, 0xf3 +.byte 0xeb, 0x2e, 0x05, 0x6f, 0xd9, 0x1b, 0xcf, 0x37, 0x76, 0x04, 0xc8, 0xb4, 0x5a, 0xe4, 0x17, 0xa7 +.byte 0xcb, 0xdd, 0x76, 0x1f, 0xd0, 0x19, 0x76, 0xe8, 0x2c, 0x05, 0xb3, 0xd6, 0x9c, 0x34, 0xd8, 0x96 +.byte 0xdc, 0x61, 0x87, 0x91, 0x05, 0xe4, 0x44, 0x08, 0x33, 0xc1, 0xda, 0xb9, 0x08, 0x65, 0xd4, 0xae +.byte 0xb2, 0x36, 0x0d, 0xeb, 0xba, 0x38, 0xba, 0x0c, 0xe5, 0x9b, 0x9e, 0xeb, 0x8d, 0x66, 0xdd, 0x99 +.byte 0xcf, 0xd6, 0x89, 0x41, 0xf6, 0x04, 0x92, 0x8a, 0x29, 0x29, 0x6d, 0x6b, 0x3a, 0x1c, 0xe7, 0x75 +.byte 0x7d, 0x02, 0x71, 0x0e, 0xf3, 0xc0, 0xe7, 0xbd, 0xcb, 0x19, 0xdd, 0x9d, 0x60, 0xb2, 0xc2, 0x66 +.byte 0x60, 0xb6, 0xb1, 0x04, 0xee, 0xc9, 0xe6, 0x86, 0xb9, 0x9a, 0x66, 0x40, 0xa8, 0xe7, 0x11, 0xed +.byte 0x81, 0x45, 0x03, 0x8b, 0xf6, 0x67, 0x59, 0xe8, 0xc1, 0x06, 0x11, 0xbd, 0xdd, 0xcf, 0x80, 0x02 +.byte 0x4f, 0x65, 0x40, 0x78, 0x5c, 0x47, 0x50, 0xc8, 0x9b, 0xe6, 0x1f, 0x81, 0x7b, 0xe4, 0x44, 0xa8 +.byte 0x5b, 0x85, 0x9a, 0xe2, 0xde, 0x5a, 0xd5, 0xc7, 0xf9, 0x3a, 0x44, 0x66, 0x4b, 0xe4, 0x32, 0x54 +.byte 0x7c, 0xe4, 0x6c, 0x9c, 0xb3, 0x0e, 0x3d, 0x17, 0xa2, 0xb2, 0x34, 0x12, 0xd6, 0x7e, 0xb2, 0xa8 +.byte 0x49, 0xbb, 0xd1, 0x7a, 0x28, 0x40, 0xbe, 0xa2, 0x16, 0x1f, 0xdf, 0xe4, 0x37, 0x1f, 0x11, 0x73 +.byte 0xfb, 0x90, 0x0a, 0x65, 0x43, 0xa2, 0x0d, 0x7c, 0xf8, 0x06, 0x01, 0x55, 0x33, 0x7d, 0xb0, 0x0d +.byte 0xb8, 0xf4, 0xf5, 0xae, 0xa5, 0x42, 0x57, 0x7c, 0x36, 0x11, 0x8c, 0x7b, 0x5e, 0xc4, 0x03, 0x9d +.byte 0x8c, 0x79, 0x9d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x56, 0x00, 0x26, 0x02, 0x30, 0x54, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x26, 0x30, 0x24, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x42, 0x45, 0x49, 0x4a, 0x49, 0x4e, 0x47, 0x20, 0x43, 0x45 +.byte 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52 +.byte 0x49, 0x54, 0x59, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x14, 0x42, 0x4a +.byte 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 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, 0xf1, 0x66, 0x08, 0xbd, 0xd9, 0xc5, 0x15, 0x61, 0xcb, 0x84, 0x04, 0x41, 0xa5 +.byte 0x69, 0x37, 0x77, 0x1d, 0xc1, 0xb0, 0x7b, 0xfa, 0xc3, 0x77, 0x48, 0x90, 0x13, 0x72, 0x64, 0xd1 +.byte 0xb8, 0x7c, 0x90, 0x35, 0x9d, 0x18, 0x79, 0x88, 0xe3, 0x97, 0x01, 0x3c, 0x47, 0x81, 0xf2, 0x0e +.byte 0xa2, 0x98, 0x0d, 0x9e, 0x3f, 0x37, 0xe0, 0x19, 0xb2, 0x90, 0xf2, 0x46, 0x1c, 0x92, 0xb1, 0x3a +.byte 0x61, 0xce, 0xfa, 0xb7, 0x46, 0x9e, 0x03, 0x86, 0xd7, 0x33, 0x6e, 0xed, 0xf7, 0x45, 0x8c, 0x76 +.byte 0x37, 0xde, 0x6e, 0x96, 0x91, 0xf7, 0xd7, 0x7e, 0x2b, 0x87, 0x17, 0xd5, 0x8b, 0x35, 0xee, 0x84 +.byte 0x91, 0x72, 0x57, 0xdc, 0x60, 0xc3, 0xc3, 0xb9, 0xe7, 0xc7, 0x67, 0x24, 0x23, 0x4f, 0x63, 0x0a +.byte 0x63, 0xf6, 0x66, 0x7d, 0x4b, 0x55, 0xa7, 0x3f, 0x78, 0x64, 0x49, 0x69, 0x12, 0x97, 0xe0, 0x4c +.byte 0x0d, 0xd3, 0x09, 0xa0, 0x32, 0x30, 0x3a, 0xfa, 0x9f, 0xc0, 0xf2, 0x9c, 0xc5, 0x12, 0x2a, 0x2e +.byte 0x1c, 0xb5, 0x04, 0x33, 0xda, 0xa4, 0x38, 0x11, 0x6a, 0xde, 0xc6, 0x18, 0xf6, 0x47, 0x3a, 0x22 +.byte 0x41, 0x87, 0x22, 0xfc, 0xc4, 0x89, 0x28, 0x54, 0xd8, 0x8c, 0xa5, 0x30, 0x0a, 0xf8, 0x17, 0x16 +.byte 0xca, 0xac, 0x37, 0xfd, 0x79, 0xa7, 0x91, 0x17, 0x78, 0x38, 0x99, 0xad, 0x58, 0xed, 0xb2, 0xde +.byte 0xcc, 0x89, 0x7d, 0x03, 0x9c, 0xb3, 0x89, 0x65, 0xe7, 0xe3, 0x3b, 0xb1, 0x22, 0x86, 0x8f, 0x06 +.byte 0x6d, 0x78, 0x07, 0xfd, 0x91, 0x12, 0x7f, 0xb0, 0x6b, 0x1c, 0x89, 0x0d, 0xf9, 0xb8, 0xcb, 0x74 +.byte 0x5b, 0x07, 0xc2, 0xc8, 0xf4, 0x35, 0xd1, 0x64, 0x63, 0x7a, 0xe9, 0x6e, 0x9a, 0x28, 0xd6, 0x30 +.byte 0xbd, 0xe6, 0x1b, 0xdd, 0x15, 0xaf, 0x84, 0xea, 0x9c, 0xc7, 0xca, 0xf5, 0x0e, 0xea, 0xf2, 0x5d +.byte 0x29, 0x87, 0x8f, 0x69, 0x73, 0x39, 0xbe, 0x2e, 0x24, 0x6f, 0x45, 0x21, 0xac, 0xc5, 0xd4, 0x69 +.byte 0x25, 0x06, 0x83, 0xad, 0x7a, 0x48, 0x85, 0x13, 0x2c, 0x0d, 0x06, 0xb8, 0x6c, 0x79, 0x56, 0xfc +.byte 0xa3, 0x67, 0x32, 0x81, 0xf5, 0x57, 0xa5, 0xca, 0x57, 0x42, 0x69, 0xe9, 0x5c, 0x24, 0x61, 0xef +.byte 0xe2, 0x30, 0x18, 0x4e, 0x44, 0x98, 0x55, 0x6f, 0x7a, 0xc2, 0x93, 0xd8, 0x19, 0xb6, 0xde, 0x7c +.byte 0x47, 0x8a, 0x11, 0x4e, 0x49, 0x47, 0xdb, 0x28, 0x94, 0x02, 0x0b, 0x94, 0x4a, 0x2c, 0xf9, 0x12 +.byte 0xd0, 0x4f, 0xe8, 0x31, 0x7e, 0x6c, 0x7a, 0xbf, 0xa6, 0x3f, 0x9b, 0x39, 0x3d, 0x02, 0x16, 0xa3 +.byte 0x18, 0xb3, 0x67, 0xac, 0x5b, 0x3f, 0x2c, 0x83, 0x2b, 0x67, 0x39, 0x81, 0x5c, 0xb9, 0x7e, 0x94 +.byte 0xd5, 0x64, 0xdd, 0x9e, 0x8f, 0x6e, 0xae, 0xe8, 0x7c, 0x5b, 0xb4, 0xd7, 0x6a, 0x47, 0x48, 0xd7 +.byte 0x7e, 0xb3, 0xd4, 0x2d, 0x8e, 0x56, 0x76, 0x4e, 0xcf, 0x69, 0xf1, 0x6e, 0x44, 0x6c, 0xd4, 0x24 +.byte 0xea, 0x8d, 0x24, 0xa1, 0x18, 0xbf, 0xbd, 0x57, 0xfe, 0xa9, 0x99, 0x35, 0xb5, 0xdb, 0x10, 0x77 +.byte 0xb8, 0x3d, 0x48, 0xba, 0xd6, 0xc1, 0xe7, 0xf1, 0x23, 0x3e, 0xd7, 0xdf, 0x85, 0x9d, 0x27, 0x3c +.byte 0xd4, 0x40, 0xbd, 0x0a, 0x0c, 0xbd, 0xf5, 0xe7, 0x8d, 0x25, 0xd6, 0x81, 0x74, 0x87, 0x46, 0xd4 +.byte 0x29, 0x75, 0xa2, 0x42, 0x6c, 0xf7, 0x73, 0x89, 0xe7, 0x7d, 0xbf, 0x7a, 0x4a, 0x1f, 0xd3, 0x22 +.byte 0xc9, 0x15, 0x55, 0xcf, 0xdf, 0x6f, 0x7c, 0x55, 0xd0, 0xa4, 0x8b, 0x07, 0x11, 0x37, 0x5f, 0x83 +.byte 0xa6, 0x26, 0x57, 0xa6, 0x01, 0x5b, 0x7e, 0xfe, 0x58, 0x68, 0x07, 0xa9, 0xe9, 0x7a, 0xd9, 0xb9 +.byte 0xe8, 0xff, 0x50, 0x1f, 0xab, 0xc2, 0xb4, 0xc0, 0xce, 0xe8, 0xea, 0xfd, 0x0f, 0xbd, 0x8d, 0x4d +.byte 0xb8, 0xbc, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0x56, 0x00, 0x78, 0x00, 0x30, 0x54, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x26, 0x30, 0x24, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x42, 0x45, 0x49, 0x4a, 0x49, 0x4e, 0x47, 0x20, 0x43, 0x45 +.byte 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52 +.byte 0x49, 0x54, 0x59, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x14, 0x42, 0x4a +.byte 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 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, 0x9d, 0xcb, 0x80, 0x91, 0x8d, 0x53 +.byte 0x67, 0xb5, 0xb9, 0x50, 0xb1, 0x03, 0xf8, 0xe5, 0x49, 0x1f, 0x41, 0x22, 0x09, 0xb0, 0x51, 0x52 +.byte 0x58, 0xd6, 0x2b, 0x34, 0x8f, 0xc5, 0x12, 0x46, 0x14, 0xc5, 0x8b, 0x2f, 0x2c, 0x84, 0xff, 0x2c +.byte 0x6e, 0xa8, 0xd5, 0xf1, 0x09, 0xe3, 0x03, 0x21, 0x14, 0xc4, 0x43, 0x3d, 0x7c, 0xc1, 0x2c, 0xc4 +.byte 0x4b, 0x6a, 0x4a, 0xcd, 0xe9, 0x87, 0xe0, 0x7d, 0xf6, 0x22, 0xbe, 0xfa, 0x4a, 0x51, 0xb8, 0x30 +.byte 0x8a, 0xfd, 0xe1, 0xde, 0x18, 0x12, 0x0a, 0xf6, 0x47, 0xb7, 0xe7, 0x17, 0xbf, 0x27, 0x8a, 0xd4 +.byte 0x41, 0x4c, 0x96, 0x3c, 0x60, 0x96, 0xc1, 0xfd, 0x15, 0x1c, 0x58, 0x00, 0x26, 0x02, 0x30, 0x56 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x30, 0x30 +.byte 0x2e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x27, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x46, 0x69 +.byte 0x6e, 0x61, 0x6e, 0x63, 0x69, 0x61, 0x6c, 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, 0x31 +.byte 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0c, 0x43, 0x46, 0x43, 0x41, 0x20, 0x45 +.byte 0x56, 0x20, 0x52, 0x4f, 0x4f, 0x54, 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, 0xd7, 0x5d, 0x6b, 0xcd, 0x10, 0x3f, 0x1f, 0x05, 0x59 +.byte 0xd5, 0x05, 0x4d, 0x37, 0xb1, 0x0e, 0xec, 0x98, 0x2b, 0x8e, 0x15, 0x1d, 0xfa, 0x93, 0x4b, 0x17 +.byte 0x82, 0x21, 0x71, 0x10, 0x52, 0xd7, 0x51, 0x64, 0x70, 0x16, 0xc2, 0x55, 0x69, 0x4d, 0x8e, 0x15 +.byte 0x6d, 0x9f, 0xbf, 0x0c, 0x1b, 0xc2, 0xe0, 0xa3, 0x67, 0xd6, 0x0c, 0xac, 0xcf, 0x22, 0xae, 0xaf +.byte 0x77, 0x54, 0x2a, 0x4b, 0x4c, 0x8a, 0x53, 0x52, 0x7a, 0xc3, 0xee, 0x2e, 0xde, 0xb3, 0x71, 0x25 +.byte 0xc1, 0xe9, 0x5d, 0x3d, 0xee, 0xa1, 0x2f, 0xa3, 0xf7, 0x2a, 0x3c, 0xc9, 0x23, 0x1d, 0x6a, 0xab +.byte 0x1d, 0xa1, 0xa7, 0xf1, 0xf3, 0xec, 0xa0, 0xd5, 0x44, 0xcf, 0x15, 0xcf, 0x72, 0x2f, 0x1d, 0x63 +.byte 0x97, 0xe8, 0x99, 0xf9, 0xfd, 0x93, 0xa4, 0x54, 0x80, 0x4c, 0x52, 0xd4, 0x52, 0xab, 0x2e, 0x49 +.byte 0xdf, 0x90, 0xcd, 0xb8, 0x5f, 0xbe, 0x3f, 0xde, 0xa1, 0xca, 0x4d, 0x20, 0xd4, 0x25, 0xe8, 0x84 +.byte 0x29, 0x53, 0xb7, 0xb1, 0x88, 0x1f, 0xff, 0xfa, 0xda, 0x90, 0x9f, 0x0a, 0xa9, 0x2d, 0x41, 0x3f +.byte 0xb1, 0xf1, 0x18, 0x29, 0xee, 0x16, 0x59, 0x2c, 0x34, 0x49, 0x1a, 0xa8, 0x06, 0xd7, 0xa8, 0x88 +.byte 0xd2, 0x03, 0x72, 0x7a, 0x32, 0xe2, 0xea, 0x68, 0x4d, 0x6e, 0x2c, 0x96, 0x65, 0x7b, 0xca, 0x59 +.byte 0xfa, 0xf2, 0xe2, 0xdd, 0xee, 0x30, 0x2c, 0xfb, 0xcc, 0x46, 0xac, 0xc4, 0x63, 0xeb, 0x6f, 0x7f +.byte 0x36, 0x2b, 0x34, 0x73, 0x12, 0x94, 0x7f, 0xdf, 0xcc, 0x26, 0x9e, 0xf1, 0x72, 0x5d, 0x50, 0x65 +.byte 0x59, 0x8f, 0x69, 0xb3, 0x87, 0x5e, 0x32, 0x6f, 0xc3, 0x18, 0x8a, 0xb5, 0x95, 0x8f, 0xb0, 0x7a +.byte 0x37, 0xde, 0x5a, 0x45, 0x3b, 0xc7, 0x36, 0xe1, 0xef, 0x67, 0xd1, 0x39, 0xd3, 0x97, 0x5b, 0x73 +.byte 0x62, 0x19, 0x48, 0x2d, 0x87, 0x1c, 0x06, 0xfb, 0x74, 0x98, 0x20, 0x49, 0x73, 0xf0, 0x05, 0xd2 +.byte 0x1b, 0xb1, 0xa0, 0xa3, 0xb7, 0x1b, 0x70, 0xd3, 0x88, 0x69, 0xb9, 0x5a, 0xd6, 0x38, 0xf4, 0x62 +.byte 0xdc, 0x25, 0x8b, 0x78, 0xbf, 0xf8, 0xe8, 0x7e, 0xb8, 0x5c, 0xc9, 0x95, 0x4f, 0x5f, 0xa7, 0x2d +.byte 0xb9, 0x20, 0x6b, 0xcf, 0x6b, 0xdd, 0xf5, 0x0d, 0xf4, 0x82, 0xb7, 0xf4, 0xb2, 0x66, 0x2e, 0x10 +.byte 0x28, 0xf6, 0x97, 0x5a, 0x7b, 0x96, 0x16, 0x8f, 0x01, 0x19, 0x2d, 0x6c, 0x6e, 0x7f, 0x39, 0x58 +.byte 0x06, 0x64, 0x83, 0x01, 0x83, 0x83, 0xc3, 0x4d, 0x92, 0xdd, 0x32, 0xc6, 0x87, 0xa4, 0x37, 0xe9 +.byte 0x16, 0xce, 0xaa, 0x2d, 0x68, 0xaf, 0x0a, 0x81, 0x65, 0x3a, 0x70, 0xc1, 0x9b, 0xad, 0x4d, 0x6d +.byte 0x54, 0xca, 0x2a, 0x2d, 0x4b, 0x85, 0x1b, 0xb3, 0x80, 0xe6, 0x70, 0x45, 0x0d, 0x6b, 0x5e, 0x35 +.byte 0xf0, 0x7f, 0x3b, 0xb8, 0x9c, 0xe4, 0x04, 0x70, 0x89, 0x12, 0x25, 0x93, 0xda, 0x0a, 0x99, 0x22 +.byte 0x60, 0x6a, 0x63, 0x60, 0x4e, 0x76, 0x06, 0x98, 0x4e, 0xbd, 0x83, 0xad, 0x1d, 0x58, 0x8a, 0x25 +.byte 0x85, 0xd2, 0xc7, 0x65, 0x1e, 0x2d, 0x8e, 0xc6, 0xdf, 0xb6, 0xc6, 0xe1, 0x7f, 0x8a, 0x04, 0x21 +.byte 0x15, 0x29, 0x74, 0xf0, 0x3e, 0x9c, 0x90, 0x9d, 0x0c, 0x2e, 0xf1, 0x8a, 0x3e, 0x5a, 0xaa, 0x0c +.byte 0x09, 0x1e, 0xc7, 0xd5, 0x3c, 0xa3, 0xed, 0x97, 0xc3, 0x1e, 0x34, 0xfa, 0x38, 0xf9, 0x08, 0x0e +.byte 0xe3, 0xc0, 0x5d, 0x2b, 0x83, 0xd1, 0x56, 0x6a, 0xc9, 0xb6, 0xa8, 0x54, 0x53, 0x2e, 0x78, 0x32 +.byte 0x67, 0x3d, 0x82, 0x7f, 0x74, 0xd0, 0xfb, 0xe1, 0xb6, 0x05, 0x60, 0xb9, 0x70, 0xdb, 0x8e, 0x0b +.byte 0xf9, 0x13, 0x58, 0x6f, 0x71, 0x60, 0x10, 0x52, 0x10, 0xb9, 0xc1, 0x41, 0x09, 0xef, 0x72, 0x1f +.byte 0x67, 0x31, 0x78, 0xff, 0x96, 0x05, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x58, 0x00, 0x26, 0x01 +.byte 0x30, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e +.byte 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x65 +.byte 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 0x31, 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, 0xcf, 0xeb, 0xa9, 0xb9, 0xf1, 0x99, 0x05 +.byte 0xcc, 0xd8, 0x28, 0x21, 0x4a, 0xf3, 0x73, 0x34, 0x51, 0x84, 0x56, 0x10, 0xf5, 0xa0, 0x4f, 0x2c +.byte 0x12, 0xe3, 0xfa, 0x13, 0x9a, 0x27, 0xd0, 0xcf, 0xf9, 0x79, 0x1a, 0x74, 0x5f, 0x1d, 0x79, 0x39 +.byte 0xfc, 0x5b, 0xf8, 0x70, 0x8e, 0xe0, 0x92, 0x52, 0xf7, 0xe4, 0x25, 0xf9, 0x54, 0x83, 0xd9, 0x1d +.byte 0xd3, 0xc8, 0x5a, 0x85, 0x3f, 0x5e, 0xc7, 0xb6, 0x07, 0xee, 0x3e, 0xc0, 0xce, 0x9a, 0xaf, 0xac +.byte 0x56, 0x42, 0x2a, 0x39, 0x25, 0x70, 0xd6, 0xbf, 0xb5, 0x7b, 0x36, 0xad, 0xac, 0xf6, 0x73, 0xdc +.byte 0xcd, 0xd7, 0x1d, 0x8a, 0x83, 0xa5, 0xfb, 0x2b, 0x90, 0x15, 0x37, 0x6b, 0x1c, 0x26, 0x47, 0xdc +.byte 0x3b, 0x29, 0x56, 0x93, 0x6a, 0xb3, 0xc1, 0x6a, 0x3a, 0x9d, 0x3d, 0xf5, 0xc1, 0x97, 0x38, 0x58 +.byte 0x05, 0x8b, 0x1c, 0x11, 0xe3, 0xe4, 0xb4, 0xb8, 0x5d, 0x85, 0x1d, 0x83, 0xfe, 0x78, 0x5f, 0x0b +.byte 0x45, 0x68, 0x18, 0x48, 0xa5, 0x46, 0x73, 0x34, 0x3b, 0xfe, 0x0f, 0xc8, 0x76, 0xbb, 0xc7, 0x18 +.byte 0xf3, 0x05, 0xd1, 0x86, 0xf3, 0x85, 0xed, 0xe7, 0xb9, 0xd9, 0x32, 0xad, 0x55, 0x88, 0xce, 0xa6 +.byte 0xb6, 0x91, 0xb0, 0x4f, 0xac, 0x7e, 0x15, 0x23, 0x96, 0xf6, 0x3f, 0xf0, 0x20, 0x34, 0x16, 0xde +.byte 0x0a, 0xc6, 0xc4, 0x04, 0x45, 0x79, 0x7f, 0xa7, 0xfd, 0xbe, 0xd2, 0xa9, 0xa5, 0xaf, 0x9c, 0xc5 +.byte 0x23, 0x2a, 0xf7, 0x3c, 0x21, 0x6c, 0xbd, 0xaf, 0x8f, 0x4e, 0xc5, 0x3a, 0xb2, 0xf3, 0x34, 0x12 +.byte 0xfc, 0xdf, 0x80, 0x1a, 0x49, 0xa4, 0xd4, 0xa9, 0x95, 0xf7, 0x9e, 0x89, 0x5e, 0xa2, 0x89, 0xac +.byte 0x94, 0xcb, 0xa8, 0x68, 0x9b, 0xaf, 0x8a, 0x65, 0x27, 0xcd, 0x89, 0xee, 0xdd, 0x8c, 0xb5, 0x6b +.byte 0x29, 0x70, 0x43, 0xa0, 0x69, 0x0b, 0xe4, 0xb9, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x59, 0x00 +.byte 0x26, 0x01, 0x30, 0x57, 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, 0x10, 0x30, 0x0e +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1b +.byte 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53 +.byte 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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, 0xda, 0x0e, 0xe6, 0x99 +.byte 0x8d, 0xce, 0xa3, 0xe3, 0x4f, 0x8a, 0x7e, 0xfb, 0xf1, 0x8b, 0x83, 0x25, 0x6b, 0xea, 0x48, 0x1f +.byte 0xf1, 0x2a, 0xb0, 0xb9, 0x95, 0x11, 0x04, 0xbd, 0xf0, 0x63, 0xd1, 0xe2, 0x67, 0x66, 0xcf, 0x1c +.byte 0xdd, 0xcf, 0x1b, 0x48, 0x2b, 0xee, 0x8d, 0x89, 0x8e, 0x9a, 0xaf, 0x29, 0x80, 0x65, 0xab, 0xe9 +.byte 0xc7, 0x2d, 0x12, 0xcb, 0xab, 0x1c, 0x4c, 0x70, 0x07, 0xa1, 0x3d, 0x0a, 0x30, 0xcd, 0x15, 0x8d +.byte 0x4f, 0xf8, 0xdd, 0xd4, 0x8c, 0x50, 0x15, 0x1c, 0xef, 0x50, 0xee, 0xc4, 0x2e, 0xf7, 0xfc, 0xe9 +.byte 0x52, 0xf2, 0x91, 0x7d, 0xe0, 0x6d, 0xd5, 0x35, 0x30, 0x8e, 0x5e, 0x43, 0x73, 0xf2, 0x41, 0xe9 +.byte 0xd5, 0x6a, 0xe3, 0xb2, 0x89, 0x3a, 0x56, 0x39, 0x38, 0x6f, 0x06, 0x3c, 0x88, 0x69, 0x5b, 0x2a +.byte 0x4d, 0xc5, 0xa7, 0x54, 0xb8, 0x6c, 0x89, 0xcc, 0x9b, 0xf9, 0x3c, 0xca, 0xe5, 0xfd, 0x89, 0xf5 +.byte 0x12, 0x3c, 0x92, 0x78, 0x96, 0xd6, 0xdc, 0x74, 0x6e, 0x93, 0x44, 0x61, 0xd1, 0x8d, 0xc7, 0x46 +.byte 0xb2, 0x75, 0x0e, 0x86, 0xe8, 0x19, 0x8a, 0xd5, 0x6d, 0x6c, 0xd5, 0x78, 0x16, 0x95, 0xa2, 0xe9 +.byte 0xc8, 0x0a, 0x38, 0xeb, 0xf2, 0x24, 0x13, 0x4f, 0x73, 0x54, 0x93, 0x13, 0x85, 0x3a, 0x1b, 0xbc +.byte 0x1e, 0x34, 0xb5, 0x8b, 0x05, 0x8c, 0xb9, 0x77, 0x8b, 0xb1, 0xdb, 0x1f, 0x20, 0x91, 0xab, 0x09 +.byte 0x53, 0x6e, 0x90, 0xce, 0x7b, 0x37, 0x74, 0xb9, 0x70, 0x47, 0x91, 0x22, 0x51, 0x63, 0x16, 0x79 +.byte 0xae, 0xb1, 0xae, 0x41, 0x26, 0x08, 0xc8, 0x19, 0x2b, 0xd1, 0x46, 0xaa, 0x48, 0xd6, 0x64, 0x2a +.byte 0xd7, 0x83, 0x34, 0xff, 0x2c, 0x2a, 0xc1, 0x6c, 0x19, 0x43, 0x4a, 0x07, 0x85, 0xe7, 0xd3, 0x7c +.byte 0xf6, 0x21, 0x68, 0xef, 0xea, 0xf2, 0x52, 0x9f, 0x7f, 0x93, 0x90, 0xcf, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x5c, 0x00, 0x26, 0x02, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x43, 0x4e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1c, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c +.byte 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x24, 0x30, 0x22, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20 +.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x47 +.byte 0x33, 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, 0xc0, 0x31, 0x82, 0x61, 0x92, 0xe4, 0x94, 0x1b, 0x0a, 0x2a, 0x65, 0xd0, 0xbe, 0x06 +.byte 0xa9, 0x87, 0x3b, 0x51, 0x12, 0xea, 0x70, 0x41, 0xae, 0xe2, 0xfb, 0x74, 0xea, 0x0a, 0x8d, 0xb9 +.byte 0xb3, 0x4c, 0xdc, 0x8f, 0xb7, 0x13, 0x52, 0x4f, 0x54, 0x18, 0xe1, 0x2c, 0x73, 0x95, 0x91, 0xc5 +.byte 0x66, 0x3b, 0x6a, 0xcf, 0xac, 0x63, 0x6d, 0x87, 0x53, 0xf0, 0xf7, 0xf1, 0x39, 0xb7, 0xa0, 0x43 +.byte 0x63, 0xb0, 0xc4, 0x03, 0x5d, 0x57, 0xa9, 0xe7, 0x44, 0xce, 0xc4, 0xa1, 0x83, 0x65, 0xf6, 0x50 +.byte 0x3e, 0xb1, 0x7e, 0x16, 0xb8, 0x3a, 0x8a, 0x02, 0xd0, 0x96, 0x1f, 0x00, 0xcd, 0x05, 0x21, 0xef +.byte 0x06, 0x6d, 0xdd, 0x21, 0x9c, 0x19, 0x43, 0x45, 0xa1, 0xc5, 0xe8, 0x80, 0xca, 0xc2, 0xad, 0x40 +.byte 0x62, 0x17, 0x06, 0xc6, 0xaa, 0xbc, 0xf3, 0xd6, 0xe6, 0xfc, 0x50, 0x7e, 0x66, 0x42, 0x1f, 0x3c +.byte 0x8b, 0xa6, 0x79, 0x79, 0x86, 0x40, 0x35, 0x9f, 0x20, 0xef, 0x3f, 0xeb, 0x8b, 0x47, 0x1f, 0x8f +.byte 0x8e, 0xc5, 0xd4, 0x8e, 0xb6, 0x2c, 0xc9, 0x44, 0x04, 0xe3, 0xd4, 0x43, 0x75, 0x3f, 0xd5, 0x3f +.byte 0xaf, 0x1c, 0xcc, 0x7e, 0x46, 0x5f, 0xac, 0xdf, 0x64, 0x10, 0x8a, 0xef, 0x46, 0xf0, 0x90, 0xf0 +.byte 0x0f, 0x2d, 0xf4, 0x88, 0x0b, 0xb1, 0x29, 0xaa, 0xaf, 0x85, 0xaa, 0x49, 0x58, 0xa8, 0xbf, 0x63 +.byte 0xa0, 0x38, 0x91, 0xe6, 0xb3, 0xe6, 0x77, 0x68, 0xc4, 0xf9, 0x2a, 0x19, 0x84, 0xbb, 0x0e, 0xe1 +.byte 0xf5, 0xaf, 0x89, 0xec, 0xa5, 0x2f, 0x50, 0x20, 0x74, 0x1e, 0x12, 0x41, 0x73, 0x1e, 0x24, 0xd9 +.byte 0xca, 0xce, 0x2c, 0xa1, 0x59, 0x35, 0xc0, 0xc8, 0x1d, 0x46, 0x27, 0x61, 0x5a, 0x8f, 0xf9, 0x4d +.byte 0xd3, 0x72, 0x79, 0x66, 0x1e, 0x9f, 0x15, 0x90, 0x21, 0x2d, 0xfd, 0xed, 0x8b, 0x56, 0x70, 0x03 +.byte 0x4a, 0x49, 0x3e, 0x7f, 0x69, 0x31, 0x12, 0x69, 0xc7, 0x1e, 0x5c, 0xca, 0x7a, 0x13, 0x8b, 0xe8 +.byte 0xe6, 0xf5, 0x60, 0x0f, 0xcc, 0x93, 0x2c, 0x84, 0x7f, 0xf1, 0xfc, 0x6a, 0xfc, 0x9b, 0x47, 0x9d +.byte 0xdb, 0xad, 0x88, 0x3d, 0xf3, 0x76, 0x75, 0x33, 0xd7, 0x4b, 0xa4, 0xc8, 0x8b, 0xf9, 0xf5, 0x43 +.byte 0x58, 0x4f, 0xcb, 0xc8, 0x03, 0x54, 0x8f, 0xa5, 0x85, 0x78, 0x04, 0x1a, 0xf3, 0x73, 0xf2, 0xd7 +.byte 0x87, 0x1d, 0x41, 0x9f, 0xe7, 0xd8, 0x17, 0xce, 0x1a, 0x9c, 0x0f, 0x4a, 0xfc, 0xdc, 0x44, 0x68 +.byte 0x54, 0x68, 0xe2, 0x41, 0x3c, 0xfe, 0x2c, 0x84, 0x86, 0x37, 0x3c, 0xcd, 0x3f, 0x2f, 0xa2, 0xdb +.byte 0xe7, 0xf7, 0x54, 0x03, 0x5f, 0x59, 0xd3, 0xf7, 0x91, 0x78, 0xc7, 0x8b, 0x77, 0x6a, 0x16, 0xe5 +.byte 0x49, 0x85, 0x90, 0x45, 0x72, 0x70, 0x2f, 0x91, 0x5d, 0xf8, 0x3e, 0x65, 0x40, 0x0b, 0x19, 0x99 +.byte 0xc9, 0x26, 0x20, 0x5a, 0x68, 0xc1, 0x35, 0xbf, 0x4f, 0xa7, 0x51, 0xf1, 0xd8, 0x11, 0x2b, 0x5b +.byte 0xe0, 0x9a, 0x9e, 0x28, 0x3b, 0x0a, 0x3a, 0x0a, 0x1f, 0xc1, 0x81, 0xe5, 0x2e, 0xf0, 0xa6, 0xb9 +.byte 0x69, 0xa5, 0x88, 0x94, 0xe6, 0x6b, 0x13, 0x7f, 0xd1, 0x64, 0x3f, 0x3d, 0x9c, 0x70, 0x46, 0xe5 +.byte 0xa2, 0x85, 0x7b, 0x58, 0x84, 0x27, 0xdc, 0xc4, 0x80, 0x3e, 0x67, 0x9a, 0x9a, 0xc7, 0x9a, 0x31 +.byte 0x0e, 0x30, 0xec, 0xe6, 0x17, 0x40, 0x95, 0xd9, 0x45, 0xed, 0x01, 0x96, 0xaa, 0xbf, 0x0c, 0xf3 +.byte 0x4b, 0xd1, 0x63, 0xf7, 0x13, 0x58, 0xc0, 0xb8, 0xf3, 0xfa, 0x67, 0xdd, 0x9b, 0x7d, 0x6d, 0x4a +.byte 0xff, 0x32, 0x4c, 0xb5, 0x25, 0x3b, 0xff, 0x1c, 0x67, 0x0f, 0x85, 0x22, 0x59, 0x05, 0x91, 0x91 +.byte 0x41, 0x77, 0x81, 0xd0, 0x85, 0x4c, 0x87, 0x10, 0x71, 0xff, 0x9e, 0x43, 0x1b, 0xae, 0x95, 0x75 +.byte 0x2d, 0x81, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x78, 0x00, 0x30, 0x5a, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x1c, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x54 +.byte 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x47, 0x34, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 +.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf1 +.byte 0xb3, 0xcd, 0x38, 0xe4, 0x25, 0x43, 0xe5, 0xde, 0x19, 0x09, 0xbb, 0x81, 0x79, 0xa2, 0x15, 0x5f +.byte 0x15, 0x63, 0x01, 0xde, 0xc2, 0xab, 0xdd, 0xb3, 0xa6, 0x1b, 0x67, 0x4b, 0x80, 0x83, 0xaf, 0x99 +.byte 0xcb, 0xac, 0x17, 0xdb, 0x2b, 0x96, 0xca, 0x7c, 0x52, 0x55, 0xe2, 0x1a, 0xe1, 0x3d, 0x56, 0xf0 +.byte 0x2f, 0x16, 0x08, 0xfa, 0x15, 0xbc, 0x9b, 0xbb, 0x47, 0xe6, 0x3f, 0xee, 0xa8, 0xe1, 0x4c, 0x8c +.byte 0xf5, 0xd3, 0x36, 0xf9, 0x38, 0x5d, 0xab, 0x70, 0x9a, 0x47, 0x0d, 0xe2, 0x81, 0x41, 0x06, 0xeb +.byte 0x49, 0xf9, 0xb0, 0x29, 0xdd, 0x33, 0xec, 0x50, 0xa5, 0x7f, 0x79, 0x29, 0xb8, 0x20, 0x98, 0x5c +.byte 0x00, 0x26, 0x02, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69 +.byte 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c +.byte 0x13, 0x30, 0x30, 0x30, 0x32, 0x20, 0x34, 0x38, 0x31, 0x34, 0x36, 0x33, 0x30, 0x38, 0x31, 0x30 +.byte 0x30, 0x30, 0x33, 0x36, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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 0xcd, 0x18, 0x39, 0x65, 0x1a, 0x59, 0xb1, 0xea, 0x64, 0x16, 0x0e, 0x8c, 0x94, 0x24, 0x95, 0x7c +.byte 0x83, 0xd3, 0xc5, 0x39, 0x26, 0xdc, 0x0c, 0xef, 0x16, 0x57, 0x8d, 0xd7, 0xd8, 0xac, 0xa3, 0x42 +.byte 0x7f, 0x82, 0xca, 0xed, 0xcd, 0x5b, 0xdb, 0x0e, 0xb7, 0x2d, 0xed, 0x45, 0x08, 0x17, 0xb2, 0xd9 +.byte 0xb3, 0xcb, 0xd6, 0x17, 0x52, 0x72, 0x28, 0xdb, 0x8e, 0x4e, 0x9e, 0x8a, 0xb6, 0x0b, 0xf9, 0x9e +.byte 0x84, 0x9a, 0x4d, 0x76, 0xde, 0x22, 0x29, 0x5c, 0xd2, 0xb3, 0xd2, 0x06, 0x3e, 0x30, 0x39, 0xa9 +.byte 0x74, 0xa3, 0x92, 0x56, 0x1c, 0xa1, 0x6f, 0x4c, 0x0a, 0x20, 0x6d, 0x9f, 0x23, 0x7a, 0xb4, 0xc6 +.byte 0xda, 0x2c, 0xe4, 0x1d, 0x2c, 0xdc, 0xb3, 0x28, 0xd0, 0x13, 0xf2, 0x4c, 0x4e, 0x02, 0x49, 0xa1 +.byte 0x54, 0x40, 0x9e, 0xe6, 0xe5, 0x05, 0xa0, 0x2d, 0x84, 0xc8, 0xff, 0x98, 0x6c, 0xd0, 0xeb, 0x8a +.byte 0x1a, 0x84, 0x08, 0x1e, 0xb7, 0x68, 0x23, 0xee, 0x23, 0xd5, 0x70, 0xce, 0x6d, 0x51, 0x69, 0x10 +.byte 0xee, 0xa1, 0x7a, 0xc2, 0xd1, 0x22, 0x31, 0xc2, 0x82, 0x85, 0xd2, 0xf2, 0x55, 0x76, 0x50, 0x7c +.byte 0x25, 0x7a, 0xc9, 0x84, 0x5c, 0x0b, 0xac, 0xdd, 0x42, 0x4e, 0x2b, 0xe7, 0x82, 0xa2, 0x24, 0x89 +.byte 0xcb, 0x90, 0xb2, 0xd0, 0xee, 0x23, 0xba, 0x66, 0x4c, 0xbb, 0x62, 0xa4, 0xf9, 0x53, 0x5a, 0x64 +.byte 0x7b, 0x7c, 0x98, 0xfa, 0xa3, 0x48, 0x9e, 0x0f, 0x95, 0xae, 0xa7, 0x18, 0xf4, 0x6a, 0xec, 0x2e +.byte 0x03, 0x45, 0xaf, 0xf0, 0x74, 0xf8, 0x2a, 0xcd, 0x7a, 0x5d, 0xd1, 0xbe, 0x44, 0x26, 0x32, 0x29 +.byte 0xf1, 0xf1, 0xf5, 0x6c, 0xcc, 0x7e, 0x02, 0x21, 0x0b, 0x9f, 0x6f, 0xa4, 0x3f, 0xbe, 0x9d, 0x53 +.byte 0xe2, 0xcf, 0x7d, 0xa9, 0x2c, 0x7c, 0x58, 0x1a, 0x97, 0xe1, 0x3d, 0x37, 0x37, 0x18, 0x66, 0x28 +.byte 0xd2, 0x40, 0xc5, 0x51, 0x8a, 0x8c, 0xc3, 0x2d, 0xce, 0x53, 0x88, 0x24, 0x58, 0x64, 0x30, 0x16 +.byte 0xc5, 0xaa, 0xe0, 0xd6, 0x0a, 0xa6, 0x40, 0xdf, 0x78, 0xf6, 0xf5, 0x04, 0x7c, 0x69, 0x13, 0x84 +.byte 0xbc, 0xd1, 0xd1, 0xa7, 0x06, 0xcf, 0x01, 0xf7, 0x68, 0xc0, 0xa8, 0x57, 0xbb, 0x3a, 0x61, 0xad +.byte 0x04, 0x8c, 0x93, 0xe3, 0xad, 0xfc, 0xf0, 0xdb, 0x44, 0x6d, 0x59, 0xdc, 0x49, 0x59, 0xae, 0xac +.byte 0x9a, 0x99, 0x36, 0x30, 0x41, 0x7b, 0x76, 0x33, 0x22, 0x87, 0xa3, 0xc2, 0x92, 0x86, 0x6e, 0xf9 +.byte 0x70, 0xee, 0xae, 0x87, 0x87, 0x95, 0x1b, 0xc4, 0x7a, 0xbd, 0x31, 0xf3, 0xd4, 0xd2, 0xe5, 0x99 +.byte 0xff, 0xbe, 0x48, 0xec, 0x75, 0xf5, 0x78, 0x16, 0x1d, 0xa6, 0x70, 0xc1, 0x7f, 0x3c, 0x1b, 0xa1 +.byte 0x92, 0xfb, 0xcf, 0xc8, 0x3c, 0xd6, 0xc5, 0x93, 0x0a, 0x8f, 0xf5, 0x55, 0x3a, 0x76, 0x95, 0xce +.byte 0x59, 0x98, 0x8a, 0x09, 0x95, 0x77, 0x32, 0x9a, 0x83, 0xba, 0x2c, 0x04, 0x3a, 0x97, 0xbd, 0xd4 +.byte 0x2f, 0xbe, 0xd7, 0x6c, 0x9b, 0xa2, 0xca, 0x7d, 0x6d, 0x26, 0xc9, 0x55, 0xd5, 0xcf, 0xc3, 0x79 +.byte 0x52, 0x08, 0x09, 0x99, 0x07, 0x24, 0x2d, 0x64, 0x25, 0x6b, 0xa6, 0x21, 0x69, 0x9b, 0x6a, 0xdd +.byte 0x74, 0x4d, 0x6b, 0x97, 0x7a, 0x41, 0xbd, 0xab, 0x17, 0xf9, 0x90, 0x17, 0x48, 0x8f, 0x36, 0xf9 +.byte 0x2d, 0xd5, 0xc5, 0xdb, 0xee, 0xaa, 0x85, 0x45, 0x41, 0xfa, 0xcd, 0x3a, 0x45, 0xb1, 0x68, 0xe6 +.byte 0x36, 0x4c, 0x9b, 0x90, 0x57, 0xec, 0x23, 0xb9, 0x87, 0x08, 0xc2, 0xc4, 0x09, 0xf1, 0x97, 0x86 +.byte 0x2a, 0x28, 0x4d, 0xe2, 0x74, 0xc0, 0xda, 0xc4, 0x8c, 0xdb, 0xdf, 0xe2, 0xa1, 0x17, 0x59, 0xce +.byte 0x24, 0x59, 0x74, 0x31, 0xda, 0x7f, 0xfd, 0x30, 0x6d, 0xd9, 0xdc, 0xe1, 0x6a, 0xe1, 0xfc, 0x5f +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x26, 0x01, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x45, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x09, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x31, 0x13, 0x30, 0x11 +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x42, 0x61, 0x6c, 0x74 +.byte 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x43, 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0xa3, 0x04, 0xbb, 0x22, 0xab, 0x98, 0x3d, 0x57, 0xe8, 0x26 +.byte 0x72, 0x9a, 0xb5, 0x79, 0xd4, 0x29, 0xe2, 0xe1, 0xe8, 0x95, 0x80, 0xb1, 0xb0, 0xe3, 0x5b, 0x8e +.byte 0x2b, 0x29, 0x9a, 0x64, 0xdf, 0xa1, 0x5d, 0xed, 0xb0, 0x09, 0x05, 0x6d, 0xdb, 0x28, 0x2e, 0xce +.byte 0x62, 0xa2, 0x62, 0xfe, 0xb4, 0x88, 0xda, 0x12, 0xeb, 0x38, 0xeb, 0x21, 0x9d, 0xc0, 0x41, 0x2b +.byte 0x01, 0x52, 0x7b, 0x88, 0x77, 0xd3, 0x1c, 0x8f, 0xc7, 0xba, 0xb9, 0x88, 0xb5, 0x6a, 0x09, 0xe7 +.byte 0x73, 0xe8, 0x11, 0x40, 0xa7, 0xd1, 0xcc, 0xca, 0x62, 0x8d, 0x2d, 0xe5, 0x8f, 0x0b, 0xa6, 0x50 +.byte 0xd2, 0xa8, 0x50, 0xc3, 0x28, 0xea, 0xf5, 0xab, 0x25, 0x87, 0x8a, 0x9a, 0x96, 0x1c, 0xa9, 0x67 +.byte 0xb8, 0x3f, 0x0c, 0xd5, 0xf7, 0xf9, 0x52, 0x13, 0x2f, 0xc2, 0x1b, 0xd5, 0x70, 0x70, 0xf0, 0x8f +.byte 0xc0, 0x12, 0xca, 0x06, 0xcb, 0x9a, 0xe1, 0xd9, 0xca, 0x33, 0x7a, 0x77, 0xd6, 0xf8, 0xec, 0xb9 +.byte 0xf1, 0x68, 0x44, 0x42, 0x48, 0x13, 0xd2, 0xc0, 0xc2, 0xa4, 0xae, 0x5e, 0x60, 0xfe, 0xb6, 0xa6 +.byte 0x05, 0xfc, 0xb4, 0xdd, 0x07, 0x59, 0x02, 0xd4, 0x59, 0x18, 0x98, 0x63, 0xf5, 0xa5, 0x63, 0xe0 +.byte 0x90, 0x0c, 0x7d, 0x5d, 0xb2, 0x06, 0x7a, 0xf3, 0x85, 0xea, 0xeb, 0xd4, 0x03, 0xae, 0x5e, 0x84 +.byte 0x3e, 0x5f, 0xff, 0x15, 0xed, 0x69, 0xbc, 0xf9, 0x39, 0x36, 0x72, 0x75, 0xcf, 0x77, 0x52, 0x4d +.byte 0xf3, 0xc9, 0x90, 0x2c, 0xb9, 0x3d, 0xe5, 0xc9, 0x23, 0x53, 0x3f, 0x1f, 0x24, 0x98, 0x21, 0x5c +.byte 0x07, 0x99, 0x29, 0xbd, 0xc6, 0x3a, 0xec, 0xe7, 0x6e, 0x86, 0x3a, 0x6b, 0x97, 0x74, 0x63, 0x33 +.byte 0xbd, 0x68, 0x18, 0x31, 0xf0, 0x78, 0x8d, 0x76, 0xbf, 0xfc, 0x9e, 0x8e, 0x5d, 0x2a, 0x86, 0xa7 +.byte 0x4d, 0x90, 0xdc, 0x27, 0x1a, 0x39, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x78, 0x00, 0x30 +.byte 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13 +.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20 +.byte 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x65, 0x4d +.byte 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 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, 0xfd, 0xa5, 0x61, 0xae, 0x7b, 0x26, 0x10, 0x1d, 0xe9, 0xb7, 0x22, 0x30, 0xae +.byte 0x06, 0xf4, 0x81, 0xb3, 0xb1, 0x42, 0x71, 0x95, 0x39, 0xbc, 0xd3, 0x52, 0xe3, 0xaf, 0xaf, 0xf9 +.byte 0xf2, 0x97, 0x35, 0x92, 0x36, 0x46, 0x0e, 0x87, 0x95, 0x8d, 0xb9, 0x39, 0x5a, 0xe9, 0xbb, 0xdf +.byte 0xd0, 0xfe, 0xc8, 0x07, 0x41, 0x3c, 0xbb, 0x55, 0x6f, 0x83, 0xa3, 0x6a, 0xfb, 0x62, 0xb0, 0x81 +.byte 0x89, 0x02, 0x70, 0x7d, 0x48, 0xc5, 0x4a, 0xe3, 0xe9, 0x22, 0x54, 0x22, 0x4d, 0x93, 0xbb, 0x42 +.byte 0x0c, 0xaf, 0x77, 0x9c, 0x23, 0xa6, 0x7d, 0xd7, 0x61, 0x11, 0xce, 0x65, 0xc7, 0xf8, 0x7f, 0xfe +.byte 0xf5, 0xf2, 0xa9, 0x5f, 0x00, 0x26, 0x01, 0x30, 0x5d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73 +.byte 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79 +.byte 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x32, 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, 0xd0, 0x15, 0x39, 0x52, 0xb1, 0x52, 0xb3, 0xba, 0xc5 +.byte 0x59, 0x82, 0xc4, 0x5d, 0x52, 0xae, 0x3a, 0x43, 0x65, 0x80, 0x4b, 0xc7, 0xf2, 0x96, 0xbc, 0xdb +.byte 0x36, 0x97, 0xd6, 0xa6, 0x64, 0x8c, 0xa8, 0x5e, 0xf0, 0xe3, 0x0a, 0x1c, 0xf7, 0xdf, 0x97, 0x3d +.byte 0x4b, 0xae, 0xf6, 0x5d, 0xec, 0x21, 0xb5, 0x41, 0xab, 0xcd, 0xb9, 0x7e, 0x76, 0x9f, 0xbe, 0xf9 +.byte 0x3e, 0x36, 0x34, 0xa0, 0x3b, 0xc1, 0xf6, 0x31, 0x11, 0x45, 0x74, 0x93, 0x3d, 0x57, 0x80, 0xc5 +.byte 0xf9, 0x89, 0x99, 0xca, 0xe5, 0xab, 0x6a, 0xd4, 0xb5, 0xda, 0x41, 0x90, 0x10, 0xc1, 0xd6, 0xd6 +.byte 0x42, 0x89, 0xc2, 0xbf, 0xf4, 0x38, 0x12, 0x95, 0x4c, 0x54, 0x05, 0xf7, 0x36, 0xe4, 0x45, 0x83 +.byte 0x7b, 0x14, 0x65, 0xd6, 0xdc, 0x0c, 0x4d, 0xd1, 0xde, 0x7e, 0x0c, 0xab, 0x3b, 0xc4, 0x15, 0xbe +.byte 0x3a, 0x56, 0xa6, 0x5a, 0x6f, 0x76, 0x69, 0x52, 0xa9, 0x7a, 0xb9, 0xc8, 0xeb, 0x6a, 0x9a, 0x5d +.byte 0x52, 0xd0, 0x2d, 0x0a, 0x6b, 0x35, 0x16, 0x09, 0x10, 0x84, 0xd0, 0x6a, 0xca, 0x3a, 0x06, 0x00 +.byte 0x37, 0x47, 0xe4, 0x7e, 0x57, 0x4f, 0x3f, 0x8b, 0xeb, 0x67, 0xb8, 0x88, 0xaa, 0xc5, 0xbe, 0x53 +.byte 0x55, 0xb2, 0x91, 0xc4, 0x7d, 0xb9, 0xb0, 0x85, 0x19, 0x06, 0x78, 0x2e, 0xdb, 0x61, 0x1a, 0xfa +.byte 0x85, 0xf5, 0x4a, 0x91, 0xa1, 0xe7, 0x16, 0xd5, 0x8e, 0xa2, 0x39, 0xdf, 0x94, 0xb8, 0x70, 0x1f +.byte 0x28, 0x3f, 0x8b, 0xfc, 0x40, 0x5e, 0x63, 0x83, 0x3c, 0x83, 0x2a, 0x1a, 0x99, 0x6b, 0xcf, 0xde +.byte 0x59, 0x6a, 0x3b, 0xfc, 0x6f, 0x16, 0xd7, 0x1f, 0xfd, 0x4a, 0x10, 0xeb, 0x4e, 0x82, 0x16, 0x3a +.byte 0xac, 0x27, 0x0c, 0x53, 0xf1, 0xad, 0xd5, 0x24, 0xb0, 0x6b, 0x03, 0x50, 0xc1, 0x2d, 0x3c, 0x16 +.byte 0xdd, 0x44, 0x34, 0x27, 0x1a, 0x75, 0xfb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x60, 0x00, 0x26, 0x02 +.byte 0x30, 0x5e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31 +.byte 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75, 0x6e, 0x67, 0x68 +.byte 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20 +.byte 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x21, 0x65 +.byte 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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 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, 0xe1, 0x25, 0x0f, 0xee, 0x8d, 0xdb, 0x88, 0x33, 0x75, 0x67, 0xcd, 0xad, 0x1f, 0x7d, 0x3a +.byte 0x4e, 0x6d, 0x9d, 0xd3, 0x2f, 0x14, 0xf3, 0x63, 0x74, 0xcb, 0x01, 0x21, 0x6a, 0x37, 0xea, 0x84 +.byte 0x50, 0x07, 0x4b, 0x26, 0x5b, 0x09, 0x43, 0x6c, 0x21, 0x9e, 0x6a, 0xc8, 0xd5, 0x03, 0xf5, 0x60 +.byte 0x69, 0x8f, 0xcc, 0xf0, 0x22, 0xe4, 0x1f, 0xe7, 0xf7, 0x6a, 0x22, 0x31, 0xb7, 0x2c, 0x15, 0xf2 +.byte 0xe0, 0xfe, 0x00, 0x6a, 0x43, 0xff, 0x87, 0x65, 0xc6, 0xb5, 0x1a, 0xc1, 0xa7, 0x4c, 0x6d, 0x22 +.byte 0x70, 0x21, 0x8a, 0x31, 0xf2, 0x97, 0x74, 0x89, 0x09, 0x12, 0x26, 0x1c, 0x9e, 0xca, 0xd9, 0x12 +.byte 0xa2, 0x95, 0x3c, 0xda, 0xe9, 0x67, 0xbf, 0x08, 0xa0, 0x64, 0xe3, 0xd6, 0x42, 0xb7, 0x45, 0xef +.byte 0x97, 0xf4, 0xf6, 0xf5, 0xd7, 0xb5, 0x4a, 0x15, 0x02, 0x58, 0x7d, 0x98, 0x58, 0x4b, 0x60, 0xbc +.byte 0xcd, 0xd7, 0x0d, 0x9a, 0x13, 0x33, 0x53, 0xd1, 0x61, 0xf9, 0x7a, 0xd5, 0xd7, 0x78, 0xb3, 0x9a +.byte 0x33, 0xf7, 0x00, 0x86, 0xce, 0x1d, 0x4d, 0x94, 0x38, 0xaf, 0xa8, 0xec, 0x78, 0x51, 0x70, 0x8a +.byte 0x5c, 0x10, 0x83, 0x51, 0x21, 0xf7, 0x11, 0x3d, 0x34, 0x86, 0x5e, 0xe5, 0x48, 0xcd, 0x97, 0x81 +.byte 0x82, 0x35, 0x4c, 0x19, 0xec, 0x65, 0xf6, 0x6b, 0xc5, 0x05, 0xa1, 0xee, 0x47, 0x13, 0xd6, 0xb3 +.byte 0x21, 0x27, 0x94, 0x10, 0x0a, 0xd9, 0x24, 0x3b, 0xba, 0xbe, 0x44, 0x13, 0x46, 0x30, 0x3f, 0x97 +.byte 0x3c, 0xd8, 0xd7, 0xd7, 0x6a, 0xee, 0x3b, 0x38, 0xe3, 0x2b, 0xd4, 0x97, 0x0e, 0xb9, 0x1b, 0xe7 +.byte 0x07, 0x49, 0x7f, 0x37, 0x2a, 0xf9, 0x77, 0x78, 0xcf, 0x54, 0xed, 0x5b, 0x46, 0x9d, 0xa3, 0x80 +.byte 0x0e, 0x91, 0x43, 0xc1, 0xd6, 0x5b, 0x5f, 0x14, 0xba, 0x9f, 0xa6, 0x8d, 0x24, 0x47, 0x40, 0x59 +.byte 0xbf, 0x72, 0x38, 0xb2, 0x36, 0x6c, 0x37, 0xff, 0x99, 0xd1, 0x5d, 0x0e, 0x59, 0x0a, 0xab, 0x69 +.byte 0xf7, 0xc0, 0xb2, 0x04, 0x45, 0x7a, 0x54, 0x00, 0xae, 0xbe, 0x53, 0xf6, 0xb5, 0xe7, 0xe1, 0xf8 +.byte 0x3c, 0xa3, 0x31, 0xd2, 0xa9, 0xfe, 0x21, 0x52, 0x64, 0xc5, 0xa6, 0x67, 0xf0, 0x75, 0x07, 0x06 +.byte 0x94, 0x14, 0x81, 0x55, 0xc6, 0x27, 0xe4, 0x01, 0x8f, 0x17, 0xc1, 0x6a, 0x71, 0xd7, 0xbe, 0x4b +.byte 0xfb, 0x94, 0x58, 0x7d, 0x7e, 0x11, 0x33, 0xb1, 0x42, 0xf7, 0x62, 0x6c, 0x18, 0xd6, 0xcf, 0x09 +.byte 0x68, 0x3e, 0x7f, 0x6c, 0xf6, 0x1e, 0x8f, 0x62, 0xad, 0xa5, 0x63, 0xdb, 0x09, 0xa7, 0x1f, 0x22 +.byte 0x42, 0x41, 0x1e, 0x6f, 0x99, 0x8a, 0x3e, 0xd7, 0xf9, 0x3f, 0x40, 0x7a, 0x79, 0xb0, 0xa5, 0x01 +.byte 0x92, 0xd2, 0x9d, 0x3d, 0x08, 0x15, 0xa5, 0x10, 0x01, 0x2d, 0xb3, 0x32, 0x76, 0xa8, 0x95, 0x0d +.byte 0xb3, 0x7a, 0x9a, 0xfb, 0x07, 0x10, 0x78, 0x11, 0x6f, 0xe1, 0x8f, 0xc7, 0xba, 0x0f, 0x25, 0x1a +.byte 0x74, 0x2a, 0xe5, 0x1c, 0x98, 0x41, 0x99, 0xdf, 0x21, 0x87, 0xe8, 0x95, 0x06, 0x6a, 0x0a, 0xb3 +.byte 0x6a, 0x47, 0x76, 0x65, 0xf6, 0x3a, 0xcf, 0x8f, 0x62, 0x17, 0x19, 0x7b, 0x0a, 0x28, 0xcd, 0x1a +.byte 0xd2, 0x83, 0x1e, 0x21, 0xc7, 0x2c, 0xbf, 0xbe, 0xff, 0x61, 0x68, 0xb7, 0x67, 0x1b, 0xbb, 0x78 +.byte 0x4d, 0x8d, 0xce, 0x67, 0xe5, 0xe4, 0xc1, 0x8e, 0xb7, 0x23, 0x66, 0xe2, 0x9d, 0x90, 0x75, 0x34 +.byte 0x98, 0xa9, 0x36, 0x2b, 0x8a, 0x9a, 0x94, 0xb9, 0x9d, 0xec, 0xcc, 0x8a, 0xb1, 0xf8, 0x25, 0x89 +.byte 0x5c, 0x5a, 0xb6, 0x2f, 0x8c, 0x1f, 0x6d, 0x79, 0x24, 0xa7, 0x52, 0x68, 0xc3, 0x84, 0x35, 0xe2 +.byte 0x66, 0x8d, 0x63, 0x0e, 0x25, 0x4d, 0xd5, 0x19, 0xb2, 0xe6, 0x79, 0x37, 0xa7, 0x22, 0x9d, 0x54 +.byte 0x31, 0x02, 0x03, 0x01, 0x00, 0x01, 0x61, 0x00, 0x78, 0x00, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x0f, 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x4c, 0x69, 0x6d, 0x69 +.byte 0x74, 0x65, 0x64, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x53, 0x65 +.byte 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53, 0x65, 0x72 +.byte 0x76, 0x65, 0x72, 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x34, 0x36, 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, 0x76, 0xfa, 0x99, 0xa9, 0x6e, 0x20, 0xed, 0xf9, 0xd7, 0x77, 0xe3, 0x07, 0x3b +.byte 0xa8, 0xdb, 0x3d, 0x5f, 0x38, 0xe8, 0xab, 0x55, 0xa6, 0x56, 0x4f, 0xd6, 0x48, 0xea, 0xec, 0x7f +.byte 0x2d, 0xaa, 0xc3, 0xb2, 0xc5, 0x79, 0xec, 0x99, 0x61, 0x7f, 0x10, 0x79, 0xc7, 0x02, 0x5a, 0xf9 +.byte 0x04, 0x37, 0xf5, 0x34, 0x35, 0x2b, 0x77, 0xce, 0x7f, 0x20, 0x8f, 0x52, 0xa3, 0x00, 0x89, 0xec +.byte 0xd5, 0xa7, 0xa2, 0x6d, 0x5b, 0xe3, 0x4b, 0x92, 0x93, 0xa0, 0x80, 0xf5, 0x01, 0x94, 0xdc, 0xf0 +.byte 0x68, 0x07, 0x1e, 0xcd, 0xee, 0xfe, 0x25, 0x52, 0xb5, 0x20, 0x43, 0x1c, 0x1b, 0xfe, 0xeb, 0x19 +.byte 0xce, 0x43, 0xa3, 0x61, 0x00, 0x26, 0x02, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x0f, 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64 +.byte 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x53, 0x65, 0x63, 0x74, 0x69 +.byte 0x67, 0x6f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72 +.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 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, 0x93, 0xbe, 0xd5, 0x36, 0x52, 0x75, 0xd8 +.byte 0x01, 0x23, 0xa0, 0x1c, 0x47, 0x42, 0x49, 0xee, 0x63, 0xb6, 0xb7, 0x21, 0xfd, 0xc4, 0x95, 0xd5 +.byte 0x48, 0x2b, 0x26, 0x7c, 0x14, 0x53, 0x10, 0xda, 0x79, 0xfd, 0x2b, 0xb7, 0x2d, 0xa4, 0xd4, 0x2c +.byte 0xfa, 0xea, 0x32, 0xdd, 0x49, 0xc2, 0xb9, 0xbd, 0x0f, 0x48, 0x3d, 0x7b, 0x5a, 0x98, 0x54, 0xaf +.byte 0x9e, 0x5d, 0x31, 0x74, 0x4f, 0x07, 0xfc, 0x50, 0x21, 0xdd, 0xa4, 0xcf, 0x68, 0x4f, 0x1b, 0x12 +.byte 0x63, 0x6d, 0x25, 0x99, 0x4c, 0x2a, 0x99, 0xf3, 0x48, 0x30, 0x61, 0xfa, 0x81, 0x7c, 0x1e, 0xa7 +.byte 0x08, 0x4a, 0xdc, 0x3e, 0x2b, 0x1c, 0x1f, 0x18, 0x4c, 0x71, 0xaa, 0x35, 0x8c, 0xad, 0xf8, 0x6e +.byte 0xe8, 0x3b, 0x4a, 0xd9, 0xe5, 0x94, 0x02, 0xd6, 0x89, 0x84, 0x13, 0xaa, 0x6d, 0xc8, 0x4f, 0x33 +.byte 0xcc, 0x50, 0x96, 0x37, 0x92, 0x33, 0xdc, 0x5f, 0x88, 0xe7, 0x9f, 0x54, 0xd9, 0x48, 0xf0, 0x98 +.byte 0x43, 0xd6, 0x66, 0xfd, 0x9f, 0x17, 0x38, 0x43, 0xc5, 0x01, 0x51, 0x0b, 0xd7, 0xe3, 0x23, 0x0f +.byte 0x14, 0x5d, 0x5b, 0x14, 0xe7, 0x4b, 0xbe, 0xdd, 0xf4, 0xc8, 0xda, 0x03, 0x37, 0xd1, 0xd6, 0x39 +.byte 0xa1, 0x21, 0x51, 0x30, 0x83, 0xb0, 0x6d, 0xd7, 0x30, 0x4e, 0x96, 0x5b, 0x91, 0xf0, 0x70, 0x24 +.byte 0xab, 0xbf, 0x45, 0x81, 0x64, 0x43, 0x0d, 0xbd, 0x21, 0x3a, 0x2f, 0x3c, 0xe9, 0x9e, 0x0d, 0xcb +.byte 0x20, 0xb5, 0x42, 0x27, 0xcc, 0xda, 0x6f, 0x9b, 0xee, 0x64, 0x30, 0x90, 0x39, 0xcd, 0x93, 0x65 +.byte 0x81, 0x21, 0x31, 0xb5, 0x23, 0x50, 0x33, 0x37, 0x22, 0xe3, 0x38, 0xed, 0xf8, 0x31, 0x30, 0xcc +.byte 0x45, 0xfe, 0x62, 0xf9, 0xd1, 0x5d, 0x32, 0x79, 0x42, 0x87, 0xdf, 0x6a, 0xcc, 0x56, 0x19, 0x40 +.byte 0x4d, 0xce, 0xaa, 0xbb, 0xf9, 0xb5, 0x76, 0x49, 0x94, 0xf1, 0x27, 0xf8, 0x91, 0xa5, 0x83, 0xe5 +.byte 0x06, 0xb3, 0x63, 0x0e, 0x80, 0xdc, 0xe0, 0x12, 0x55, 0x80, 0xa6, 0x3b, 0x66, 0xb4, 0x39, 0x87 +.byte 0x2d, 0xc8, 0xf0, 0xd0, 0xd1, 0x14, 0xe9, 0xe4, 0x0d, 0x4d, 0x0e, 0xf6, 0x5d, 0x57, 0x72, 0xc5 +.byte 0x3b, 0x1c, 0x47, 0x56, 0x9d, 0xe2, 0xd5, 0xfb, 0x81, 0x61, 0x8c, 0xcc, 0x4d, 0x80, 0x90, 0x34 +.byte 0x5b, 0xb7, 0xd7, 0x14, 0x75, 0xdc, 0xd8, 0x04, 0x48, 0x9f, 0xc0, 0xc1, 0x28, 0x88, 0xb4, 0xe9 +.byte 0x1c, 0xca, 0xa7, 0xb1, 0xf1, 0x56, 0xb7, 0x7b, 0x49, 0x4c, 0x59, 0xe5, 0x20, 0x15, 0xa8, 0x84 +.byte 0x02, 0x29, 0xfa, 0x38, 0x94, 0x69, 0x9a, 0x49, 0x06, 0x8f, 0xcd, 0x1f, 0x79, 0x14, 0x17, 0x12 +.byte 0x0c, 0x83, 0x7a, 0xde, 0x1f, 0xb1, 0x97, 0xee, 0xf9, 0x97, 0x78, 0x28, 0xa4, 0xc8, 0x44, 0x92 +.byte 0xe9, 0x7d, 0x26, 0x05, 0xa6, 0x58, 0x72, 0x9b, 0x79, 0x13, 0xd8, 0x11, 0x5f, 0xae, 0xc5, 0x38 +.byte 0x62, 0x34, 0x68, 0xb2, 0x86, 0x30, 0x8e, 0xf8, 0x90, 0x61, 0x9e, 0x32, 0x6c, 0xf5, 0x07, 0x36 +.byte 0xcd, 0xa2, 0x4c, 0x6e, 0xec, 0x8a, 0x36, 0xed, 0xf2, 0xe6, 0x99, 0x15, 0x44, 0x70, 0xc3, 0x7c +.byte 0xbc, 0x9c, 0x39, 0xc0, 0xb4, 0xe1, 0x6b, 0xf7, 0x83, 0x25, 0x23, 0x57, 0xd9, 0x12, 0x80, 0xe5 +.byte 0x49, 0xf0, 0x75, 0x0f, 0xef, 0x8d, 0xeb, 0x1c, 0x9b, 0x54, 0x28, 0xb4, 0x21, 0x3c, 0xfc, 0x7c +.byte 0x0a, 0xff, 0xef, 0x7b, 0x6b, 0x75, 0xff, 0x8b, 0x1d, 0xa0, 0x19, 0x05, 0xab, 0xfa, 0xf8, 0x2b +.byte 0x81, 0x42, 0xe8, 0x38, 0xba, 0xbb, 0xfb, 0xaa, 0xfd, 0x3d, 0xe0, 0xf3, 0xca, 0xdf, 0x4e, 0x97 +.byte 0x97, 0x29, 0xed, 0xf3, 0x18, 0x56, 0xe9, 0xa5, 0x96, 0xac, 0xbd, 0xc3, 0x90, 0x98, 0xb2, 0xe0 +.byte 0xf9, 0xa2, 0xd4, 0xa6, 0x47, 0x43, 0x7c, 0x6d, 0xcf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x61, 0x00 +.byte 0x26, 0x01, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54 +.byte 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x54, 0x41, 0x49, 0x57 +.byte 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x07 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x21, 0x54, 0x57, 0x43, 0x41, 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, 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, 0xb0, 0x7e, 0x72, 0xb8, 0xa4, 0x03, 0x94, 0xe6, 0xa7, 0xde, 0x09, 0x38 +.byte 0x91, 0x4a, 0x11, 0x40, 0x87, 0xa7, 0x7c, 0x59, 0x64, 0x14, 0x7b, 0xb5, 0x11, 0x10, 0xdd, 0xfe +.byte 0xbf, 0xd5, 0xc0, 0xbb, 0x56, 0xe2, 0x85, 0x25, 0xf4, 0x35, 0x72, 0x0f, 0xf8, 0x53, 0xd0, 0x41 +.byte 0xe1, 0x44, 0x01, 0xc2, 0xb4, 0x1c, 0xc3, 0x31, 0x42, 0x16, 0x47, 0x85, 0x33, 0x22, 0x76, 0xb2 +.byte 0x0a, 0x6f, 0x0f, 0xe5, 0x25, 0x50, 0x4f, 0x85, 0x86, 0xbe, 0xbf, 0x98, 0x2e, 0x10, 0x67, 0x1e +.byte 0xbe, 0x11, 0x05, 0x86, 0x05, 0x90, 0xc4, 0x59, 0xd0, 0x7c, 0x78, 0x10, 0xb0, 0x80, 0x5c, 0xb7 +.byte 0xe1, 0xc7, 0x2b, 0x75, 0xcb, 0x7c, 0x9f, 0xae, 0xb5, 0xd1, 0x9d, 0x23, 0x37, 0x63, 0xa7, 0xdc +.byte 0x42, 0xa2, 0x2d, 0x92, 0x04, 0x1b, 0x50, 0xc1, 0x7b, 0xb8, 0x3e, 0x1b, 0xc9, 0x56, 0x04, 0x8b +.byte 0x2f, 0x52, 0x9b, 0xad, 0xa9, 0x56, 0xe9, 0xc1, 0xff, 0xad, 0xa9, 0x58, 0x87, 0x30, 0xb6, 0x81 +.byte 0xf7, 0x97, 0x45, 0xfc, 0x19, 0x57, 0x3b, 0x2b, 0x6f, 0xe4, 0x47, 0xf4, 0x99, 0x45, 0xfe, 0x1d +.byte 0xf1, 0xf8, 0x97, 0xa3, 0x88, 0x1d, 0x37, 0x1c, 0x5c, 0x8f, 0xe0, 0x76, 0x25, 0x9a, 0x50, 0xf8 +.byte 0xa0, 0x54, 0xff, 0x44, 0x90, 0x76, 0x23, 0xd2, 0x32, 0xc6, 0xc3, 0xab, 0x06, 0xbf, 0xfc, 0xfb +.byte 0xbf, 0xf3, 0xad, 0x7d, 0x92, 0x62, 0x02, 0x5b, 0x29, 0xd3, 0x35, 0xa3, 0x93, 0x9a, 0x43, 0x64 +.byte 0x60, 0x5d, 0xb2, 0xfa, 0x32, 0xff, 0x3b, 0x04, 0xaf, 0x4d, 0x40, 0x6a, 0xf9, 0xc7, 0xe3, 0xef +.byte 0x23, 0xfd, 0x6b, 0xcb, 0xe5, 0x0f, 0x8b, 0x38, 0x0d, 0xee, 0x0a, 0xfc, 0xfe, 0x0f, 0x98, 0x9f +.byte 0x30, 0x31, 0xdd, 0x6c, 0x52, 0x65, 0xf9, 0x8b, 0x81, 0xbe, 0x22, 0xe1, 0x1c, 0x58, 0x03, 0xba +.byte 0x91, 0x1b, 0x89, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x78, 0x00, 0x30, 0x61, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30, 0x23 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c +.byte 0x54, 0x44, 0x2e, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x53, 0x65 +.byte 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x31 +.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, 0xa4, 0xa5, 0x6f, 0x60, 0x03, 0x03, 0xc3, 0xbd +.byte 0x31, 0xf4, 0xd3, 0x17, 0x9c, 0x2b, 0x84, 0x75, 0xac, 0xe5, 0xfd, 0x3d, 0x57, 0x6e, 0xd7, 0x63 +.byte 0xbf, 0xe6, 0x04, 0x89, 0x92, 0x8e, 0x81, 0x9c, 0xe3, 0xe9, 0x47, 0x6e, 0xca, 0x90, 0x12, 0xc8 +.byte 0x13, 0xe0, 0xa7, 0x9d, 0xf7, 0x65, 0x74, 0x1f, 0x6c, 0x10, 0xb2, 0xe8, 0xe4, 0xe9, 0xef, 0x6d +.byte 0x85, 0x32, 0x99, 0x44, 0xb1, 0x5e, 0xfd, 0xcc, 0x76, 0x10, 0xd8, 0x5b, 0xbd, 0xa2, 0xc6, 0xf9 +.byte 0xd6, 0x42, 0xe4, 0x57, 0x76, 0xdc, 0x90, 0xc2, 0x35, 0xa9, 0x4b, 0x88, 0x3c, 0x12, 0x47, 0x6d +.byte 0x5c, 0xff, 0x49, 0x4f, 0x1a, 0x4a, 0x50, 0xb1, 0x63, 0x00, 0x26, 0x02, 0x30, 0x61, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x4e, 0x31, 0x37, 0x30, 0x35, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x63, 0x65, 0x20, 0x4e, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x65, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6c, 0x65, 0x63, 0x74, 0x72, 0x6f, 0x6e +.byte 0x69, 0x71, 0x75, 0x65, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x54 +.byte 0x75, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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 0xc3, 0xcd, 0xd3, 0xfc, 0xbd, 0x04, 0x53, 0xdd, 0x0c, 0x20, 0x3a, 0xd5, 0x88, 0x2e, 0x05, 0x4b +.byte 0x41, 0xf5, 0x83, 0x82, 0x7e, 0xf7, 0x59, 0x9f, 0x9e, 0x9e, 0x63, 0xe8, 0x73, 0xda, 0xf6, 0x06 +.byte 0xa9, 0x4f, 0x1f, 0xb4, 0xf9, 0x0b, 0x1f, 0x39, 0x8c, 0x9a, 0x20, 0xd0, 0x7e, 0x06, 0xd4, 0xec +.byte 0x34, 0xd9, 0x86, 0xbc, 0x75, 0x5b, 0x87, 0x88, 0xf0, 0xd2, 0xd9, 0xd4, 0xa3, 0x0a, 0xb2, 0x6c +.byte 0x1b, 0xeb, 0x49, 0x2c, 0x3e, 0xac, 0x5d, 0xd8, 0x94, 0x03, 0xa0, 0xec, 0x34, 0xe5, 0x30, 0xc4 +.byte 0x35, 0x7d, 0xfb, 0x26, 0x4d, 0x1b, 0x6e, 0x30, 0x54, 0xd8, 0xf5, 0x80, 0x45, 0x9c, 0x39, 0xad +.byte 0x9c, 0xc9, 0x25, 0x04, 0x4d, 0x9a, 0x90, 0x3e, 0x4e, 0x40, 0x6e, 0x8a, 0x6b, 0xcd, 0x29, 0x67 +.byte 0xc6, 0xcc, 0x2d, 0xe0, 0x74, 0xe8, 0x05, 0x57, 0x0a, 0x48, 0x50, 0xfa, 0x7a, 0x43, 0xda, 0x7e +.byte 0xec, 0x5b, 0x9a, 0x0e, 0x62, 0x76, 0xfe, 0xea, 0x9d, 0x1d, 0x85, 0x72, 0xec, 0x11, 0xbb, 0x35 +.byte 0xe8, 0x1f, 0x27, 0xbf, 0xc1, 0xa1, 0xc7, 0xbb, 0x48, 0x16, 0xdd, 0x56, 0xd7, 0xcc, 0x4e, 0xa0 +.byte 0xe1, 0xb9, 0xac, 0xdb, 0xd5, 0x83, 0x19, 0x1a, 0x85, 0xd1, 0x94, 0x97, 0xd7, 0xca, 0xa3, 0x65 +.byte 0x0b, 0xf3, 0x38, 0xf9, 0x02, 0xae, 0xdd, 0xf6, 0x67, 0xcf, 0xc9, 0x3f, 0xf5, 0x8a, 0x2c, 0x47 +.byte 0x1a, 0x99, 0x6f, 0x05, 0x0d, 0xfd, 0xd0, 0x1d, 0x82, 0x31, 0xfc, 0x29, 0xcc, 0x00, 0x58, 0x97 +.byte 0x91, 0x4c, 0x80, 0x00, 0x1c, 0x33, 0x85, 0x96, 0x2f, 0xcb, 0x41, 0xc2, 0x8b, 0x10, 0x84, 0xc3 +.byte 0x09, 0x24, 0x89, 0x1f, 0xb5, 0x0f, 0xd9, 0xd9, 0x77, 0x47, 0x18, 0x92, 0x94, 0x60, 0x5c, 0xc7 +.byte 0x99, 0x03, 0x3c, 0xfe, 0xf7, 0x95, 0xa7, 0x7d, 0x50, 0xa1, 0x80, 0xc2, 0xa9, 0x83, 0xad, 0x58 +.byte 0x96, 0x55, 0x21, 0xdb, 0x86, 0x59, 0xd4, 0xaf, 0xc6, 0xbc, 0xdd, 0x81, 0x6e, 0x07, 0xdb, 0x60 +.byte 0x62, 0xfe, 0xec, 0x10, 0x6e, 0xda, 0x68, 0x01, 0xf4, 0x83, 0x1b, 0xa9, 0x3e, 0xa2, 0x5b, 0x23 +.byte 0xd7, 0x64, 0xc6, 0xdf, 0xdc, 0xa2, 0x7d, 0xd8, 0x4b, 0xba, 0x82, 0xd2, 0x51, 0xf8, 0x66, 0xbf +.byte 0x06, 0x46, 0xe4, 0x79, 0x2a, 0x26, 0x36, 0x79, 0x8f, 0x1f, 0x4e, 0x99, 0x1d, 0xb2, 0x8f, 0x0c +.byte 0x0e, 0x1c, 0xff, 0xc9, 0x5d, 0xc0, 0xfd, 0x90, 0x10, 0xa6, 0xb1, 0x37, 0xf3, 0xcd, 0x3a, 0x24 +.byte 0x6e, 0xb4, 0x85, 0x90, 0xbf, 0x80, 0xb9, 0x0c, 0x8c, 0xd5, 0x9b, 0xd6, 0xc8, 0xf1, 0x56, 0x3f +.byte 0x1a, 0x80, 0x89, 0x7a, 0xa9, 0xe2, 0x1b, 0x32, 0x51, 0x2c, 0x3e, 0xf2, 0xdf, 0x7b, 0xf6, 0x5d +.byte 0x7a, 0x29, 0x19, 0x8e, 0xe5, 0xc8, 0xbd, 0x36, 0x71, 0x8b, 0x5d, 0x4c, 0xc2, 0x1d, 0x3f, 0xad +.byte 0x58, 0xa2, 0xcf, 0x3d, 0x70, 0x4d, 0xa6, 0x50, 0x98, 0x25, 0xdc, 0x23, 0xf9, 0xb8, 0x58, 0x41 +.byte 0x08, 0x71, 0xbf, 0x4f, 0xb8, 0x84, 0xa0, 0x8f, 0x00, 0x54, 0x15, 0xfc, 0x91, 0x6d, 0x58, 0xa7 +.byte 0x96, 0x3b, 0xeb, 0x4b, 0x96, 0x27, 0xcd, 0x6b, 0xa2, 0xa1, 0x86, 0xac, 0x0d, 0x7c, 0x54, 0xe6 +.byte 0x66, 0x4c, 0x66, 0x5f, 0x90, 0xbe, 0x21, 0x9a, 0x02, 0x46, 0x2d, 0xe4, 0x83, 0xc2, 0x80, 0xb9 +.byte 0xcf, 0x4b, 0x3e, 0xe8, 0x7f, 0x3c, 0x01, 0xec, 0x8f, 0x5e, 0xcd, 0x7f, 0xd2, 0x28, 0x42, 0x01 +.byte 0x95, 0x8a, 0xe2, 0x97, 0x3d, 0x10, 0x21, 0x7d, 0xf6, 0x9d, 0x1c, 0xc5, 0x34, 0xa1, 0xec, 0x2c +.byte 0x0e, 0x0a, 0x52, 0x2c, 0x12, 0x55, 0x70, 0x24, 0x3d, 0xcb, 0xc2, 0x14, 0x35, 0x43, 0x5d, 0x27 +.byte 0x4e, 0xbe, 0xc0, 0xbd, 0xaa, 0x7c, 0x96, 0xe7, 0xfc, 0x9e, 0x61, 0xad, 0x44, 0xd3, 0x00, 0x97 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31 +.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69 +.byte 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c +.byte 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0xe2, 0x3b, 0xe1 +.byte 0x11, 0x72, 0xde, 0xa8, 0xa4, 0xd3, 0xa3, 0x57, 0xaa, 0x50, 0xa2, 0x8f, 0x0b, 0x77, 0x90, 0xc9 +.byte 0xa2, 0xa5, 0xee, 0x12, 0xce, 0x96, 0x5b, 0x01, 0x09, 0x20, 0xcc, 0x01, 0x93, 0xa7, 0x4e, 0x30 +.byte 0xb7, 0x53, 0xf7, 0x43, 0xc4, 0x69, 0x00, 0x57, 0x9d, 0xe2, 0x8d, 0x22, 0xdd, 0x87, 0x06, 0x40 +.byte 0x00, 0x81, 0x09, 0xce, 0xce, 0x1b, 0x83, 0xbf, 0xdf, 0xcd, 0x3b, 0x71, 0x46, 0xe2, 0xd6, 0x66 +.byte 0xc7, 0x05, 0xb3, 0x76, 0x27, 0x16, 0x8f, 0x7b, 0x9e, 0x1e, 0x95, 0x7d, 0xee, 0xb7, 0x48, 0xa3 +.byte 0x08, 0xda, 0xd6, 0xaf, 0x7a, 0x0c, 0x39, 0x06, 0x65, 0x7f, 0x4a, 0x5d, 0x1f, 0xbc, 0x17, 0xf8 +.byte 0xab, 0xbe, 0xee, 0x28, 0xd7, 0x74, 0x7f, 0x7a, 0x78, 0x99, 0x59, 0x85, 0x68, 0x6e, 0x5c, 0x23 +.byte 0x32, 0x4b, 0xbf, 0x4e, 0xc0, 0xe8, 0x5a, 0x6d, 0xe3, 0x70, 0xbf, 0x77, 0x10, 0xbf, 0xfc, 0x01 +.byte 0xf6, 0x85, 0xd9, 0xa8, 0x44, 0x10, 0x58, 0x32, 0xa9, 0x75, 0x18, 0xd5, 0xd1, 0xa2, 0xbe, 0x47 +.byte 0xe2, 0x27, 0x6a, 0xf4, 0x9a, 0x33, 0xf8, 0x49, 0x08, 0x60, 0x8b, 0xd4, 0x5f, 0xb4, 0x3a, 0x84 +.byte 0xbf, 0xa1, 0xaa, 0x4a, 0x4c, 0x7d, 0x3e, 0xcf, 0x4f, 0x5f, 0x6c, 0x76, 0x5e, 0xa0, 0x4b, 0x37 +.byte 0x91, 0x9e, 0xdc, 0x22, 0xe6, 0x6d, 0xce, 0x14, 0x1a, 0x8e, 0x6a, 0xcb, 0xfe, 0xcd, 0xb3, 0x14 +.byte 0x64, 0x17, 0xc7, 0x5b, 0x29, 0x9e, 0x32, 0xbf, 0xf2, 0xee, 0xfa, 0xd3, 0x0b, 0x42, 0xd4, 0xab +.byte 0xb7, 0x41, 0x32, 0xda, 0x0c, 0xd4, 0xef, 0xf8, 0x81, 0xd5, 0xbb, 0x8d, 0x58, 0x3f, 0xb5, 0x1b +.byte 0xe8, 0x49, 0x28, 0xa2, 0x70, 0xda, 0x31, 0x04, 0xdd, 0xf7, 0xb2, 0x16, 0xf2, 0x4c, 0x0a, 0x4e +.byte 0x07, 0xa8, 0xed, 0x4a, 0x3d, 0x5e, 0xb5, 0x7f, 0xa3, 0x90, 0xc3, 0xaf, 0x27, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c +.byte 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17 +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63 +.byte 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0xbb, 0x37, 0xcd, 0x34, 0xdc, 0x7b +.byte 0x6b, 0xc9, 0xb2, 0x68, 0x90, 0xad, 0x4a, 0x75, 0xff, 0x46, 0xba, 0x21, 0x0a, 0x08, 0x8d, 0xf5 +.byte 0x19, 0x54, 0xc9, 0xfb, 0x88, 0xdb, 0xf3, 0xae, 0xf2, 0x3a, 0x89, 0x91, 0x3c, 0x7a, 0xe6, 0xab +.byte 0x06, 0x1a, 0x6b, 0xcf, 0xac, 0x2d, 0xe8, 0x5e, 0x09, 0x24, 0x44, 0xba, 0x62, 0x9a, 0x7e, 0xd6 +.byte 0xa3, 0xa8, 0x7e, 0xe0, 0x54, 0x75, 0x20, 0x05, 0xac, 0x50, 0xb7, 0x9c, 0x63, 0x1a, 0x6c, 0x30 +.byte 0xdc, 0xda, 0x1f, 0x19, 0xb1, 0xd7, 0x1e, 0xde, 0xfd, 0xd7, 0xe0, 0xcb, 0x94, 0x83, 0x37, 0xae +.byte 0xec, 0x1f, 0x43, 0x4e, 0xdd, 0x7b, 0x2c, 0xd2, 0xbd, 0x2e, 0xa5, 0x2f, 0xe4, 0xa9, 0xb8, 0xad +.byte 0x3a, 0xd4, 0x99, 0xa4, 0xb6, 0x25, 0xe9, 0x9b, 0x6b, 0x00, 0x60, 0x92, 0x60, 0xff, 0x4f, 0x21 +.byte 0x49, 0x18, 0xf7, 0x67, 0x90, 0xab, 0x61, 0x06, 0x9c, 0x8f, 0xf2, 0xba, 0xe9, 0xb4, 0xe9, 0x92 +.byte 0x32, 0x6b, 0xb5, 0xf3, 0x57, 0xe8, 0x5d, 0x1b, 0xcd, 0x8c, 0x1d, 0xab, 0x95, 0x04, 0x95, 0x49 +.byte 0xf3, 0x35, 0x2d, 0x96, 0xe3, 0x49, 0x6d, 0xdd, 0x77, 0xe3, 0xfb, 0x49, 0x4b, 0xb4, 0xac, 0x55 +.byte 0x07, 0xa9, 0x8f, 0x95, 0xb3, 0xb4, 0x23, 0xbb, 0x4c, 0x6d, 0x45, 0xf0, 0xf6, 0xa9, 0xb2, 0x95 +.byte 0x30, 0xb4, 0xfd, 0x4c, 0x55, 0x8c, 0x27, 0x4a, 0x57, 0x14, 0x7c, 0x82, 0x9d, 0xcd, 0x73, 0x92 +.byte 0xd3, 0x16, 0x4a, 0x06, 0x0c, 0x8c, 0x50, 0xd1, 0x8f, 0x1e, 0x09, 0xbe, 0x17, 0xa1, 0xe6, 0x21 +.byte 0xca, 0xfd, 0x83, 0xe5, 0x10, 0xbc, 0x83, 0xa5, 0x0a, 0xc4, 0x67, 0x28, 0xf6, 0x73, 0x14, 0x14 +.byte 0x3d, 0x46, 0x76, 0xc3, 0x87, 0x14, 0x89, 0x21, 0x34, 0x4d, 0xaf, 0x0f, 0x45, 0x0c, 0xa6, 0x49 +.byte 0xa1, 0xba, 0xbb, 0x9c, 0xc5, 0xb1, 0x33, 0x83, 0x29, 0x85, 0x02, 0x03, 0x01, 0x00, 0x01, 0x63 +.byte 0x00, 0x78, 0x00, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67 +.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74 +.byte 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44 +.byte 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 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, 0xdd, 0xa7 +.byte 0xd9, 0xbb, 0x8a, 0xb8, 0x0b, 0xfb, 0x0b, 0x7f, 0x21, 0xd2, 0xf0, 0xbe, 0xbe, 0x73, 0xf3, 0x33 +.byte 0x5d, 0x1a, 0xbc, 0x34, 0xea, 0xde, 0xc6, 0x9b, 0xbc, 0xd0, 0x95, 0xf6, 0xf0, 0xcc, 0xd0, 0x0b +.byte 0xba, 0x61, 0x5b, 0x51, 0x46, 0x7e, 0x9e, 0x2d, 0x9f, 0xee, 0x8e, 0x63, 0x0c, 0x17, 0xec, 0x07 +.byte 0x70, 0xf5, 0xcf, 0x84, 0x2e, 0x40, 0x83, 0x9c, 0xe8, 0x3f, 0x41, 0x6d, 0x3b, 0xad, 0xd3, 0xa4 +.byte 0x14, 0x59, 0x36, 0x78, 0x9d, 0x03, 0x43, 0xee, 0x10, 0x13, 0x6c, 0x72, 0xde, 0xae, 0x88, 0xa7 +.byte 0xa1, 0x6b, 0xb5, 0x43, 0xce, 0x67, 0xdc, 0x23, 0xff, 0x03, 0x1c, 0xa3, 0xe2, 0x3e, 0x64, 0x00 +.byte 0x26, 0x02, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43 +.byte 0x4e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x29, 0x47, 0x55, 0x41, 0x4e +.byte 0x47, 0x20, 0x44, 0x4f, 0x4e, 0x47, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41 +.byte 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x20, 0x43, 0x4f, 0x2e +.byte 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16 +.byte 0x47, 0x44, 0x43, 0x41, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x55, 0x54, 0x48, 0x20, 0x52 +.byte 0x35, 0x20, 0x52, 0x4f, 0x4f, 0x54, 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, 0xd9, 0xa3, 0x16, 0xf0, 0xc8, 0x74, 0x74, 0x77, 0x9b +.byte 0xef, 0x33, 0x0d, 0x3b, 0x06, 0x7e, 0x55, 0xfc, 0xb5, 0x60, 0x8f, 0x76, 0x86, 0x12, 0x42, 0x7d +.byte 0x56, 0x66, 0x3e, 0x88, 0x82, 0xed, 0x72, 0x63, 0x0e, 0x9e, 0x8b, 0xdd, 0x34, 0x2c, 0x02, 0x51 +.byte 0x51, 0xc3, 0x19, 0xfd, 0x59, 0x54, 0x84, 0xc9, 0xf1, 0x6b, 0xb3, 0x4c, 0xb0, 0xe9, 0xe8, 0x46 +.byte 0x5d, 0x38, 0xc6, 0xa2, 0xa7, 0x2e, 0x11, 0x57, 0xba, 0x82, 0x15, 0xa2, 0x9c, 0x8f, 0x6d, 0xb0 +.byte 0x99, 0x4a, 0x0a, 0xf2, 0xeb, 0x89, 0x70, 0x63, 0x4e, 0x79, 0xc4, 0xb7, 0x5b, 0xbd, 0xa2, 0x5d +.byte 0xb1, 0xf2, 0x41, 0x02, 0x2b, 0xad, 0xa9, 0x3a, 0xa3, 0xec, 0x79, 0x0a, 0xec, 0x5f, 0x3a, 0xe3 +.byte 0xfd, 0xef, 0x80, 0x3c, 0xad, 0x34, 0x9b, 0x1a, 0xab, 0x88, 0x26, 0x7b, 0x56, 0xa2, 0x82, 0x86 +.byte 0x1f, 0xeb, 0x35, 0x89, 0x83, 0x7f, 0x5f, 0xae, 0x29, 0x4e, 0x3d, 0xb6, 0x6e, 0xec, 0xae, 0xc1 +.byte 0xf0, 0x27, 0x9b, 0xae, 0xe3, 0xf4, 0xec, 0xef, 0xae, 0x7f, 0xf7, 0x86, 0x3d, 0x72, 0x7a, 0xeb +.byte 0xa5, 0xfb, 0x59, 0x4e, 0xa7, 0xeb, 0x95, 0x8c, 0x22, 0x39, 0x79, 0xe1, 0x2d, 0x08, 0x8f, 0xcc +.byte 0xbc, 0x91, 0xb8, 0x41, 0xf7, 0x14, 0xc1, 0x23, 0xa9, 0xc3, 0xad, 0x9a, 0x45, 0x44, 0xb3, 0xb2 +.byte 0xd7, 0x2c, 0xcd, 0xc6, 0x29, 0xe2, 0x50, 0x10, 0xae, 0x5c, 0xcb, 0x82, 0x8e, 0x17, 0x18, 0x36 +.byte 0x7d, 0x97, 0xe6, 0x88, 0x9a, 0xb0, 0x4d, 0x34, 0x09, 0xf4, 0x2c, 0xb9, 0x5a, 0x66, 0x2a, 0xb0 +.byte 0x17, 0x9b, 0x9e, 0x1e, 0x76, 0x9d, 0x4a, 0x66, 0x31, 0x41, 0xdf, 0x3f, 0xfb, 0xc5, 0x06, 0xef +.byte 0x1b, 0xb6, 0x7e, 0x1a, 0x46, 0x36, 0xf7, 0x64, 0x63, 0x3b, 0xe3, 0x39, 0x18, 0x23, 0xe7, 0x67 +.byte 0x75, 0x14, 0xd5, 0x75, 0x57, 0x92, 0x37, 0xbd, 0xbe, 0x6a, 0x1b, 0x26, 0x50, 0xf2, 0x36, 0x26 +.byte 0x06, 0x90, 0xc5, 0x70, 0x01, 0x64, 0x6d, 0x76, 0x66, 0xe1, 0x91, 0xdb, 0x6e, 0x07, 0xc0, 0x61 +.byte 0x80, 0x2e, 0xb2, 0x2e, 0x2f, 0x8c, 0x70, 0xa7, 0xd1, 0x3b, 0x3c, 0xb3, 0x91, 0xe4, 0x6e, 0xb6 +.byte 0xc4, 0x3b, 0x70, 0xf2, 0x6c, 0x92, 0x97, 0x09, 0xcd, 0x47, 0x7d, 0x18, 0xc0, 0xf3, 0xbb, 0x9e +.byte 0x0f, 0xd6, 0x8b, 0xae, 0x07, 0xb6, 0x5a, 0x0f, 0xce, 0x0b, 0x0c, 0x47, 0xa7, 0xe5, 0x3e, 0xb8 +.byte 0xbd, 0x7d, 0xc7, 0x9b, 0x35, 0xa0, 0x61, 0x97, 0x3a, 0x41, 0x75, 0x17, 0xcc, 0x2b, 0x96, 0x77 +.byte 0x2a, 0x92, 0x21, 0x1e, 0xd9, 0x95, 0x76, 0x20, 0x67, 0x68, 0xcf, 0x0d, 0xbd, 0xdf, 0xd6, 0x1f +.byte 0x09, 0x6a, 0x9a, 0xe2, 0xcc, 0x73, 0x71, 0xa4, 0x2f, 0x7d, 0x12, 0x80, 0xb7, 0x53, 0x30, 0x46 +.byte 0x5e, 0x4b, 0x54, 0x99, 0x0f, 0x67, 0xc9, 0xa5, 0xc8, 0xf2, 0x20, 0xc1, 0x82, 0xec, 0x9d, 0x11 +.byte 0xdf, 0xc2, 0x02, 0xfb, 0x1a, 0x3b, 0xd1, 0xed, 0x20, 0x9a, 0xef, 0x65, 0x64, 0x92, 0x10, 0x0d +.byte 0x2a, 0xe2, 0xde, 0x70, 0xf1, 0x18, 0x67, 0x82, 0x8c, 0x61, 0xde, 0xb8, 0xbc, 0xd1, 0x2f, 0x9c +.byte 0xfb, 0x0f, 0xd0, 0x2b, 0xed, 0x1b, 0x76, 0xb9, 0xe4, 0x39, 0x55, 0xf8, 0xf8, 0xa1, 0x1d, 0xb8 +.byte 0xaa, 0x80, 0x00, 0x4c, 0x82, 0xe7, 0xb2, 0x7f, 0x09, 0xb8, 0xbc, 0x30, 0xa0, 0x2f, 0x0d, 0xf5 +.byte 0x52, 0x9e, 0x8e, 0xf7, 0x92, 0xb3, 0x0a, 0x00, 0x1d, 0x00, 0x54, 0x97, 0x06, 0xe0, 0xb1, 0x07 +.byte 0xd9, 0xc7, 0x0f, 0x5c, 0x65, 0x7d, 0x3c, 0x6d, 0x59, 0x57, 0xe4, 0xed, 0xa5, 0x8d, 0xe9, 0x40 +.byte 0x53, 0x9f, 0x15, 0x4b, 0xa0, 0x71, 0xf6, 0x1a, 0x21, 0xe3, 0xda, 0x70, 0x06, 0x21, 0x58, 0x14 +.byte 0x87, 0x85, 0x77, 0x79, 0xaa, 0x82, 0x79, 0x02, 0x03, 0x01, 0x00, 0x01, 0x64, 0x00, 0x26, 0x02 +.byte 0x30, 0x62, 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, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x18, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x47, 0x34, 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, 0xbf, 0xe6, 0x90, 0x73, 0x68, 0xde, 0xbb, 0xe4, 0x5d, 0x4a, 0x3c +.byte 0x30, 0x22, 0x30, 0x69, 0x33, 0xec, 0xc2, 0xa7, 0x25, 0x2e, 0xc9, 0x21, 0x3d, 0xf2, 0x8a, 0xd8 +.byte 0x59, 0xc2, 0xe1, 0x29, 0xa7, 0x3d, 0x58, 0xab, 0x76, 0x9a, 0xcd, 0xae, 0x7b, 0x1b, 0x84, 0x0d +.byte 0xc4, 0x30, 0x1f, 0xf3, 0x1b, 0xa4, 0x38, 0x16, 0xeb, 0x56, 0xc6, 0x97, 0x6d, 0x1d, 0xab, 0xb2 +.byte 0x79, 0xf2, 0xca, 0x11, 0xd2, 0xe4, 0x5f, 0xd6, 0x05, 0x3c, 0x52, 0x0f, 0x52, 0x1f, 0xc6, 0x9e +.byte 0x15, 0xa5, 0x7e, 0xbe, 0x9f, 0xa9, 0x57, 0x16, 0x59, 0x55, 0x72, 0xaf, 0x68, 0x93, 0x70, 0xc2 +.byte 0xb2, 0xba, 0x75, 0x99, 0x6a, 0x73, 0x32, 0x94, 0xd1, 0x10, 0x44, 0x10, 0x2e, 0xdf, 0x82, 0xf3 +.byte 0x07, 0x84, 0xe6, 0x74, 0x3b, 0x6d, 0x71, 0xe2, 0x2d, 0x0c, 0x1b, 0xee, 0x20, 0xd5, 0xc9, 0x20 +.byte 0x1d, 0x63, 0x29, 0x2d, 0xce, 0xec, 0x5e, 0x4e, 0xc8, 0x93, 0xf8, 0x21, 0x61, 0x9b, 0x34, 0xeb +.byte 0x05, 0xc6, 0x5e, 0xec, 0x5b, 0x1a, 0xbc, 0xeb, 0xc9, 0xcf, 0xcd, 0xac, 0x34, 0x40, 0x5f, 0xb1 +.byte 0x7a, 0x66, 0xee, 0x77, 0xc8, 0x48, 0xa8, 0x66, 0x57, 0x57, 0x9f, 0x54, 0x58, 0x8e, 0x0c, 0x2b +.byte 0xb7, 0x4f, 0xa7, 0x30, 0xd9, 0x56, 0xee, 0xca, 0x7b, 0x5d, 0xe3, 0xad, 0xc9, 0x4f, 0x5e, 0xe5 +.byte 0x35, 0xe7, 0x31, 0xcb, 0xda, 0x93, 0x5e, 0xdc, 0x8e, 0x8f, 0x80, 0xda, 0xb6, 0x91, 0x98, 0x40 +.byte 0x90, 0x79, 0xc3, 0x78, 0xc7, 0xb6, 0xb1, 0xc4, 0xb5, 0x6a, 0x18, 0x38, 0x03, 0x10, 0x8d, 0xd8 +.byte 0xd4, 0x37, 0xa4, 0x2e, 0x05, 0x7d, 0x88, 0xf5, 0x82, 0x3e, 0x10, 0x91, 0x70, 0xab, 0x55, 0x82 +.byte 0x41, 0x32, 0xd7, 0xdb, 0x04, 0x73, 0x2a, 0x6e, 0x91, 0x01, 0x7c, 0x21, 0x4c, 0xd4, 0xbc, 0xae +.byte 0x1b, 0x03, 0x75, 0x5d, 0x78, 0x66, 0xd9, 0x3a, 0x31, 0x44, 0x9a, 0x33, 0x40, 0xbf, 0x08, 0xd7 +.byte 0x5a, 0x49, 0xa4, 0xc2, 0xe6, 0xa9, 0xa0, 0x67, 0xdd, 0xa4, 0x27, 0xbc, 0xa1, 0x4f, 0x39, 0xb5 +.byte 0x11, 0x58, 0x17, 0xf7, 0x24, 0x5c, 0x46, 0x8f, 0x64, 0xf7, 0xc1, 0x69, 0x88, 0x76, 0x98, 0x76 +.byte 0x3d, 0x59, 0x5d, 0x42, 0x76, 0x87, 0x89, 0x97, 0x69, 0x7a, 0x48, 0xf0, 0xe0, 0xa2, 0x12, 0x1b +.byte 0x66, 0x9a, 0x74, 0xca, 0xde, 0x4b, 0x1e, 0xe7, 0x0e, 0x63, 0xae, 0xe6, 0xd4, 0xef, 0x92, 0x92 +.byte 0x3a, 0x9e, 0x3d, 0xdc, 0x00, 0xe4, 0x45, 0x25, 0x89, 0xb6, 0x9a, 0x44, 0x19, 0x2b, 0x7e, 0xc0 +.byte 0x94, 0xb4, 0xd2, 0x61, 0x6d, 0xeb, 0x33, 0xd9, 0xc5, 0xdf, 0x4b, 0x04, 0x00, 0xcc, 0x7d, 0x1c +.byte 0x95, 0xc3, 0x8f, 0xf7, 0x21, 0xb2, 0xb2, 0x11, 0xb7, 0xbb, 0x7f, 0xf2, 0xd5, 0x8c, 0x70, 0x2c +.byte 0x41, 0x60, 0xaa, 0xb1, 0x63, 0x18, 0x44, 0x95, 0x1a, 0x76, 0x62, 0x7e, 0xf6, 0x80, 0xb0, 0xfb +.byte 0xe8, 0x64, 0xa6, 0x33, 0xd1, 0x89, 0x07, 0xe1, 0xbd, 0xb7, 0xe6, 0x43, 0xa4, 0x18, 0xb8, 0xa6 +.byte 0x77, 0x01, 0xe1, 0x0f, 0x94, 0x0c, 0x21, 0x1d, 0xb2, 0x54, 0x29, 0x25, 0x89, 0x6c, 0xe5, 0x0e +.byte 0x52, 0x51, 0x47, 0x74, 0xbe, 0x26, 0xac, 0xb6, 0x41, 0x75, 0xde, 0x7a, 0xac, 0x5f, 0x8d, 0x3f +.byte 0xc9, 0xbc, 0xd3, 0x41, 0x11, 0x12, 0x5b, 0xe5, 0x10, 0x50, 0xeb, 0x31, 0xc5, 0xca, 0x72, 0x16 +.byte 0x22, 0x09, 0xdf, 0x7c, 0x4c, 0x75, 0x3f, 0x63, 0xec, 0x21, 0x5f, 0xc4, 0x20, 0x51, 0x6b, 0x6f +.byte 0xb1, 0xab, 0x86, 0x8b, 0x4f, 0xc2, 0xd6, 0x45, 0x5f, 0x9d, 0x20, 0xfc, 0xa1, 0x1e, 0xc5, 0xc0 +.byte 0x8f, 0xa2, 0xb1, 0x7e, 0x0a, 0x26, 0x99, 0xf5, 0xe4, 0x69, 0x2f, 0x98, 0x1d, 0x2d, 0xf5, 0xd9 +.byte 0xa9, 0xb2, 0x1d, 0xe5, 0x1b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x65, 0x00, 0x78, 0x00, 0x30, 0x63 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1e, 0x44, 0x65, 0x75, 0x74, 0x73, 0x63, 0x68, 0x65 +.byte 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74 +.byte 0x79, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x22, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74 +.byte 0x79, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x32 +.byte 0x30, 0x32, 0x30, 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, 0xce, 0xbf, 0xfe, 0x57, 0xa8 +.byte 0xbf, 0xd5, 0xaa, 0xf7, 0x10, 0x9a, 0xcd, 0xbc, 0xd1, 0x11, 0xa2, 0xbd, 0x67, 0x42, 0xcc, 0x90 +.byte 0xeb, 0x15, 0x18, 0x90, 0xd9, 0xa2, 0xcd, 0x0c, 0x2a, 0x25, 0xeb, 0x3e, 0x4f, 0xce, 0xb5, 0xd2 +.byte 0x8f, 0x0f, 0xf3, 0x35, 0xda, 0x43, 0x8b, 0x02, 0x80, 0xbe, 0x6f, 0x51, 0x24, 0x1d, 0x0f, 0x6b +.byte 0x2b, 0xca, 0x9f, 0xc2, 0x6f, 0x50, 0x32, 0xe5, 0x37, 0x20, 0xb6, 0x20, 0xff, 0x88, 0x0d, 0x0f +.byte 0x6d, 0x49, 0xbb, 0xdb, 0x06, 0xa4, 0x87, 0x90, 0x92, 0x94, 0xf4, 0x09, 0xd0, 0xcf, 0x7f, 0xc8 +.byte 0x80, 0x0b, 0xc1, 0x97, 0xb3, 0xbb, 0x35, 0x27, 0xc9, 0xc2, 0x1b, 0x65, 0x00, 0x26, 0x02, 0x30 +.byte 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x27 +.byte 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1e, 0x44, 0x65, 0x75, 0x74, 0x73, 0x63, 0x68 +.byte 0x65, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69 +.byte 0x74, 0x79, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x22, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69 +.byte 0x74, 0x79, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x32, 0x30, 0x32, 0x33, 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, 0xed, 0x35, 0xa1, 0x81, 0x80, 0xf3, 0xcb, 0x4a, 0x69, 0x5b, 0xc2 +.byte 0xfb, 0x51, 0x83, 0xae, 0x26, 0xfd, 0xe1, 0x6e, 0xf3, 0x81, 0x12, 0x7d, 0x71, 0x40, 0xff, 0x87 +.byte 0x75, 0x42, 0x29, 0x21, 0xed, 0x81, 0x52, 0x2c, 0xdf, 0x12, 0xc1, 0x19, 0x84, 0x89, 0xc1, 0xbd +.byte 0xc5, 0x28, 0xd5, 0xd5, 0x4b, 0x6c, 0x44, 0xd6, 0x4c, 0xdb, 0x07, 0x96, 0x4a, 0x55, 0x7a, 0xca +.byte 0x36, 0x82, 0x04, 0x36, 0xa8, 0xa5, 0xfc, 0x27, 0xf6, 0x49, 0xf1, 0xd5, 0x72, 0x9e, 0x91, 0xf9 +.byte 0x23, 0xd6, 0x70, 0x7b, 0xbb, 0xf5, 0x9b, 0xc1, 0xec, 0x93, 0xcf, 0x19, 0xea, 0x65, 0x7e, 0x88 +.byte 0x70, 0xa0, 0x73, 0xfc, 0xf6, 0xff, 0xb5, 0x56, 0x62, 0xe1, 0x73, 0x6a, 0x34, 0x98, 0x3e, 0x82 +.byte 0xb8, 0xac, 0x95, 0x53, 0xf4, 0x01, 0xa0, 0x27, 0x07, 0x72, 0xa3, 0x00, 0x53, 0xa0, 0xe4, 0xb2 +.byte 0xab, 0x83, 0x38, 0x57, 0x33, 0x25, 0x94, 0x9f, 0xbe, 0x48, 0x1d, 0x98, 0xe1, 0xa3, 0xba, 0x9e +.byte 0x5c, 0xcd, 0x04, 0x71, 0x51, 0x7d, 0x75, 0x78, 0xab, 0xf3, 0x59, 0xaa, 0xc4, 0xe0, 0x60, 0xbe +.byte 0x8f, 0x83, 0x52, 0xb8, 0x75, 0x1a, 0x41, 0x35, 0xed, 0xbc, 0xf3, 0x3a, 0x63, 0xe9, 0xa9, 0x14 +.byte 0x45, 0xd7, 0xe6, 0x52, 0xd1, 0x6e, 0xd2, 0xde, 0xbc, 0xe3, 0xf5, 0x0b, 0x3b, 0xe6, 0xe0, 0xc4 +.byte 0xbd, 0x43, 0x64, 0x13, 0xa6, 0xce, 0xf4, 0x98, 0x37, 0x6c, 0x8a, 0x95, 0xa8, 0x97, 0xc8, 0x47 +.byte 0x0f, 0xf0, 0x5e, 0x10, 0x8b, 0xe7, 0x1d, 0x1c, 0xfe, 0xb1, 0x3b, 0xa0, 0x05, 0x33, 0x68, 0x05 +.byte 0x41, 0x82, 0xc1, 0x03, 0x2b, 0x01, 0xc8, 0xe7, 0x8f, 0x4d, 0xab, 0xe8, 0xb5, 0xf6, 0xcd, 0x6b +.byte 0x44, 0xb5, 0xe7, 0xdd, 0x8b, 0xec, 0xea, 0x25, 0xb4, 0x00, 0x22, 0x57, 0x4d, 0xb0, 0xb1, 0xb2 +.byte 0x31, 0xc1, 0x16, 0xce, 0xff, 0xfd, 0x14, 0x84, 0xb7, 0x47, 0xfa, 0xb2, 0xf1, 0x70, 0xde, 0xdb +.byte 0x8b, 0x6c, 0x36, 0x58, 0xa4, 0x7c, 0xb3, 0x11, 0xd1, 0xc3, 0x77, 0x7f, 0x5f, 0xb6, 0x25, 0xe0 +.byte 0x0d, 0xc5, 0xd2, 0xb3, 0xf9, 0xb8, 0xb8, 0x77, 0xdb, 0x37, 0x71, 0x71, 0x47, 0xe3, 0x60, 0x18 +.byte 0x4f, 0x24, 0xb6, 0x75, 0x37, 0x78, 0xb9, 0xa3, 0x62, 0xaf, 0xbd, 0xc9, 0x72, 0x8e, 0x2f, 0xcc +.byte 0xbb, 0xae, 0xdb, 0xe4, 0x15, 0x52, 0x19, 0x07, 0x33, 0xfb, 0x6a, 0xb7, 0x2d, 0x4b, 0x90, 0x28 +.byte 0x82, 0x73, 0xfe, 0x18, 0x8b, 0x35, 0x8d, 0xdb, 0xa7, 0x04, 0x6a, 0xbe, 0xea, 0xc1, 0x4d, 0x36 +.byte 0x3b, 0x16, 0x36, 0x91, 0x32, 0xef, 0xb6, 0x40, 0x89, 0x91, 0x43, 0xe0, 0xf2, 0xa2, 0xab, 0x04 +.byte 0x2e, 0xe6, 0xf2, 0x4c, 0x0e, 0x16, 0x34, 0x20, 0xac, 0x87, 0xc1, 0x2d, 0x7e, 0xc9, 0x66, 0x47 +.byte 0x17, 0x14, 0x11, 0xa4, 0xf3, 0xf7, 0xa1, 0x24, 0x89, 0xab, 0xd8, 0x1a, 0xc8, 0xa1, 0x5c, 0xb1 +.byte 0xa3, 0xf7, 0x8c, 0x6d, 0xc8, 0x01, 0xc9, 0x4f, 0xc9, 0xec, 0xc4, 0xfc, 0xac, 0x51, 0x33, 0xd1 +.byte 0xc8, 0x83, 0xd1, 0xc9, 0x9f, 0x1d, 0xd4, 0x47, 0x34, 0x29, 0x3e, 0xcb, 0xb0, 0x0e, 0xfa, 0x83 +.byte 0x0b, 0x28, 0x58, 0xe5, 0x29, 0xdc, 0x3f, 0x7c, 0xa8, 0x9f, 0xc9, 0xb6, 0x0a, 0xbb, 0xa6, 0xe8 +.byte 0x46, 0x16, 0x0f, 0x96, 0xe5, 0x7b, 0xe4, 0x6a, 0x7a, 0x48, 0x6d, 0x76, 0x98, 0x05, 0xa5, 0xdc +.byte 0x6d, 0x1e, 0x42, 0x1e, 0x42, 0xda, 0x1a, 0xe0, 0x52, 0xf7, 0xb5, 0x83, 0xc0, 0x1a, 0x7b, 0x78 +.byte 0x35, 0x2c, 0x38, 0xf5, 0x1f, 0xfd, 0x49, 0xa3, 0x2e, 0xd2, 0x59, 0x63, 0xbf, 0x80, 0xb0, 0x8c +.byte 0x93, 0x73, 0xcb, 0x35, 0xa6, 0x99, 0x95, 0x22, 0x61, 0x65, 0x03, 0x60, 0xfb, 0x2f, 0x93, 0x4b +.byte 0xfa, 0x9a, 0x9c, 0x80, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x65, 0x00, 0x24, 0x01, 0x30, 0x63 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x21, 0x30 +.byte 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x68, 0x65, 0x20, 0x47, 0x6f, 0x20, 0x44 +.byte 0x61, 0x64, 0x64, 0x79, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e +.byte 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61 +.byte 0x64, 0x64, 0x79, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 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, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xde, 0x9d, 0xd7, 0xea, 0x57, 0x18, 0x49, 0xa1, 0x5b, 0xeb, 0xd7, 0x5f +.byte 0x48, 0x86, 0xea, 0xbe, 0xdd, 0xff, 0xe4, 0xef, 0x67, 0x1c, 0xf4, 0x65, 0x68, 0xb3, 0x57, 0x71 +.byte 0xa0, 0x5e, 0x77, 0xbb, 0xed, 0x9b, 0x49, 0xe9, 0x70, 0x80, 0x3d, 0x56, 0x18, 0x63, 0x08, 0x6f +.byte 0xda, 0xf2, 0xcc, 0xd0, 0x3f, 0x7f, 0x02, 0x54, 0x22, 0x54, 0x10, 0xd8, 0xb2, 0x81, 0xd4, 0xc0 +.byte 0x75, 0x3d, 0x4b, 0x7f, 0xc7, 0x77, 0xc3, 0x3e, 0x78, 0xab, 0x1a, 0x03, 0xb5, 0x20, 0x6b, 0x2f +.byte 0x6a, 0x2b, 0xb1, 0xc5, 0x88, 0x7e, 0xc4, 0xbb, 0x1e, 0xb0, 0xc1, 0xd8, 0x45, 0x27, 0x6f, 0xaa +.byte 0x37, 0x58, 0xf7, 0x87, 0x26, 0xd7, 0xd8, 0x2d, 0xf6, 0xa9, 0x17, 0xb7, 0x1f, 0x72, 0x36, 0x4e +.byte 0xa6, 0x17, 0x3f, 0x65, 0x98, 0x92, 0xdb, 0x2a, 0x6e, 0x5d, 0xa2, 0xfe, 0x88, 0xe0, 0x0b, 0xde +.byte 0x7f, 0xe5, 0x8d, 0x15, 0xe1, 0xeb, 0xcb, 0x3a, 0xd5, 0xe2, 0x12, 0xa2, 0x13, 0x2d, 0xd8, 0x8e +.byte 0xaf, 0x5f, 0x12, 0x3d, 0xa0, 0x08, 0x05, 0x08, 0xb6, 0x5c, 0xa5, 0x65, 0x38, 0x04, 0x45, 0x99 +.byte 0x1e, 0xa3, 0x60, 0x60, 0x74, 0xc5, 0x41, 0xa5, 0x72, 0x62, 0x1b, 0x62, 0xc5, 0x1f, 0x6f, 0x5f +.byte 0x1a, 0x42, 0xbe, 0x02, 0x51, 0x65, 0xa8, 0xae, 0x23, 0x18, 0x6a, 0xfc, 0x78, 0x03, 0xa9, 0x4d +.byte 0x7f, 0x80, 0xc3, 0xfa, 0xab, 0x5a, 0xfc, 0xa1, 0x40, 0xa4, 0xca, 0x19, 0x16, 0xfe, 0xb2, 0xc8 +.byte 0xef, 0x5e, 0x73, 0x0d, 0xee, 0x77, 0xbd, 0x9a, 0xf6, 0x79, 0x98, 0xbc, 0xb1, 0x07, 0x67, 0xa2 +.byte 0x15, 0x0d, 0xdd, 0xa0, 0x58, 0xc6, 0x44, 0x7b, 0x0a, 0x3e, 0x62, 0x28, 0x5f, 0xba, 0x41, 0x07 +.byte 0x53, 0x58, 0xcf, 0x11, 0x7e, 0x38, 0x74, 0xc5, 0xf8, 0xff, 0xb5, 0x69, 0x90, 0x8f, 0x84, 0x74 +.byte 0xea, 0x97, 0x1b, 0xaf, 0x02, 0x01, 0x03, 0x67, 0x00, 0x26, 0x01, 0x30, 0x65, 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, 0x24, 0x30, 0x22 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20 +.byte 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0xad, 0x0e, 0x15, 0xce, 0xe4, 0x43, 0x80, 0x5c, 0xb1, 0x87, 0xf3, 0xb7, 0x60 +.byte 0xf9, 0x71, 0x12, 0xa5, 0xae, 0xdc, 0x26, 0x94, 0x88, 0xaa, 0xf4, 0xce, 0xf5, 0x20, 0x39, 0x28 +.byte 0x58, 0x60, 0x0c, 0xf8, 0x80, 0xda, 0xa9, 0x15, 0x95, 0x32, 0x61, 0x3c, 0xb5, 0xb1, 0x28, 0x84 +.byte 0x8a, 0x8a, 0xdc, 0x9f, 0x0a, 0x0c, 0x83, 0x17, 0x7a, 0x8f, 0x90, 0xac, 0x8a, 0xe7, 0x79, 0x53 +.byte 0x5c, 0x31, 0x84, 0x2a, 0xf6, 0x0f, 0x98, 0x32, 0x36, 0x76, 0xcc, 0xde, 0xdd, 0x3c, 0xa8, 0xa2 +.byte 0xef, 0x6a, 0xfb, 0x21, 0xf2, 0x52, 0x61, 0xdf, 0x9f, 0x20, 0xd7, 0x1f, 0xe2, 0xb1, 0xd9, 0xfe +.byte 0x18, 0x64, 0xd2, 0x12, 0x5b, 0x5f, 0xf9, 0x58, 0x18, 0x35, 0xbc, 0x47, 0xcd, 0xa1, 0x36, 0xf9 +.byte 0x6b, 0x7f, 0xd4, 0xb0, 0x38, 0x3e, 0xc1, 0x1b, 0xc3, 0x8c, 0x33, 0xd9, 0xd8, 0x2f, 0x18, 0xfe +.byte 0x28, 0x0f, 0xb3, 0xa7, 0x83, 0xd6, 0xc3, 0x6e, 0x44, 0xc0, 0x61, 0x35, 0x96, 0x16, 0xfe, 0x59 +.byte 0x9c, 0x8b, 0x76, 0x6d, 0xd7, 0xf1, 0xa2, 0x4b, 0x0d, 0x2b, 0xff, 0x0b, 0x72, 0xda, 0x9e, 0x60 +.byte 0xd0, 0x8e, 0x90, 0x35, 0xc6, 0x78, 0x55, 0x87, 0x20, 0xa1, 0xcf, 0xe5, 0x6d, 0x0a, 0xc8, 0x49 +.byte 0x7c, 0x31, 0x98, 0x33, 0x6c, 0x22, 0xe9, 0x87, 0xd0, 0x32, 0x5a, 0xa2, 0xba, 0x13, 0x82, 0x11 +.byte 0xed, 0x39, 0x17, 0x9d, 0x99, 0x3a, 0x72, 0xa1, 0xe6, 0xfa, 0xa4, 0xd9, 0xd5, 0x17, 0x31, 0x75 +.byte 0xae, 0x85, 0x7d, 0x22, 0xae, 0x3f, 0x01, 0x46, 0x86, 0xf6, 0x28, 0x79, 0xc8, 0xb1, 0xda, 0xe4 +.byte 0x57, 0x17, 0xc4, 0x7e, 0x1c, 0x0e, 0xb0, 0xb4, 0x92, 0xa6, 0x56, 0xb3, 0xbd, 0xb2, 0x97, 0xed +.byte 0xaa, 0xa7, 0xf0, 0xb7, 0xc5, 0xa8, 0x3f, 0x95, 0x16, 0xd0, 0xff, 0xa1, 0x96, 0xeb, 0x08, 0x5f +.byte 0x18, 0x77, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00, 0x26, 0x01, 0x30, 0x65, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49 +.byte 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77 +.byte 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30 +.byte 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74 +.byte 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x47, 0x32, 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, 0xd9, 0xe7, 0x28, 0x2f, 0x52, 0x3f, 0x36, 0x72, 0x49, 0x88, 0x93, 0x34 +.byte 0xf3, 0xf8, 0x6a, 0x1e, 0x31, 0x54, 0x80, 0x9f, 0xad, 0x54, 0x41, 0xb5, 0x47, 0xdf, 0x96, 0xa8 +.byte 0xd4, 0xaf, 0x80, 0x2d, 0xb9, 0x0a, 0xcf, 0x75, 0xfd, 0x89, 0xa5, 0x7d, 0x24, 0xfa, 0xe3, 0x22 +.byte 0x0c, 0x2b, 0xbc, 0x95, 0x17, 0x0b, 0x33, 0xbf, 0x19, 0x4d, 0x41, 0x06, 0x90, 0x00, 0xbd, 0x0c +.byte 0x4d, 0x10, 0xfe, 0x07, 0xb5, 0xe7, 0x1c, 0x6e, 0x22, 0x55, 0x31, 0x65, 0x97, 0xbd, 0xd3, 0x17 +.byte 0xd2, 0x1e, 0x62, 0xf3, 0xdb, 0xea, 0x6c, 0x50, 0x8c, 0x3f, 0x84, 0x0c, 0x96, 0xcf, 0xb7, 0xcb +.byte 0x03, 0xe0, 0xca, 0x6d, 0xa1, 0x14, 0x4c, 0x1b, 0x89, 0xdd, 0xed, 0x00, 0xb0, 0x52, 0x7c, 0xaf +.byte 0x91, 0x6c, 0xb1, 0x38, 0x13, 0xd1, 0xe9, 0x12, 0x08, 0xc0, 0x00, 0xb0, 0x1c, 0x2b, 0x11, 0xda +.byte 0x77, 0x70, 0x36, 0x9b, 0xae, 0xce, 0x79, 0x87, 0xdc, 0x82, 0x70, 0xe6, 0x09, 0x74, 0x70, 0x55 +.byte 0x69, 0xaf, 0xa3, 0x68, 0x9f, 0xbf, 0xdd, 0xb6, 0x79, 0xb3, 0xf2, 0x9d, 0x70, 0x29, 0x55, 0xf4 +.byte 0xab, 0xff, 0x95, 0x61, 0xf3, 0xc9, 0x40, 0x6f, 0x1d, 0xd1, 0xbe, 0x93, 0xbb, 0xd3, 0x88, 0x2a +.byte 0xbb, 0x9d, 0xbf, 0x72, 0x5a, 0x56, 0x71, 0x3b, 0x3f, 0xd4, 0xf3, 0xd1, 0x0a, 0xfe, 0x28, 0xef +.byte 0xa3, 0xee, 0xd9, 0x99, 0xaf, 0x03, 0xd3, 0x8f, 0x60, 0xb7, 0xf2, 0x92, 0xa1, 0xb1, 0xbd, 0x89 +.byte 0x89, 0x1f, 0x30, 0xcd, 0xc3, 0xa6, 0x2e, 0x62, 0x33, 0xae, 0x16, 0x02, 0x77, 0x44, 0x5a, 0xe7 +.byte 0x81, 0x0a, 0x3c, 0xa7, 0x44, 0x2e, 0x79, 0xb8, 0x3f, 0x04, 0xbc, 0x5c, 0xa0, 0x87, 0xe1, 0x1b +.byte 0xaf, 0x51, 0x8e, 0xcd, 0xec, 0x2c, 0xfa, 0xf8, 0xfe, 0x6d, 0xf0, 0x3a, 0x7c, 0xaa, 0x8b, 0xe4 +.byte 0x67, 0x95, 0x31, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00, 0x78, 0x00, 0x30, 0x65, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20 +.byte 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77 +.byte 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24 +.byte 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72 +.byte 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02 +.byte 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x19, 0xe7, 0xbc, 0xac +.byte 0x44, 0x65, 0xed, 0xcd, 0xb8, 0x3f, 0x58, 0xfb, 0x8d, 0xb1, 0x57, 0xa9, 0x44, 0x2d, 0x05, 0x15 +.byte 0xf2, 0xef, 0x0b, 0xff, 0x10, 0x74, 0x9f, 0xb5, 0x62, 0x52, 0x5f, 0x66, 0x7e, 0x1f, 0xe5, 0xdc +.byte 0x1b, 0x45, 0x79, 0x0b, 0xcc, 0xc6, 0x53, 0x0a, 0x9d, 0x8d, 0x5d, 0x02, 0xd9, 0xa9, 0x59, 0xde +.byte 0x02, 0x5a, 0xf6, 0x95, 0x2a, 0x0e, 0x8d, 0x38, 0x4a, 0x8a, 0x49, 0xc6, 0xbc, 0xc6, 0x03, 0x38 +.byte 0x07, 0x5f, 0x55, 0xda, 0x7e, 0x09, 0x6e, 0xe2, 0x7f, 0x5e, 0xd0, 0x45, 0x20, 0x0f, 0x59, 0x76 +.byte 0x10, 0xd6, 0xa0, 0x24, 0xf0, 0x2d, 0xde, 0x36, 0xf2, 0x6c, 0x29, 0x39, 0x67, 0x00, 0x78, 0x00 +.byte 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73 +.byte 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31 +.byte 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73 +.byte 0x6f, 0x66, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 +.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xd4 +.byte 0xbc, 0x3d, 0x02, 0x42, 0x75, 0x41, 0x13, 0x23, 0xcd, 0x80, 0x04, 0x86, 0x02, 0x51, 0x2f, 0x6a +.byte 0xa8, 0x81, 0x62, 0x0b, 0x65, 0xcc, 0xf6, 0xca, 0x9d, 0x1e, 0x6f, 0x4a, 0x66, 0x51, 0xa2, 0x03 +.byte 0xd9, 0x9d, 0x91, 0xfa, 0xb6, 0x16, 0xb1, 0x8c, 0x6e, 0xde, 0x7c, 0xcd, 0xdb, 0x79, 0xa6, 0x2f +.byte 0xce, 0xbb, 0xce, 0x71, 0x2f, 0xe5, 0xa5, 0xab, 0x28, 0xec, 0x63, 0x04, 0x66, 0x99, 0xf8, 0xfa +.byte 0xf2, 0x93, 0x10, 0x05, 0xe1, 0x81, 0x28, 0x42, 0xe3, 0xc6, 0x68, 0xf4, 0xe6, 0x1b, 0x84, 0x60 +.byte 0x4a, 0x89, 0xaf, 0xed, 0x79, 0x0f, 0x3b, 0xce, 0xf1, 0xf6, 0x44, 0xf5, 0x01, 0x78, 0xc0, 0x67 +.byte 0x00, 0x26, 0x02, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d, 0x69, 0x63 +.byte 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d, 0x69, 0x63 +.byte 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 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, 0xca, 0x5b, 0xbe, 0x94, 0x33 +.byte 0x8c, 0x29, 0x95, 0x91, 0x16, 0x0a, 0x95, 0xbd, 0x47, 0x62, 0xc1, 0x89, 0xf3, 0x99, 0x36, 0xdf +.byte 0x46, 0x90, 0xc9, 0xa5, 0xed, 0x78, 0x6a, 0x6f, 0x47, 0x91, 0x68, 0xf8, 0x27, 0x67, 0x50, 0x33 +.byte 0x1d, 0xa1, 0xa6, 0xfb, 0xe0, 0xe5, 0x43, 0xa3, 0x84, 0x02, 0x57, 0x01, 0x5d, 0x9c, 0x48, 0x40 +.byte 0x82, 0x53, 0x10, 0xbc, 0xbf, 0xc7, 0x3b, 0x68, 0x90, 0xb6, 0x82, 0x2d, 0xe5, 0xf4, 0x65, 0xd0 +.byte 0xcc, 0x6d, 0x19, 0xcc, 0x95, 0xf9, 0x7b, 0xac, 0x4a, 0x94, 0xad, 0x0e, 0xde, 0x4b, 0x43, 0x1d +.byte 0x87, 0x07, 0x92, 0x13, 0x90, 0x80, 0x83, 0x64, 0x35, 0x39, 0x04, 0xfc, 0xe5, 0xe9, 0x6c, 0xb3 +.byte 0xb6, 0x1f, 0x50, 0x94, 0x38, 0x65, 0x50, 0x5c, 0x17, 0x46, 0xb9, 0xb6, 0x85, 0xb5, 0x1c, 0xb5 +.byte 0x17, 0xe8, 0xd6, 0x45, 0x9d, 0xd8, 0xb2, 0x26, 0xb0, 0xca, 0xc4, 0x70, 0x4a, 0xae, 0x60, 0xa4 +.byte 0xdd, 0xb3, 0xd9, 0xec, 0xfc, 0x3b, 0xd5, 0x57, 0x72, 0xbc, 0x3f, 0xc8, 0xc9, 0xb2, 0xde, 0x4b +.byte 0x6b, 0xf8, 0x23, 0x6c, 0x03, 0xc0, 0x05, 0xbd, 0x95, 0xc7, 0xcd, 0x73, 0x3b, 0x66, 0x80, 0x64 +.byte 0xe3, 0x1a, 0xac, 0x2e, 0xf9, 0x47, 0x05, 0xf2, 0x06, 0xb6, 0x9b, 0x73, 0xf5, 0x78, 0x33, 0x5b +.byte 0xc7, 0xa1, 0xfb, 0x27, 0x2a, 0xa1, 0xb4, 0x9a, 0x91, 0x8c, 0x91, 0xd3, 0x3a, 0x82, 0x3e, 0x76 +.byte 0x40, 0xb4, 0xcd, 0x52, 0x61, 0x51, 0x70, 0x28, 0x3f, 0xc5, 0xc5, 0x5a, 0xf2, 0xc9, 0x8c, 0x49 +.byte 0xbb, 0x14, 0x5b, 0x4d, 0xc8, 0xff, 0x67, 0x4d, 0x4c, 0x12, 0x96, 0xad, 0xf5, 0xfe, 0x78, 0xa8 +.byte 0x97, 0x87, 0xd7, 0xfd, 0x5e, 0x20, 0x80, 0xdc, 0xa1, 0x4b, 0x22, 0xfb, 0xd4, 0x89, 0xad, 0xba +.byte 0xce, 0x47, 0x97, 0x47, 0x55, 0x7b, 0x8f, 0x45, 0xc8, 0x67, 0x28, 0x84, 0x95, 0x1c, 0x68, 0x30 +.byte 0xef, 0xef, 0x49, 0xe0, 0x35, 0x7b, 0x64, 0xe7, 0x98, 0xb0, 0x94, 0xda, 0x4d, 0x85, 0x3b, 0x3e +.byte 0x55, 0xc4, 0x28, 0xaf, 0x57, 0xf3, 0x9e, 0x13, 0xdb, 0x46, 0x27, 0x9f, 0x1e, 0xa2, 0x5e, 0x44 +.byte 0x83, 0xa4, 0xa5, 0xca, 0xd5, 0x13, 0xb3, 0x4b, 0x3f, 0xc4, 0xe3, 0xc2, 0xe6, 0x86, 0x61, 0xa4 +.byte 0x52, 0x30, 0xb9, 0x7a, 0x20, 0x4f, 0x6f, 0x0f, 0x38, 0x53, 0xcb, 0x33, 0x0c, 0x13, 0x2b, 0x8f +.byte 0xd6, 0x9a, 0xbd, 0x2a, 0xc8, 0x2d, 0xb1, 0x1c, 0x7d, 0x4b, 0x51, 0xca, 0x47, 0xd1, 0x48, 0x27 +.byte 0x72, 0x5d, 0x87, 0xeb, 0xd5, 0x45, 0xe6, 0x48, 0x65, 0x9d, 0xaf, 0x52, 0x90, 0xba, 0x5b, 0xa2 +.byte 0x18, 0x65, 0x57, 0x12, 0x9f, 0x68, 0xb9, 0xd4, 0x15, 0x6b, 0x94, 0xc4, 0x69, 0x22, 0x98, 0xf4 +.byte 0x33, 0xe0, 0xed, 0xf9, 0x51, 0x8e, 0x41, 0x50, 0xc9, 0x34, 0x4f, 0x76, 0x90, 0xac, 0xfc, 0x38 +.byte 0xc1, 0xd8, 0xe1, 0x7b, 0xb9, 0xe3, 0xe3, 0x94, 0xe1, 0x46, 0x69, 0xcb, 0x0e, 0x0a, 0x50, 0x6b +.byte 0x13, 0xba, 0xac, 0x0f, 0x37, 0x5a, 0xb7, 0x12, 0xb5, 0x90, 0x81, 0x1e, 0x56, 0xae, 0x57, 0x22 +.byte 0x86, 0xd9, 0xc9, 0xd2, 0xd1, 0xd7, 0x51, 0xe3, 0xab, 0x3b, 0xc6, 0x55, 0xfd, 0x1e, 0x0e, 0xd3 +.byte 0x74, 0x0a, 0xd1, 0xda, 0xaa, 0xea, 0x69, 0xb8, 0x97, 0x28, 0x8f, 0x48, 0xc4, 0x07, 0xf8, 0x52 +.byte 0x43, 0x3a, 0xf4, 0xca, 0x55, 0x35, 0x2c, 0xb0, 0xa6, 0x6a, 0xc0, 0x9c, 0xf9, 0xf2, 0x81, 0xe1 +.byte 0x12, 0x6a, 0xc0, 0x45, 0xd9, 0x67, 0xb3, 0xce, 0xff, 0x23, 0xa2, 0x89, 0x0a, 0x54, 0xd4, 0x14 +.byte 0xb9, 0x2a, 0xa8, 0xd7, 0xec, 0xf9, 0xab, 0xcd, 0x25, 0x58, 0x32, 0x79, 0x8f, 0x90, 0x5b, 0x98 +.byte 0x39, 0xc4, 0x08, 0x06, 0xc1, 0xac, 0x7f, 0x0e, 0x3d, 0x00, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x69, 0x00, 0x26, 0x01, 0x30, 0x67, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d +.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e +.byte 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31 +.byte 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x31, 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, 0x93, 0x4b +.byte 0xbb, 0xe9, 0x66, 0x8a, 0xee, 0x9d, 0x5b, 0xd5, 0x34, 0x93, 0xd0, 0x1b, 0x1e, 0xc3, 0xe7, 0x9e +.byte 0xb8, 0x64, 0x33, 0x7f, 0x63, 0x78, 0x68, 0xb4, 0xcd, 0x2e, 0x71, 0x75, 0xd7, 0x9b, 0x20, 0xc6 +.byte 0x4d, 0x29, 0xbc, 0xb6, 0x68, 0x60, 0x8a, 0xf7, 0x21, 0x9a, 0x56, 0x35, 0x5a, 0xf3, 0x76, 0xbd +.byte 0xd8, 0xcd, 0x9a, 0xff, 0x93, 0x56, 0x4b, 0xa5, 0x59, 0x06, 0xa1, 0x93, 0x34, 0x29, 0xdd, 0x16 +.byte 0x34, 0x75, 0x4e, 0xf2, 0x81, 0xb4, 0xc7, 0x96, 0x4e, 0xad, 0x19, 0x15, 0x52, 0x4a, 0xfe, 0x3c +.byte 0x70, 0x75, 0x70, 0xcd, 0xaf, 0x2b, 0xab, 0x15, 0x9a, 0x33, 0x3c, 0xaa, 0xb3, 0x8b, 0xaa, 0xcd +.byte 0x43, 0xfd, 0xf5, 0xea, 0x70, 0xff, 0xed, 0xcf, 0x11, 0x3b, 0x94, 0xce, 0x4e, 0x32, 0x16, 0xd3 +.byte 0x23, 0x40, 0x2a, 0x77, 0xb3, 0xaf, 0x3c, 0x01, 0x2c, 0x6c, 0xed, 0x99, 0x2c, 0x8b, 0xd9, 0x4e +.byte 0x69, 0x98, 0xb2, 0xf7, 0x8f, 0x41, 0xb0, 0x32, 0x78, 0x61, 0xd6, 0x0d, 0x5f, 0xc3, 0xfa, 0xa2 +.byte 0x40, 0x92, 0x1d, 0x5c, 0x17, 0xe6, 0x70, 0x3e, 0x35, 0xe7, 0xa2, 0xb7, 0xc2, 0x62, 0xe2, 0xab +.byte 0xa4, 0x38, 0x4c, 0xb5, 0x39, 0x35, 0x6f, 0xea, 0x03, 0x69, 0xfa, 0x3a, 0x54, 0x68, 0x85, 0x6d +.byte 0xd6, 0xf2, 0x2f, 0x43, 0x55, 0x1e, 0x91, 0x0d, 0x0e, 0xd8, 0xd5, 0x6a, 0xa4, 0x96, 0xd1, 0x13 +.byte 0x3c, 0x2c, 0x78, 0x50, 0xe8, 0x3a, 0x92, 0xd2, 0x17, 0x56, 0xe5, 0x35, 0x1a, 0x40, 0x1c, 0x3e +.byte 0x8d, 0x2c, 0xed, 0x39, 0xdf, 0x42, 0xe0, 0x83, 0x41, 0x74, 0xdf, 0xa3, 0xcd, 0xc2, 0x86, 0x60 +.byte 0x48, 0x68, 0xe3, 0x69, 0x0b, 0x54, 0x00, 0x8b, 0xe4, 0x76, 0x69, 0x21, 0x0d, 0x79, 0x4e, 0x34 +.byte 0x08, 0x5e, 0x14, 0xc2, 0xcc, 0xb1, 0xb7, 0xad, 0xd7, 0x7c, 0x70, 0x8a, 0xc7, 0x85, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x6a, 0x00, 0x24, 0x01, 0x30, 0x68, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e +.byte 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30 +.byte 0x30, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c +.byte 0x64, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 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, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xb7, 0x32, 0xc8, 0xfe, 0xe9, 0x71, 0xa6, 0x04, 0x85, 0xad, 0x0c, 0x11, 0x64, 0xdf +.byte 0xce, 0x4d, 0xef, 0xc8, 0x03, 0x18, 0x87, 0x3f, 0xa1, 0xab, 0xfb, 0x3c, 0xa6, 0x9f, 0xf0, 0xc3 +.byte 0xa1, 0xda, 0xd4, 0xd8, 0x6e, 0x2b, 0x53, 0x90, 0xfb, 0x24, 0xa4, 0x3e, 0x84, 0xf0, 0x9e, 0xe8 +.byte 0x5f, 0xec, 0xe5, 0x27, 0x44, 0xf5, 0x28, 0xa6, 0x3f, 0x7b, 0xde, 0xe0, 0x2a, 0xf0, 0xc8, 0xaf +.byte 0x53, 0x2f, 0x9e, 0xca, 0x05, 0x01, 0x93, 0x1e, 0x8f, 0x66, 0x1c, 0x39, 0xa7, 0x4d, 0xfa, 0x5a +.byte 0xb6, 0x73, 0x04, 0x25, 0x66, 0xeb, 0x77, 0x7f, 0xe7, 0x59, 0xc6, 0x4a, 0x99, 0x25, 0x14, 0x54 +.byte 0xeb, 0x26, 0xc7, 0xf3, 0x7f, 0x19, 0xd5, 0x30, 0x70, 0x8f, 0xaf, 0xb0, 0x46, 0x2a, 0xff, 0xad +.byte 0xeb, 0x29, 0xed, 0xd7, 0x9f, 0xaa, 0x04, 0x87, 0xa3, 0xd4, 0xf9, 0x89, 0xa5, 0x34, 0x5f, 0xdb +.byte 0x43, 0x91, 0x82, 0x36, 0xd9, 0x66, 0x3c, 0xb1, 0xb8, 0xb9, 0x82, 0xfd, 0x9c, 0x3a, 0x3e, 0x10 +.byte 0xc8, 0x3b, 0xef, 0x06, 0x65, 0x66, 0x7a, 0x9b, 0x19, 0x18, 0x3d, 0xff, 0x71, 0x51, 0x3c, 0x30 +.byte 0x2e, 0x5f, 0xbe, 0x3d, 0x77, 0x73, 0xb2, 0x5d, 0x06, 0x6c, 0xc3, 0x23, 0x56, 0x9a, 0x2b, 0x85 +.byte 0x26, 0x92, 0x1c, 0xa7, 0x02, 0xb3, 0xe4, 0x3f, 0x0d, 0xaf, 0x08, 0x79, 0x82, 0xb8, 0x36, 0x3d +.byte 0xea, 0x9c, 0xd3, 0x35, 0xb3, 0xbc, 0x69, 0xca, 0xf5, 0xcc, 0x9d, 0xe8, 0xfd, 0x64, 0x8d, 0x17 +.byte 0x80, 0x33, 0x6e, 0x5e, 0x4a, 0x5d, 0x99, 0xc9, 0x1e, 0x87, 0xb4, 0x9d, 0x1a, 0xc0, 0xd5, 0x6e +.byte 0x13, 0x35, 0x23, 0x5e, 0xdf, 0x9b, 0x5f, 0x3d, 0xef, 0xd6, 0xf7, 0x76, 0xc2, 0xea, 0x3e, 0xbb +.byte 0x78, 0x0d, 0x1c, 0x42, 0x67, 0x6b, 0x04, 0xd8, 0xf8, 0xd6, 0xda, 0x6f, 0x8b, 0xf2, 0x44, 0xa0 +.byte 0x01, 0xab, 0x02, 0x01, 0x03, 0x6b, 0x00, 0x26, 0x02, 0x30, 0x69, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4b, 0x52, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x1d, 0x4e, 0x41, 0x56, 0x45, 0x52, 0x20, 0x42, 0x55, 0x53, 0x49, 0x4e, 0x45, 0x53 +.byte 0x53, 0x20, 0x50, 0x4c, 0x41, 0x54, 0x46, 0x4f, 0x52, 0x4d, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x2e +.byte 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x29, 0x4e, 0x41, 0x56, 0x45, 0x52 +.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 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, 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, 0xd4, 0xf1, 0x93, 0x5c, 0xb5, 0x40, 0x89, 0x0a, 0xab, 0x0d +.byte 0x90, 0x5b, 0x50, 0x63, 0xae, 0x90, 0x94, 0x74, 0x17, 0x45, 0x72, 0xd6, 0x7b, 0x65, 0x5a, 0x29 +.byte 0x4b, 0xa7, 0x56, 0xa0, 0x4b, 0xb8, 0x2f, 0x42, 0x75, 0xe9, 0xd9, 0x7b, 0x24, 0x5a, 0x31, 0x65 +.byte 0xab, 0x17, 0x17, 0xd1, 0x33, 0x3a, 0xd9, 0x11, 0xdc, 0x40, 0x36, 0x87, 0xdf, 0xc7, 0x6a, 0xe9 +.byte 0x26, 0x5e, 0x59, 0x8a, 0x77, 0xe3, 0xe8, 0x48, 0x9c, 0x31, 0x16, 0xfa, 0x3e, 0x91, 0xb1, 0xca +.byte 0xc9, 0xa3, 0xe2, 0x9f, 0xce, 0x21, 0x53, 0xa3, 0x02, 0x36, 0x30, 0xcb, 0x52, 0x02, 0xe5, 0xda +.byte 0x32, 0x5d, 0xc3, 0xc5, 0xe6, 0xf9, 0xee, 0x11, 0xc7, 0x8b, 0xc9, 0x44, 0x1e, 0x84, 0x93, 0x18 +.byte 0x4a, 0xb4, 0x9f, 0xe5, 0x12, 0x64, 0x69, 0xd0, 0x26, 0x85, 0x62, 0x01, 0xb6, 0xc9, 0x02, 0x1d +.byte 0xbe, 0x83, 0x51, 0xbb, 0x5c, 0xda, 0xf8, 0xad, 0x15, 0x6a, 0x99, 0xf7, 0x92, 0x54, 0xf7, 0x34 +.byte 0x5b, 0xe9, 0xbf, 0xea, 0x29, 0x81, 0x12, 0xd4, 0x53, 0x91, 0x96, 0xb3, 0x91, 0x5a, 0xdd, 0xfe +.byte 0x90, 0x73, 0x28, 0xfb, 0x30, 0x46, 0xb5, 0xca, 0x08, 0x07, 0xc7, 0x71, 0x72, 0xc9, 0x66, 0xd3 +.byte 0x34, 0x97, 0xf6, 0x8c, 0xf4, 0x18, 0x4a, 0xe1, 0xd0, 0x3d, 0x5a, 0x45, 0xb6, 0x69, 0xa7, 0x29 +.byte 0xfb, 0x23, 0xce, 0x88, 0xd8, 0x12, 0x9c, 0x00, 0x48, 0xa8, 0xa6, 0x0f, 0xb3, 0x3b, 0x92, 0x8d +.byte 0x71, 0x0e, 0x74, 0xc5, 0x8b, 0xc8, 0x4c, 0xf9, 0xf4, 0x9b, 0x8e, 0xb8, 0x3c, 0x69, 0xed, 0x6f +.byte 0x3b, 0x50, 0x2f, 0x58, 0xed, 0xc4, 0xb0, 0xd0, 0x1c, 0x1b, 0x6a, 0x0c, 0xe2, 0xbc, 0x44, 0xaa +.byte 0xd8, 0xcd, 0x14, 0x5d, 0x94, 0x78, 0x61, 0xbf, 0x0e, 0x6e, 0xda, 0x2a, 0xbc, 0x2f, 0x0c, 0x0b +.byte 0x71, 0xa6, 0xb3, 0x16, 0x3f, 0x9c, 0xe6, 0xf9, 0xcc, 0x9f, 0x53, 0x35, 0xe2, 0x03, 0xa0, 0xa0 +.byte 0x18, 0xbf, 0xbb, 0xf1, 0xbe, 0xf4, 0xd6, 0x8c, 0x87, 0x0d, 0x42, 0xf7, 0x06, 0xb9, 0xf1, 0x6d +.byte 0xed, 0x04, 0x94, 0xa8, 0xfe, 0xb6, 0xd3, 0x06, 0xc6, 0x40, 0x61, 0xdf, 0x9d, 0x9d, 0xf3, 0x54 +.byte 0x76, 0xce, 0x53, 0x3a, 0x01, 0xa6, 0x92, 0x41, 0xec, 0x04, 0xa3, 0x8f, 0x0d, 0xa2, 0xd5, 0x09 +.byte 0xca, 0xd6, 0xcb, 0x9a, 0xf1, 0xef, 0x43, 0x5d, 0xc0, 0xab, 0xa5, 0x41, 0xcf, 0x5c, 0x53, 0x70 +.byte 0x70, 0xc9, 0x88, 0xa6, 0x2d, 0xd4, 0x6b, 0x61, 0x73, 0x50, 0x26, 0x86, 0x61, 0x0e, 0x5f, 0x1b +.byte 0xc2, 0x2b, 0xe2, 0x8c, 0xd5, 0xbb, 0x9d, 0xc1, 0x03, 0x42, 0xba, 0x94, 0xda, 0x5f, 0xa9, 0xb0 +.byte 0xca, 0xcc, 0x4d, 0x0a, 0xef, 0x47, 0x69, 0x03, 0x2f, 0x22, 0xfb, 0xf1, 0x28, 0xce, 0xbf, 0x5d +.byte 0x50, 0x65, 0xa8, 0x90, 0x6d, 0xb3, 0x74, 0xb0, 0x08, 0xc7, 0xac, 0xa8, 0xd1, 0xeb, 0x3e, 0x9c +.byte 0xfc, 0x5d, 0x1a, 0x83, 0x2e, 0x2b, 0xcb, 0xb5, 0xf3, 0x44, 0x9d, 0x3a, 0xa7, 0x17, 0x61, 0x96 +.byte 0xa2, 0x71, 0xd3, 0x70, 0x96, 0x15, 0x4d, 0xb7, 0x4c, 0x73, 0xee, 0x19, 0x5c, 0xc5, 0x5b, 0x3e +.byte 0x41, 0xfe, 0xac, 0x75, 0x60, 0x3b, 0x1b, 0x63, 0xce, 0x00, 0xdd, 0xda, 0x08, 0x90, 0x62, 0xb4 +.byte 0xe5, 0x2d, 0xee, 0x48, 0xa7, 0x6b, 0x17, 0x99, 0x54, 0xbe, 0x87, 0x4a, 0xe3, 0xa9, 0x5e, 0x04 +.byte 0x4c, 0xeb, 0x10, 0x6d, 0x54, 0xd6, 0xef, 0xf1, 0xe8, 0xf2, 0x62, 0x16, 0xcb, 0x80, 0x6b, 0xed +.byte 0x3d, 0xed, 0xf5, 0x1f, 0x30, 0xa5, 0xae, 0x4b, 0xc9, 0x13, 0xed, 0x8a, 0x01, 0x01, 0xc9, 0xb8 +.byte 0x51, 0x58, 0xc0, 0x66, 0x3a, 0xb1, 0x66, 0x4b, 0xc4, 0xd5, 0x31, 0x02, 0x62, 0xe9, 0x74, 0x84 +.byte 0x0c, 0xdb, 0x4d, 0x46, 0x2d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6d, 0x00, 0x78, 0x00, 0x30, 0x6b +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30 +.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50 +.byte 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75 +.byte 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65 +.byte 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 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, 0x23, 0xa5, 0x0c, 0xb8, 0x2d, 0x12, 0xf5, 0x28, 0xf3, 0xb1, 0xb2, 0xdd, 0xe2 +.byte 0x02, 0x12, 0x80, 0x9e, 0x39, 0x5f, 0x49, 0x4d, 0x9f, 0xc9, 0x25, 0x34, 0x59, 0x74, 0xec, 0xbb +.byte 0x06, 0x1c, 0xe7, 0xc0, 0x72, 0xaf, 0xe8, 0xae, 0x2f, 0xe1, 0x41, 0x54, 0x87, 0x14, 0xa8, 0x4a +.byte 0xb2, 0xe8, 0x7c, 0x82, 0xe6, 0x5b, 0x6a, 0xb5, 0xdc, 0xb3, 0x75, 0xce, 0x8b, 0x06, 0xd0, 0x86 +.byte 0x23, 0xbf, 0x46, 0xd5, 0x8e, 0x0f, 0x3f, 0x04, 0xf4, 0xd7, 0x1c, 0x92, 0x7e, 0xf6, 0xa5, 0x63 +.byte 0xc2, 0xf5, 0x5f, 0x8e, 0x2e, 0x4f, 0xa1, 0x18, 0x19, 0x02, 0x2b, 0x32, 0x0a, 0x82, 0x64, 0x7d +.byte 0x16, 0x93, 0xd1, 0x6d, 0x00, 0x26, 0x02, 0x30, 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x49, 0x54, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c +.byte 0x05, 0x4d, 0x69, 0x6c, 0x61, 0x6e, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x1a, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x53, 0x2e, 0x70, 0x2e, 0x41, 0x2e, 0x2f +.byte 0x30, 0x33, 0x33, 0x35, 0x38, 0x35, 0x32, 0x30, 0x39, 0x36, 0x37, 0x31, 0x27, 0x30, 0x25, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x75 +.byte 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 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, 0xa7, 0xc6, 0xc4, 0xa5, 0x29, 0xa4, 0x2c, 0xef, 0xe5, 0x18, 0xc5 +.byte 0xb0, 0x50, 0xa3, 0x6f, 0x51, 0x3b, 0x9f, 0x0a, 0x5a, 0xc9, 0xc2, 0x48, 0x38, 0x0a, 0xc2, 0x1c +.byte 0xa0, 0x18, 0x7f, 0x91, 0xb5, 0x87, 0xb9, 0x40, 0x3f, 0xdd, 0x1d, 0x68, 0x1f, 0x08, 0x83, 0xd5 +.byte 0x2d, 0x1e, 0x88, 0xa0, 0xf8, 0x8f, 0x56, 0x8f, 0x6d, 0x99, 0x02, 0x92, 0x90, 0x16, 0xd5, 0x5f +.byte 0x08, 0x6c, 0x89, 0xd7, 0xe1, 0xac, 0xbc, 0x20, 0xc2, 0xb1, 0xe0, 0x83, 0x51, 0x8a, 0x69, 0x4d +.byte 0x00, 0x96, 0x5a, 0x6f, 0x2f, 0xc0, 0x44, 0x7e, 0xa3, 0x0e, 0xe4, 0x91, 0xcd, 0x58, 0xee, 0xdc +.byte 0xfb, 0xc7, 0x1e, 0x45, 0x47, 0xdd, 0x27, 0xb9, 0x08, 0x01, 0x9f, 0xa6, 0x21, 0x1d, 0xf5, 0x41 +.byte 0x2d, 0x2f, 0x4c, 0xfd, 0x28, 0xad, 0xe0, 0x8a, 0xad, 0x22, 0xb4, 0x56, 0x65, 0x8e, 0x86, 0x54 +.byte 0x8f, 0x93, 0x43, 0x29, 0xde, 0x39, 0x46, 0x78, 0xa3, 0x30, 0x23, 0xba, 0xcd, 0xf0, 0x7d, 0x13 +.byte 0x57, 0xc0, 0x5d, 0xd2, 0x83, 0x6b, 0x48, 0x4c, 0xc4, 0xab, 0x9f, 0x80, 0x5a, 0x5b, 0x3a, 0xbd +.byte 0xc9, 0xa7, 0x22, 0x3f, 0x80, 0x27, 0x33, 0x5b, 0x0e, 0xb7, 0x8a, 0x0c, 0x5d, 0x07, 0x37, 0x08 +.byte 0xcb, 0x6c, 0xd2, 0x7a, 0x47, 0x22, 0x44, 0x35, 0xc5, 0xcc, 0xcc, 0x2e, 0x8e, 0xdd, 0x2a, 0xed +.byte 0xb7, 0x7d, 0x66, 0x0d, 0x5f, 0x61, 0x51, 0x22, 0x55, 0x1b, 0xe3, 0x46, 0xe3, 0xe3, 0x3d, 0xd0 +.byte 0x35, 0x62, 0x9a, 0xdb, 0xaf, 0x14, 0xc8, 0x5b, 0xa1, 0xcc, 0x89, 0x1b, 0xe1, 0x30, 0x26, 0xfc +.byte 0xa0, 0x9b, 0x1f, 0x81, 0xa7, 0x47, 0x1f, 0x04, 0xeb, 0xa3, 0x39, 0x92, 0x06, 0x9f, 0x99, 0xd3 +.byte 0xbf, 0xd3, 0xea, 0x4f, 0x50, 0x9c, 0x19, 0xfe, 0x96, 0x87, 0x1e, 0x3c, 0x65, 0xf6, 0xa3, 0x18 +.byte 0x24, 0x83, 0x86, 0x10, 0xe7, 0x54, 0x3e, 0xa8, 0x3a, 0x76, 0x24, 0x4f, 0x81, 0x21, 0xc5, 0xe3 +.byte 0x0f, 0x02, 0xf8, 0x93, 0x94, 0x47, 0x20, 0xbb, 0xfe, 0xd4, 0x0e, 0xd3, 0x68, 0xb9, 0xdd, 0xc4 +.byte 0x7a, 0x84, 0x82, 0xe3, 0x53, 0x54, 0x79, 0xdd, 0xdb, 0x9c, 0xd2, 0xf2, 0x07, 0x9b, 0x2e, 0xb6 +.byte 0xbc, 0x3e, 0xed, 0x85, 0x6d, 0xef, 0x25, 0x11, 0xf2, 0x97, 0x1a, 0x42, 0x61, 0xf7, 0x4a, 0x97 +.byte 0xe8, 0x8b, 0xb1, 0x10, 0x07, 0xfa, 0x65, 0x81, 0xb2, 0xa2, 0x39, 0xcf, 0xf7, 0x3c, 0xff, 0x18 +.byte 0xfb, 0xc6, 0xf1, 0x5a, 0x8b, 0x59, 0xe2, 0x02, 0xac, 0x7b, 0x92, 0xd0, 0x4e, 0x14, 0x4f, 0x59 +.byte 0x45, 0xf6, 0x0c, 0x5e, 0x28, 0x5f, 0xb0, 0xe8, 0x3f, 0x45, 0xcf, 0xcf, 0xaf, 0x9b, 0x6f, 0xfb +.byte 0x84, 0xd3, 0x77, 0x5a, 0x95, 0x6f, 0xac, 0x94, 0x84, 0x9e, 0xee, 0xbc, 0xc0, 0x4a, 0x8f, 0x4a +.byte 0x93, 0xf8, 0x44, 0x21, 0xe2, 0x31, 0x45, 0x61, 0x50, 0x4e, 0x10, 0xd8, 0xe3, 0x35, 0x7c, 0x4c +.byte 0x19, 0xb4, 0xde, 0x05, 0xbf, 0xa3, 0x06, 0x9f, 0xc8, 0xb5, 0xcd, 0xe4, 0x1f, 0xd7, 0x17, 0x06 +.byte 0x0d, 0x7a, 0x95, 0x74, 0x55, 0x0d, 0x68, 0x1a, 0xfc, 0x10, 0x1b, 0x62, 0x64, 0x9d, 0x6d, 0xe0 +.byte 0x95, 0xa0, 0xc3, 0x94, 0x07, 0x57, 0x0d, 0x14, 0xe6, 0xbd, 0x05, 0xfb, 0xb8, 0x9f, 0xe6, 0xdf +.byte 0x8b, 0xe2, 0xc6, 0xe7, 0x7e, 0x96, 0xf6, 0x53, 0xc5, 0x80, 0x34, 0x50, 0x28, 0x58, 0xf0, 0x12 +.byte 0x50, 0x71, 0x17, 0x30, 0xba, 0xe6, 0x78, 0x63, 0xbc, 0xf4, 0xb2, 0xad, 0x9b, 0x2b, 0xb2, 0xfe +.byte 0xe1, 0x39, 0x8c, 0x5e, 0xba, 0x0b, 0x20, 0x94, 0xde, 0x7b, 0x83, 0xb8, 0xff, 0xe3, 0x56, 0x8d +.byte 0xb7, 0x11, 0xe9, 0x3b, 0x8c, 0xf2, 0xb1, 0xc1, 0x5d, 0x9d, 0xa4, 0x0b, 0x4c, 0x2b, 0xd9, 0xb2 +.byte 0x18, 0xf5, 0xb5, 0x9f, 0x4b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6e, 0x00, 0x78, 0x00, 0x30, 0x6c +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x37, 0x30 +.byte 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63 +.byte 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65 +.byte 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43, 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 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, 0x38, 0x08, 0xfe, 0xb1, 0xa0, 0x96, 0xd2, 0x7a, 0xac, 0xaf, 0x49, 0x3a +.byte 0xd0, 0xc0, 0xe0, 0xc3, 0x3b, 0x28, 0xaa, 0xf1, 0x72, 0x6d, 0x65, 0x00, 0x47, 0x88, 0x84, 0xfc +.byte 0x9a, 0x26, 0x6b, 0xaa, 0x4b, 0xba, 0x6c, 0x04, 0x0a, 0x88, 0x5e, 0x17, 0xf2, 0x55, 0x87, 0xfc +.byte 0x30, 0xb0, 0x34, 0xe2, 0x34, 0x58, 0x57, 0x1a, 0x84, 0x53, 0xe9, 0x30, 0xd9, 0xa9, 0xf2, 0x96 +.byte 0x74, 0xc3, 0x51, 0x1f, 0x58, 0x49, 0x31, 0xcc, 0x98, 0x4e, 0x60, 0x11, 0x87, 0x75, 0xd3, 0x72 +.byte 0x94, 0x90, 0x4f, 0x9b, 0x10, 0x25, 0x2a, 0xa8, 0x78, 0x2d, 0xbe, 0x90, 0x41, 0x58, 0x90, 0x15 +.byte 0x72, 0xa7, 0xa1, 0xb7, 0x6e, 0x00, 0x26, 0x02, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65 +.byte 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68 +.byte 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41 +.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43 +.byte 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x32, 0x30, 0x32, 0x31, 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, 0x8b, 0xc2, 0xe7, 0xaf, 0x65, 0x9b, 0x05, 0x67, 0x96 +.byte 0xc9, 0x0d, 0x24, 0xb9, 0xd0, 0x0e, 0x64, 0xfc, 0xce, 0xe2, 0x24, 0x18, 0x2c, 0x84, 0x7f, 0x77 +.byte 0x51, 0xcb, 0x04, 0x11, 0x36, 0xb8, 0x5e, 0xed, 0x69, 0x71, 0xa7, 0x9e, 0xe4, 0x25, 0x09, 0x97 +.byte 0x67, 0xc1, 0x47, 0xc2, 0xcf, 0x91, 0x16, 0x36, 0x62, 0x3d, 0x38, 0x04, 0xe1, 0x51, 0x82, 0xff +.byte 0xac, 0xd2, 0xb4, 0x69, 0xdd, 0x2e, 0xec, 0x11, 0xa3, 0x45, 0xee, 0x6b, 0x6b, 0x3b, 0x4c, 0xbf +.byte 0x8c, 0x8d, 0xa4, 0x1e, 0x9d, 0x11, 0xb9, 0xe9, 0x38, 0xf9, 0x7a, 0x0e, 0x0c, 0x98, 0xe2, 0x23 +.byte 0x1d, 0xd1, 0x4e, 0x63, 0xd4, 0xe7, 0xb8, 0x41, 0x44, 0xfb, 0x6b, 0xaf, 0x6b, 0xda, 0x1f, 0xd3 +.byte 0xc5, 0x91, 0x88, 0x5b, 0xa4, 0x89, 0x92, 0xd1, 0x81, 0xe6, 0x8c, 0x39, 0x58, 0xa0, 0xd6, 0x69 +.byte 0x43, 0xa9, 0xad, 0x98, 0x52, 0x58, 0x6e, 0xdb, 0x0a, 0xfb, 0x6b, 0xcf, 0x68, 0xfa, 0xe3, 0xa4 +.byte 0x5e, 0x3a, 0x45, 0x73, 0x98, 0x07, 0xea, 0x5f, 0x02, 0x72, 0xde, 0x0c, 0xa5, 0xb3, 0x9f, 0xae +.byte 0xa9, 0x1d, 0xb7, 0x1d, 0xb3, 0xfc, 0x8a, 0x59, 0xe7, 0x6e, 0x72, 0x65, 0xad, 0xf5, 0x30, 0x94 +.byte 0x23, 0x07, 0xf3, 0x82, 0x16, 0x4b, 0x35, 0x98, 0x9c, 0x53, 0xbb, 0x2f, 0xca, 0xe4, 0x5a, 0xd9 +.byte 0xc7, 0x8d, 0x1d, 0xfc, 0x98, 0x99, 0xfb, 0x2c, 0xa4, 0x82, 0x6b, 0xf0, 0x2a, 0x1f, 0x8e, 0x0b +.byte 0x5f, 0x71, 0x5c, 0x5c, 0xae, 0x42, 0x7b, 0x29, 0x89, 0x81, 0xcb, 0x03, 0xa3, 0x99, 0xca, 0x88 +.byte 0x9e, 0x0b, 0x40, 0x09, 0x41, 0x33, 0xdb, 0xe6, 0x58, 0x7a, 0xfd, 0xae, 0x99, 0x70, 0xc0, 0x5a +.byte 0x0f, 0xd6, 0x13, 0x86, 0x71, 0x2f, 0x76, 0x69, 0xfc, 0x90, 0xdd, 0xdb, 0x2d, 0x6e, 0xd1, 0xf2 +.byte 0x9b, 0xf5, 0x1a, 0x6b, 0x9e, 0x6f, 0x15, 0x8c, 0x7a, 0xf0, 0x4b, 0x28, 0xa0, 0x22, 0x38, 0x80 +.byte 0x24, 0x6c, 0x36, 0xa4, 0x3b, 0xf2, 0x30, 0x91, 0xf3, 0x78, 0x13, 0xcf, 0xc1, 0x3f, 0x35, 0xab +.byte 0xf1, 0x1d, 0x11, 0x23, 0xb5, 0x43, 0x22, 0x9e, 0x01, 0x92, 0xb7, 0x18, 0x02, 0xe5, 0x11, 0xd1 +.byte 0x82, 0xdb, 0x15, 0x00, 0xcc, 0x61, 0x37, 0xc1, 0x2a, 0x7c, 0x9a, 0xe1, 0xd0, 0xba, 0xb3, 0x50 +.byte 0x46, 0xee, 0x82, 0xac, 0x9d, 0x31, 0xf8, 0xfb, 0x23, 0xe2, 0x03, 0x00, 0x48, 0x70, 0xa3, 0x09 +.byte 0x26, 0x79, 0x15, 0x53, 0x60, 0xf3, 0x38, 0x5c, 0xad, 0x38, 0xea, 0x81, 0x00, 0x63, 0x14, 0xb9 +.byte 0x33, 0x5e, 0xdd, 0x0b, 0xdb, 0xa0, 0x45, 0x07, 0x1a, 0x33, 0x09, 0xf8, 0x4d, 0xb4, 0xa7, 0x02 +.byte 0xa6, 0x69, 0xf4, 0xc2, 0x59, 0x05, 0x88, 0x65, 0x85, 0x56, 0xae, 0x4b, 0xcb, 0xe0, 0xde, 0x3c +.byte 0x7d, 0x2d, 0x1a, 0xc8, 0xe9, 0xfb, 0x1f, 0xa3, 0x61, 0x4a, 0xd6, 0x2a, 0x13, 0xad, 0x77, 0x4c +.byte 0x1a, 0x18, 0x9b, 0x91, 0x0f, 0x58, 0xd8, 0x06, 0x54, 0xc5, 0x97, 0xf8, 0xaa, 0x3f, 0x20, 0x8a +.byte 0xa6, 0x85, 0xa6, 0x77, 0xf6, 0xa6, 0xfc, 0x1c, 0xe2, 0xee, 0x6e, 0x94, 0x33, 0x2a, 0x83, 0x50 +.byte 0x84, 0x0a, 0xe5, 0x4f, 0x86, 0xf8, 0x50, 0x45, 0x78, 0x00, 0x81, 0xeb, 0x5b, 0x68, 0xe3, 0x26 +.byte 0x8d, 0xcc, 0x7b, 0x5c, 0x51, 0xf4, 0x14, 0x2c, 0x40, 0xbe, 0x1a, 0x60, 0x1d, 0x7a, 0x72, 0x61 +.byte 0x1d, 0x1f, 0x63, 0x2d, 0x88, 0xaa, 0xce, 0xa2, 0x45, 0x90, 0x08, 0xfc, 0x6b, 0xbe, 0xb3, 0x50 +.byte 0x2a, 0x5a, 0xfd, 0xa8, 0x48, 0x18, 0x46, 0xd6, 0x90, 0x40, 0x92, 0x90, 0x0a, 0x84, 0x5e, 0x68 +.byte 0x31, 0xf8, 0xeb, 0xed, 0x0d, 0xd3, 0x1d, 0xc6, 0x7d, 0x99, 0x18, 0x55, 0x56, 0x27, 0x65, 0x2e +.byte 0x8d, 0x45, 0xc5, 0x24, 0xec, 0xce, 0xe3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6e, 0x00, 0x26, 0x01 +.byte 0x30, 0x6c, 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, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x48, 0x69, 0x67, 0x68, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x61 +.byte 0x6e, 0x63, 0x65, 0x20, 0x45, 0x56, 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, 0xc6 +.byte 0xcc, 0xe5, 0x73, 0xe6, 0xfb, 0xd4, 0xbb, 0xe5, 0x2d, 0x2d, 0x32, 0xa6, 0xdf, 0xe5, 0x81, 0x3f +.byte 0xc9, 0xcd, 0x25, 0x49, 0xb6, 0x71, 0x2a, 0xc3, 0xd5, 0x94, 0x34, 0x67, 0xa2, 0x0a, 0x1c, 0xb0 +.byte 0x5f, 0x69, 0xa6, 0x40, 0xb1, 0xc4, 0xb7, 0xb2, 0x8f, 0xd0, 0x98, 0xa4, 0xa9, 0x41, 0x59, 0x3a +.byte 0xd3, 0xdc, 0x94, 0xd6, 0x3c, 0xdb, 0x74, 0x38, 0xa4, 0x4a, 0xcc, 0x4d, 0x25, 0x82, 0xf7, 0x4a +.byte 0xa5, 0x53, 0x12, 0x38, 0xee, 0xf3, 0x49, 0x6d, 0x71, 0x91, 0x7e, 0x63, 0xb6, 0xab, 0xa6, 0x5f +.byte 0xc3, 0xa4, 0x84, 0xf8, 0x4f, 0x62, 0x51, 0xbe, 0xf8, 0xc5, 0xec, 0xdb, 0x38, 0x92, 0xe3, 0x06 +.byte 0xe5, 0x08, 0x91, 0x0c, 0xc4, 0x28, 0x41, 0x55, 0xfb, 0xcb, 0x5a, 0x89, 0x15, 0x7e, 0x71, 0xe8 +.byte 0x35, 0xbf, 0x4d, 0x72, 0x09, 0x3d, 0xbe, 0x3a, 0x38, 0x50, 0x5b, 0x77, 0x31, 0x1b, 0x8d, 0xb3 +.byte 0xc7, 0x24, 0x45, 0x9a, 0xa7, 0xac, 0x6d, 0x00, 0x14, 0x5a, 0x04, 0xb7, 0xba, 0x13, 0xeb, 0x51 +.byte 0x0a, 0x98, 0x41, 0x41, 0x22, 0x4e, 0x65, 0x61, 0x87, 0x81, 0x41, 0x50, 0xa6, 0x79, 0x5c, 0x89 +.byte 0xde, 0x19, 0x4a, 0x57, 0xd5, 0x2e, 0xe6, 0x5d, 0x1c, 0x53, 0x2c, 0x7e, 0x98, 0xcd, 0x1a, 0x06 +.byte 0x16, 0xa4, 0x68, 0x73, 0xd0, 0x34, 0x04, 0x13, 0x5c, 0xa1, 0x71, 0xd3, 0x5a, 0x7c, 0x55, 0xdb +.byte 0x5e, 0x64, 0xe1, 0x37, 0x87, 0x30, 0x56, 0x04, 0xe5, 0x11, 0xb4, 0x29, 0x80, 0x12, 0xf1, 0x79 +.byte 0x39, 0x88, 0xa2, 0x02, 0x11, 0x7c, 0x27, 0x66, 0xb7, 0x88, 0xb7, 0x78, 0xf2, 0xca, 0x0a, 0xa8 +.byte 0x38, 0xab, 0x0a, 0x64, 0xc2, 0xbf, 0x66, 0x5d, 0x95, 0x84, 0xc1, 0xa1, 0x25, 0x1e, 0x87, 0x5d +.byte 0x1a, 0x50, 0x0b, 0x20, 0x12, 0xcc, 0x41, 0xbb, 0x6e, 0x0b, 0x51, 0x38, 0xb8, 0x4b, 0xcb, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x6f, 0x00, 0x26, 0x01, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30 +.byte 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49 +.byte 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x47, 0x42, 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, 0xd8, 0x17, 0xb7, 0x1c, 0x4a, 0x24, 0x2a, 0xd6 +.byte 0x97, 0xb1, 0xca, 0xe2, 0x1e, 0xfb, 0x7d, 0x38, 0xef, 0x98, 0xf5, 0xb2, 0x39, 0x98, 0x4e, 0x27 +.byte 0xb8, 0x11, 0x5d, 0x7b, 0xd2, 0x25, 0x94, 0x88, 0x82, 0x15, 0x26, 0x6a, 0x1b, 0x31, 0xbb, 0xa8 +.byte 0x5b, 0x21, 0x21, 0x2b, 0xd8, 0x0f, 0x4e, 0x9f, 0x5a, 0xf1, 0xb1, 0x5a, 0xe4, 0x79, 0xd6, 0x32 +.byte 0x23, 0x2b, 0xe1, 0x53, 0xcc, 0x99, 0x45, 0x5c, 0x7b, 0x4f, 0xad, 0xbc, 0xbf, 0x87, 0x4a, 0x0b +.byte 0x4b, 0x97, 0x5a, 0xa8, 0xf6, 0x48, 0xec, 0x7d, 0x7b, 0x0d, 0xcd, 0x21, 0x06, 0xdf, 0x9e, 0x15 +.byte 0xfd, 0x41, 0x8a, 0x48, 0xb7, 0x20, 0xf4, 0xa1, 0x7a, 0x1b, 0x57, 0xd4, 0x5d, 0x50, 0xff, 0xba +.byte 0x67, 0xd8, 0x23, 0x99, 0x1f, 0xc8, 0x3f, 0xe3, 0xde, 0xff, 0x6f, 0x5b, 0x77, 0xb1, 0x6b, 0x6e +.byte 0xb8, 0xc9, 0x64, 0xf7, 0xe1, 0xca, 0x41, 0x46, 0x0e, 0x29, 0x71, 0xd0, 0xb9, 0x23, 0xfc, 0xc9 +.byte 0x81, 0x5f, 0x4e, 0xf7, 0x6f, 0xdf, 0xbf, 0x84, 0xad, 0x73, 0x64, 0xbb, 0xb7, 0x42, 0x8e, 0x69 +.byte 0xf6, 0xd4, 0x76, 0x1d, 0x7e, 0x9d, 0xa7, 0xb8, 0x57, 0x8a, 0x51, 0x67, 0x72, 0xd7, 0xd4, 0xa8 +.byte 0xb8, 0x95, 0x54, 0x40, 0x73, 0x03, 0xf6, 0xea, 0xf4, 0xeb, 0xfe, 0x28, 0x42, 0x77, 0x3f, 0x9d +.byte 0x23, 0x1b, 0xb2, 0xb6, 0x3d, 0x80, 0x14, 0x07, 0x4c, 0x2e, 0x4f, 0xf7, 0xd5, 0x0a, 0x16, 0x0d +.byte 0xbd, 0x66, 0x43, 0x37, 0x7e, 0x23, 0x43, 0x79, 0xc3, 0x40, 0x86, 0xf5, 0x4c, 0x29, 0xda, 0x8e +.byte 0x9a, 0xad, 0x0d, 0xa5, 0x04, 0x87, 0x88, 0x1e, 0x85, 0xe3, 0xe9, 0x53, 0xd5, 0x9b, 0xc8, 0x8b +.byte 0x03, 0x63, 0x78, 0xeb, 0xe0, 0x19, 0x4a, 0x6e, 0xbb, 0x2f, 0x6b, 0x33, 0x64, 0x58, 0x93, 0xad +.byte 0x69, 0xbf, 0x8f, 0x1b, 0xef, 0x82, 0x48, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6f, 0x00, 0x78 +.byte 0x00, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48 +.byte 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b +.byte 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53 +.byte 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e +.byte 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x43, 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, 0x4c, 0xe9, 0x50, 0xc0, 0xc6, 0x0f, 0x72, 0x18 +.byte 0xbc, 0xd8, 0xf1, 0xba, 0xb3, 0x89, 0xe2, 0x79, 0x4a, 0xa3, 0x16, 0xa7, 0x6b, 0x54, 0x24, 0xdb +.byte 0x51, 0xff, 0xea, 0xf4, 0x09, 0x24, 0xc3, 0x0b, 0x22, 0x9f, 0xcb, 0x6a, 0x27, 0x82, 0x81, 0x0d +.byte 0xd2, 0xc0, 0xaf, 0x31, 0xe4, 0x74, 0x82, 0x6e, 0xca, 0x25, 0xd9, 0x8c, 0x75, 0x9d, 0xf1, 0xdb +.byte 0xd0, 0x9a, 0xa2, 0x4b, 0x21, 0x7e, 0x16, 0xa7, 0x63, 0x90, 0xd2, 0x39, 0xd4, 0xb1, 0x87, 0x78 +.byte 0x5f, 0x18, 0x96, 0x0f, 0x50, 0x1b, 0x35, 0x37, 0x0f, 0x6a, 0xc6, 0xdc, 0xd9, 0x13, 0x4d, 0xa4 +.byte 0x8e, 0x90, 0x37, 0xe6, 0xbd, 0x5b, 0x31, 0x91, 0x70, 0x00, 0x78, 0x00, 0x30, 0x6e, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x1c, 0x30, 0x1a, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x13, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65 +.byte 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20, 0x53, 0x41, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 +.byte 0x04, 0x61, 0x0c, 0x0f, 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34 +.byte 0x30, 0x36, 0x38, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x46, 0x49 +.byte 0x52, 0x4d, 0x41, 0x50, 0x52, 0x4f, 0x46, 0x45, 0x53, 0x49, 0x4f, 0x4e, 0x41, 0x4c, 0x20, 0x43 +.byte 0x41, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x2d, 0x41, 0x20, 0x57, 0x45, 0x42, 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, 0x47, 0x53, 0xea, 0x2c, 0x11, 0xa4, 0x77, 0xc7, 0x2a, 0xea, 0xf3, 0xd6 +.byte 0x5f, 0x7b, 0xd3, 0x04, 0x91, 0x5c, 0xfa, 0x88, 0xc6, 0x22, 0xb9, 0x83, 0x10, 0x62, 0x77, 0x84 +.byte 0x33, 0x2d, 0xe9, 0x03, 0x88, 0xd4, 0xe0, 0x33, 0xf7, 0xed, 0x77, 0x2c, 0x4a, 0x60, 0xea, 0xe4 +.byte 0x6f, 0xad, 0x6d, 0xb4, 0xf8, 0x4c, 0x8a, 0xa4, 0xe4, 0x1f, 0xca, 0xea, 0x4f, 0x38, 0x4a, 0x2e +.byte 0x82, 0x73, 0x2b, 0xc7, 0x66, 0x9b, 0x0a, 0x8c, 0x40, 0x9c, 0x7c, 0x8a, 0xf6, 0xf2, 0x39, 0x60 +.byte 0xb2, 0xde, 0xcb, 0xec, 0xb8, 0xe4, 0x6f, 0xea, 0x9b, 0x5d, 0xb7, 0x53, 0x90, 0x18, 0x32, 0x55 +.byte 0xc5, 0x20, 0xb7, 0x94, 0x71, 0x00, 0x26, 0x02, 0x30, 0x6f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x4b, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x08 +.byte 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31, 0x12, 0x30, 0x10, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31 +.byte 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f +.byte 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x17, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 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, 0xb3, 0x88, 0xd7, 0xea, 0xce, 0x0f +.byte 0x20, 0x4e, 0xbe, 0xe6, 0xd6, 0x03, 0x6d, 0xee, 0x59, 0xfc, 0xc2, 0x57, 0xdf, 0x29, 0x68, 0xa1 +.byte 0x83, 0x0e, 0x3e, 0x68, 0xc7, 0x68, 0x58, 0x9c, 0x1c, 0x60, 0x4b, 0x89, 0x43, 0x0c, 0xb9, 0xd4 +.byte 0x15, 0xb2, 0xee, 0xc1, 0x4e, 0x75, 0xe9, 0xb5, 0xa7, 0xef, 0xe5, 0xe9, 0x35, 0x99, 0xe4, 0xcc +.byte 0x1c, 0xe7, 0x4b, 0x5f, 0x8d, 0x33, 0x30, 0x20, 0x33, 0x53, 0xd9, 0xa6, 0xbb, 0xd5, 0x3e, 0x13 +.byte 0x8e, 0xe9, 0x1f, 0x87, 0x49, 0xad, 0x50, 0x2d, 0x50, 0xca, 0x18, 0xbe, 0x01, 0x58, 0xa2, 0x13 +.byte 0x70, 0x96, 0xbb, 0x89, 0x88, 0x56, 0x80, 0x5c, 0xf8, 0xbd, 0x2c, 0x3c, 0xe1, 0x4c, 0x57, 0x88 +.byte 0xbb, 0xd3, 0xb9, 0x95, 0xef, 0xcb, 0xc7, 0xf6, 0xda, 0x31, 0x74, 0x28, 0xa6, 0xe6, 0x54, 0x89 +.byte 0xf5, 0x41, 0x31, 0xca, 0xe5, 0x26, 0x1a, 0xcd, 0x82, 0xe0, 0x70, 0xda, 0x3b, 0x29, 0xbb, 0xd5 +.byte 0x03, 0xf5, 0x99, 0xba, 0x55, 0xf5, 0x64, 0xd1, 0x60, 0x0e, 0xb3, 0x89, 0x49, 0xb8, 0x8a, 0x2f +.byte 0x05, 0xd2, 0x84, 0x45, 0x28, 0x7c, 0x8f, 0x68, 0x50, 0x12, 0x78, 0xfc, 0x0b, 0xb5, 0x53, 0xcb +.byte 0xc2, 0x98, 0x1c, 0x84, 0xa3, 0x9e, 0xb0, 0xbe, 0x23, 0xa4, 0xda, 0xdc, 0xc8, 0x2b, 0x1e, 0xda +.byte 0x6e, 0x45, 0x1e, 0x89, 0x98, 0xda, 0xf9, 0x00, 0x2e, 0x06, 0xe9, 0x0c, 0x3b, 0x70, 0xd5, 0x50 +.byte 0x25, 0x88, 0x99, 0xcb, 0xcd, 0x73, 0x60, 0xf7, 0xd5, 0xff, 0x35, 0x67, 0xc5, 0xa1, 0xbc, 0x5e +.byte 0xab, 0xcd, 0x4a, 0xb8, 0x45, 0xeb, 0xc8, 0x68, 0x1e, 0x0d, 0x0d, 0x14, 0x46, 0x12, 0xe3, 0xd2 +.byte 0x64, 0x62, 0x8a, 0x42, 0x98, 0xbc, 0xb4, 0xc6, 0x08, 0x08, 0xf8, 0xfd, 0xa8, 0x4c, 0x64, 0x9c +.byte 0x76, 0x01, 0xbd, 0x2f, 0xa9, 0x6c, 0x33, 0x0f, 0xd8, 0x3f, 0x28, 0xb8, 0x3c, 0x69, 0x01, 0x42 +.byte 0x86, 0x7e, 0x69, 0xc1, 0xc9, 0x06, 0xca, 0xe5, 0x7a, 0x46, 0x65, 0xe9, 0xc2, 0xd6, 0x50, 0x41 +.byte 0x2e, 0x3f, 0xb7, 0xe4, 0xed, 0x6c, 0xd7, 0xbf, 0x26, 0x01, 0x11, 0xa2, 0x16, 0x29, 0x4a, 0x6b +.byte 0x34, 0x06, 0x90, 0xec, 0x13, 0xd2, 0xb6, 0xfb, 0x6a, 0x76, 0xd2, 0x3c, 0xed, 0xf0, 0xd6, 0x2d +.byte 0xdd, 0xe1, 0x15, 0xec, 0xa3, 0x9b, 0x2f, 0x2c, 0xc9, 0x3e, 0x2b, 0xe4, 0x69, 0x3b, 0xff, 0x72 +.byte 0x25, 0xb1, 0x36, 0x86, 0x5b, 0xc7, 0x7f, 0x6b, 0x8b, 0x55, 0x1b, 0x4a, 0xc5, 0x20, 0x61, 0x3d +.byte 0xae, 0xcb, 0x50, 0xe1, 0x08, 0x3a, 0xbe, 0xb0, 0x8f, 0x63, 0x41, 0x53, 0x30, 0x08, 0x59, 0x3c +.byte 0x98, 0x1d, 0x77, 0xba, 0x63, 0x91, 0x7a, 0xca, 0x10, 0x50, 0x60, 0xbf, 0xf0, 0xd7, 0xbc, 0x95 +.byte 0x87, 0x8f, 0x97, 0xc5, 0xfe, 0x97, 0x6a, 0x01, 0x94, 0xa3, 0x7c, 0x5b, 0x85, 0x1d, 0x2a, 0x39 +.byte 0x3a, 0xd0, 0x54, 0xa1, 0xd1, 0x39, 0x71, 0x9d, 0xfd, 0x21, 0xf9, 0xb5, 0x7b, 0xf0, 0xe2, 0xe0 +.byte 0x02, 0x8f, 0x6e, 0x96, 0x24, 0x25, 0x2c, 0xa0, 0x1e, 0x2c, 0xa8, 0xc4, 0x89, 0xa7, 0xef, 0xed +.byte 0x99, 0x06, 0x2f, 0xb6, 0x0a, 0x4c, 0x4f, 0xdb, 0xa2, 0xcc, 0x37, 0x1a, 0xaf, 0x47, 0x85, 0x2d +.byte 0x8a, 0x5f, 0xc4, 0x34, 0x34, 0x4c, 0x00, 0xfd, 0x18, 0x93, 0x67, 0x13, 0xd1, 0x37, 0xe6, 0x48 +.byte 0xb4, 0x8b, 0x06, 0xc5, 0x57, 0x7b, 0x19, 0x86, 0x0a, 0x79, 0xcb, 0x00, 0xc9, 0x52, 0xaf, 0x42 +.byte 0xff, 0x37, 0x8f, 0xe1, 0xa3, 0x1e, 0x7a, 0x3d, 0x50, 0xab, 0x63, 0x06, 0xe7, 0x15, 0xb5, 0x3f +.byte 0xb6, 0x45, 0x37, 0x94, 0x37, 0xb1, 0x7e, 0xf2, 0x48, 0xc3, 0x7f, 0xc5, 0x75, 0xfe, 0x97, 0x8d +.byte 0x45, 0x8f, 0x1a, 0xa7, 0x1a, 0x72, 0x28, 0x1a, 0x40, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x73 +.byte 0x00, 0x5b, 0x00, 0x30, 0x71, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64 +.byte 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d +.byte 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x17, 0x30 +.byte 0x15, 0x06, 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0e, 0x56, 0x41, 0x54, 0x48, 0x55, 0x2d, 0x32, 0x33 +.byte 0x35, 0x38, 0x34, 0x34, 0x39, 0x37, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x15, 0x65, 0x2d, 0x53, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00 +.byte 0x04, 0x96, 0xdc, 0x3d, 0x8a, 0xd8, 0xb0, 0x7b, 0x6f, 0xc6, 0x27, 0xbe, 0x44, 0x90, 0xb1, 0xb3 +.byte 0x56, 0x15, 0x7b, 0x8e, 0x43, 0x24, 0x7d, 0x1a, 0x84, 0x59, 0xee, 0x63, 0x68, 0xb2, 0xc6, 0x5e +.byte 0x87, 0xd0, 0x15, 0x48, 0x1e, 0xa8, 0x90, 0xad, 0xbd, 0x53, 0xa2, 0xda, 0xde, 0x3a, 0x90, 0xa6 +.byte 0x60, 0x5f, 0x68, 0x32, 0xb5, 0x86, 0x41, 0xdf, 0x87, 0x5b, 0x2c, 0x7b, 0xc5, 0xfe, 0x7c, 0x7a +.byte 0xda, 0x76, 0x00, 0x78, 0x00, 0x30, 0x74, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41 +.byte 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65 +.byte 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 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, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x43, 0x65, 0x72, 0x74, 0x75 +.byte 0x6d, 0x20, 0x45, 0x43, 0x2d, 0x33, 0x38, 0x34, 0x20, 0x43, 0x41, 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, 0xc4, 0x28, 0x8e, 0xab, 0x18, 0x5b, 0x6a, 0xbe, 0x6e, 0x64, 0x37, 0x63, 0xe4 +.byte 0xcd, 0xec, 0xab, 0x3a, 0xf7, 0xcc, 0xa1, 0xb8, 0x0e, 0x82, 0x49, 0xd7, 0x86, 0x29, 0x9f, 0xa1 +.byte 0x94, 0xf2, 0xe3, 0x60, 0x78, 0x98, 0x81, 0x78, 0x06, 0x4d, 0xf2, 0xec, 0x9a, 0x0e, 0x57, 0x60 +.byte 0x83, 0x9f, 0xb4, 0xe6, 0x17, 0x2f, 0x1a, 0xb3, 0x5d, 0x02, 0x5b, 0x89, 0x23, 0x3c, 0xc2, 0x11 +.byte 0x05, 0x2a, 0xa7, 0x88, 0x13, 0x18, 0xf3, 0x50, 0x84, 0xd7, 0xbd, 0x34, 0x2c, 0x27, 0x89, 0x55 +.byte 0xff, 0xce, 0x4c, 0xe7, 0xdf, 0xa6, 0x1f, 0x28, 0xc4, 0xf0, 0x54, 0xc3, 0xb9, 0x7c, 0xb7, 0x53 +.byte 0xad, 0xeb, 0xc2, 0x7a, 0x00, 0x78, 0x00, 0x30, 0x78, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x0c, 0x05, 0x43, 0x65, 0x72, 0x65, 0x73, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 +.byte 0x04, 0x61, 0x0c, 0x0f, 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x51, 0x32, 0x38, 0x32, 0x36, 0x30 +.byte 0x30, 0x34, 0x4a, 0x31, 0x2c, 0x30, 0x2a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x23, 0x41, 0x43 +.byte 0x20, 0x52, 0x41, 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x20, 0x53 +.byte 0x45, 0x52, 0x56, 0x49, 0x44, 0x4f, 0x52, 0x45, 0x53, 0x20, 0x53, 0x45, 0x47, 0x55, 0x52, 0x4f +.byte 0x53, 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, 0xf6, 0xba, 0x57, 0x53, 0xc8, 0xca, 0xab +.byte 0xdf, 0x36, 0x4a, 0x52, 0x21, 0xe4, 0x97, 0xd2, 0x83, 0x67, 0x9e, 0xf0, 0x65, 0x51, 0xd0, 0x5e +.byte 0x87, 0xc7, 0x47, 0xb1, 0x59, 0xf2, 0x57, 0x47, 0x9b, 0x00, 0x02, 0x93, 0x44, 0x17, 0x69, 0xdb +.byte 0x42, 0xc7, 0xb1, 0xb2, 0x3a, 0x18, 0x0e, 0xb4, 0x5d, 0x8c, 0xb3, 0x66, 0x5d, 0xa1, 0x34, 0xf9 +.byte 0x36, 0x2c, 0x49, 0xdb, 0xf3, 0x46, 0xfc, 0xb3, 0x44, 0x69, 0x44, 0x13, 0x66, 0xfd, 0xd7, 0xc5 +.byte 0xfd, 0xaf, 0x36, 0x4d, 0xce, 0x03, 0x4d, 0x07, 0x71, 0xcf, 0xaf, 0x6a, 0x05, 0xd2, 0xa2, 0x43 +.byte 0x5a, 0x0a, 0x52, 0x6f, 0x01, 0x03, 0x4e, 0x8e, 0x8b, 0x7c, 0x00, 0x26, 0x02, 0x30, 0x7a, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61 +.byte 0x74, 0x61, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31 +.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d +.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, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x16, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65 +.byte 0x64, 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, 0xd1, 0x2d, 0x8e, 0xbb, 0xb7, 0x36 +.byte 0xea, 0x6d, 0x37, 0x91, 0x9f, 0x4e, 0x93, 0xa7, 0x05, 0xe4, 0x29, 0x03, 0x25, 0xce, 0x1c, 0x82 +.byte 0xf7, 0x7c, 0x99, 0x9f, 0x41, 0x06, 0xcd, 0xed, 0xa3, 0xba, 0xc0, 0xdb, 0x09, 0x2c, 0xc1, 0x7c +.byte 0xdf, 0x29, 0x7e, 0x4b, 0x65, 0x2f, 0x93, 0xa7, 0xd4, 0x01, 0x6b, 0x03, 0x28, 0x18, 0xa3, 0xd8 +.byte 0x9d, 0x05, 0xc1, 0x2a, 0xd8, 0x45, 0xf1, 0x91, 0xde, 0xdf, 0x3b, 0xd0, 0x80, 0x02, 0x8c, 0xcf +.byte 0x38, 0x0f, 0xea, 0xa7, 0x5c, 0x78, 0x11, 0xa4, 0xc1, 0xc8, 0x85, 0x5c, 0x25, 0xd3, 0xd3, 0xb2 +.byte 0xe7, 0x25, 0xcf, 0x11, 0x54, 0x97, 0xab, 0x35, 0xc0, 0x1e, 0x76, 0x1c, 0xef, 0x00, 0x53, 0x9f +.byte 0x39, 0xdc, 0x14, 0xa5, 0x2c, 0x22, 0x25, 0xb3, 0x72, 0x72, 0xfc, 0x8d, 0xb3, 0xe5, 0x3e, 0x08 +.byte 0x1e, 0x14, 0x2a, 0x37, 0x0b, 0x88, 0x3c, 0xca, 0xb0, 0xf4, 0xc8, 0xc2, 0xa1, 0xae, 0xbc, 0xc1 +.byte 0xbe, 0x29, 0x67, 0x55, 0xe2, 0xfc, 0xad, 0x59, 0x5c, 0xfe, 0xbd, 0x57, 0x2c, 0xb0, 0x90, 0x8d +.byte 0xc2, 0xed, 0x37, 0xb6, 0x7c, 0x99, 0x88, 0xb5, 0xd5, 0x03, 0x9a, 0x3d, 0x15, 0x0d, 0x3d, 0x3a +.byte 0xa8, 0xa8, 0x45, 0xf0, 0x95, 0x4e, 0x25, 0x59, 0x1d, 0xcd, 0x98, 0x69, 0xbb, 0xd3, 0xcc, 0x32 +.byte 0xc9, 0x8d, 0xef, 0x81, 0xfe, 0xad, 0x7d, 0x89, 0xbb, 0xba, 0x60, 0x13, 0xca, 0x65, 0x95, 0x67 +.byte 0xa0, 0xf3, 0x19, 0xf6, 0x03, 0x56, 0xd4, 0x6a, 0xd3, 0x27, 0xe2, 0xa1, 0xad, 0x83, 0xf0, 0x4a +.byte 0x12, 0x22, 0x77, 0x1c, 0x05, 0x73, 0xe2, 0x19, 0x71, 0x42, 0xc0, 0xec, 0x75, 0x46, 0x9a, 0x90 +.byte 0x58, 0xe0, 0x6a, 0x8e, 0x2b, 0xa5, 0x46, 0x30, 0x04, 0x8e, 0x19, 0xb2, 0x17, 0xe3, 0xbe, 0xa9 +.byte 0xba, 0x7f, 0x56, 0xf1, 0x24, 0x03, 0xd7, 0xb2, 0x21, 0x28, 0x76, 0x0e, 0x36, 0x30, 0x4c, 0x79 +.byte 0xd5, 0x41, 0x9a, 0x9a, 0xa8, 0xb8, 0x35, 0xba, 0x0c, 0x3a, 0xf2, 0x44, 0x1b, 0x20, 0x88, 0xf7 +.byte 0xc5, 0x25, 0xd7, 0x3d, 0xc6, 0xe3, 0x3e, 0x43, 0xdd, 0x87, 0xfe, 0xc4, 0xea, 0xf5, 0x53, 0x3e +.byte 0x4c, 0x65, 0xff, 0x3b, 0x4a, 0xcb, 0x78, 0x5a, 0x6b, 0x17, 0x5f, 0x0d, 0xc7, 0xc3, 0x4f, 0x4e +.byte 0x9a, 0x2a, 0xa2, 0xed, 0x57, 0x4d, 0x22, 0xe2, 0x46, 0x9a, 0x3f, 0x0f, 0x91, 0x34, 0x24, 0x7d +.byte 0x55, 0xe3, 0x8c, 0x95, 0x37, 0xd3, 0x1a, 0xf0, 0x09, 0x2b, 0x2c, 0xd2, 0xc9, 0x8d, 0xb4, 0x0d +.byte 0x00, 0xab, 0x67, 0x29, 0x28, 0xd8, 0x01, 0xf5, 0x19, 0x04, 0xb6, 0x1d, 0xbe, 0x76, 0xfe, 0x72 +.byte 0x5c, 0xc4, 0x85, 0xca, 0xd2, 0x80, 0x41, 0xdf, 0x05, 0xa8, 0xa3, 0xd5, 0x84, 0x90, 0x4f, 0x0b +.byte 0xf3, 0xe0, 0x3f, 0x9b, 0x19, 0xd2, 0x37, 0x89, 0x3f, 0xf2, 0x7b, 0x52, 0x1c, 0x8c, 0xf6, 0xe1 +.byte 0xf7, 0x3c, 0x07, 0x97, 0x8c, 0x0e, 0xa2, 0x59, 0x81, 0x0c, 0xb2, 0x90, 0x3d, 0xd3, 0xe3, 0x59 +.byte 0x46, 0xed, 0x0f, 0xa9, 0xa7, 0xde, 0x80, 0x6b, 0x5a, 0xaa, 0x07, 0xb6, 0x19, 0xcb, 0xbc, 0x57 +.byte 0xf3, 0x97, 0x21, 0x7a, 0x0c, 0xb1, 0x2b, 0x74, 0x3e, 0xeb, 0xda, 0xa7, 0x67, 0x2d, 0x4c, 0xc4 +.byte 0x98, 0x9e, 0x36, 0x09, 0x76, 0x66, 0x66, 0xfc, 0x1a, 0x3f, 0xea, 0x48, 0x54, 0x1c, 0xbe, 0x30 +.byte 0xbd, 0x80, 0x50, 0xbf, 0x7c, 0xb5, 0xce, 0x00, 0xf6, 0x0c, 0x61, 0xd9, 0xe7, 0x24, 0x03, 0xe0 +.byte 0xe3, 0x01, 0x81, 0x0e, 0xbd, 0xd8, 0x85, 0x34, 0x88, 0xbd, 0xb2, 0x36, 0xa8, 0x7b, 0x5c, 0x08 +.byte 0xe5, 0x44, 0x80, 0x8c, 0x6f, 0xf8, 0x2f, 0xd5, 0x21, 0xca, 0x1d, 0x1c, 0xd0, 0xfb, 0xc4, 0xb5 +.byte 0x87, 0xd1, 0x3a, 0x4e, 0xc7, 0x76, 0xb5, 0x35, 0x48, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x7d +.byte 0x00, 0x26, 0x01, 0x30, 0x7b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x12, 0x47, 0x72, 0x65 +.byte 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31 +.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72 +.byte 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x43, 0x6f, 0x6d, 0x6f +.byte 0x64, 0x6f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x21, 0x30 +.byte 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x18, 0x41, 0x41, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73 +.byte 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01 +.byte 0x00, 0xbe, 0x40, 0x9d, 0xf4, 0x6e, 0xe1, 0xea, 0x76, 0x87, 0x1c, 0x4d, 0x45, 0x44, 0x8e, 0xbe +.byte 0x46, 0xc8, 0x83, 0x06, 0x9d, 0xc1, 0x2a, 0xfe, 0x18, 0x1f, 0x8e, 0xe4, 0x02, 0xfa, 0xf3, 0xab +.byte 0x5d, 0x50, 0x8a, 0x16, 0x31, 0x0b, 0x9a, 0x06, 0xd0, 0xc5, 0x70, 0x22, 0xcd, 0x49, 0x2d, 0x54 +.byte 0x63, 0xcc, 0xb6, 0x6e, 0x68, 0x46, 0x0b, 0x53, 0xea, 0xcb, 0x4c, 0x24, 0xc0, 0xbc, 0x72, 0x4e +.byte 0xea, 0xf1, 0x15, 0xae, 0xf4, 0x54, 0x9a, 0x12, 0x0a, 0xc3, 0x7a, 0xb2, 0x33, 0x60, 0xe2, 0xda +.byte 0x89, 0x55, 0xf3, 0x22, 0x58, 0xf3, 0xde, 0xdc, 0xcf, 0xef, 0x83, 0x86, 0xa2, 0x8c, 0x94, 0x4f +.byte 0x9f, 0x68, 0xf2, 0x98, 0x90, 0x46, 0x84, 0x27, 0xc7, 0x76, 0xbf, 0xe3, 0xcc, 0x35, 0x2c, 0x8b +.byte 0x5e, 0x07, 0x64, 0x65, 0x82, 0xc0, 0x48, 0xb0, 0xa8, 0x91, 0xf9, 0x61, 0x9f, 0x76, 0x20, 0x50 +.byte 0xa8, 0x91, 0xc7, 0x66, 0xb5, 0xeb, 0x78, 0x62, 0x03, 0x56, 0xf0, 0x8a, 0x1a, 0x13, 0xea, 0x31 +.byte 0xa3, 0x1e, 0xa0, 0x99, 0xfd, 0x38, 0xf6, 0xf6, 0x27, 0x32, 0x58, 0x6f, 0x07, 0xf5, 0x6b, 0xb8 +.byte 0xfb, 0x14, 0x2b, 0xaf, 0xb7, 0xaa, 0xcc, 0xd6, 0x63, 0x5f, 0x73, 0x8c, 0xda, 0x05, 0x99, 0xa8 +.byte 0x38, 0xa8, 0xcb, 0x17, 0x78, 0x36, 0x51, 0xac, 0xe9, 0x9e, 0xf4, 0x78, 0x3a, 0x8d, 0xcf, 0x0f +.byte 0xd9, 0x42, 0xe2, 0x98, 0x0c, 0xab, 0x2f, 0x9f, 0x0e, 0x01, 0xde, 0xef, 0x9f, 0x99, 0x49, 0xf1 +.byte 0x2d, 0xdf, 0xac, 0x74, 0x4d, 0x1b, 0x98, 0xb5, 0x47, 0xc5, 0xe5, 0x29, 0xd1, 0xf9, 0x90, 0x18 +.byte 0xc7, 0x62, 0x9c, 0xbe, 0x83, 0xc7, 0x26, 0x7b, 0x3e, 0x8a, 0x25, 0xc7, 0xc0, 0xdd, 0x9d, 0xe6 +.byte 0x35, 0x68, 0x10, 0x20, 0x9d, 0x8f, 0xd8, 0xde, 0xd2, 0xc3, 0x84, 0x9c, 0x0d, 0x5e, 0xe8, 0x2f +.byte 0xc9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x7e, 0x00, 0x78, 0x00, 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55 +.byte 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72 +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28 +.byte 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 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, 0x45, 0x43, 0x43, 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 0x45, 0x6e, 0xa9, 0x50, 0xc4, 0xa6, 0x23, 0x36, 0x9e, 0x5f, 0x28, 0x8d, 0x17, 0xcb, 0x96, 0x22 +.byte 0x64, 0x3f, 0xdc, 0x7a, 0x8e, 0x1d, 0xcc, 0x08, 0xb3, 0xa2, 0x71, 0x24, 0xba, 0x8e, 0x49, 0xb9 +.byte 0x04, 0x1b, 0x47, 0x96, 0x58, 0xab, 0x2d, 0x95, 0xc8, 0xed, 0x9e, 0x08, 0x35, 0xc8, 0x27, 0xeb +.byte 0x89, 0x8c, 0x53, 0x58, 0xeb, 0x62, 0x8a, 0xfe, 0xf0, 0x5b, 0x0f, 0x6b, 0x31, 0x52, 0x63, 0x41 +.byte 0x3b, 0x89, 0xcd, 0xec, 0xec, 0xb6, 0x8d, 0x19, 0xd3, 0x34, 0x07, 0xdc, 0xbb, 0xc6, 0x06, 0x7f +.byte 0xc2, 0x45, 0x95, 0xec, 0xcb, 0x7f, 0xa8, 0x23, 0xe0, 0x09, 0xe9, 0x81, 0xfa, 0xf3, 0x47, 0xd3 +.byte 0x7e, 0x00, 0x26, 0x02, 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65 +.byte 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f +.byte 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f +.byte 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31 +.byte 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f +.byte 0x6d, 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, 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, 0xf9, 0x0f, 0xdd, 0xa3, 0x2b, 0x7d, 0xcb, 0xd0, 0x2a, 0xfe, 0xec, 0x67, 0x85 +.byte 0xa6, 0xe7, 0x2e, 0x1b, 0xba, 0x77, 0xe1, 0xe3, 0xf5, 0xaf, 0xa4, 0xec, 0xfa, 0x4a, 0x5d, 0x91 +.byte 0xc4, 0x57, 0x47, 0x6b, 0x18, 0x77, 0x6b, 0x76, 0xf2, 0xfd, 0x93, 0xe4, 0x3d, 0x0f, 0xc2, 0x16 +.byte 0x9e, 0x0b, 0x66, 0xc3, 0x56, 0x94, 0x9e, 0x17, 0x83, 0x85, 0xce, 0x56, 0xef, 0xf2, 0x16, 0xfd +.byte 0x00, 0x62, 0xf5, 0x22, 0x09, 0x54, 0xe8, 0x65, 0x17, 0x4e, 0x41, 0xb9, 0xe0, 0x4f, 0x46, 0x97 +.byte 0xaa, 0x1b, 0xc8, 0xb8, 0x6e, 0x62, 0x5e, 0x69, 0xb1, 0x5f, 0xdb, 0x2a, 0x02, 0x7e, 0xfc, 0x6c +.byte 0xca, 0xf3, 0x41, 0xd8, 0xed, 0xd0, 0xe8, 0xfc, 0x3f, 0x61, 0x48, 0xed, 0xb0, 0x03, 0x14, 0x1d +.byte 0x10, 0x0e, 0x4b, 0x19, 0xe0, 0xbb, 0x4e, 0xec, 0x86, 0x65, 0xff, 0x36, 0xf3, 0x5e, 0x67, 0x02 +.byte 0x0b, 0x9d, 0x86, 0x55, 0x61, 0xfd, 0x7a, 0x38, 0xed, 0xfe, 0xe2, 0x19, 0x00, 0xb7, 0x6f, 0xa1 +.byte 0x50, 0x62, 0x75, 0x74, 0x3c, 0xa0, 0xfa, 0xc8, 0x25, 0x92, 0xb4, 0x6e, 0x7a, 0x22, 0xc7, 0xf8 +.byte 0x1e, 0xa1, 0xe3, 0xb2, 0xdd, 0x91, 0x31, 0xab, 0x2b, 0x1d, 0x04, 0xff, 0xa5, 0x4a, 0x04, 0x37 +.byte 0xe9, 0x85, 0xa4, 0x33, 0x2b, 0xfd, 0xe2, 0xd6, 0x55, 0x34, 0x7c, 0x19, 0xa4, 0x4a, 0x68, 0xc7 +.byte 0xb2, 0xa8, 0xd3, 0xb7, 0xca, 0xa1, 0x93, 0x88, 0xeb, 0xc1, 0x97, 0xbc, 0x8c, 0xf9, 0x1d, 0xd9 +.byte 0x22, 0x84, 0x24, 0x74, 0xc7, 0x04, 0x3d, 0x6a, 0xa9, 0x29, 0x93, 0xcc, 0xeb, 0xb8, 0x5b, 0xe1 +.byte 0xfe, 0x5f, 0x25, 0xaa, 0x34, 0x58, 0xc8, 0xc1, 0x23, 0x54, 0x9d, 0x1b, 0x98, 0x11, 0xc3, 0x38 +.byte 0x9c, 0x7e, 0x3d, 0x86, 0x6c, 0xa5, 0x0f, 0x40, 0x86, 0x7c, 0x02, 0xf4, 0x5c, 0x02, 0x4f, 0x28 +.byte 0xcb, 0xae, 0x71, 0x9f, 0x0f, 0x3a, 0xc8, 0x33, 0xfe, 0x11, 0x25, 0x35, 0xea, 0xfc, 0xba, 0xc5 +.byte 0x60, 0x3d, 0xd9, 0x7c, 0x18, 0xd5, 0xb2, 0xa9, 0xd3, 0x75, 0x78, 0x03, 0x72, 0x22, 0xca, 0x3a +.byte 0xc3, 0x1f, 0xef, 0x2c, 0xe5, 0x2e, 0xa9, 0xfa, 0x9e, 0x2c, 0xb6, 0x51, 0x46, 0xfd, 0xaf, 0x03 +.byte 0xd6, 0xea, 0x60, 0x68, 0xea, 0x85, 0x16, 0x36, 0x6b, 0x85, 0xe9, 0x1e, 0xc0, 0xb3, 0xdd, 0xc4 +.byte 0x24, 0xdc, 0x80, 0x2a, 0x81, 0x41, 0x6d, 0x94, 0x3e, 0xc8, 0xe0, 0xc9, 0x81, 0x41, 0x00, 0x9e +.byte 0x5e, 0xbf, 0x7f, 0xc5, 0x08, 0x98, 0xa2, 0x18, 0x2c, 0x42, 0x40, 0xb3, 0xf9, 0x6f, 0x38, 0x27 +.byte 0x4b, 0x4e, 0x80, 0xf4, 0x3d, 0x81, 0x47, 0xe0, 0x88, 0x7c, 0xea, 0x1c, 0xce, 0xb5, 0x75, 0x5c +.byte 0x51, 0x2e, 0x1c, 0x2b, 0x7f, 0x1a, 0x72, 0x28, 0xe7, 0x00, 0xb5, 0xd1, 0x74, 0xc6, 0xd7, 0xe4 +.byte 0x9f, 0xad, 0x07, 0x93, 0xb6, 0x53, 0x35, 0x35, 0xfc, 0x37, 0xe4, 0xc3, 0xf6, 0x5d, 0x16, 0xbe +.byte 0x21, 0x73, 0xde, 0x92, 0x0a, 0xf8, 0xa0, 0x63, 0x6a, 0xbc, 0x96, 0x92, 0x6a, 0x3e, 0xf8, 0xbc +.byte 0x65, 0x55, 0x9b, 0xde, 0xf5, 0x0d, 0x89, 0x26, 0x04, 0xfc, 0x25, 0x1a, 0xa6, 0x25, 0x69, 0xcb +.byte 0xc2, 0x6d, 0xca, 0x7c, 0xe2, 0x59, 0x5f, 0x97, 0xac, 0xeb, 0xef, 0x2e, 0xc8, 0xbc, 0xd7, 0x1b +.byte 0x59, 0x3c, 0x2b, 0xcc, 0xf2, 0x19, 0xc8, 0x93, 0x6b, 0x27, 0x63, 0x19, 0xcf, 0xfc, 0xe9, 0x26 +.byte 0xf8, 0xca, 0x71, 0x9b, 0x7f, 0x93, 0xfe, 0x34, 0x67, 0x84, 0x4e, 0x99, 0xeb, 0xfc, 0xb3, 0x78 +.byte 0x09, 0x33, 0x70, 0xba, 0x66, 0xa6, 0x76, 0xed, 0x1b, 0x73, 0xeb, 0x1a, 0xa5, 0x0d, 0xc4, 0x22 +.byte 0x13, 0x20, 0x94, 0x56, 0x0a, 0x4e, 0x2c, 0x6c, 0x4e, 0xb1, 0xfd, 0xcf, 0x9c, 0x09, 0xba, 0xa2 +.byte 0x33, 0xed, 0x87, 0x02, 0x03, 0x01, 0x00, 0x01, 0x80, 0x00, 0x26, 0x01, 0x30, 0x7e, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65 +.byte 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31 +.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d +.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, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x19, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65 +.byte 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 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, 0xe3, 0xfb, 0x7d +.byte 0xa3, 0x72, 0xba, 0xc2, 0xf0, 0xc9, 0x14, 0x87, 0xf5, 0x6b, 0x01, 0x4e, 0xe1, 0x6e, 0x40, 0x07 +.byte 0xba, 0x6d, 0x27, 0x5d, 0x7f, 0xf7, 0x5b, 0x2d, 0xb3, 0x5a, 0xc7, 0x51, 0x5f, 0xab, 0xa4, 0x32 +.byte 0xa6, 0x61, 0x87, 0xb6, 0x6e, 0x0f, 0x86, 0xd2, 0x30, 0x02, 0x97, 0xf8, 0xd7, 0x69, 0x57, 0xa1 +.byte 0x18, 0x39, 0x5d, 0x6a, 0x64, 0x79, 0xc6, 0x01, 0x59, 0xac, 0x3c, 0x31, 0x4a, 0x38, 0x7c, 0xd2 +.byte 0x04, 0xd2, 0x4b, 0x28, 0xe8, 0x20, 0x5f, 0x3b, 0x07, 0xa2, 0xcc, 0x4d, 0x73, 0xdb, 0xf3, 0xae +.byte 0x4f, 0xc7, 0x56, 0xd5, 0x5a, 0xa7, 0x96, 0x89, 0xfa, 0xf3, 0xab, 0x68, 0xd4, 0x23, 0x86, 0x59 +.byte 0x27, 0xcf, 0x09, 0x27, 0xbc, 0xac, 0x6e, 0x72, 0x83, 0x1c, 0x30, 0x72, 0xdf, 0xe0, 0xa2, 0xe9 +.byte 0xd2, 0xe1, 0x74, 0x75, 0x19, 0xbd, 0x2a, 0x9e, 0x7b, 0x15, 0x54, 0x04, 0x1b, 0xd7, 0x43, 0x39 +.byte 0xad, 0x55, 0x28, 0xc5, 0xe2, 0x1a, 0xbb, 0xf4, 0xc0, 0xe4, 0xae, 0x38, 0x49, 0x33, 0xcc, 0x76 +.byte 0x85, 0x9f, 0x39, 0x45, 0xd2, 0xa4, 0x9e, 0xf2, 0x12, 0x8c, 0x51, 0xf8, 0x7c, 0xe4, 0x2d, 0x7f +.byte 0xf5, 0xac, 0x5f, 0xeb, 0x16, 0x9f, 0xb1, 0x2d, 0xd1, 0xba, 0xcc, 0x91, 0x42, 0x77, 0x4c, 0x25 +.byte 0xc9, 0x90, 0x38, 0x6f, 0xdb, 0xf0, 0xcc, 0xfb, 0x8e, 0x1e, 0x97, 0x59, 0x3e, 0xd5, 0x60, 0x4e +.byte 0xe6, 0x05, 0x28, 0xed, 0x49, 0x79, 0x13, 0x4b, 0xba, 0x48, 0xdb, 0x2f, 0xf9, 0x72, 0xd3, 0x39 +.byte 0xca, 0xfe, 0x1f, 0xd8, 0x34, 0x72, 0xf5, 0xb4, 0x40, 0xcf, 0x31, 0x01, 0xc3, 0xec, 0xde, 0x11 +.byte 0x2d, 0x17, 0x5d, 0x1f, 0xb8, 0x50, 0xd1, 0x5e, 0x19, 0xa7, 0x69, 0xde, 0x07, 0x33, 0x28, 0xca +.byte 0x50, 0x95, 0xf9, 0xa7, 0x54, 0xcb, 0x54, 0x86, 0x50, 0x45, 0xa9, 0xf9, 0x49, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x81, 0x00, 0x78, 0x00, 0x30, 0x7f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05 +.byte 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07 +.byte 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x31, 0x34, 0x30, 0x32, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2b, 0x53, 0x53, 0x4c, 0x2e +.byte 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56, 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, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 +.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xaa +.byte 0x12, 0x47, 0x90, 0x98, 0x1b, 0xfb, 0xef, 0xc3, 0x40, 0x07, 0x83, 0x20, 0x4e, 0xf1, 0x30, 0x82 +.byte 0xa2, 0x06, 0xd1, 0xf2, 0x92, 0x86, 0x61, 0xf2, 0xf6, 0x21, 0x68, 0xca, 0x00, 0xc4, 0xc7, 0xea +.byte 0x43, 0x00, 0x54, 0x86, 0xdc, 0xfd, 0x1f, 0xdf, 0x00, 0xb8, 0x41, 0x62, 0x5c, 0xdc, 0x70, 0x16 +.byte 0x32, 0xde, 0x1f, 0x99, 0xd4, 0xcc, 0xc5, 0x07, 0xc8, 0x08, 0x1f, 0x61, 0x16, 0x07, 0x51, 0x3d +.byte 0x7d, 0x5c, 0x07, 0x53, 0xe3, 0x35, 0x38, 0x8c, 0xdf, 0xcd, 0x9f, 0xd9, 0x2e, 0x0d, 0x4a, 0xb6 +.byte 0x19, 0x2e, 0x5a, 0x70, 0x5a, 0x06, 0xed, 0xbe, 0xf0, 0xa1, 0xb0, 0xca, 0xd0, 0x09, 0x29, 0x83 +.byte 0x00, 0x26, 0x02, 0x30, 0x81, 0x80, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e +.byte 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69 +.byte 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 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, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x43, 0x65, 0x72, 0x74, 0x75 +.byte 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72 +.byte 0x6b, 0x20, 0x43, 0x41, 0x20, 0x32, 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, 0xbd, 0xf9, 0x78, 0xf8, 0xe6, 0xd5, 0x80, 0x0c, 0x64 +.byte 0x9d, 0x86, 0x1b, 0x96, 0x64, 0x67, 0x3f, 0x22, 0x3a, 0x1e, 0x75, 0x01, 0x7d, 0xef, 0xfb, 0x5c +.byte 0x67, 0x8c, 0xc9, 0xcc, 0x5c, 0x6b, 0xa9, 0x91, 0xe6, 0xb9, 0x42, 0xe5, 0x20, 0x4b, 0x9b, 0xda +.byte 0x9b, 0x7b, 0xb9, 0x99, 0x5d, 0xd9, 0x9b, 0x80, 0x4b, 0xd7, 0x84, 0x40, 0x2b, 0x27, 0xd3, 0xe8 +.byte 0xba, 0x30, 0xbb, 0x3e, 0x09, 0x1a, 0xa7, 0x49, 0x95, 0xef, 0x2b, 0x40, 0x24, 0xc2, 0x97, 0xc7 +.byte 0xa7, 0xee, 0x9b, 0x25, 0xef, 0xa8, 0x0a, 0x00, 0x97, 0x85, 0x5a, 0xaa, 0x9d, 0xdc, 0x29, 0xc9 +.byte 0xe2, 0x35, 0x07, 0xeb, 0x70, 0x4d, 0x4a, 0xd6, 0xc1, 0xb3, 0x56, 0xb8, 0xa1, 0x41, 0x38, 0x9b +.byte 0xd1, 0xfb, 0x31, 0x7f, 0x8f, 0xe0, 0x5f, 0xe1, 0xb1, 0x3f, 0x0f, 0x8e, 0x16, 0x49, 0x60, 0xd7 +.byte 0x06, 0x8d, 0x18, 0xf9, 0xaa, 0x26, 0x10, 0xab, 0x2a, 0xd3, 0xd0, 0xd1, 0x67, 0x8d, 0x1b, 0x46 +.byte 0xbe, 0x47, 0x30, 0xd5, 0x2e, 0x72, 0xd1, 0xc5, 0x63, 0xda, 0xe7, 0x63, 0x79, 0x44, 0x7e, 0x4b +.byte 0x63, 0x24, 0x89, 0x86, 0x2e, 0x34, 0x3f, 0x29, 0x4c, 0x52, 0x8b, 0x2a, 0xa7, 0xc0, 0xe2, 0x91 +.byte 0x28, 0x89, 0xb9, 0xc0, 0x5b, 0xf9, 0x1d, 0xd9, 0xe7, 0x27, 0xad, 0xff, 0x9a, 0x02, 0x97, 0xc1 +.byte 0xc6, 0x50, 0x92, 0x9b, 0x02, 0x2c, 0xbd, 0xa9, 0xb9, 0x34, 0x59, 0x0a, 0xbf, 0x84, 0x4a, 0xff +.byte 0xdf, 0xfe, 0xb3, 0x9f, 0xeb, 0xd9, 0x9e, 0xe0, 0x98, 0x23, 0xec, 0xa6, 0x6b, 0x77, 0x16, 0x2a +.byte 0xdb, 0xcc, 0xad, 0x3b, 0x1c, 0xa4, 0x87, 0xdc, 0x46, 0x73, 0x5e, 0x19, 0x62, 0x68, 0x45, 0x57 +.byte 0xe4, 0x90, 0x82, 0x42, 0xbb, 0x42, 0xd6, 0xf0, 0x61, 0xe0, 0xc1, 0xa3, 0x3d, 0x66, 0xa3, 0x5d +.byte 0xf4, 0x18, 0xee, 0x88, 0xc9, 0x8d, 0x17, 0x45, 0x29, 0x99, 0x32, 0x75, 0x02, 0x31, 0xee, 0x29 +.byte 0x26, 0xc8, 0x6b, 0x02, 0xe6, 0xb5, 0x62, 0x45, 0x7f, 0x37, 0x15, 0x5a, 0x23, 0x68, 0x89, 0xd4 +.byte 0x3e, 0xde, 0x4e, 0x27, 0xb0, 0xf0, 0x40, 0x0c, 0xbc, 0x4d, 0x17, 0xcb, 0x4d, 0xa2, 0xb3, 0x1e +.byte 0xd0, 0x06, 0x5a, 0xdd, 0xf6, 0x93, 0xcf, 0x57, 0x75, 0x99, 0xf5, 0xfa, 0x86, 0x1a, 0x67, 0x78 +.byte 0xb3, 0xbf, 0x96, 0xfe, 0x34, 0xdc, 0xbd, 0xe7, 0x52, 0x56, 0xe5, 0xb3, 0xe5, 0x75, 0x7b, 0xd7 +.byte 0x41, 0x91, 0x05, 0xdc, 0x5d, 0x69, 0xe3, 0x95, 0x0d, 0x43, 0xb9, 0xfc, 0x83, 0x96, 0x39, 0x95 +.byte 0x7b, 0x6c, 0x80, 0x5a, 0x4f, 0x13, 0x72, 0xc6, 0xd7, 0x7d, 0x29, 0x7a, 0x44, 0xba, 0x52, 0xa4 +.byte 0x2a, 0xd5, 0x41, 0x46, 0x09, 0x20, 0xfe, 0x22, 0xa0, 0xb6, 0x5b, 0x30, 0x8d, 0xbc, 0x89, 0x0c +.byte 0xd5, 0xd7, 0x70, 0xf8, 0x87, 0x52, 0xfd, 0xda, 0xef, 0xac, 0x51, 0x2e, 0x07, 0xb3, 0x4e, 0xfe +.byte 0xd0, 0x09, 0xda, 0x70, 0xef, 0x98, 0xfa, 0x56, 0xe6, 0x6d, 0xdb, 0xb5, 0x57, 0x4b, 0xdc, 0xe5 +.byte 0x2c, 0x25, 0x15, 0xc8, 0x9e, 0x2e, 0x78, 0x4e, 0xf8, 0xda, 0x9c, 0x9e, 0x86, 0x2c, 0xca, 0x57 +.byte 0xf3, 0x1a, 0xe5, 0xc8, 0x92, 0x8b, 0x1a, 0x82, 0x96, 0x7a, 0xc3, 0xbc, 0x50, 0x12, 0x69, 0xd8 +.byte 0x0e, 0x5a, 0x46, 0x8b, 0x3a, 0xeb, 0x26, 0xfa, 0x23, 0xc9, 0xb6, 0xb0, 0x81, 0xbe, 0x42, 0x00 +.byte 0xa4, 0xf8, 0xd6, 0xfe, 0x30, 0x2e, 0xc7, 0xd2, 0x46, 0xf6, 0xe5, 0x8e, 0x75, 0xfd, 0xf2, 0xcc +.byte 0xb9, 0xd0, 0x87, 0x5b, 0xcc, 0x06, 0x10, 0x60, 0xbb, 0x83, 0x35, 0xb7, 0x5e, 0x67, 0xde, 0x47 +.byte 0xec, 0x99, 0x48, 0xf1, 0xa4, 0xa1, 0x15, 0xfe, 0xad, 0x8c, 0x62, 0x8e, 0x39, 0x55, 0x4f, 0x39 +.byte 0x16, 0xb9, 0xb1, 0x63, 0x9d, 0xff, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x84, 0x00, 0x26, 0x01 +.byte 0x30, 0x81, 0x81, 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, 0x27, 0x30, 0x25, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 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, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a +.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xd0, 0x40, 0x8b, 0x8b, 0x72, 0xe3, 0x91, 0x1b, 0xf7, 0x51, 0xc1 +.byte 0x1b, 0x54, 0x04, 0x98, 0xd3, 0xa9, 0xbf, 0xc1, 0xe6, 0x8a, 0x5d, 0x3b, 0x87, 0xfb, 0xbb, 0x88 +.byte 0xce, 0x0d, 0xe3, 0x2f, 0x3f, 0x06, 0x96, 0xf0, 0xa2, 0x29, 0x50, 0x99, 0xae, 0xdb, 0x3b, 0xa1 +.byte 0x57, 0xb0, 0x74, 0x51, 0x71, 0xcd, 0xed, 0x42, 0x91, 0x4d, 0x41, 0xfe, 0xa9, 0xc8, 0xd8, 0x6a +.byte 0x86, 0x77, 0x44, 0xbb, 0x59, 0x66, 0x97, 0x50, 0x5e, 0xb4, 0xd4, 0x2c, 0x70, 0x44, 0xcf, 0xda +.byte 0x37, 0x95, 0x42, 0x69, 0x3c, 0x30, 0xc4, 0x71, 0xb3, 0x52, 0xf0, 0x21, 0x4d, 0xa1, 0xd8, 0xba +.byte 0x39, 0x7c, 0x1c, 0x9e, 0xa3, 0x24, 0x9d, 0xf2, 0x83, 0x16, 0x98, 0xaa, 0x16, 0x7c, 0x43, 0x9b +.byte 0x15, 0x5b, 0xb7, 0xae, 0x34, 0x91, 0xfe, 0xd4, 0x62, 0x26, 0x18, 0x46, 0x9a, 0x3f, 0xeb, 0xc1 +.byte 0xf9, 0xf1, 0x90, 0x57, 0xeb, 0xac, 0x7a, 0x0d, 0x8b, 0xdb, 0x72, 0x30, 0x6a, 0x66, 0xd5, 0xe0 +.byte 0x46, 0xa3, 0x70, 0xdc, 0x68, 0xd9, 0xff, 0x04, 0x48, 0x89, 0x77, 0xde, 0xb5, 0xe9, 0xfb, 0x67 +.byte 0x6d, 0x41, 0xe9, 0xbc, 0x39, 0xbd, 0x32, 0xd9, 0x62, 0x02, 0xf1, 0xb1, 0xa8, 0x3d, 0x6e, 0x37 +.byte 0x9c, 0xe2, 0x2f, 0xe2, 0xd3, 0xa2, 0x26, 0x8b, 0xc6, 0xb8, 0x55, 0x43, 0x88, 0xe1, 0x23, 0x3e +.byte 0xa5, 0xd2, 0x24, 0x39, 0x6a, 0x47, 0xab, 0x00, 0xd4, 0xa1, 0xb3, 0xa9, 0x25, 0xfe, 0x0d, 0x3f +.byte 0xa7, 0x1d, 0xba, 0xd3, 0x51, 0xc1, 0x0b, 0xa4, 0xda, 0xac, 0x38, 0xef, 0x55, 0x50, 0x24, 0x05 +.byte 0x65, 0x46, 0x93, 0x34, 0x4f, 0x2d, 0x8d, 0xad, 0xc6, 0xd4, 0x21, 0x19, 0xd2, 0x8e, 0xca, 0x05 +.byte 0x61, 0x71, 0x07, 0x73, 0x47, 0xe5, 0x8a, 0x19, 0x12, 0xbd, 0x04, 0x4d, 0xce, 0x4e, 0x9c, 0xa5 +.byte 0x48, 0xac, 0xbb, 0x26, 0xf7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81 +.byte 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b +.byte 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65 +.byte 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65 +.byte 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63 +.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73 +.byte 0x73, 0x20, 0x32, 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, 0xaa, 0x5f, 0xda, 0x1b, 0x5f, 0xe8, 0x73, 0x91, 0xe5, 0xda, 0x5c, 0xf4 +.byte 0xa2, 0xe6, 0x47, 0xe5, 0xf3, 0x68, 0x55, 0x60, 0x05, 0x1d, 0x02, 0xa4, 0xb3, 0x9b, 0x59, 0xf3 +.byte 0x1e, 0x8a, 0xaf, 0x34, 0xad, 0xfc, 0x0d, 0xc2, 0xd9, 0x48, 0x19, 0xee, 0x69, 0x8f, 0xc9, 0x20 +.byte 0xfc, 0x21, 0xaa, 0x07, 0x19, 0xed, 0xb0, 0x5c, 0xac, 0x65, 0xc7, 0x5f, 0xed, 0x02, 0x7c, 0x7b +.byte 0x7c, 0x2d, 0x1b, 0xd6, 0xba, 0xb9, 0x80, 0xc2, 0x18, 0x82, 0x16, 0x84, 0xfa, 0x66, 0xb0, 0x08 +.byte 0xc6, 0x54, 0x23, 0x81, 0xe4, 0xcd, 0xb9, 0x49, 0x3f, 0xf6, 0x4f, 0x6e, 0x37, 0x48, 0x28, 0x38 +.byte 0x0f, 0xc5, 0xbe, 0xe7, 0x68, 0x70, 0xfd, 0x39, 0x97, 0x4d, 0xd2, 0xc7, 0x98, 0x91, 0x50, 0xaa +.byte 0xc4, 0x44, 0xb3, 0x23, 0x7d, 0x39, 0x47, 0xe9, 0x52, 0x62, 0xd6, 0x12, 0x93, 0x5e, 0xb7, 0x31 +.byte 0x96, 0x42, 0x05, 0xfb, 0x76, 0xa7, 0x1e, 0xa3, 0xf5, 0xc2, 0xfc, 0xe9, 0x7a, 0xc5, 0x6c, 0xa9 +.byte 0x71, 0x4f, 0xea, 0xcb, 0x78, 0xbc, 0x60, 0xaf, 0xc7, 0xde, 0xf4, 0xd9, 0xcb, 0xbe, 0x7e, 0x33 +.byte 0xa5, 0x6e, 0x94, 0x83, 0xf0, 0x34, 0xfa, 0x21, 0xab, 0xea, 0x8e, 0x72, 0xa0, 0x3f, 0xa4, 0xde +.byte 0x30, 0x5b, 0xef, 0x86, 0x4d, 0x6a, 0x95, 0x5b, 0x43, 0x44, 0xa8, 0x10, 0x15, 0x1c, 0xe5, 0x01 +.byte 0x57, 0xc5, 0x98, 0xf1, 0xe6, 0x06, 0x28, 0x91, 0xaa, 0x20, 0xc5, 0xb7, 0x53, 0x26, 0x51, 0x43 +.byte 0xb2, 0x0b, 0x11, 0x95, 0x58, 0xe1, 0xc0, 0x0f, 0x76, 0xd9, 0xc0, 0x8d, 0x7c, 0x81, 0xf3, 0x72 +.byte 0x70, 0x9e, 0x6f, 0xfe, 0x1a, 0x8e, 0xd9, 0x5f, 0x35, 0xc6, 0xb2, 0x6f, 0x34, 0x7c, 0xbe, 0x48 +.byte 0x4f, 0xe2, 0x5a, 0x39, 0xd7, 0xd8, 0x9d, 0x78, 0x9e, 0x9f, 0x86, 0x3e, 0x03, 0x5e, 0x19, 0x8b +.byte 0x44, 0xa2, 0xd5, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81, 0x82 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b, 0x30 +.byte 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d +.byte 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65, 0x72 +.byte 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63, 0x20 +.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73 +.byte 0x20, 0x33, 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, 0xbd, 0x75, 0x93, 0xf0, 0x62, 0x22, 0x6f, 0x24, 0xae, 0xe0, 0x7a, 0x76, 0xac +.byte 0x7d, 0xbd, 0xd9, 0x24, 0xd5, 0xb8, 0xb7, 0xfc, 0xcd, 0xf0, 0x42, 0xe0, 0xeb, 0x78, 0x88, 0x56 +.byte 0x5e, 0x9b, 0x9a, 0x54, 0x1d, 0x4d, 0x0c, 0x8a, 0xf6, 0xd3, 0xcf, 0x70, 0xf4, 0x52, 0xb5, 0xd8 +.byte 0x93, 0x04, 0xe3, 0x46, 0x86, 0x71, 0x41, 0x4a, 0x2b, 0xf0, 0x2a, 0x2c, 0x55, 0x03, 0xd6, 0x48 +.byte 0xc3, 0xe0, 0x39, 0x38, 0xed, 0xf2, 0x5c, 0x3c, 0x3f, 0x44, 0xbc, 0x93, 0x3d, 0x61, 0xab, 0x4e +.byte 0xcd, 0x0d, 0xbe, 0xf0, 0x20, 0x27, 0x58, 0x0e, 0x44, 0x7f, 0x04, 0x1a, 0x87, 0xa5, 0xd7, 0x96 +.byte 0x14, 0x36, 0x90, 0xd0, 0x49, 0x7b, 0xa1, 0x75, 0xfb, 0x1a, 0x6b, 0x73, 0xb1, 0xf8, 0xce, 0xa9 +.byte 0x09, 0x2c, 0xf2, 0x53, 0xd5, 0xc3, 0x14, 0x44, 0xb8, 0x86, 0xa5, 0xf6, 0x8b, 0x2b, 0x39, 0xda +.byte 0xa3, 0x33, 0x54, 0xd9, 0xfa, 0x72, 0x1a, 0xf7, 0x22, 0x15, 0x1c, 0x88, 0x91, 0x6b, 0x7f, 0x66 +.byte 0xe5, 0xc3, 0x6a, 0x80, 0xb0, 0x24, 0xf3, 0xdf, 0x86, 0x45, 0x88, 0xfd, 0x19, 0x7f, 0x75, 0x87 +.byte 0x1f, 0x1f, 0xb1, 0x1b, 0x0a, 0x73, 0x24, 0x5b, 0xb9, 0x65, 0xe0, 0x2c, 0x54, 0xc8, 0x60, 0xd3 +.byte 0x66, 0x17, 0x3f, 0xe1, 0xcc, 0x54, 0x33, 0x73, 0x91, 0x02, 0x3a, 0xa6, 0x7f, 0x7b, 0x76, 0x39 +.byte 0xa2, 0x1f, 0x96, 0xb6, 0x38, 0xae, 0xb5, 0xc8, 0x93, 0x74, 0x1d, 0x9e, 0xb9, 0xb4, 0xe5, 0x60 +.byte 0x9d, 0x2f, 0x56, 0xd1, 0xe0, 0xeb, 0x5e, 0x5b, 0x4c, 0x12, 0x70, 0x0c, 0x6c, 0x44, 0x20, 0xab +.byte 0x11, 0xd8, 0xf4, 0x19, 0xf6, 0xd2, 0x9c, 0x52, 0x37, 0xe7, 0xfa, 0xb6, 0xc2, 0x31, 0x3b, 0x4a +.byte 0xd4, 0x14, 0x99, 0xad, 0xc7, 0x1a, 0xf5, 0x5d, 0x5f, 0xfa, 0x07, 0xb8, 0x7c, 0x0d, 0x1f, 0xd6 +.byte 0x83, 0x1e, 0xb3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81, 0x82, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f +.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31 +.byte 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73 +.byte 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x1e, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x65, 0x2d, 0x53, 0x7a, 0x69 +.byte 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x30, 0x39 +.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x09, 0x01, 0x16 +.byte 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40, 0x65, 0x2d, 0x73, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x2e, 0x68 +.byte 0x75, 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, 0xe9, 0xf8, 0x8f, 0xf3, 0x63, 0xad, 0xda, 0x86, 0xd8, 0xa7, 0xe0, 0x42, 0xfb, 0xcf +.byte 0x91, 0xde, 0xa6, 0x26, 0xf8, 0x99, 0xa5, 0x63, 0x70, 0xad, 0x9b, 0xae, 0xca, 0x33, 0x40, 0x7d +.byte 0x6d, 0x96, 0x6e, 0xa1, 0x0e, 0x44, 0xee, 0xe1, 0x13, 0x9d, 0x94, 0x42, 0x52, 0x9a, 0xbd, 0x75 +.byte 0x85, 0x74, 0x2c, 0xa8, 0x0e, 0x1d, 0x93, 0xb6, 0x18, 0xb7, 0x8c, 0x2c, 0xa8, 0xcf, 0xfb, 0x5c +.byte 0x71, 0xb9, 0xda, 0xec, 0xfe, 0xe8, 0x7e, 0x8f, 0xe4, 0x2f, 0x1d, 0xb2, 0xa8, 0x75, 0x87, 0xd8 +.byte 0xb7, 0xa1, 0xe5, 0x3b, 0xcf, 0x99, 0x4a, 0x46, 0xd0, 0x83, 0x19, 0x7d, 0xc0, 0xa1, 0x12, 0x1c +.byte 0x95, 0x6d, 0x4a, 0xf4, 0xd8, 0xc7, 0xa5, 0x4d, 0x33, 0x2e, 0x85, 0x39, 0x40, 0x75, 0x7e, 0x14 +.byte 0x7c, 0x80, 0x12, 0x98, 0x50, 0xc7, 0x41, 0x67, 0xb8, 0xa0, 0x80, 0x61, 0x54, 0xa6, 0x6c, 0x4e +.byte 0x1f, 0xe0, 0x9d, 0x0e, 0x07, 0xe9, 0xc9, 0xba, 0x33, 0xe7, 0xfe, 0xc0, 0x55, 0x28, 0x2c, 0x02 +.byte 0x80, 0xa7, 0x19, 0xf5, 0x9e, 0xdc, 0x55, 0x53, 0x03, 0x97, 0x7b, 0x07, 0x48, 0xff, 0x99, 0xfb +.byte 0x37, 0x8a, 0x24, 0xc4, 0x59, 0xcc, 0x50, 0x10, 0x63, 0x8e, 0xaa, 0xa9, 0x1a, 0xb0, 0x84, 0x1a +.byte 0x86, 0xf9, 0x5f, 0xbb, 0xb1, 0x50, 0x6e, 0xa4, 0xd1, 0x0a, 0xcc, 0xd5, 0x71, 0x7e, 0x1f, 0xa7 +.byte 0x1b, 0x7c, 0xf5, 0x53, 0x6e, 0x22, 0x5f, 0xcb, 0x2b, 0xe6, 0xd4, 0x7c, 0x5d, 0xae, 0xd6, 0xc2 +.byte 0xc6, 0x4c, 0xe5, 0x05, 0x01, 0xd9, 0xed, 0x57, 0xfc, 0xc1, 0x23, 0x79, 0xfc, 0xfa, 0xc8, 0x24 +.byte 0x83, 0x95, 0xf3, 0xb5, 0x6a, 0x51, 0x01, 0xd0, 0x77, 0xd6, 0xe9, 0x12, 0xa1, 0xf9, 0x1a, 0x83 +.byte 0xfb, 0x82, 0x1b, 0xb9, 0xb0, 0x97, 0xf4, 0x76, 0x06, 0x33, 0x43, 0x49, 0xa0, 0xff, 0x0b, 0xb5 +.byte 0xfa, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x02, 0x30, 0x81, 0x82, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06 +.byte 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 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, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x2e, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56, 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, 0x52, 0x53, 0x41, 0x20, 0x52, 0x32 +.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, 0x8f, 0x36, 0x65, 0x40, 0xe1, 0xd6, 0x4d, 0xc0, 0xd7, 0xb4, 0xe9, 0x46, 0xda, 0x6b, 0xea +.byte 0x33, 0x47, 0xcd, 0x4c, 0xf9, 0x7d, 0x7d, 0xbe, 0xbd, 0x2d, 0x3d, 0xf0, 0xdb, 0x78, 0xe1, 0x86 +.byte 0xa5, 0xd9, 0xba, 0x09, 0x57, 0x68, 0xed, 0x57, 0x3e, 0xa0, 0xd0, 0x08, 0x41, 0x83, 0xe7, 0x28 +.byte 0x41, 0x24, 0x1f, 0xe3, 0x72, 0x15, 0xd0, 0x01, 0x1a, 0xfb, 0x5e, 0x70, 0x23, 0xb2, 0xcb, 0x9f +.byte 0x39, 0xe3, 0xcf, 0xc5, 0x4e, 0xc6, 0x92, 0x6d, 0x26, 0xc6, 0x7b, 0xbb, 0xb3, 0xda, 0x27, 0x9d +.byte 0x0a, 0x86, 0xe9, 0x81, 0x37, 0x05, 0xfe, 0xf0, 0x71, 0x71, 0xec, 0xc3, 0x1c, 0xe9, 0x63, 0xa2 +.byte 0x17, 0x14, 0x9d, 0xef, 0x1b, 0x67, 0xd3, 0x85, 0x55, 0x02, 0x02, 0xd6, 0x49, 0xc9, 0xcc, 0x5a +.byte 0xe1, 0xb1, 0xf7, 0x6f, 0x32, 0x9f, 0xc9, 0xd4, 0x3b, 0x88, 0x41, 0xa8, 0x9c, 0xbd, 0xcb, 0xab +.byte 0xdb, 0x6d, 0x7b, 0x09, 0x1f, 0xa2, 0x4c, 0x72, 0x90, 0xda, 0x2b, 0x08, 0xfc, 0xcf, 0x3c, 0x54 +.byte 0xce, 0x67, 0x0f, 0xa8, 0xcf, 0x5d, 0x96, 0x19, 0x0b, 0xc4, 0xe3, 0x72, 0xeb, 0xad, 0xd1, 0x7d +.byte 0x1d, 0x27, 0xef, 0x92, 0xeb, 0x10, 0xbf, 0x5b, 0xeb, 0x3b, 0xaf, 0xcf, 0x80, 0xdd, 0xc1, 0xd2 +.byte 0x96, 0x04, 0x5b, 0x7a, 0x7e, 0xa4, 0xa9, 0x3c, 0x38, 0x76, 0xa4, 0x62, 0x8e, 0xa0, 0x39, 0x5e +.byte 0xea, 0x77, 0xcf, 0x5d, 0x00, 0x59, 0x8f, 0x66, 0x2c, 0x3e, 0x07, 0xa2, 0xa3, 0x05, 0x26, 0x11 +.byte 0x69, 0x97, 0xea, 0x85, 0xb7, 0x0f, 0x96, 0x0b, 0x4b, 0xc8, 0x40, 0xe1, 0x50, 0xba, 0x2e, 0x8a +.byte 0xcb, 0xf7, 0x0f, 0x9a, 0x22, 0xe7, 0x7f, 0x9a, 0x37, 0x13, 0xcd, 0xf2, 0x4d, 0x13, 0x6b, 0x21 +.byte 0xd1, 0xc0, 0xcc, 0x22, 0xf2, 0xa1, 0x46, 0xf6, 0x44, 0x69, 0x9c, 0xca, 0x61, 0x35, 0x07, 0x00 +.byte 0x6f, 0xd6, 0x61, 0x08, 0x11, 0xea, 0xba, 0xb8, 0xf6, 0xe9, 0xb3, 0x60, 0xe5, 0x4d, 0xb9, 0xec +.byte 0x9f, 0x14, 0x66, 0xc9, 0x57, 0x58, 0xdb, 0xcd, 0x87, 0x69, 0xf8, 0x8a, 0x86, 0x12, 0x03, 0x47 +.byte 0xbf, 0x66, 0x13, 0x76, 0xac, 0x77, 0x7d, 0x34, 0x24, 0x85, 0x83, 0xcd, 0xd7, 0xaa, 0x9c, 0x90 +.byte 0x1a, 0x9f, 0x21, 0x2c, 0x7f, 0x78, 0xb7, 0x64, 0xb8, 0xd8, 0xe8, 0xa6, 0xf4, 0x78, 0xb3, 0x55 +.byte 0xcb, 0x84, 0xd2, 0x32, 0xc4, 0x78, 0xae, 0xa3, 0x8f, 0x61, 0xdd, 0xce, 0x08, 0x53, 0xad, 0xec +.byte 0x88, 0xfc, 0x15, 0xe4, 0x9a, 0x0d, 0xe6, 0x9f, 0x1a, 0x77, 0xce, 0x4c, 0x8f, 0xb8, 0x14, 0x15 +.byte 0x3d, 0x62, 0x9c, 0x86, 0x38, 0x06, 0x00, 0x66, 0x12, 0xe4, 0x59, 0x76, 0x5a, 0x53, 0xc0, 0x02 +.byte 0x98, 0xa2, 0x10, 0x2b, 0x68, 0x44, 0x7b, 0x8e, 0x79, 0xce, 0x33, 0x4a, 0x76, 0xaa, 0x5b, 0x81 +.byte 0x16, 0x1b, 0xb5, 0x8a, 0xd8, 0xd0, 0x00, 0x7b, 0x5e, 0x62, 0xb4, 0x09, 0xd6, 0x86, 0x63, 0x0e +.byte 0xa6, 0x05, 0x95, 0x49, 0xba, 0x28, 0x8b, 0x88, 0x93, 0xb2, 0x34, 0x1c, 0xd8, 0xa4, 0x55, 0x6e +.byte 0xb7, 0x1c, 0xd0, 0xde, 0x99, 0x55, 0x3b, 0x23, 0xf4, 0x22, 0xe0, 0xf9, 0x29, 0x66, 0x26, 0xec +.byte 0x20, 0x50, 0x77, 0xdb, 0x4a, 0x0b, 0x8f, 0xbe, 0xe5, 0x02, 0x60, 0x70, 0x41, 0x5e, 0xd4, 0xae +.byte 0x50, 0x39, 0x22, 0x14, 0x26, 0xcb, 0xb2, 0x3b, 0x73, 0x74, 0x55, 0x47, 0x07, 0x79, 0x81, 0x39 +.byte 0xa8, 0x30, 0x13, 0x44, 0xe5, 0x04, 0x8a, 0xae, 0x96, 0x13, 0x25, 0x42, 0x0f, 0xb9, 0x53, 0xc4 +.byte 0x9b, 0xfc, 0xcd, 0xe4, 0x1c, 0xde, 0x3c, 0xfa, 0xab, 0xd6, 0x06, 0x4a, 0x1f, 0x67, 0xa6, 0x98 +.byte 0x30, 0x1c, 0xdd, 0x2c, 0xdb, 0xdc, 0x18, 0x95, 0x57, 0x66, 0xc6, 0xff, 0x5c, 0x8b, 0x56, 0xf5 +.byte 0x77, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x15, 0x77, 0x77, 0x77, 0x2e, 0x78, 0x72, 0x61, 0x6d, 0x70, 0x73, 0x65 +.byte 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x58, 0x52, 0x61, 0x6d, 0x70, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72 +.byte 0x69, 0x74, 0x79, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x49, 0x6e, 0x63 +.byte 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x24, 0x58, 0x52, 0x61, 0x6d, 0x70 +.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 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, 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 0x98, 0x24, 0x1e, 0xbd, 0x15, 0xb4, 0xba, 0xdf, 0xc7, 0x8c, 0xa5, 0x27, 0xb6, 0x38, 0x0b, 0x69 +.byte 0xf3, 0xb6, 0x4e, 0xa8, 0x2c, 0x2e, 0x21, 0x1d, 0x5c, 0x44, 0xdf, 0x21, 0x5d, 0x7e, 0x23, 0x74 +.byte 0xfe, 0x5e, 0x7e, 0xb4, 0x4a, 0xb7, 0xa6, 0xad, 0x1f, 0xae, 0xe0, 0x06, 0x16, 0xe2, 0x9b, 0x5b +.byte 0xd9, 0x67, 0x74, 0x6b, 0x5d, 0x80, 0x8f, 0x29, 0x9d, 0x86, 0x1b, 0xd9, 0x9c, 0x0d, 0x98, 0x6d +.byte 0x76, 0x10, 0x28, 0x58, 0xe4, 0x65, 0xb0, 0x7f, 0x4a, 0x98, 0x79, 0x9f, 0xe0, 0xc3, 0x31, 0x7e +.byte 0x80, 0x2b, 0xb5, 0x8c, 0xc0, 0x40, 0x3b, 0x11, 0x86, 0xd0, 0xcb, 0xa2, 0x86, 0x36, 0x60, 0xa4 +.byte 0xd5, 0x30, 0x82, 0x6d, 0xd9, 0x6e, 0xd0, 0x0f, 0x12, 0x04, 0x33, 0x97, 0x5f, 0x4f, 0x61, 0x5a +.byte 0xf0, 0xe4, 0xf9, 0x91, 0xab, 0xe7, 0x1d, 0x3b, 0xbc, 0xe8, 0xcf, 0xf4, 0x6b, 0x2d, 0x34, 0x7c +.byte 0xe2, 0x48, 0x61, 0x1c, 0x8e, 0xf3, 0x61, 0x44, 0xcc, 0x6f, 0xa0, 0x4a, 0xa9, 0x94, 0xb0, 0x4d +.byte 0xda, 0xe7, 0xa9, 0x34, 0x7a, 0x72, 0x38, 0xa8, 0x41, 0xcc, 0x3c, 0x94, 0x11, 0x7d, 0xeb, 0xc8 +.byte 0xa6, 0x8c, 0xb7, 0x86, 0xcb, 0xca, 0x33, 0x3b, 0xd9, 0x3d, 0x37, 0x8b, 0xfb, 0x7a, 0x3e, 0x86 +.byte 0x2c, 0xe7, 0x73, 0xd7, 0x0a, 0x57, 0xac, 0x64, 0x9b, 0x19, 0xeb, 0xf4, 0x0f, 0x04, 0x08, 0x8a +.byte 0xac, 0x03, 0x17, 0x19, 0x64, 0xf4, 0x5a, 0x25, 0x22, 0x8d, 0x34, 0x2c, 0xb2, 0xf6, 0x68, 0x1d +.byte 0x12, 0x6d, 0xd3, 0x8a, 0x1e, 0x14, 0xda, 0xc4, 0x8f, 0xa6, 0xe2, 0x23, 0x85, 0xd5, 0x7a, 0x0d +.byte 0xbd, 0x6a, 0xe0, 0xe9, 0xec, 0xec, 0x17, 0xbb, 0x42, 0x1b, 0x67, 0xaa, 0x25, 0xed, 0x45, 0x83 +.byte 0x21, 0xfc, 0xc1, 0xc9, 0x7c, 0xd5, 0x62, 0x3e, 0xfa, 0xf2, 0xc5, 0x2d, 0xd3, 0xfd, 0xd4, 0x65 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x86, 0x00, 0x26, 0x01, 0x30, 0x81, 0x83, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 +.byte 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65 +.byte 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x47, 0x6f, 0x44, 0x61, 0x64 +.byte 0x64, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 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, 0x2d, 0x20, 0x47, 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 0xbf, 0x71, 0x62, 0x08, 0xf1, 0xfa, 0x59, 0x34, 0xf7, 0x1b, 0xc9, 0x18, 0xa3, 0xf7, 0x80, 0x49 +.byte 0x58, 0xe9, 0x22, 0x83, 0x13, 0xa6, 0xc5, 0x20, 0x43, 0x01, 0x3b, 0x84, 0xf1, 0xe6, 0x85, 0x49 +.byte 0x9f, 0x27, 0xea, 0xf6, 0x84, 0x1b, 0x4e, 0xa0, 0xb4, 0xdb, 0x70, 0x98, 0xc7, 0x32, 0x01, 0xb1 +.byte 0x05, 0x3e, 0x07, 0x4e, 0xee, 0xf4, 0xfa, 0x4f, 0x2f, 0x59, 0x30, 0x22, 0xe7, 0xab, 0x19, 0x56 +.byte 0x6b, 0xe2, 0x80, 0x07, 0xfc, 0xf3, 0x16, 0x75, 0x80, 0x39, 0x51, 0x7b, 0xe5, 0xf9, 0x35, 0xb6 +.byte 0x74, 0x4e, 0xa9, 0x8d, 0x82, 0x13, 0xe4, 0xb6, 0x3f, 0xa9, 0x03, 0x83, 0xfa, 0xa2, 0xbe, 0x8a +.byte 0x15, 0x6a, 0x7f, 0xde, 0x0b, 0xc3, 0xb6, 0x19, 0x14, 0x05, 0xca, 0xea, 0xc3, 0xa8, 0x04, 0x94 +.byte 0x3b, 0x46, 0x7c, 0x32, 0x0d, 0xf3, 0x00, 0x66, 0x22, 0xc8, 0x8d, 0x69, 0x6d, 0x36, 0x8c, 0x11 +.byte 0x18, 0xb7, 0xd3, 0xb2, 0x1c, 0x60, 0xb4, 0x38, 0xfa, 0x02, 0x8c, 0xce, 0xd3, 0xdd, 0x46, 0x07 +.byte 0xde, 0x0a, 0x3e, 0xeb, 0x5d, 0x7c, 0xc8, 0x7c, 0xfb, 0xb0, 0x2b, 0x53, 0xa4, 0x92, 0x62, 0x69 +.byte 0x51, 0x25, 0x05, 0x61, 0x1a, 0x44, 0x81, 0x8c, 0x2c, 0xa9, 0x43, 0x96, 0x23, 0xdf, 0xac, 0x3a +.byte 0x81, 0x9a, 0x0e, 0x29, 0xc5, 0x1c, 0xa9, 0xe9, 0x5d, 0x1e, 0xb6, 0x9e, 0x9e, 0x30, 0x0a, 0x39 +.byte 0xce, 0xf1, 0x88, 0x80, 0xfb, 0x4b, 0x5d, 0xcc, 0x32, 0xec, 0x85, 0x62, 0x43, 0x25, 0x34, 0x02 +.byte 0x56, 0x27, 0x01, 0x91, 0xb4, 0x3b, 0x70, 0x2a, 0x3f, 0x6e, 0xb1, 0xe8, 0x9c, 0x88, 0x01, 0x7d +.byte 0x9f, 0xd4, 0xf9, 0xdb, 0x53, 0x6d, 0x60, 0x9d, 0xbf, 0x2c, 0xe7, 0x58, 0xab, 0xb8, 0x5f, 0x46 +.byte 0xfc, 0xce, 0xc4, 0x1b, 0x03, 0x3c, 0x09, 0xeb, 0x49, 0x31, 0x5c, 0x69, 0x46, 0xb3, 0xe0, 0x47 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x87, 0x00, 0x26, 0x02, 0x30, 0x81, 0x84, 0x31, 0x12, 0x30, 0x10 +.byte 0x06, 0x03, 0x55, 0x04, 0x05, 0x13, 0x09, 0x47, 0x36, 0x33, 0x32, 0x38, 0x37, 0x35, 0x31, 0x30 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1e, 0x41, 0x4e, 0x46, 0x20, 0x41, 0x75, 0x74, 0x6f +.byte 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x0b, 0x41, 0x4e, 0x46, 0x20, 0x43, 0x41, 0x20, 0x52, 0x61, 0x69, 0x7a, 0x31, 0x22, 0x30, 0x20 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x41, 0x4e, 0x46, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72 +.byte 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.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, 0xdb, 0xeb, 0x6b, 0x2b, 0xe6, 0x64, 0x54, 0x95, 0x82, 0x90, 0xa3, 0x72, 0xa4, 0x19, 0x01 +.byte 0x9d, 0x9c, 0x0b, 0x81, 0x5f, 0x73, 0x49, 0xba, 0xa7, 0xac, 0xf3, 0x04, 0x4e, 0x7b, 0x96, 0x0b +.byte 0xec, 0x11, 0xe0, 0x5b, 0xa6, 0x1c, 0xce, 0x1b, 0xd2, 0x0d, 0x83, 0x1c, 0x2b, 0xb8, 0x9e, 0x1d +.byte 0x7e, 0x45, 0x32, 0x60, 0x0f, 0x07, 0xe9, 0x77, 0x58, 0x7e, 0x9f, 0x6a, 0xc8, 0x61, 0x4e, 0xb6 +.byte 0x26, 0xc1, 0x4c, 0x8d, 0xff, 0x4c, 0xef, 0x34, 0xb2, 0x1f, 0x65, 0xd8, 0xb9, 0x78, 0xf5, 0xad +.byte 0xa9, 0x71, 0xb9, 0xef, 0x4f, 0x58, 0x1d, 0xa5, 0xde, 0x74, 0x20, 0x97, 0xa1, 0xed, 0x68, 0x4c +.byte 0xde, 0x92, 0x17, 0x4b, 0xbc, 0xab, 0xff, 0x65, 0x9a, 0x9e, 0xfb, 0x47, 0xd9, 0x57, 0x72, 0xf3 +.byte 0x09, 0xa1, 0xae, 0x76, 0x44, 0x13, 0x6e, 0x9c, 0x2d, 0x44, 0x39, 0xbc, 0xf9, 0xc7, 0x3b, 0xa4 +.byte 0x58, 0x3d, 0x41, 0xbd, 0xb4, 0xc2, 0x49, 0xa3, 0xc8, 0x0d, 0xd2, 0x97, 0x2f, 0x07, 0x65, 0x52 +.byte 0x00, 0xa7, 0x6e, 0xc8, 0xaf, 0x68, 0xec, 0xf4, 0x14, 0x96, 0xb6, 0x57, 0x1f, 0x56, 0xc3, 0x39 +.byte 0x9f, 0x2b, 0x6d, 0xe4, 0xf3, 0x3e, 0xf6, 0x35, 0x64, 0xda, 0x0c, 0x1c, 0xa1, 0x84, 0x4b, 0x2f +.byte 0x4b, 0x4b, 0xe2, 0x2c, 0x24, 0x9d, 0x6d, 0x93, 0x40, 0xeb, 0xb5, 0x23, 0x8e, 0x32, 0xca, 0x6f +.byte 0x45, 0xd3, 0xa8, 0x89, 0x7b, 0x1e, 0xcf, 0x1e, 0xfa, 0x5b, 0x43, 0x8b, 0xcd, 0xcd, 0xa8, 0x0f +.byte 0x6a, 0xca, 0x0c, 0x5e, 0xb9, 0x9e, 0x47, 0x8f, 0xf0, 0xd9, 0xb6, 0x0a, 0x0b, 0x58, 0x65, 0x17 +.byte 0x33, 0xb9, 0x23, 0xe4, 0x77, 0x19, 0x7d, 0xcb, 0x4a, 0x2e, 0x92, 0x7b, 0x4f, 0x2f, 0x10, 0x77 +.byte 0xb1, 0x8d, 0x2f, 0x68, 0x9c, 0x62, 0xcc, 0xe0, 0x50, 0xf8, 0xec, 0x91, 0xa7, 0x54, 0x4c, 0x57 +.byte 0x09, 0xd5, 0x76, 0x63, 0xc5, 0xe8, 0x65, 0x1e, 0xee, 0x6d, 0x6a, 0xcf, 0x09, 0x9d, 0xfa, 0x7c +.byte 0x4f, 0xad, 0x60, 0x08, 0xfd, 0x56, 0x99, 0x0f, 0x15, 0x2c, 0x7b, 0xa9, 0x80, 0xab, 0x8c, 0x61 +.byte 0x8f, 0x4a, 0x07, 0x76, 0x42, 0xde, 0x3d, 0xf4, 0xdd, 0xb2, 0x24, 0x33, 0x5b, 0xb8, 0xb5, 0xa3 +.byte 0x44, 0xc9, 0xac, 0x7f, 0x77, 0x3c, 0x1d, 0x23, 0xec, 0x82, 0xa9, 0xa6, 0xe2, 0xc8, 0x06, 0x4c +.byte 0x02, 0xfe, 0xac, 0x5c, 0x99, 0x99, 0x0b, 0x2f, 0x10, 0x8a, 0xa6, 0xf4, 0x7f, 0xd5, 0x87, 0x74 +.byte 0x0d, 0x59, 0x49, 0x45, 0xf6, 0xf0, 0x71, 0x5c, 0x39, 0x29, 0xd6, 0xbf, 0x4a, 0x23, 0x8b, 0xf5 +.byte 0x5f, 0x01, 0x63, 0xd2, 0x87, 0x73, 0x28, 0xb5, 0x4b, 0x0a, 0xf5, 0xf8, 0xab, 0x82, 0x2c, 0x7e +.byte 0x73, 0x25, 0x32, 0x1d, 0x0b, 0x63, 0x0a, 0x17, 0x81, 0x00, 0xff, 0xb6, 0x76, 0x5e, 0xe7, 0xb4 +.byte 0xb1, 0x40, 0xca, 0x21, 0xbb, 0xd5, 0x80, 0x51, 0xe5, 0x48, 0x52, 0x67, 0x2c, 0xd2, 0x61, 0x89 +.byte 0x07, 0x0d, 0x0f, 0xce, 0x42, 0x77, 0xc0, 0x44, 0x73, 0x9c, 0x44, 0x50, 0xa0, 0xdb, 0x10, 0x0a +.byte 0x2d, 0x95, 0x1c, 0x81, 0xaf, 0xe4, 0x1c, 0xe5, 0x14, 0x1e, 0xf1, 0x36, 0x41, 0x01, 0x02, 0x2f +.byte 0x7d, 0x73, 0xa7, 0xde, 0x42, 0xcc, 0x4c, 0xe9, 0x89, 0x0d, 0x56, 0xf7, 0x9f, 0x91, 0xd4, 0x03 +.byte 0xc6, 0x6c, 0xc9, 0x8f, 0xdb, 0xd8, 0x1c, 0xe0, 0x40, 0x98, 0x5d, 0x66, 0x99, 0x98, 0x80, 0x6e +.byte 0x2d, 0xff, 0x01, 0xc5, 0xce, 0xcb, 0x46, 0x1f, 0xac, 0x02, 0xc6, 0x43, 0xe6, 0xae, 0xa2, 0x84 +.byte 0x3c, 0xc5, 0x4e, 0x1e, 0x3d, 0x6d, 0xc9, 0x14, 0x4c, 0xe3, 0x2e, 0x41, 0xbb, 0xca, 0x39, 0xbf +.byte 0x36, 0x3c, 0x2a, 0x19, 0xaa, 0x41, 0x87, 0x4e, 0xa5, 0xce, 0x4b, 0x32, 0x79, 0xdd, 0x90, 0x49 +.byte 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x88, 0x00, 0x78, 0x00, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03 +.byte 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e +.byte 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07 +.byte 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69 +.byte 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22 +.byte 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x45, 0x43, 0x43, 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, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x03, 0x47, 0x7b, 0x2f, 0x75, 0xc9 +.byte 0x82, 0x15, 0x85, 0xfb, 0x75, 0xe4, 0x91, 0x16, 0xd4, 0xab, 0x62, 0x99, 0xf5, 0x3e, 0x52, 0x0b +.byte 0x06, 0xce, 0x41, 0x00, 0x7f, 0x97, 0xe1, 0x0a, 0x24, 0x3c, 0x1d, 0x01, 0x04, 0xee, 0x3d, 0xd2 +.byte 0x8d, 0x09, 0x97, 0x0c, 0xe0, 0x75, 0xe4, 0xfa, 0xfb, 0x77, 0x8a, 0x2a, 0xf5, 0x03, 0x60, 0x4b +.byte 0x36, 0x8b, 0x16, 0x23, 0x16, 0xad, 0x09, 0x71, 0xf4, 0x4a, 0xf4, 0x28, 0x50, 0xb4, 0xfe, 0x88 +.byte 0x1c, 0x6e, 0x3f, 0x6c, 0x2f, 0x2f, 0x09, 0x59, 0x5b, 0xa5, 0x5b, 0x0b, 0x33, 0x99, 0xe2, 0xc3 +.byte 0x3d, 0x89, 0xf9, 0x6a, 0x2c, 0xef, 0xb2, 0xd3, 0x06, 0xe9, 0x88, 0x00, 0x26, 0x02, 0x30, 0x81 +.byte 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b +.byte 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72 +.byte 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30 +.byte 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43 +.byte 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x52, 0x53, 0x41, 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, 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, 0x91, 0xe8, 0x54, 0x92, 0xd2, 0x0a, 0x56, 0xb1, 0xac +.byte 0x0d, 0x24, 0xdd, 0xc5, 0xcf, 0x44, 0x67, 0x74, 0x99, 0x2b, 0x37, 0xa3, 0x7d, 0x23, 0x70, 0x00 +.byte 0x71, 0xbc, 0x53, 0xdf, 0xc4, 0xfa, 0x2a, 0x12, 0x8f, 0x4b, 0x7f, 0x10, 0x56, 0xbd, 0x9f, 0x70 +.byte 0x72, 0xb7, 0x61, 0x7f, 0xc9, 0x4b, 0x0f, 0x17, 0xa7, 0x3d, 0xe3, 0xb0, 0x04, 0x61, 0xee, 0xff +.byte 0x11, 0x97, 0xc7, 0xf4, 0x86, 0x3e, 0x0a, 0xfa, 0x3e, 0x5c, 0xf9, 0x93, 0xe6, 0x34, 0x7a, 0xd9 +.byte 0x14, 0x6b, 0xe7, 0x9c, 0xb3, 0x85, 0xa0, 0x82, 0x7a, 0x76, 0xaf, 0x71, 0x90, 0xd7, 0xec, 0xfd +.byte 0x0d, 0xfa, 0x9c, 0x6c, 0xfa, 0xdf, 0xb0, 0x82, 0xf4, 0x14, 0x7e, 0xf9, 0xbe, 0xc4, 0xa6, 0x2f +.byte 0x4f, 0x7f, 0x99, 0x7f, 0xb5, 0xfc, 0x67, 0x43, 0x72, 0xbd, 0x0c, 0x00, 0xd6, 0x89, 0xeb, 0x6b +.byte 0x2c, 0xd3, 0xed, 0x8f, 0x98, 0x1c, 0x14, 0xab, 0x7e, 0xe5, 0xe3, 0x6e, 0xfc, 0xd8, 0xa8, 0xe4 +.byte 0x92, 0x24, 0xda, 0x43, 0x6b, 0x62, 0xb8, 0x55, 0xfd, 0xea, 0xc1, 0xbc, 0x6c, 0xb6, 0x8b, 0xf3 +.byte 0x0e, 0x8d, 0x9a, 0xe4, 0x9b, 0x6c, 0x69, 0x99, 0xf8, 0x78, 0x48, 0x30, 0x45, 0xd5, 0xad, 0xe1 +.byte 0x0d, 0x3c, 0x45, 0x60, 0xfc, 0x32, 0x96, 0x51, 0x27, 0xbc, 0x67, 0xc3, 0xca, 0x2e, 0xb6, 0x6b +.byte 0xea, 0x46, 0xc7, 0xc7, 0x20, 0xa0, 0xb1, 0x1f, 0x65, 0xde, 0x48, 0x08, 0xba, 0xa4, 0x4e, 0xa9 +.byte 0xf2, 0x83, 0x46, 0x37, 0x84, 0xeb, 0xe8, 0xcc, 0x81, 0x48, 0x43, 0x67, 0x4e, 0x72, 0x2a, 0x9b +.byte 0x5c, 0xbd, 0x4c, 0x1b, 0x28, 0x8a, 0x5c, 0x22, 0x7b, 0xb4, 0xab, 0x98, 0xd9, 0xee, 0xe0, 0x51 +.byte 0x83, 0xc3, 0x09, 0x46, 0x4e, 0x6d, 0x3e, 0x99, 0xfa, 0x95, 0x17, 0xda, 0x7c, 0x33, 0x57, 0x41 +.byte 0x3c, 0x8d, 0x51, 0xed, 0x0b, 0xb6, 0x5c, 0xaf, 0x2c, 0x63, 0x1a, 0xdf, 0x57, 0xc8, 0x3f, 0xbc +.byte 0xe9, 0x5d, 0xc4, 0x9b, 0xaf, 0x45, 0x99, 0xe2, 0xa3, 0x5a, 0x24, 0xb4, 0xba, 0xa9, 0x56, 0x3d +.byte 0xcf, 0x6f, 0xaa, 0xff, 0x49, 0x58, 0xbe, 0xf0, 0xa8, 0xff, 0xf4, 0xb8, 0xad, 0xe9, 0x37, 0xfb +.byte 0xba, 0xb8, 0xf4, 0x0b, 0x3a, 0xf9, 0xe8, 0x43, 0x42, 0x1e, 0x89, 0xd8, 0x84, 0xcb, 0x13, 0xf1 +.byte 0xd9, 0xbb, 0xe1, 0x89, 0x60, 0xb8, 0x8c, 0x28, 0x56, 0xac, 0x14, 0x1d, 0x9c, 0x0a, 0xe7, 0x71 +.byte 0xeb, 0xcf, 0x0e, 0xdd, 0x3d, 0xa9, 0x96, 0xa1, 0x48, 0xbd, 0x3c, 0xf7, 0xaf, 0xb5, 0x0d, 0x22 +.byte 0x4c, 0xc0, 0x11, 0x81, 0xec, 0x56, 0x3b, 0xf6, 0xd3, 0xa2, 0xe2, 0x5b, 0xb7, 0xb2, 0x04, 0x22 +.byte 0x52, 0x95, 0x80, 0x93, 0x69, 0xe8, 0x8e, 0x4c, 0x65, 0xf1, 0x91, 0x03, 0x2d, 0x70, 0x74, 0x02 +.byte 0xea, 0x8b, 0x67, 0x15, 0x29, 0x69, 0x52, 0x02, 0xbb, 0xd7, 0xdf, 0x50, 0x6a, 0x55, 0x46, 0xbf +.byte 0xa0, 0xa3, 0x28, 0x61, 0x7f, 0x70, 0xd0, 0xc3, 0xa2, 0xaa, 0x2c, 0x21, 0xaa, 0x47, 0xce, 0x28 +.byte 0x9c, 0x06, 0x45, 0x76, 0xbf, 0x82, 0x18, 0x27, 0xb4, 0xd5, 0xae, 0xb4, 0xcb, 0x50, 0xe6, 0x6b +.byte 0xf4, 0x4c, 0x86, 0x71, 0x30, 0xe9, 0xa6, 0xdf, 0x16, 0x86, 0xe0, 0xd8, 0xff, 0x40, 0xdd, 0xfb +.byte 0xd0, 0x42, 0x88, 0x7f, 0xa3, 0x33, 0x3a, 0x2e, 0x5c, 0x1e, 0x41, 0x11, 0x81, 0x63, 0xce, 0x18 +.byte 0x71, 0x6b, 0x2b, 0xec, 0xa6, 0x8a, 0xb7, 0x31, 0x5c, 0x3a, 0x6a, 0x47, 0xe0, 0xc3, 0x79, 0x59 +.byte 0xd6, 0x20, 0x1a, 0xaf, 0xf2, 0x6a, 0x98, 0xaa, 0x72, 0xbc, 0x57, 0x4a, 0xd2, 0x4b, 0x9d, 0xbb +.byte 0x10, 0xfc, 0xb0, 0x4c, 0x41, 0xe5, 0xed, 0x1d, 0x3d, 0x5e, 0x28, 0x9d, 0x9c, 0xcc, 0xbf, 0xb3 +.byte 0x51, 0xda, 0xa7, 0x47, 0xe5, 0x84, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x8b, 0x00, 0x26, 0x02 +.byte 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e +.byte 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x43, 0x68 +.byte 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x18 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e +.byte 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x28, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 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, 0xb9, 0x5d, 0x51, 0x28 +.byte 0x4b, 0x3c, 0x37, 0x92, 0xd1, 0x82, 0xce, 0xbd, 0x1d, 0xbd, 0xcd, 0xdd, 0xb8, 0xab, 0xcf, 0x0a +.byte 0x3e, 0xe1, 0x5d, 0xe5, 0xdc, 0xaa, 0x09, 0xb9, 0x57, 0x02, 0x3e, 0xe6, 0x63, 0x61, 0xdf, 0xf2 +.byte 0x0f, 0x82, 0x63, 0xae, 0xa3, 0xf7, 0xac, 0x73, 0xd1, 0x7c, 0xe7, 0xb3, 0x0b, 0xaf, 0x08, 0x00 +.byte 0x09, 0x59, 0x7f, 0xcd, 0x29, 0x2a, 0x88, 0x93, 0x87, 0x17, 0x18, 0x80, 0xed, 0x88, 0xb2, 0xb4 +.byte 0xb6, 0x10, 0x1f, 0x2d, 0xd6, 0x5f, 0x55, 0xa2, 0x13, 0x5d, 0xd1, 0xc6, 0xeb, 0x06, 0x56, 0x89 +.byte 0x88, 0xfe, 0xac, 0x32, 0x9d, 0xfd, 0x5c, 0xc3, 0x05, 0xc7, 0x6e, 0xee, 0x86, 0x89, 0xba, 0x88 +.byte 0x03, 0x9d, 0x72, 0x21, 0x86, 0x90, 0xae, 0x8f, 0x03, 0xa5, 0xdc, 0x9f, 0x88, 0x28, 0xcb, 0xa3 +.byte 0x92, 0x49, 0x0f, 0xec, 0xd0, 0x0f, 0xe2, 0x6d, 0x44, 0x4f, 0x80, 0x6a, 0xb2, 0xd4, 0xe7, 0xa0 +.byte 0x0a, 0x53, 0x01, 0xba, 0x8e, 0x97, 0x91, 0x76, 0x6e, 0xbc, 0xfc, 0xd5, 0x6b, 0x36, 0xe6, 0x40 +.byte 0x88, 0xd6, 0x7b, 0x2f, 0x5f, 0x05, 0xe8, 0x2c, 0x6d, 0x11, 0xf3, 0xe7, 0xb2, 0xbe, 0x92, 0x44 +.byte 0x4c, 0xd2, 0x97, 0xa4, 0xfe, 0xd2, 0x72, 0x81, 0x43, 0x07, 0x9c, 0xe9, 0x11, 0x3e, 0xf5, 0x8b +.byte 0x1a, 0x59, 0x7d, 0x1f, 0x68, 0x58, 0xdd, 0x04, 0x00, 0x2c, 0x96, 0xf3, 0x43, 0xb3, 0x7e, 0x98 +.byte 0x19, 0x74, 0xd9, 0x9c, 0x73, 0xd9, 0x18, 0xbe, 0x41, 0xc7, 0x34, 0x79, 0xd9, 0xf4, 0x62, 0xc2 +.byte 0x43, 0xb9, 0xb3, 0x27, 0xb0, 0x22, 0xcb, 0xf9, 0x3d, 0x52, 0xc7, 0x30, 0x47, 0xb3, 0xc9, 0x3e +.byte 0xb8, 0x6a, 0xe2, 0xe7, 0xe8, 0x81, 0x70, 0x5e, 0x42, 0x8b, 0x4f, 0x26, 0xa5, 0xfe, 0x3a, 0xc2 +.byte 0x20, 0x6e, 0xbb, 0xf8, 0x16, 0x8e, 0xcd, 0x0c, 0xa9, 0xb4, 0x1b, 0x6c, 0x76, 0x10, 0xe1, 0x58 +.byte 0x79, 0x46, 0x3e, 0x54, 0xce, 0x80, 0xa8, 0x57, 0x09, 0x37, 0x29, 0x1b, 0x99, 0x13, 0x8f, 0x0c +.byte 0xc8, 0xd6, 0x2c, 0x1c, 0xfb, 0x05, 0xe8, 0x08, 0x95, 0x3d, 0x65, 0x46, 0xdc, 0xee, 0xcd, 0x69 +.byte 0xe2, 0x4d, 0x8f, 0x87, 0x28, 0x4e, 0x34, 0x0b, 0x3e, 0xcf, 0x14, 0xd9, 0xbb, 0xdd, 0xb6, 0x50 +.byte 0x9a, 0xad, 0x77, 0xd4, 0x19, 0xd6, 0xda, 0x1a, 0x88, 0xc8, 0x4e, 0x1b, 0x27, 0x75, 0xd8, 0xb2 +.byte 0x08, 0xf1, 0xae, 0x83, 0x30, 0xb9, 0x11, 0x0e, 0xcd, 0x87, 0xf0, 0x84, 0x8d, 0x15, 0x72, 0x7c +.byte 0xa1, 0xef, 0xcc, 0xf2, 0x88, 0x61, 0xba, 0xf4, 0x69, 0xbb, 0x0c, 0x8c, 0x0b, 0x75, 0x57, 0x04 +.byte 0xb8, 0x4e, 0x2a, 0x14, 0x2e, 0x3d, 0x0f, 0x1c, 0x1e, 0x32, 0xa6, 0x62, 0x36, 0xee, 0x66, 0xe2 +.byte 0x22, 0xb8, 0x05, 0x40, 0x63, 0x10, 0x22, 0xf3, 0x33, 0x1d, 0x74, 0x72, 0x8a, 0x2c, 0xf5, 0x39 +.byte 0x29, 0xa0, 0xd3, 0xe7, 0x1b, 0x80, 0x84, 0x2d, 0xc5, 0x3d, 0xe3, 0x4d, 0xb1, 0xfd, 0x1a, 0x6f +.byte 0xba, 0x65, 0x07, 0x3b, 0x58, 0xec, 0x42, 0x45, 0x26, 0xfb, 0xd8, 0xda, 0x25, 0x72, 0xc4, 0xf6 +.byte 0x00, 0xb1, 0x22, 0x79, 0xbd, 0xe3, 0x7c, 0x59, 0x62, 0x4a, 0x9c, 0x05, 0x6f, 0x3d, 0xce, 0xe6 +.byte 0xd6, 0x47, 0x63, 0x99, 0xc6, 0x24, 0x6f, 0x72, 0x12, 0xc8, 0xac, 0x7f, 0x90, 0xb4, 0x0b, 0x91 +.byte 0x70, 0xe8, 0xb7, 0xe6, 0x16, 0x10, 0x71, 0x17, 0xce, 0xde, 0x06, 0x4f, 0x48, 0x41, 0x7d, 0x35 +.byte 0x4a, 0xa3, 0x89, 0xf2, 0xc9, 0x4b, 0x7b, 0x41, 0x11, 0x6d, 0x67, 0xb7, 0x08, 0x98, 0x4c, 0xe5 +.byte 0x11, 0x19, 0xae, 0x42, 0x80, 0xdc, 0xfb, 0x90, 0x05, 0xd4, 0xf8, 0x50, 0xca, 0xbe, 0xe4, 0xad +.byte 0xc7, 0xc2, 0x94, 0xd7, 0x16, 0x9d, 0xe6, 0x17, 0x8f, 0xaf, 0x36, 0xfb, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x8b, 0x00, 0x78, 0x00, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a +.byte 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79 +.byte 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55 +.byte 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b +.byte 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 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 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, 0x1a, 0xac, 0x54, 0x5a, 0xa9, 0xf9, 0x68, 0x23 +.byte 0xe7, 0x7a, 0xd5, 0x24, 0x6f, 0x53, 0xc6, 0x5a, 0xd8, 0x4b, 0xab, 0xc6, 0xd5, 0xb6, 0xd1, 0xe6 +.byte 0x73, 0x71, 0xae, 0xdd, 0x9c, 0xd6, 0x0c, 0x61, 0xfd, 0xdb, 0xa0, 0x89, 0x03, 0xb8, 0x05, 0x14 +.byte 0xec, 0x57, 0xce, 0xee, 0x5d, 0x3f, 0xe2, 0x21, 0xb3, 0xce, 0xf7, 0xd4, 0x8a, 0x79, 0xe0, 0xa3 +.byte 0x83, 0x7e, 0x2d, 0x97, 0xd0, 0x61, 0xc4, 0xf1, 0x99, 0xdc, 0x25, 0x91, 0x63, 0xab, 0x7f, 0x30 +.byte 0xa3, 0xb4, 0x70, 0xe2, 0xc7, 0xa1, 0x33, 0x9c, 0xf3, 0xbf, 0x2e, 0x5c, 0x53, 0xb1, 0x5f, 0xb3 +.byte 0x7d, 0x32, 0x7f, 0x8a, 0x34, 0xe3, 0x79, 0x79, 0x8b, 0x00, 0x26, 0x02, 0x30, 0x81, 0x88, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11 +.byte 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65 +.byte 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73 +.byte 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20 +.byte 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x53, 0x41, 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, 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, 0x80, 0x12, 0x65, 0x17, 0x36, 0x0e, 0xc3, 0xdb +.byte 0x08, 0xb3, 0xd0, 0xac, 0x57, 0x0d, 0x76, 0xed, 0xcd, 0x27, 0xd3, 0x4c, 0xad, 0x50, 0x83, 0x61 +.byte 0xe2, 0xaa, 0x20, 0x4d, 0x09, 0x2d, 0x64, 0x09, 0xdc, 0xce, 0x89, 0x9f, 0xcc, 0x3d, 0xa9, 0xec +.byte 0xf6, 0xcf, 0xc1, 0xdc, 0xf1, 0xd3, 0xb1, 0xd6, 0x7b, 0x37, 0x28, 0x11, 0x2b, 0x47, 0xda, 0x39 +.byte 0xc6, 0xbc, 0x3a, 0x19, 0xb4, 0x5f, 0xa6, 0xbd, 0x7d, 0x9d, 0xa3, 0x63, 0x42, 0xb6, 0x76, 0xf2 +.byte 0xa9, 0x3b, 0x2b, 0x91, 0xf8, 0xe2, 0x6f, 0xd0, 0xec, 0x16, 0x20, 0x90, 0x09, 0x3e, 0xe2, 0xe8 +.byte 0x74, 0xc9, 0x18, 0xb4, 0x91, 0xd4, 0x62, 0x64, 0xdb, 0x7f, 0xa3, 0x06, 0xf1, 0x88, 0x18, 0x6a +.byte 0x90, 0x22, 0x3c, 0xbc, 0xfe, 0x13, 0xf0, 0x87, 0x14, 0x7b, 0xf6, 0xe4, 0x1f, 0x8e, 0xd4, 0xe4 +.byte 0x51, 0xc6, 0x11, 0x67, 0x46, 0x08, 0x51, 0xcb, 0x86, 0x14, 0x54, 0x3f, 0xbc, 0x33, 0xfe, 0x7e +.byte 0x6c, 0x9c, 0xff, 0x16, 0x9d, 0x18, 0xbd, 0x51, 0x8e, 0x35, 0xa6, 0xa7, 0x66, 0xc8, 0x72, 0x67 +.byte 0xdb, 0x21, 0x66, 0xb1, 0xd4, 0x9b, 0x78, 0x03, 0xc0, 0x50, 0x3a, 0xe8, 0xcc, 0xf0, 0xdc, 0xbc +.byte 0x9e, 0x4c, 0xfe, 0xaf, 0x05, 0x96, 0x35, 0x1f, 0x57, 0x5a, 0xb7, 0xff, 0xce, 0xf9, 0x3d, 0xb7 +.byte 0x2c, 0xb6, 0xf6, 0x54, 0xdd, 0xc8, 0xe7, 0x12, 0x3a, 0x4d, 0xae, 0x4c, 0x8a, 0xb7, 0x5c, 0x9a +.byte 0xb4, 0xb7, 0x20, 0x3d, 0xca, 0x7f, 0x22, 0x34, 0xae, 0x7e, 0x3b, 0x68, 0x66, 0x01, 0x44, 0xe7 +.byte 0x01, 0x4e, 0x46, 0x53, 0x9b, 0x33, 0x60, 0xf7, 0x94, 0xbe, 0x53, 0x37, 0x90, 0x73, 0x43, 0xf3 +.byte 0x32, 0xc3, 0x53, 0xef, 0xdb, 0xaa, 0xfe, 0x74, 0x4e, 0x69, 0xc7, 0x6b, 0x8c, 0x60, 0x93, 0xde +.byte 0xc4, 0xc7, 0x0c, 0xdf, 0xe1, 0x32, 0xae, 0xcc, 0x93, 0x3b, 0x51, 0x78, 0x95, 0x67, 0x8b, 0xee +.byte 0x3d, 0x56, 0xfe, 0x0c, 0xd0, 0x69, 0x0f, 0x1b, 0x0f, 0xf3, 0x25, 0x26, 0x6b, 0x33, 0x6d, 0xf7 +.byte 0x6e, 0x47, 0xfa, 0x73, 0x43, 0xe5, 0x7e, 0x0e, 0xa5, 0x66, 0xb1, 0x29, 0x7c, 0x32, 0x84, 0x63 +.byte 0x55, 0x89, 0xc4, 0x0d, 0xc1, 0x93, 0x54, 0x30, 0x19, 0x13, 0xac, 0xd3, 0x7d, 0x37, 0xa7, 0xeb +.byte 0x5d, 0x3a, 0x6c, 0x35, 0x5c, 0xdb, 0x41, 0xd7, 0x12, 0xda, 0xa9, 0x49, 0x0b, 0xdf, 0xd8, 0x80 +.byte 0x8a, 0x09, 0x93, 0x62, 0x8e, 0xb5, 0x66, 0xcf, 0x25, 0x88, 0xcd, 0x84, 0xb8, 0xb1, 0x3f, 0xa4 +.byte 0x39, 0x0f, 0xd9, 0x02, 0x9e, 0xeb, 0x12, 0x4c, 0x95, 0x7c, 0xf3, 0x6b, 0x05, 0xa9, 0x5e, 0x16 +.byte 0x83, 0xcc, 0xb8, 0x67, 0xe2, 0xe8, 0x13, 0x9d, 0xcc, 0x5b, 0x82, 0xd3, 0x4c, 0xb3, 0xed, 0x5b +.byte 0xff, 0xde, 0xe5, 0x73, 0xac, 0x23, 0x3b, 0x2d, 0x00, 0xbf, 0x35, 0x55, 0x74, 0x09, 0x49, 0xd8 +.byte 0x49, 0x58, 0x1a, 0x7f, 0x92, 0x36, 0xe6, 0x51, 0x92, 0x0e, 0xf3, 0x26, 0x7d, 0x1c, 0x4d, 0x17 +.byte 0xbc, 0xc9, 0xec, 0x43, 0x26, 0xd0, 0xbf, 0x41, 0x5f, 0x40, 0xa9, 0x44, 0x44, 0xf4, 0x99, 0xe7 +.byte 0x57, 0x87, 0x9e, 0x50, 0x1f, 0x57, 0x54, 0xa8, 0x3e, 0xfd, 0x74, 0x63, 0x2f, 0xb1, 0x50, 0x65 +.byte 0x09, 0xe6, 0x58, 0x42, 0x2e, 0x43, 0x1a, 0x4c, 0xb4, 0xf0, 0x25, 0x47, 0x59, 0xfa, 0x04, 0x1e +.byte 0x93, 0xd4, 0x26, 0x46, 0x4a, 0x50, 0x81, 0xb2, 0xde, 0xbe, 0x78, 0xb7, 0xfc, 0x67, 0x15, 0xe1 +.byte 0xc9, 0x57, 0x84, 0x1e, 0x0f, 0x63, 0xd6, 0xe9, 0x62, 0xba, 0xd6, 0x5f, 0x55, 0x2e, 0xea, 0x5c +.byte 0xc6, 0x28, 0x08, 0x04, 0x25, 0x39, 0xb8, 0x0e, 0x2b, 0xa9, 0xf2, 0x4c, 0x97, 0x1c, 0x07, 0x3f +.byte 0x0d, 0x52, 0xf5, 0xed, 0xef, 0x2f, 0x82, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x92, 0x00, 0x26 +.byte 0x01, 0x30, 0x81, 0x8f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a +.byte 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63 +.byte 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63 +.byte 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31 +.byte 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69 +.byte 0x65, 0x6c, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d +.byte 0x20, 0x47, 0x32, 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, 0xbd, 0xed, 0xc1, 0x03, 0xfc, 0xf6, 0x8f, 0xfc, 0x02, 0xb1, 0x6f, 0x5b +.byte 0x9f, 0x48, 0xd9, 0x9d, 0x79, 0xe2, 0xa2, 0xb7, 0x03, 0x61, 0x56, 0x18, 0xc3, 0x47, 0xb6, 0xd7 +.byte 0xca, 0x3d, 0x35, 0x2e, 0x89, 0x43, 0xf7, 0xa1, 0x69, 0x9b, 0xde, 0x8a, 0x1a, 0xfd, 0x13, 0x20 +.byte 0x9c, 0xb4, 0x49, 0x77, 0x32, 0x29, 0x56, 0xfd, 0xb9, 0xec, 0x8c, 0xdd, 0x22, 0xfa, 0x72, 0xdc +.byte 0x27, 0x61, 0x97, 0xee, 0xf6, 0x5a, 0x84, 0xec, 0x6e, 0x19, 0xb9, 0x89, 0x2c, 0xdc, 0x84, 0x5b +.byte 0xd5, 0x74, 0xfb, 0x6b, 0x5f, 0xc5, 0x89, 0xa5, 0x10, 0x52, 0x89, 0x46, 0x55, 0xf4, 0xb8, 0x75 +.byte 0x1c, 0xe6, 0x7f, 0xe4, 0x54, 0xae, 0x4b, 0xf8, 0x55, 0x72, 0x57, 0x02, 0x19, 0xf8, 0x17, 0x71 +.byte 0x59, 0xeb, 0x1e, 0x28, 0x07, 0x74, 0xc5, 0x9d, 0x48, 0xbe, 0x6c, 0xb4, 0xf4, 0xa4, 0xb0, 0xf3 +.byte 0x64, 0x37, 0x79, 0x92, 0xc0, 0xec, 0x46, 0x5e, 0x7f, 0xe1, 0x6d, 0x53, 0x4c, 0x62, 0xaf, 0xcd +.byte 0x1f, 0x0b, 0x63, 0xbb, 0x3a, 0x9d, 0xfb, 0xfc, 0x79, 0x00, 0x98, 0x61, 0x74, 0xcf, 0x26, 0x82 +.byte 0x40, 0x63, 0xf3, 0xb2, 0x72, 0x6a, 0x19, 0x0d, 0x99, 0xca, 0xd4, 0x0e, 0x75, 0xcc, 0x37, 0xfb +.byte 0x8b, 0x89, 0xc1, 0x59, 0xf1, 0x62, 0x7f, 0x5f, 0xb3, 0x5f, 0x65, 0x30, 0xf8, 0xa7, 0xb7, 0x4d +.byte 0x76, 0x5a, 0x1e, 0x76, 0x5e, 0x34, 0xc0, 0xe8, 0x96, 0x56, 0x99, 0x8a, 0xb3, 0xf0, 0x7f, 0xa4 +.byte 0xcd, 0xbd, 0xdc, 0x32, 0x31, 0x7c, 0x91, 0xcf, 0xe0, 0x5f, 0x11, 0xf8, 0x6b, 0xaa, 0x49, 0x5c +.byte 0xd1, 0x99, 0x94, 0xd1, 0xa2, 0xe3, 0x63, 0x5b, 0x09, 0x76, 0xb5, 0x56, 0x62, 0xe1, 0x4b, 0x74 +.byte 0x1d, 0x96, 0xd4, 0x26, 0xd4, 0x08, 0x04, 0x59, 0xd0, 0x98, 0x0e, 0x0e, 0xe6, 0xde, 0xfc, 0xc3 +.byte 0xec, 0x1f, 0x90, 0xf1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x94, 0x00, 0x5b, 0x00, 0x30, 0x81, 0x91 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x11, 0x30 +.byte 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73 +.byte 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x43, 0x68, 0x69, 0x63, 0x61 +.byte 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c +.byte 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x31 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x32, 0x35, 0x36, 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, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08 +.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x7e, 0xfb, 0x6c, 0xe6 +.byte 0x23, 0xe3, 0x73, 0x32, 0x08, 0xca, 0x60, 0xe6, 0x53, 0x9c, 0xba, 0x74, 0x8d, 0x18, 0xb0, 0x78 +.byte 0x90, 0x52, 0x80, 0xdd, 0x38, 0xc0, 0x4a, 0x1d, 0xd1, 0xa8, 0xcc, 0x93, 0xa4, 0x97, 0x06, 0x38 +.byte 0xca, 0x0d, 0x15, 0x62, 0xc6, 0x8e, 0x01, 0x2a, 0x65, 0x9d, 0xaa, 0xdf, 0x34, 0x91, 0x2e, 0x81 +.byte 0xc1, 0xe4, 0x33, 0x92, 0x31, 0xc4, 0xfd, 0x09, 0x3a, 0xa6, 0x3f, 0xad, 0x94, 0x00, 0x78, 0x00 +.byte 0x30, 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e +.byte 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x43, 0x68 +.byte 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e +.byte 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 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, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02 +.byte 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x6b, 0xda, 0x0d, 0x75 +.byte 0x35, 0x08, 0x31, 0x47, 0x05, 0xae, 0x45, 0x99, 0x55, 0xf1, 0x11, 0x13, 0x2e, 0x4a, 0xf8, 0x10 +.byte 0x31, 0x23, 0xa3, 0x7e, 0x83, 0xd3, 0x7f, 0x28, 0x08, 0x3a, 0x26, 0x1a, 0x3a, 0xcf, 0x97, 0x82 +.byte 0x1f, 0x80, 0xb7, 0x27, 0x09, 0x8f, 0xd1, 0x8e, 0x30, 0xc4, 0x0a, 0x9b, 0x0e, 0xac, 0x58, 0x04 +.byte 0xab, 0xf7, 0x36, 0x7d, 0x94, 0x23, 0xa4, 0x9b, 0x0a, 0x8a, 0x8b, 0xab, 0xeb, 0xfd, 0x39, 0x25 +.byte 0x66, 0xf1, 0x5e, 0xfe, 0x8c, 0xae, 0x8d, 0x41, 0x79, 0x9d, 0x09, 0x60, 0xce, 0x28, 0xa9, 0xd3 +.byte 0x8a, 0x6d, 0xf3, 0xd6, 0x45, 0xd4, 0xf2, 0x98, 0x84, 0x38, 0x65, 0xa0, 0x9b, 0x00, 0x26, 0x01 +.byte 0x30, 0x81, 0x98, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f +.byte 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f +.byte 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68 +.byte 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3b +.byte 0x30, 0x39, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x32, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65 +.byte 0x6c, 0x64, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 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, 0xd5, 0x0c, 0x3a, 0xc4 +.byte 0x2a, 0xf9, 0x4e, 0xe2, 0xf5, 0xbe, 0x19, 0x97, 0x5f, 0x8e, 0x88, 0x53, 0xb1, 0x1f, 0x3f, 0xcb +.byte 0xcf, 0x9f, 0x20, 0x13, 0x6d, 0x29, 0x3a, 0xc8, 0x0f, 0x7d, 0x3c, 0xf7, 0x6b, 0x76, 0x38, 0x63 +.byte 0xd9, 0x36, 0x60, 0xa8, 0x9b, 0x5e, 0x5c, 0x00, 0x80, 0xb2, 0x2f, 0x59, 0x7f, 0xf6, 0x87, 0xf9 +.byte 0x25, 0x43, 0x86, 0xe7, 0x69, 0x1b, 0x52, 0x9a, 0x90, 0xe1, 0x71, 0xe3, 0xd8, 0x2d, 0x0d, 0x4e +.byte 0x6f, 0xf6, 0xc8, 0x49, 0xd9, 0xb6, 0xf3, 0x1a, 0x56, 0xae, 0x2b, 0xb6, 0x74, 0x14, 0xeb, 0xcf +.byte 0xfb, 0x26, 0xe3, 0x1a, 0xba, 0x1d, 0x96, 0x2e, 0x6a, 0x3b, 0x58, 0x94, 0x89, 0x47, 0x56, 0xff +.byte 0x25, 0xa0, 0x93, 0x70, 0x53, 0x83, 0xda, 0x84, 0x74, 0x14, 0xc3, 0x67, 0x9e, 0x04, 0x68, 0x3a +.byte 0xdf, 0x8e, 0x40, 0x5a, 0x1d, 0x4a, 0x4e, 0xcf, 0x43, 0x91, 0x3b, 0xe7, 0x56, 0xd6, 0x00, 0x70 +.byte 0xcb, 0x52, 0xee, 0x7b, 0x7d, 0xae, 0x3a, 0xe7, 0xbc, 0x31, 0xf9, 0x45, 0xf6, 0xc2, 0x60, 0xcf +.byte 0x13, 0x59, 0x02, 0x2b, 0x80, 0xcc, 0x34, 0x47, 0xdf, 0xb9, 0xde, 0x90, 0x65, 0x6d, 0x02, 0xcf +.byte 0x2c, 0x91, 0xa6, 0xa6, 0xe7, 0xde, 0x85, 0x18, 0x49, 0x7c, 0x66, 0x4e, 0xa3, 0x3a, 0x6d, 0xa9 +.byte 0xb5, 0xee, 0x34, 0x2e, 0xba, 0x0d, 0x03, 0xb8, 0x33, 0xdf, 0x47, 0xeb, 0xb1, 0x6b, 0x8d, 0x25 +.byte 0xd9, 0x9b, 0xce, 0x81, 0xd1, 0x45, 0x46, 0x32, 0x96, 0x70, 0x87, 0xde, 0x02, 0x0e, 0x49, 0x43 +.byte 0x85, 0xb6, 0x6c, 0x73, 0xbb, 0x64, 0xea, 0x61, 0x41, 0xac, 0xc9, 0xd4, 0x54, 0xdf, 0x87, 0x2f +.byte 0xc7, 0x22, 0xb2, 0x26, 0xcc, 0x9f, 0x59, 0x54, 0x68, 0x9f, 0xfc, 0xbe, 0x2a, 0x2f, 0xc4, 0x55 +.byte 0x1c, 0x75, 0x40, 0x60, 0x17, 0x85, 0x02, 0x55, 0x39, 0x8b, 0x7f, 0x05, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0xa9, 0x00, 0x26, 0x02, 0x30, 0x81, 0xa6, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06 +.byte 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d +.byte 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20 +.byte 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x40, 0x30, 0x3e +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x37, 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, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x35, 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, 0xc2 +.byte 0xf8, 0xa9, 0x3f, 0x1b, 0x89, 0xfc, 0x3c, 0x3c, 0x04, 0x5d, 0x3d, 0x90, 0x36, 0xb0, 0x91, 0x3a +.byte 0x79, 0x3c, 0x66, 0x5a, 0xef, 0x6d, 0x39, 0x01, 0x49, 0x1a, 0xb4, 0xb7, 0xcf, 0x7f, 0x4d, 0x23 +.byte 0x53, 0xb7, 0x90, 0x00, 0xe3, 0x13, 0x2a, 0x28, 0xa6, 0x31, 0xf1, 0x91, 0x00, 0xe3, 0x28, 0xec +.byte 0xae, 0x21, 0x41, 0xce, 0x1f, 0xda, 0xfd, 0x7d, 0x12, 0x5b, 0x01, 0x83, 0x0f, 0xb9, 0xb0, 0x5f +.byte 0x99, 0xe1, 0xf2, 0x12, 0x83, 0x80, 0x4d, 0x06, 0x3e, 0xdf, 0xac, 0xaf, 0xe7, 0xa1, 0x88, 0x6b +.byte 0x31, 0xaf, 0xf0, 0x8b, 0xd0, 0x18, 0x33, 0xb8, 0xdb, 0x45, 0x6a, 0x34, 0xf4, 0x02, 0x80, 0x24 +.byte 0x28, 0x0a, 0x02, 0x15, 0x95, 0x5e, 0x76, 0x2a, 0x0d, 0x99, 0x3a, 0x14, 0x5b, 0xf6, 0xcb, 0xcb +.byte 0x53, 0xbc, 0x13, 0x4d, 0x01, 0x88, 0x37, 0x94, 0x25, 0x1b, 0x42, 0xbc, 0x22, 0xd8, 0x8e, 0xa3 +.byte 0x96, 0x5e, 0x3a, 0xd9, 0x32, 0xdb, 0x3e, 0xe8, 0xf0, 0x10, 0x65, 0xed, 0x74, 0xe1, 0x2f, 0xa7 +.byte 0x7c, 0xaf, 0x27, 0x34, 0xbb, 0x29, 0x7d, 0x9b, 0xb6, 0xcf, 0x09, 0xc8, 0xe5, 0xd3, 0x0a, 0xfc +.byte 0x88, 0x65, 0x65, 0x74, 0x0a, 0xdc, 0x73, 0x1c, 0x5c, 0xcd, 0x40, 0xb1, 0x1c, 0xd4, 0xb6, 0x84 +.byte 0x8c, 0x4c, 0x50, 0xcf, 0x68, 0x8e, 0xa8, 0x59, 0xae, 0xc2, 0x27, 0x4e, 0x82, 0xa2, 0x35, 0xdd +.byte 0x14, 0xf4, 0x1f, 0xff, 0xb2, 0x77, 0xd5, 0x87, 0x2f, 0xaa, 0x6e, 0x7d, 0x24, 0x27, 0xe7, 0xc6 +.byte 0xcb, 0x26, 0xe6, 0xe5, 0xfe, 0x67, 0x07, 0x63, 0xd8, 0x45, 0x0d, 0xdd, 0x3a, 0x59, 0x65, 0x39 +.byte 0x58, 0x7a, 0x92, 0x99, 0x72, 0x3d, 0x9c, 0x84, 0x5e, 0x88, 0x21, 0xb8, 0xd5, 0xf4, 0x2c, 0xfc +.byte 0xd9, 0x70, 0x52, 0x4f, 0x78, 0xb8, 0xbd, 0x3c, 0x2b, 0x8b, 0x95, 0x98, 0xf5, 0xb3, 0xd1, 0x68 +.byte 0xcf, 0x20, 0x14, 0x7e, 0x4c, 0x5c, 0x5f, 0xe7, 0x8b, 0xe5, 0xf5, 0x35, 0x81, 0x19, 0x37, 0xd7 +.byte 0x11, 0x08, 0xb7, 0x66, 0xbe, 0xd3, 0x4a, 0xce, 0x83, 0x57, 0x00, 0x3a, 0xc3, 0x81, 0xf8, 0x17 +.byte 0xcb, 0x92, 0x36, 0x5d, 0xd1, 0xa3, 0xd8, 0x75, 0x1b, 0xe1, 0x8b, 0x27, 0xea, 0x7a, 0x48, 0x41 +.byte 0xfd, 0x45, 0x19, 0x06, 0xad, 0x27, 0x99, 0x4e, 0xc1, 0x70, 0x47, 0xdd, 0xb5, 0x9f, 0x81, 0x53 +.byte 0x12, 0xe5, 0xb1, 0x8c, 0x48, 0x5d, 0x31, 0x43, 0x17, 0xe3, 0x8c, 0xc6, 0x7a, 0x63, 0x96, 0x4b +.byte 0x29, 0x30, 0x4e, 0x84, 0x4e, 0x62, 0x19, 0x5e, 0x3c, 0xce, 0x97, 0x90, 0xa5, 0x7f, 0x01, 0xeb +.byte 0x9d, 0xe0, 0xf8, 0x8b, 0x89, 0xdd, 0x25, 0x98, 0x3d, 0x92, 0xb6, 0x7e, 0xef, 0xd9, 0xf1, 0x51 +.byte 0x51, 0x7d, 0x2d, 0x26, 0xc8, 0x69, 0x59, 0x61, 0xe0, 0xac, 0x6a, 0xb8, 0x2a, 0x36, 0x11, 0x04 +.byte 0x7a, 0x50, 0xbd, 0x32, 0x84, 0xbe, 0x2f, 0xdc, 0x72, 0xd5, 0xd7, 0x1d, 0x16, 0x47, 0xe4, 0x47 +.byte 0x66, 0x20, 0x3f, 0xf4, 0x96, 0xc5, 0xaf, 0x8e, 0x01, 0x7a, 0xa5, 0x0f, 0x7a, 0x64, 0xf5, 0x0d +.byte 0x18, 0x87, 0xd9, 0xae, 0x88, 0xd5, 0xfa, 0x84, 0xc1, 0x3a, 0xc0, 0x69, 0x28, 0x2d, 0xf2, 0x0d +.byte 0x68, 0x51, 0xaa, 0xe3, 0xa5, 0x77, 0xc6, 0xa4, 0x90, 0x0e, 0xa1, 0x37, 0x8b, 0x31, 0x23, 0x47 +.byte 0xc1, 0x09, 0x08, 0xeb, 0x6e, 0xf7, 0x78, 0x9b, 0xd7, 0x82, 0xfc, 0x84, 0x20, 0x99, 0x49, 0x19 +.byte 0xb6, 0x12, 0x46, 0xb1, 0xfb, 0x45, 0x55, 0x16, 0xa9, 0xa3, 0x65, 0xac, 0x9c, 0x07, 0x0f, 0xea +.byte 0x6b, 0xdc, 0x1f, 0x2e, 0x06, 0x72, 0xec, 0x86, 0x88, 0x12, 0xe4, 0x2d, 0xdb, 0x5f, 0x05, 0x2f +.byte 0xe4, 0xf0, 0x03, 0xd3, 0x26, 0x33, 0xe7, 0x80, 0xc2, 0xcd, 0x42, 0xa1, 0x17, 0x34, 0x0b, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0xaa, 0x00, 0x26, 0x01, 0x30, 0x81, 0xa7, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x15, 0x30, 0x13, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x4b, 0x66 +.byte 0x74, 0x2e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x2e, 0x54, 0x61, 0x6e +.byte 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1, 0x6e, 0x79, 0x6b, 0x69, 0x61, 0x64, 0xc3 +.byte 0xb3, 0x6b, 0x20, 0x28, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x29, 0x31, 0x35, 0x30, 0x33, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x41, 0x72 +.byte 0x61, 0x6e, 0x79, 0x20, 0x28, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x29 +.byte 0x20, 0x46, 0xc5, 0x91, 0x74, 0x61, 0x6e, 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1 +.byte 0x6e, 0x79, 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, 0xc4, 0x24, 0x5e, 0x73, 0xbe, 0x4b, 0x6d, 0x14, 0xc3, 0xa1, 0xf4, 0xe3, 0x97 +.byte 0x90, 0x6e, 0xd2, 0x30, 0x45, 0x1e, 0x3c, 0xee, 0x67, 0xd9, 0x64, 0xe0, 0x1a, 0x8a, 0x7f, 0xca +.byte 0x30, 0xca, 0x83, 0xe3, 0x20, 0xc1, 0xe3, 0xf4, 0x3a, 0xd3, 0x94, 0x5f, 0x1a, 0x7c, 0x5b, 0x6d +.byte 0xbf, 0x30, 0x4f, 0x84, 0x27, 0xf6, 0x9f, 0x1f, 0x49, 0xbc, 0xc6, 0x99, 0x0a, 0x90, 0xf2, 0x0f +.byte 0xf5, 0x7f, 0x43, 0x84, 0x37, 0x63, 0x51, 0x8b, 0x7a, 0xa5, 0x70, 0xfc, 0x7a, 0x58, 0xcd, 0x8e +.byte 0x9b, 0xed, 0xc3, 0x46, 0x6c, 0x84, 0x70, 0x5d, 0xda, 0xf3, 0x01, 0x90, 0x23, 0xfc, 0x4e, 0x30 +.byte 0xa9, 0x7e, 0xe1, 0x27, 0x63, 0xe7, 0xed, 0x64, 0x3c, 0xa0, 0xb8, 0xc9, 0x33, 0x63, 0xfe, 0x16 +.byte 0x90, 0xff, 0xb0, 0xb8, 0xfd, 0xd7, 0xa8, 0xc0, 0xc0, 0x94, 0x43, 0x0b, 0xb6, 0xd5, 0x59, 0xa6 +.byte 0x9e, 0x56, 0xd0, 0x24, 0x1f, 0x70, 0x79, 0xaf, 0xdb, 0x39, 0x54, 0x0d, 0x65, 0x75, 0xd9, 0x15 +.byte 0x41, 0x94, 0x01, 0xaf, 0x5e, 0xec, 0xf6, 0x8d, 0xf1, 0xff, 0xad, 0x64, 0xfe, 0x20, 0x9a, 0xd7 +.byte 0x5c, 0xeb, 0xfe, 0xa6, 0x1f, 0x08, 0x64, 0xa3, 0x8b, 0x76, 0x55, 0xad, 0x1e, 0x3b, 0x28, 0x60 +.byte 0x2e, 0x87, 0x25, 0xe8, 0xaa, 0xaf, 0x1f, 0xc6, 0x64, 0x46, 0x20, 0xb7, 0x70, 0x7f, 0x3c, 0xde +.byte 0x48, 0xdb, 0x96, 0x53, 0xb7, 0x39, 0x77, 0xe4, 0x1a, 0xe2, 0xc7, 0x16, 0x84, 0x76, 0x97, 0x5b +.byte 0x2f, 0xbb, 0x19, 0x15, 0x85, 0xf8, 0x69, 0x85, 0xf5, 0x99, 0xa7, 0xa9, 0xf2, 0x34, 0xa7, 0xa9 +.byte 0xb6, 0xa6, 0x03, 0xfc, 0x6f, 0x86, 0x3d, 0x54, 0x7c, 0x76, 0x04, 0x9b, 0x6b, 0xf9, 0x40, 0x5d +.byte 0x00, 0x34, 0xc7, 0x2e, 0x99, 0x75, 0x9d, 0xe5, 0x88, 0x03, 0xaa, 0x4d, 0xf8, 0x03, 0xd2, 0x42 +.byte 0x76, 0xc0, 0x1b, 0x02, 0x03, 0x00, 0xa8, 0x8b, 0xad, 0x00, 0x78, 0x00, 0x30, 0x81, 0xaa, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d +.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30 +.byte 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63 +.byte 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65 +.byte 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x74, 0x79, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x03, 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, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 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, 0x92, 0xa0, 0x41, 0xe8, 0x4b, 0x82, 0x84, 0x5c, 0xe2, 0xf8, 0x31, 0x11, 0x99, 0x86, 0x64 +.byte 0x4e, 0x09, 0x25, 0x2f, 0x9d, 0x41, 0x2f, 0x0a, 0xae, 0x35, 0x4f, 0x74, 0x95, 0xb2, 0x51, 0x64 +.byte 0x6b, 0x8d, 0x6b, 0xe6, 0x3f, 0x70, 0x95, 0xf0, 0x05, 0x44, 0x47, 0xa6, 0x72, 0x38, 0x50, 0x76 +.byte 0x95, 0x02, 0x5a, 0x8e, 0xae, 0x28, 0x9e, 0xf9, 0x2d, 0x4e, 0x99, 0xef, 0x2c, 0x48, 0x6f, 0x4c +.byte 0x25, 0x29, 0xe8, 0xd1, 0x71, 0x5b, 0xdf, 0x1d, 0xc1, 0x75, 0x37, 0xb4, 0xd7, 0xfa, 0x7b, 0x7a +.byte 0x42, 0x9c, 0x6a, 0x0a, 0x56, 0x5a, 0x7c, 0x69, 0x0b, 0xaa, 0x80, 0x09, 0x24, 0x6c, 0x7e, 0xc1 +.byte 0x46, 0xb3, 0x00, 0x26, 0x01, 0x30, 0x81, 0xb0, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d +.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x39, 0x30 +.byte 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72 +.byte 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50, 0x53, 0x20, 0x69, 0x73, 0x20, 0x69 +.byte 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x72 +.byte 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x16, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x36, 0x20, 0x45, 0x6e, 0x74, 0x72 +.byte 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x24, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 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, 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, 0xb6, 0x95, 0xb6, 0x43, 0x42, 0xfa, 0xc6 +.byte 0x6d, 0x2a, 0x6f, 0x48, 0xdf, 0x94, 0x4c, 0x39, 0x57, 0x05, 0xee, 0xc3, 0x79, 0x11, 0x41, 0x68 +.byte 0x36, 0xed, 0xec, 0xfe, 0x9a, 0x01, 0x8f, 0xa1, 0x38, 0x28, 0xfc, 0xf7, 0x10, 0x46, 0x66, 0x2e +.byte 0x4d, 0x1e, 0x1a, 0xb1, 0x1a, 0x4e, 0xc6, 0xd1, 0xc0, 0x95, 0x88, 0xb0, 0xc9, 0xff, 0x31, 0x8b +.byte 0x33, 0x03, 0xdb, 0xb7, 0x83, 0x7b, 0x3e, 0x20, 0x84, 0x5e, 0xed, 0xb2, 0x56, 0x28, 0xa7, 0xf8 +.byte 0xe0, 0xb9, 0x40, 0x71, 0x37, 0xc5, 0xcb, 0x47, 0x0e, 0x97, 0x2a, 0x68, 0xc0, 0x22, 0x95, 0x62 +.byte 0x15, 0xdb, 0x47, 0xd9, 0xf5, 0xd0, 0x2b, 0xff, 0x82, 0x4b, 0xc9, 0xad, 0x3e, 0xde, 0x4c, 0xdb +.byte 0x90, 0x80, 0x50, 0x3f, 0x09, 0x8a, 0x84, 0x00, 0xec, 0x30, 0x0a, 0x3d, 0x18, 0xcd, 0xfb, 0xfd +.byte 0x2a, 0x59, 0x9a, 0x23, 0x95, 0x17, 0x2c, 0x45, 0x9e, 0x1f, 0x6e, 0x43, 0x79, 0x6d, 0x0c, 0x5c +.byte 0x98, 0xfe, 0x48, 0xa7, 0xc5, 0x23, 0x47, 0x5c, 0x5e, 0xfd, 0x6e, 0xe7, 0x1e, 0xb4, 0xf6, 0x68 +.byte 0x45, 0xd1, 0x86, 0x83, 0x5b, 0xa2, 0x8a, 0x8d, 0xb1, 0xe3, 0x29, 0x80, 0xfe, 0x25, 0x71, 0x88 +.byte 0xad, 0xbe, 0xbc, 0x8f, 0xac, 0x52, 0x96, 0x4b, 0xaa, 0x51, 0x8d, 0xe4, 0x13, 0x31, 0x19, 0xe8 +.byte 0x4e, 0x4d, 0x9f, 0xdb, 0xac, 0xb3, 0x6a, 0xd5, 0xbc, 0x39, 0x54, 0x71, 0xca, 0x7a, 0x7a, 0x7f +.byte 0x90, 0xdd, 0x7d, 0x1d, 0x80, 0xd9, 0x81, 0xbb, 0x59, 0x26, 0xc2, 0x11, 0xfe, 0xe6, 0x93, 0xe2 +.byte 0xf7, 0x80, 0xe4, 0x65, 0xfb, 0x34, 0x37, 0x0e, 0x29, 0x80, 0x70, 0x4d, 0xaf, 0x38, 0x86, 0x2e +.byte 0x9e, 0x7f, 0x57, 0xaf, 0x9e, 0x17, 0xae, 0xeb, 0x1c, 0xcb, 0x28, 0x21, 0x5f, 0xb6, 0x1c, 0xd8 +.byte 0xe7, 0xa2, 0x04, 0x22, 0xf9, 0xd3, 0xda, 0xd8, 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0xb7, 0x00 +.byte 0x26, 0x01, 0x30, 0x81, 0xb4, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b +.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x31, 0x40, 0x30, 0x3e, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x14, 0x37, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73 +.byte 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50, 0x53, 0x5f, 0x32, 0x30, 0x34, 0x38, 0x20, 0x69 +.byte 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x20, 0x62, 0x79, 0x20, 0x72, 0x65, 0x66, 0x2e, 0x20, 0x28 +.byte 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x20, 0x6c, 0x69, 0x61, 0x62, 0x2e, 0x29, 0x31, 0x25, 0x30 +.byte 0x23, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1c, 0x28, 0x63, 0x29, 0x20, 0x31, 0x39, 0x39, 0x39 +.byte 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x20, 0x4c, 0x69, 0x6d +.byte 0x69, 0x74, 0x65, 0x64, 0x31, 0x33, 0x30, 0x31, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45 +.byte 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 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, 0x20, 0x28, 0x32, 0x30, 0x34, 0x38, 0x29, 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, 0xad, 0x4d, 0x4b, 0xa9, 0x12, 0x86 +.byte 0xb2, 0xea, 0xa3, 0x20, 0x07, 0x15, 0x16, 0x64, 0x2a, 0x2b, 0x4b, 0xd1, 0xbf, 0x0b, 0x4a, 0x4d +.byte 0x8e, 0xed, 0x80, 0x76, 0xa5, 0x67, 0xb7, 0x78, 0x40, 0xc0, 0x73, 0x42, 0xc8, 0x68, 0xc0, 0xdb +.byte 0x53, 0x2b, 0xdd, 0x5e, 0xb8, 0x76, 0x98, 0x35, 0x93, 0x8b, 0x1a, 0x9d, 0x7c, 0x13, 0x3a, 0x0e +.byte 0x1f, 0x5b, 0xb7, 0x1e, 0xcf, 0xe5, 0x24, 0x14, 0x1e, 0xb1, 0x81, 0xa9, 0x8d, 0x7d, 0xb8, 0xcc +.byte 0x6b, 0x4b, 0x03, 0xf1, 0x02, 0x0c, 0xdc, 0xab, 0xa5, 0x40, 0x24, 0x00, 0x7f, 0x74, 0x94, 0xa1 +.byte 0x9d, 0x08, 0x29, 0xb3, 0x88, 0x0b, 0xf5, 0x87, 0x77, 0x9d, 0x55, 0xcd, 0xe4, 0xc3, 0x7e, 0xd7 +.byte 0x6a, 0x64, 0xab, 0x85, 0x14, 0x86, 0x95, 0x5b, 0x97, 0x32, 0x50, 0x6f, 0x3d, 0xc8, 0xba, 0x66 +.byte 0x0c, 0xe3, 0xfc, 0xbd, 0xb8, 0x49, 0xc1, 0x76, 0x89, 0x49, 0x19, 0xfd, 0xc0, 0xa8, 0xbd, 0x89 +.byte 0xa3, 0x67, 0x2f, 0xc6, 0x9f, 0xbc, 0x71, 0x19, 0x60, 0xb8, 0x2d, 0xe9, 0x2c, 0xc9, 0x90, 0x76 +.byte 0x66, 0x7b, 0x94, 0xe2, 0xaf, 0x78, 0xd6, 0x65, 0x53, 0x5d, 0x3c, 0xd6, 0x9c, 0xb2, 0xcf, 0x29 +.byte 0x03, 0xf9, 0x2f, 0xa4, 0x50, 0xb2, 0xd4, 0x48, 0xce, 0x05, 0x32, 0x55, 0x8a, 0xfd, 0xb2, 0x64 +.byte 0x4c, 0x0e, 0xe4, 0x98, 0x07, 0x75, 0xdb, 0x7f, 0xdf, 0xb9, 0x08, 0x55, 0x60, 0x85, 0x30, 0x29 +.byte 0xf9, 0x7b, 0x48, 0xa4, 0x69, 0x86, 0xe3, 0x35, 0x3f, 0x1e, 0x86, 0x5d, 0x7a, 0x7a, 0x15, 0xbd +.byte 0xef, 0x00, 0x8e, 0x15, 0x22, 0x54, 0x17, 0x00, 0x90, 0x26, 0x93, 0xbc, 0x0e, 0x49, 0x68, 0x91 +.byte 0xbf, 0xf8, 0x47, 0xd3, 0x9d, 0x95, 0x42, 0xc1, 0x0e, 0x4d, 0xdf, 0x6f, 0x26, 0xcf, 0xc3, 0x18 +.byte 0x21, 0x62, 0x66, 0x43, 0x70, 0xd6, 0xd5, 0xc0, 0x07, 0xe1, 0x02, 0x03, 0x01, 0x00, 0x01, 0xc1 +.byte 0x00, 0x26, 0x01, 0x30, 0x81, 0xbe, 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, 0x30, 0x39, 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, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 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, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a +.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xba, 0x84, 0xb6, 0x72, 0xdb, 0x9e, 0x0c, 0x6b, 0xe2, 0x99, 0xe9 +.byte 0x30, 0x01, 0xa7, 0x76, 0xea, 0x32, 0xb8, 0x95, 0x41, 0x1a, 0xc9, 0xda, 0x61, 0x4e, 0x58, 0x72 +.byte 0xcf, 0xfe, 0xf6, 0x82, 0x79, 0xbf, 0x73, 0x61, 0x06, 0x0a, 0xa5, 0x27, 0xd8, 0xb3, 0x5f, 0xd3 +.byte 0x45, 0x4e, 0x1c, 0x72, 0xd6, 0x4e, 0x32, 0xf2, 0x72, 0x8a, 0x0f, 0xf7, 0x83, 0x19, 0xd0, 0x6a +.byte 0x80, 0x80, 0x00, 0x45, 0x1e, 0xb0, 0xc7, 0xe7, 0x9a, 0xbf, 0x12, 0x57, 0x27, 0x1c, 0xa3, 0x68 +.byte 0x2f, 0x0a, 0x87, 0xbd, 0x6a, 0x6b, 0x0e, 0x5e, 0x65, 0xf3, 0x1c, 0x77, 0xd5, 0xd4, 0x85, 0x8d +.byte 0x70, 0x21, 0xb4, 0xb3, 0x32, 0xe7, 0x8b, 0xa2, 0xd5, 0x86, 0x39, 0x02, 0xb1, 0xb8, 0xd2, 0x47 +.byte 0xce, 0xe4, 0xc9, 0x49, 0xc4, 0x3b, 0xa7, 0xde, 0xfb, 0x54, 0x7d, 0x57, 0xbe, 0xf0, 0xe8, 0x6e +.byte 0xc2, 0x79, 0xb2, 0x3a, 0x0b, 0x55, 0xe2, 0x50, 0x98, 0x16, 0x32, 0x13, 0x5c, 0x2f, 0x78, 0x56 +.byte 0xc1, 0xc2, 0x94, 0xb3, 0xf2, 0x5a, 0xe4, 0x27, 0x9a, 0x9f, 0x24, 0xd7, 0xc6, 0xec, 0xd0, 0x9b +.byte 0x25, 0x82, 0xe3, 0xcc, 0xc2, 0xc4, 0x45, 0xc5, 0x8c, 0x97, 0x7a, 0x06, 0x6b, 0x2a, 0x11, 0x9f +.byte 0xa9, 0x0a, 0x6e, 0x48, 0x3b, 0x6f, 0xdb, 0xd4, 0x11, 0x19, 0x42, 0xf7, 0x8f, 0x07, 0xbf, 0xf5 +.byte 0x53, 0x5f, 0x9c, 0x3e, 0xf4, 0x17, 0x2c, 0xe6, 0x69, 0xac, 0x4e, 0x32, 0x4c, 0x62, 0x77, 0xea +.byte 0xb7, 0xe8, 0xe5, 0xbb, 0x34, 0xbc, 0x19, 0x8b, 0xae, 0x9c, 0x51, 0xe7, 0xb7, 0x7e, 0xb5, 0x53 +.byte 0xb1, 0x33, 0x22, 0xe5, 0x6d, 0xcf, 0x70, 0x3c, 0x1a, 0xfa, 0xe2, 0x9b, 0x67, 0xb6, 0x83, 0xf4 +.byte 0x8d, 0xa5, 0xaf, 0x62, 0x4c, 0x4d, 0xe0, 0x58, 0xac, 0x64, 0x34, 0x12, 0x03, 0xf8, 0xb6, 0x8d +.byte 0x94, 0x63, 0x24, 0xa4, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0xc2, 0x00, 0x78, 0x00, 0x30, 0x81 +.byte 0xbf, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16 +.byte 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 +.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 +.byte 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73 +.byte 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32 +.byte 0x30, 0x31, 0x32, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a +.byte 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x33, 0x30, 0x31, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 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, 0x20, 0x2d, 0x20, 0x45, 0x43, 0x31 +.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, 0x84, 0x13, 0xc9, 0xd0, 0xba, 0x6d, 0x41, 0x7b +.byte 0xe2, 0x6c, 0xd0, 0xeb, 0x55, 0x5f, 0x66, 0x02, 0x1a, 0x24, 0xf4, 0x5b, 0x89, 0x69, 0x47, 0xe3 +.byte 0xb8, 0xc2, 0x7d, 0xf1, 0xf2, 0x02, 0xc5, 0x9f, 0xa0, 0xf6, 0x5b, 0xd5, 0x8b, 0x06, 0x19, 0x86 +.byte 0x4f, 0x53, 0x10, 0x6d, 0x07, 0x24, 0x27, 0xa1, 0xa0, 0xf8, 0xd5, 0x47, 0x19, 0x61, 0x4c, 0x7d +.byte 0xca, 0x93, 0x27, 0xea, 0x74, 0x0c, 0xef, 0x6f, 0x96, 0x09, 0xfe, 0x63, 0xec, 0x70, 0x5d, 0x36 +.byte 0xad, 0x67, 0x77, 0xae, 0xc9, 0x9d, 0x7c, 0x55, 0x44, 0x3a, 0xa2, 0x63, 0x51, 0x1f, 0xf5, 0xe3 +.byte 0x62, 0xd4, 0xa9, 0x47, 0x07, 0x3e, 0xcc, 0x20, 0xd5, 0x00, 0x26, 0x01, 0x30, 0x81, 0xd2, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x18, 0x30, 0x16 +.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0f, 0x47, 0x65, 0x62, 0x7a, 0x65, 0x20, 0x2d, 0x20, 0x4b +.byte 0x6f, 0x63, 0x61, 0x65, 0x6c, 0x69, 0x31, 0x42, 0x30, 0x40, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x39, 0x54, 0x75, 0x72, 0x6b, 0x69, 0x79, 0x65, 0x20, 0x42, 0x69, 0x6c, 0x69, 0x6d, 0x73, 0x65 +.byte 0x6c, 0x20, 0x76, 0x65, 0x20, 0x54, 0x65, 0x6b, 0x6e, 0x6f, 0x6c, 0x6f, 0x6a, 0x69, 0x6b, 0x20 +.byte 0x41, 0x72, 0x61, 0x73, 0x74, 0x69, 0x72, 0x6d, 0x61, 0x20, 0x4b, 0x75, 0x72, 0x75, 0x6d, 0x75 +.byte 0x20, 0x2d, 0x20, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x24, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x6b, 0x61, 0x73, 0x79, 0x6f, 0x6e, 0x20, 0x4d, 0x65, 0x72, 0x6b, 0x65, 0x7a, 0x69, 0x20 +.byte 0x2d, 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x2d, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x20, 0x4b, 0x61, 0x6d, 0x75 +.byte 0x20, 0x53, 0x4d, 0x20, 0x53, 0x53, 0x4c, 0x20, 0x4b, 0x6f, 0x6b, 0x20, 0x53, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x69, 0x20, 0x2d, 0x20, 0x53, 0x75, 0x72, 0x75, 0x6d, 0x20 +.byte 0x31, 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, 0xaf, 0x75, 0x30, 0x33, 0xaa, 0xbb, 0x6b, 0xd3, 0x99, 0x2c, 0x12, 0x37, 0x84, 0xd9 +.byte 0x8d, 0x7b, 0x97, 0x80, 0xd3, 0x6e, 0xe7, 0xff, 0x9b, 0x50, 0x95, 0x3e, 0x90, 0x95, 0x56, 0x42 +.byte 0xd7, 0x19, 0x7c, 0x26, 0x84, 0x8d, 0x92, 0xfa, 0x01, 0x1d, 0x3a, 0x0f, 0xe2, 0x64, 0x38, 0xb7 +.byte 0x8c, 0xbc, 0xe8, 0x88, 0xf9, 0x8b, 0x24, 0xab, 0x2e, 0xa3, 0xf5, 0x37, 0xe4, 0x40, 0x8e, 0x18 +.byte 0x25, 0x79, 0x83, 0x75, 0x1f, 0x3b, 0xff, 0x6c, 0xa8, 0xc5, 0xc6, 0x56, 0xf8, 0xb4, 0xed, 0x8a +.byte 0x44, 0xa3, 0xab, 0x6c, 0x4c, 0xfc, 0x1d, 0xd0, 0xdc, 0xef, 0x68, 0xbd, 0xcf, 0xe4, 0xaa, 0xce +.byte 0xf0, 0x55, 0xf7, 0xa2, 0x34, 0xd4, 0x83, 0x6b, 0x37, 0x7c, 0x1c, 0xc2, 0xfe, 0xb5, 0x03, 0xec +.byte 0x57, 0xce, 0xbc, 0xb4, 0xb5, 0xc5, 0xed, 0x00, 0x0f, 0x53, 0x37, 0x2a, 0x4d, 0xf4, 0x4f, 0x0c +.byte 0x83, 0xfb, 0x86, 0xcf, 0xcb, 0xfe, 0x8c, 0x4e, 0xbd, 0x87, 0xf9, 0xa7, 0x8b, 0x21, 0x57, 0x9c +.byte 0x7a, 0xdf, 0x03, 0x67, 0x89, 0x2c, 0x9d, 0x97, 0x61, 0xa7, 0x10, 0xb8, 0x55, 0x90, 0x7f, 0x0e +.byte 0x2d, 0x27, 0x38, 0x74, 0xdf, 0xe7, 0xfd, 0xda, 0x4e, 0x12, 0xe3, 0x4d, 0x15, 0x22, 0x02, 0xc8 +.byte 0xe0, 0xe0, 0xfc, 0x0f, 0xad, 0x8a, 0xd7, 0xc9, 0x54, 0x50, 0xcc, 0x3b, 0x0f, 0xca, 0x16, 0x80 +.byte 0x84, 0xd0, 0x51, 0x56, 0xc3, 0x8e, 0x56, 0x7f, 0x89, 0x22, 0x33, 0x2f, 0xe6, 0x85, 0x0a, 0xbd +.byte 0xa5, 0xa8, 0x1b, 0x36, 0xde, 0xd3, 0xdc, 0x2c, 0x6d, 0x3b, 0xc7, 0x13, 0xbd, 0x59, 0x23, 0x2c +.byte 0xe6, 0xe5, 0xa4, 0xf7, 0xd8, 0x0b, 0xed, 0xea, 0x90, 0x40, 0x44, 0xa8, 0x95, 0xbb, 0x93, 0xd5 +.byte 0xd0, 0x80, 0x34, 0xb6, 0x46, 0x78, 0x0e, 0x1f, 0x00, 0x93, 0x46, 0xe1, 0xee, 0xe9, 0xf9, 0xec +.byte 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 68983 + +#if defined (__linux__) +.section .note.GNU-stack,"",@progbits +#endif diff --git a/components/fota_manager/CMakeLists.txt b/components/fota_manager/CMakeLists.txt new file mode 100644 index 0000000..13624b2 --- /dev/null +++ b/components/fota_manager/CMakeLists.txt @@ -0,0 +1,5 @@ +idf_component_register( + SRCS "fota_manager.c" + INCLUDE_DIRS "." + REQUIRES app_update log +) diff --git a/components/fota_manager/fota_manager.c b/components/fota_manager/fota_manager.c new file mode 100644 index 0000000..781801d --- /dev/null +++ b/components/fota_manager/fota_manager.c @@ -0,0 +1,92 @@ +#include "fota_manager.h" + +#include + +#include "esp_log.h" +#include "esp_system.h" +#include "esp_ota_ops.h" +#include "esp_partition.h" + +static const char *TAG = "FOTA_MANAGER"; + +fota_err_t fota_manager_apply(const char *firmware_path) +{ + if (!firmware_path) { + ESP_LOGE(TAG, "Firmware path is NULL"); + return FOTA_ERR_OPEN; + } + + ESP_LOGI(TAG, "Starting FOTA from file: %s", firmware_path); + + FILE *fp = fopen(firmware_path, "rb"); + if (!fp) { + ESP_LOGE(TAG, "Failed to open firmware file: %s", firmware_path); + return FOTA_ERR_OPEN; + } + + const esp_partition_t *running = esp_ota_get_running_partition(); + if (!running) { + ESP_LOGE(TAG, "Failed to get running partition"); + fclose(fp); + return FOTA_ERR_NO_UPDATE_PART; + } + + ESP_LOGI(TAG, "Running partition: label=%s, addr=0x%lx, size=0x%lx", + running->label, (unsigned long)running->address, (unsigned long)running->size); + + const esp_partition_t *update = esp_ota_get_next_update_partition(NULL); + if (!update) { + ESP_LOGE(TAG, "Failed to find update partition"); + fclose(fp); + return FOTA_ERR_NO_UPDATE_PART; + } + + ESP_LOGI(TAG, "Update partition: label=%s, addr=0x%lx, size=0x%lx", + update->label, (unsigned long)update->address, (unsigned long)update->size); + + esp_ota_handle_t ota_handle = 0; + esp_err_t err = esp_ota_begin(update, OTA_SIZE_UNKNOWN, &ota_handle); + if (err != ESP_OK) { + ESP_LOGE(TAG, "esp_ota_begin failed: %s", esp_err_to_name(err)); + fclose(fp); + return FOTA_ERR_OTA_BEGIN; + } + + uint8_t buffer[4096]; + size_t read_bytes = 0; + size_t total_written = 0; + + while ((read_bytes = fread(buffer, 1, sizeof(buffer), fp)) > 0) { + err = esp_ota_write(ota_handle, buffer, read_bytes); + if (err != ESP_OK) { + ESP_LOGE(TAG, "esp_ota_write failed after %u bytes: %s", + (unsigned)total_written, esp_err_to_name(err)); + esp_ota_end(ota_handle); + fclose(fp); + return FOTA_ERR_OTA_WRITE; + } + total_written += read_bytes; + } + + fclose(fp); + + ESP_LOGI(TAG, "FOTA written %u bytes to partition %s", + (unsigned)total_written, update->label); + + err = esp_ota_end(ota_handle); + if (err != ESP_OK) { + ESP_LOGE(TAG, "esp_ota_end failed: %s", esp_err_to_name(err)); + return FOTA_ERR_OTA_END; + } + + err = esp_ota_set_boot_partition(update); + if (err != ESP_OK) { + ESP_LOGE(TAG, "esp_ota_set_boot_partition failed: %s", esp_err_to_name(err)); + return FOTA_ERR_SET_BOOT; + } + + ESP_LOGI(TAG, "FOTA apply success. Next boot from: label=%s, addr=0x%lx", + update->label, (unsigned long)update->address); + + return FOTA_OK; +} diff --git a/components/fota_manager/fota_manager.h b/components/fota_manager/fota_manager.h new file mode 100644 index 0000000..8212851 --- /dev/null +++ b/components/fota_manager/fota_manager.h @@ -0,0 +1,22 @@ +#pragma once + +#include + +typedef enum +{ + FOTA_OK = 0, + FOTA_ERR_OPEN, + FOTA_ERR_OTA_BEGIN, + FOTA_ERR_OTA_WRITE, + FOTA_ERR_OTA_END, + FOTA_ERR_SET_BOOT, + FOTA_ERR_NO_UPDATE_PART +} fota_err_t; + +/** + * @brief Apply FOTA from a firmware file stored on filesystem. + * + * @param firmware_path Path to .bin file (e.g. "/spiffs/espFota.bin") + * @return fota_err_t + */ +fota_err_t fota_manager_apply(const char *firmware_path); diff --git a/components/ftp_manager/CMakeLists.txt b/components/ftp_manager/CMakeLists.txt new file mode 100644 index 0000000..c6e9aa5 --- /dev/null +++ b/components/ftp_manager/CMakeLists.txt @@ -0,0 +1,5 @@ +idf_component_register( + SRCS "ftp_manager.c" + INCLUDE_DIRS "." + REQUIRES lwip esp_netif log +) diff --git a/components/ftp_manager/ftp_manager.c b/components/ftp_manager/ftp_manager.c new file mode 100644 index 0000000..82af685 --- /dev/null +++ b/components/ftp_manager/ftp_manager.c @@ -0,0 +1,197 @@ +#include "ftp_manager.h" +#include "esp_log.h" + +#include "lwip/sockets.h" +#include "lwip/netdb.h" +#include +#include + +static const char *TAG = "FTP_MANAGER"; + +/* Receive one line terminated by \r\n into buffer (null-terminated) */ +static int ftp_recv_line(int sock, char *buf, size_t len) +{ + size_t pos = 0; + while (pos < len - 1) + { + char c; + int r = recv(sock, &c, 1, 0); + if (r <= 0) { + break; + } + buf[pos++] = c; + if (pos >= 2 && buf[pos-2] == '\r' && buf[pos-1] == '\n') { + break; + } + } + buf[pos] = '\0'; + return (int)pos; +} + +/* Send a command followed by \r\n */ +static int ftp_send_cmd(int sock, const char *cmd) +{ + char line[256]; + int len = snprintf(line, sizeof(line), "%s\r\n", cmd); + if (len <= 0) return -1; + return send(sock, line, len, 0); +} + +/* Resolve hostname or dotted IP and connect */ +static int ftp_connect_control(const char *host, int port) +{ + char port_str[8]; + snprintf(port_str, sizeof(port_str), "%d", port); + + struct addrinfo hints = {0}; + hints.ai_family = AF_INET; + hints.ai_socktype = SOCK_STREAM; + + struct addrinfo *res = NULL; + int err = getaddrinfo(host, port_str, &hints, &res); + if (err != 0 || res == NULL) { + ESP_LOGE(TAG, "getaddrinfo failed for host '%s': %d", host, err); + return -1; + } + + int sock = -1; + struct addrinfo *p; + for (p = res; p != NULL; p = p->ai_next) { + sock = socket(p->ai_family, p->ai_socktype, 0); + if (sock < 0) continue; + + if (connect(sock, p->ai_addr, p->ai_addrlen) == 0) { + break; // success + } + + ESP_LOGW(TAG, "connect() failed to one addr, retrying next"); + close(sock); + sock = -1; + } + + freeaddrinfo(res); + + if (sock < 0) { + ESP_LOGE(TAG, "Could not connect to FTP server %s:%d", host, port); + return -1; + } + + ESP_LOGI(TAG, "Connected to FTP server %s:%d", host, port); + return sock; +} + +ftp_err_t ftp_manager_download(const ftp_config_t *cfg, + ftp_progress_cb_t cb) +{ + if (!cfg || !cfg->server || !cfg->remote_path || !cfg->local_path) { + ESP_LOGE(TAG, "Invalid FTP config"); + return FTP_ERR_CONNECT; + } + + ESP_LOGI(TAG, "FTP download start: server=%s port=%d remote=%s local=%s", + cfg->server, cfg->port, cfg->remote_path, cfg->local_path); + + int ctrl_sock = ftp_connect_control(cfg->server, cfg->port); + if (ctrl_sock < 0) { + return FTP_ERR_CONNECT; + } + + char line[256]; + + /* Read welcome line */ + ftp_recv_line(ctrl_sock, line, sizeof(line)); + ESP_LOGI(TAG, "FTP: %s", line); + + /* USER */ + char cmd[128]; + snprintf(cmd, sizeof(cmd), "USER %s", cfg->username ? cfg->username : "anonymous"); + ftp_send_cmd(ctrl_sock, cmd); + ftp_recv_line(ctrl_sock, line, sizeof(line)); + ESP_LOGI(TAG, "FTP: %s", line); + + /* PASS */ + snprintf(cmd, sizeof(cmd), "PASS %s", cfg->password ? cfg->password : "anonymous"); + ftp_send_cmd(ctrl_sock, cmd); + ftp_recv_line(ctrl_sock, line, sizeof(line)); + ESP_LOGI(TAG, "FTP: %s", line); + + /* VERY SIMPLE IMPLEMENTATION: use passive mode for data connection */ + + /* PASV */ + ftp_send_cmd(ctrl_sock, "PASV"); + ftp_recv_line(ctrl_sock, line, sizeof(line)); + ESP_LOGI(TAG, "FTP: %s", line); + + /* Parse "(h1,h2,h3,h4,p1,p2)" from 227 response */ + int h1,h2,h3,h4,p1,p2; + char *p = strchr(line, '('); + if (!p || sscanf(p+1, "%d,%d,%d,%d,%d,%d", + &h1,&h2,&h3,&h4,&p1,&p2) != 6) { + ESP_LOGE(TAG, "Failed to parse PASV response"); + close(ctrl_sock); + return FTP_ERR_DOWNLOAD; + } + + char data_host[32]; + snprintf(data_host, sizeof(data_host), "%d.%d.%d.%d", h1,h2,h3,h4); + int data_port = p1*256 + p2; + ESP_LOGI(TAG, "FTP data connection to %s:%d", data_host, data_port); + + int data_sock = ftp_connect_control(data_host, data_port); + if (data_sock < 0) { + close(ctrl_sock); + return FTP_ERR_CONNECT; + } + + /* RETR */ + snprintf(cmd, sizeof(cmd), "RETR %s", cfg->remote_path); + ftp_send_cmd(ctrl_sock, cmd); + ftp_recv_line(ctrl_sock, line, sizeof(line)); + ESP_LOGI(TAG, "FTP: %s", line); + + /* Now receive file data on data_sock */ + FILE *fp = fopen(cfg->local_path, "wb"); + if (!fp) { + ESP_LOGE(TAG, "Failed to open local file %s", cfg->local_path); + close(data_sock); + close(ctrl_sock); + return FTP_ERR_FILE; + } + + uint8_t buf[2048]; + size_t total = 0; + + while (1) { + int r = recv(data_sock, buf, sizeof(buf), 0); + if (r < 0) { + ESP_LOGE(TAG, "Error reading data socket"); + fclose(fp); + close(data_sock); + close(ctrl_sock); + return FTP_ERR_DOWNLOAD; + } else if (r == 0) { + break; // done + } + fwrite(buf, 1, r, fp); + total += r; + + if (cb) cb(total, 0); + } + + fclose(fp); + close(data_sock); + + /* Read final transfer response */ + ftp_recv_line(ctrl_sock, line, sizeof(line)); + ESP_LOGI(TAG, "FTP: %s", line); + + /* QUIT */ + ftp_send_cmd(ctrl_sock, "QUIT"); + ftp_recv_line(ctrl_sock, line, sizeof(line)); + ESP_LOGI(TAG, "FTP: %s", line); + + close(ctrl_sock); + + ESP_LOGI(TAG, "FTP download complete, total bytes=%u", (unsigned)total); + return FTP_OK; +} diff --git a/components/ftp_manager/ftp_manager.h b/components/ftp_manager/ftp_manager.h new file mode 100644 index 0000000..7e5a2e5 --- /dev/null +++ b/components/ftp_manager/ftp_manager.h @@ -0,0 +1,25 @@ +#pragma once + +#include + +typedef enum { + FTP_OK = 0, + FTP_ERR_CONNECT, + FTP_ERR_LOGIN, + FTP_ERR_DOWNLOAD, + FTP_ERR_FILE, +} ftp_err_t; + +typedef void (*ftp_progress_cb_t)(size_t downloaded, size_t total); + +typedef struct { + const char *server; + int port; + const char *username; + const char *password; + const char *remote_path; + const char *local_path; +} ftp_config_t; + +ftp_err_t ftp_manager_download(const ftp_config_t *cfg, + ftp_progress_cb_t cb); diff --git a/components/mqtt_manager/CMakeLists.txt b/components/mqtt_manager/CMakeLists.txt new file mode 100644 index 0000000..5b54091 --- /dev/null +++ b/components/mqtt_manager/CMakeLists.txt @@ -0,0 +1,5 @@ +idf_component_register( + SRCS "mqtt_manager.c" + INCLUDE_DIRS "." "../../main" + REQUIRES mqtt esp_system esp_event rpc_job_parser ftp_manager fota_manager log +) diff --git a/components/mqtt_manager/mqtt_manager.c b/components/mqtt_manager/mqtt_manager.c new file mode 100644 index 0000000..7f37895 --- /dev/null +++ b/components/mqtt_manager/mqtt_manager.c @@ -0,0 +1,320 @@ +#include "mqtt_manager.h" + +#include +#include + +#include "esp_log.h" +#include "mqtt_client.h" +#include "esp_system.h" +#include "esp_mac.h" + +#include "rpc_job_parser.h" +#include "ftp_manager.h" +#include "fota_manager.h" +#include "device_config.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" + +static const char *TAG = "MQTT_MANAGER"; + +static esp_mqtt_client_handle_t s_client = NULL; + +/* Topics: VEC/Vectr12X/v362/{MAC}/RPC/REQUEST/RESPONSE/PERIODIC */ +static char s_rpc_req_topic[128]; +static char s_rpc_resp_topic[128]; +static char s_periodic_topic[128]; // <-- NEW + +static bool s_periodic_task_started = false; // <-- NEW + + +/* Job enums from your definition */ +typedef enum { + JOB_RESULT_UNKNOWN = 0, + JOB_RESULT_SUCCESS = 1, + JOB_RESULT_REJECTED = 2, + JOB_RESULT_TIMEOUT = 3, +} jobResult_e; + +typedef enum { + JOB_STATUS_IDLE = 0, + JOB_STATUS_PENDING = 1, + JOB_STATUS_EXECUTING = 2, + JOB_STATUS_EXECUTED = 3, +} jobStatus_e; + +static void reboot_task(void *arg) +{ + ESP_LOGW(TAG, "Rebooting system for FOTA..."); + vTaskDelay(pdMS_TO_TICKS(1500)); + esp_restart(); +} + +static void periodic_publish_task(void *arg) +{ + const char *msg = "hello_again"; + + while (1) { + if (s_client) { + int msg_id = esp_mqtt_client_publish( + s_client, + s_periodic_topic, + msg, + 0, // length 0 -> strlen(msg) inside ESP-IDF + 0, // QoS 0 + 0 // retain = 0 + ); + ESP_LOGI(TAG, "FOTA PASS_2! Periodic publish (msg_id=%d): %s", msg_id, msg); + } + + vTaskDelay(pdMS_TO_TICKS(5000)); // 5 seconds + } +} + + +/* Helper: publish response payload */ +void mqtt_send_response(const char *payload) +{ + if (!s_client) { + ESP_LOGW(TAG, "MQTT client not ready, cannot send response"); + return; + } + + int msg_id = esp_mqtt_client_publish( + s_client, + s_rpc_resp_topic, + payload, + 0, /* len = 0 => strlen() inside esp-idf */ + 1, /* QoS 1 */ + 0 /* retain */ + ); + + ESP_LOGI(TAG, "Published RPC response (msg_id=%d): %s", msg_id, payload); +} + +/* Helper: build and send job status JSON */ +static void send_job_status(const ota_job_t *job, + jobStatus_e status, + jobResult_e result) +{ + char json[256]; + + /* Current epoch timestamp; you can replace with your own RTC if needed */ + time_t now = time(NULL); + + /* NOTE: DEVICE_ID comes from device_config.h */ + int len = snprintf(json, sizeof(json), + "{" + "\"ts\":%ld," + "\"deviceId\":\"%s\"," + "\"jobId\":\"%s\"," + "\"jobStatus\":%d," + "\"jobResult\":%d" + "}", + (long)now, + DEVICE_ID, + job->jobId, + (int)status, + (int)result + ); + + if (len <= 0 || len >= (int)sizeof(json)) { + ESP_LOGW(TAG, "Job status JSON truncated or error"); + } + + mqtt_send_response(json); +} + +/* MQTT event handler */ +static void mqtt_event_handler(void *handler_args, + esp_event_base_t base, + int32_t event_id, + void *event_data) +{ + esp_mqtt_event_handle_t event = (esp_mqtt_event_handle_t)event_data; + + switch (event->event_id) { + + case MQTT_EVENT_CONNECTED: + ESP_LOGI(TAG, "MQTT_EVENT_CONNECTED"); + /* Subscribe to RPC request topic */ + esp_mqtt_client_subscribe(s_client, s_rpc_req_topic, 1); + ESP_LOGI(TAG, "Subscribed to: %s", s_rpc_req_topic); + + /* NEW: start periodic hello publisher once */ + if (!s_periodic_task_started) { + BaseType_t res = xTaskCreate( + periodic_publish_task, + "periodic_pub", + 4096, + NULL, + 5, + NULL + ); + if (res == pdPASS) { + s_periodic_task_started = true; + ESP_LOGI(TAG, "Started periodic publish task"); + } else { + ESP_LOGE(TAG, "Failed to start periodic publish task"); + } + } + break; + + case MQTT_EVENT_DISCONNECTED: + ESP_LOGW(TAG, "MQTT_EVENT_DISCONNECTED"); + break; + + case MQTT_EVENT_DATA: { + ESP_LOGI(TAG, "MQTT_EVENT_DATA: %.*s", event->data_len, event->data); + + /* Ensure payload is null-terminated for JSON parsing */ + char *payload = calloc(event->data_len + 1, 1); + if (!payload) { + ESP_LOGE(TAG, "OOM in MQTT_EVENT_DATA"); + return; + } + + memcpy(payload, event->data, event->data_len); + payload[event->data_len] = '\0'; + + ota_job_t job = {0}; + if (!rpc_job_parse(payload, &job)) { + ESP_LOGW(TAG, "Failed to parse RPC job JSON"); + free(payload); + return; + } + + ESP_LOGI(TAG, + "Parsed job: status=%d, deviceType=%d, otaType=%d, jobId=%s", + job.l_ota_status, job.deviceType, job.otaType, job.jobId); + + /* l_ota_status == 3 => Download from FTP */ + if (job.l_ota_status == 3) { + ESP_LOGI(TAG, "OTA status 3: Download request from FTP"); + + /* Notify PENDING (or EXECUTING) + SUCCESS (ack receipt) */ + send_job_status(&job, JOB_STATUS_PENDING, JOB_RESULT_SUCCESS); + + ftp_config_t cfg = { + .server = FTP_SERVER_IP, + .port = FTP_SERVER_PORT, + .username = FTP_USERNAME, + .password = FTP_PASSWORD, + .remote_path = FTP_REMOTE_PATH, + .local_path = FTP_LOCAL_PATH, + }; + + ftp_err_t ret = ftp_manager_download(&cfg, NULL); + + if (ret == FTP_OK) { + ESP_LOGI(TAG, "FTP download success"); + send_job_status(&job, JOB_STATUS_EXECUTED, JOB_RESULT_SUCCESS); + } else { + ESP_LOGE(TAG, "FTP download failed, err=%d", ret); + send_job_status(&job, JOB_STATUS_EXECUTED, JOB_RESULT_REJECTED); + } + } + /* l_ota_status == 6 => Apply FOTA & reboot */ + else if (job.l_ota_status == 6) { + ESP_LOGI(TAG, "OTA status 6: Apply FOTA & reboot"); + + send_job_status(&job, JOB_STATUS_EXECUTING, JOB_RESULT_SUCCESS); + + fota_err_t res = fota_manager_apply(FTP_LOCAL_PATH); + + if (res == FOTA_OK) { + ESP_LOGI(TAG, "FOTA apply success, scheduling reboot"); + send_job_status(&job, JOB_STATUS_EXECUTED, JOB_RESULT_SUCCESS); + + xTaskCreate( + reboot_task, + "reboot_task", + 4096, + NULL, + 5, + NULL + ); + + } else { + ESP_LOGE(TAG, "FOTA apply failed, err=%d", res); + send_job_status(&job, JOB_STATUS_EXECUTED, JOB_RESULT_REJECTED); + } + } else { + ESP_LOGW(TAG, "Unhandled l_ota_status=%d", job.l_ota_status); + } + + free(payload); + break; + } + + default: + break; + } +} + +/* Build MAC string and topics: VEC/Vectr12X/v362/{MAC}/RPC/... */ +static void build_rpc_topics(void) +{ + uint8_t mac[6]; + esp_read_mac(mac, ESP_MAC_WIFI_STA); + + char mac_str[13] = {0}; /* 12 hex chars + null */ + snprintf(mac_str, sizeof(mac_str), + "%02X%02X%02X%02X%02X%02X", + mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]); + + snprintf(s_rpc_req_topic, sizeof(s_rpc_req_topic), + "VEC/Vectr12X/v362/%s/RPC/REQUEST", mac_str); + + snprintf(s_rpc_resp_topic, sizeof(s_rpc_resp_topic), + "VEC/Vectr12X/v362/%s/RPC/RESPONSE", mac_str); + + /* NEW: periodic topic */ + snprintf(s_periodic_topic, sizeof(s_periodic_topic), + "VEC/Vectr12X/v362/%s/PERIODIC", mac_str); + + ESP_LOGI(TAG, "RPC REQUEST topic: %s", s_rpc_req_topic); + ESP_LOGI(TAG, "RPC RESPONSE topic: %s", s_rpc_resp_topic); + ESP_LOGI(TAG, "PERIODIC topic: %s", s_periodic_topic); +} + + +/* Public init called from app_main() */ +void mqtt_manager_init(void) +{ + build_rpc_topics(); + + esp_mqtt_client_config_t mqtt_cfg = { + .broker = { + .address = { + .uri = MQTT_BROKER_URL, // e.g. "mqtt://192.168.0.10" + // .port = MQTT_BROKER_PORT, // e.g. 1883 + }, + }, + .credentials = { + .username = MQTT_USERNAME, + .authentication = { + .password = MQTT_PASSWORD, + }, + }, + .session.keepalive = 60, + .network.reconnect_timeout_ms = 10000, + .network.timeout_ms = 10000, + }; + + s_client = esp_mqtt_client_init(&mqtt_cfg); + if (!s_client) { + ESP_LOGE(TAG, "Failed to create MQTT client"); + return; + } + + esp_mqtt_client_register_event( + s_client, + ESP_EVENT_ANY_ID, + mqtt_event_handler, + NULL + ); + + esp_mqtt_client_start(s_client); + ESP_LOGI(TAG, "MQTT client started"); +} + diff --git a/components/mqtt_manager/mqtt_manager.h b/components/mqtt_manager/mqtt_manager.h new file mode 100644 index 0000000..11b140c --- /dev/null +++ b/components/mqtt_manager/mqtt_manager.h @@ -0,0 +1,4 @@ +#pragma once + +void mqtt_manager_init(void); +void mqtt_send_response(const char *payload); diff --git a/components/rpc_job_parser/CMakeLists.txt b/components/rpc_job_parser/CMakeLists.txt new file mode 100644 index 0000000..fc8ad67 --- /dev/null +++ b/components/rpc_job_parser/CMakeLists.txt @@ -0,0 +1,6 @@ +idf_component_register( + SRCS "rpc_job_parser.c" + INCLUDE_DIRS "." + REQUIRES json +) + diff --git a/components/rpc_job_parser/rpc_job_parser.c b/components/rpc_job_parser/rpc_job_parser.c new file mode 100644 index 0000000..311a97d --- /dev/null +++ b/components/rpc_job_parser/rpc_job_parser.c @@ -0,0 +1,27 @@ +#include "rpc_job_parser.h" +#include "cJSON.h" +#include + +bool rpc_job_parse(const char *json, ota_job_t *job) +{ + cJSON *root = cJSON_Parse(json); + if (!root) return false; + + cJSON *state = cJSON_GetObjectItem(root, "state"); + cJSON *desired = cJSON_GetObjectItem(state, "desired"); + cJSON *info = cJSON_GetObjectItem(desired, "otaInfo"); + cJSON *meta = cJSON_GetObjectItem(desired, "metadata"); + + job->l_ota_status = cJSON_GetObjectItem(info, "l_ota_status")->valueint; + job->deviceType = cJSON_GetObjectItem(info, "deviceType")->valueint; + job->otaType = cJSON_GetObjectItem(info, "otaType")->valueint; + + strcpy(job->commitHash, + cJSON_GetObjectItem(info, "commitHash")->valuestring); + + strcpy(job->jobId, + cJSON_GetObjectItem(meta, "jobId")->valuestring); + + cJSON_Delete(root); + return true; +} diff --git a/components/rpc_job_parser/rpc_job_parser.h b/components/rpc_job_parser/rpc_job_parser.h new file mode 100644 index 0000000..64ff35f --- /dev/null +++ b/components/rpc_job_parser/rpc_job_parser.h @@ -0,0 +1,13 @@ +#pragma once + +#include + +typedef struct { + int l_ota_status; + int deviceType; + int otaType; + char jobId[64]; + char commitHash[128]; +} ota_job_t; + +bool rpc_job_parse(const char *json, ota_job_t *job); diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt new file mode 100644 index 0000000..b1f94be --- /dev/null +++ b/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "main.c" "wifi_init.c" "fs_init.c" INCLUDE_DIRS ".") \ No newline at end of file diff --git a/main/device_config.h b/main/device_config.h new file mode 100644 index 0000000..d46556d --- /dev/null +++ b/main/device_config.h @@ -0,0 +1,29 @@ +#pragma once + +#include "sdkconfig.h" // so we can still use menuconfig if we want later + +// Device identity (you can later derive this from MAC or NVS) +#define DEVICE_ID "ABCDABCDABCD" + +// If you want to build topics using MAC, you can either: +// - Hardcode here for now, OR +// - Compute at runtime from esp_read_mac() and ignore this macro. +#define DEVICE_MAC_STR "A1B2C3D4E5F6" + +// MQTT stuff – set dummy now, real later +#define MQTT_BROKER_URL "mqtt://dev.vec-tr.ai:1883" +#define MQTT_BROKER_PORT 1883 /* change to your actual port */ +#define MQTT_USERNAME "dev" +#define MQTT_PASSWORD "guest" + +// FTP credentials – dummy for now as you requested +#define FTP_SERVER_IP "216.48.186.133" // or domain +#define FTP_SERVER_PORT 21 +#define FTP_USERNAME "ftpuser1" +#define FTP_PASSWORD "123456" +#define FTP_REMOTE_PATH "/files/fw/basil/V17000861409078843894/espFota.bin" +#define FTP_LOCAL_PATH "/spiffs/espFota.bin" + +// WiFi – again, just for testing; you can move these to menuconfig later +#define WIFI_SSID "Tej's iPhone" +#define WIFI_PASS "12345678" diff --git a/main/fs_init.c b/main/fs_init.c new file mode 100644 index 0000000..7c14ffc --- /dev/null +++ b/main/fs_init.c @@ -0,0 +1,24 @@ +#include "esp_log.h" +#include "esp_spiffs.h" + +static const char *TAG = "FS_INIT"; + +void fs_init(void) +{ + esp_vfs_spiffs_conf_t conf = { + .base_path = "/spiffs", // mount point + .partition_label = "spiffs", // must match name in partitions.csv + .max_files = 4, + .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)); + } else { + size_t total = 0, used = 0; + esp_spiffs_info(conf.partition_label, &total, &used); + ESP_LOGI(TAG, "SPIFFS mounted. Total=%u, Used=%u", (unsigned)total, (unsigned)used); + } +} diff --git a/main/fs_init.h b/main/fs_init.h new file mode 100644 index 0000000..1be43f2 --- /dev/null +++ b/main/fs_init.h @@ -0,0 +1,16 @@ +#ifndef FS_INIT_H +#define FS_INIT_H + +#pragma once + +#ifdef __cplusplus +extern "C" { +#endif + +void fs_init(void); + +#ifdef __cplusplus +} +#endif + +#endif /* FS_INIT_H */ diff --git a/main/main.c b/main/main.c new file mode 100644 index 0000000..0b3eff0 --- /dev/null +++ b/main/main.c @@ -0,0 +1,14 @@ +#include +#include "wifi_init.h" +#include "fs_init.h" +#include "mqtt_manager.h" +#include "esp_log.h" + +void app_main() +{ + fs_init(); // <-- mount SPIFFS first + wifi_init(); + mqtt_manager_init(); + + // ESP_LOGI("APP", "TEJ FOTA TEST COMPLETED!!!!!!!!!!!!!!!!!!Device ready. Waiting for OTA RPC commands…"); +} diff --git a/main/wifi_init.c b/main/wifi_init.c new file mode 100644 index 0000000..050dbb7 --- /dev/null +++ b/main/wifi_init.c @@ -0,0 +1,82 @@ +#include "wifi_init.h" + +#include "esp_wifi.h" +#include "esp_event.h" +#include "esp_log.h" +#include "nvs_flash.h" +#include "esp_netif.h" + +#include "device_config.h" + +static const char *TAG = "WIFI_INIT"; + +static void wifi_event_handler(void *arg, + esp_event_base_t event_base, + int32_t event_id, + void *event_data) +{ + if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_START) { + esp_wifi_connect(); + } else if (event_base == WIFI_EVENT && + event_id == WIFI_EVENT_STA_DISCONNECTED) { + ESP_LOGW(TAG, "Disconnected, retrying..."); + esp_wifi_connect(); + } else if (event_base == IP_EVENT && + event_id == IP_EVENT_STA_GOT_IP) { + ESP_LOGI(TAG, "Got IP address"); + } +} + +void wifi_init(void) +{ + esp_err_t ret = nvs_flash_init(); + if (ret == ESP_ERR_NVS_NO_FREE_PAGES || + ret == ESP_ERR_NVS_NEW_VERSION_FOUND) { + /* NVS partition was truncated, erase and retry */ + ESP_ERROR_CHECK(nvs_flash_erase()); + ret = nvs_flash_init(); + } + ESP_ERROR_CHECK(ret); + + ESP_ERROR_CHECK(esp_netif_init()); + ESP_ERROR_CHECK(esp_event_loop_create_default()); + + esp_netif_t *sta_netif = esp_netif_create_default_wifi_sta(); + (void)sta_netif; + + wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); + ESP_ERROR_CHECK(esp_wifi_init(&cfg)); + + ESP_ERROR_CHECK(esp_event_handler_instance_register( + WIFI_EVENT, + ESP_EVENT_ANY_ID, + &wifi_event_handler, + NULL, + NULL + )); + ESP_ERROR_CHECK(esp_event_handler_instance_register( + IP_EVENT, + IP_EVENT_STA_GOT_IP, + &wifi_event_handler, + NULL, + NULL + )); + + wifi_config_t wifi_config = { 0 }; + snprintf((char *)wifi_config.sta.ssid, + sizeof(wifi_config.sta.ssid), + "%s", WIFI_SSID); + snprintf((char *)wifi_config.sta.password, + sizeof(wifi_config.sta.password), + "%s", WIFI_PASS); + + wifi_config.sta.threshold.authmode = WIFI_AUTH_WPA2_PSK; + + ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_STA)); + ESP_ERROR_CHECK( + esp_wifi_set_config(WIFI_IF_STA, &wifi_config) + ); + ESP_ERROR_CHECK(esp_wifi_start()); + + ESP_LOGI(TAG, "Wi-Fi STA init done, connecting to SSID: %s", WIFI_SSID); +} diff --git a/main/wifi_init.h b/main/wifi_init.h new file mode 100644 index 0000000..39df903 --- /dev/null +++ b/main/wifi_init.h @@ -0,0 +1,16 @@ +#ifndef WIFI_INIT_H +#define WIFI_INIT_H + +#pragma once + +#ifdef __cplusplus +extern "C" { +#endif + +void wifi_init(void); + +#ifdef __cplusplus +} +#endif + +#endif /* WIFI_INIT_H */ diff --git a/partitions.csv b/partitions.csv new file mode 100644 index 0000000..a16fe00 --- /dev/null +++ b/partitions.csv @@ -0,0 +1,8 @@ +# Name, Type, SubType, Offset, Size, Flags +nvs, data, nvs, 0x9000, 0x5000, +otadata, data, ota, 0xE000, 0x2000, +phy_init, data, phy, 0x10000, 0x1000, +ota_0, app, ota_0, 0x20000, 0x160000, +ota_1, app, ota_1, 0x180000, 0x160000, +spiffs, data, spiffs, 0x2E0000, 0x120000, + diff --git a/sdkconfig b/sdkconfig new file mode 100644 index 0000000..1d70d0a --- /dev/null +++ b/sdkconfig @@ -0,0 +1,2457 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) 5.5.1 Project Configuration +# +CONFIG_SOC_ADC_SUPPORTED=y +CONFIG_SOC_UART_SUPPORTED=y +CONFIG_SOC_PCNT_SUPPORTED=y +CONFIG_SOC_PHY_SUPPORTED=y +CONFIG_SOC_WIFI_SUPPORTED=y +CONFIG_SOC_TWAI_SUPPORTED=y +CONFIG_SOC_GDMA_SUPPORTED=y +CONFIG_SOC_UHCI_SUPPORTED=y +CONFIG_SOC_AHB_GDMA_SUPPORTED=y +CONFIG_SOC_GPTIMER_SUPPORTED=y +CONFIG_SOC_LCDCAM_SUPPORTED=y +CONFIG_SOC_LCDCAM_CAM_SUPPORTED=y +CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED=y +CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED=y +CONFIG_SOC_MCPWM_SUPPORTED=y +CONFIG_SOC_DEDICATED_GPIO_SUPPORTED=y +CONFIG_SOC_CACHE_SUPPORT_WRAP=y +CONFIG_SOC_ULP_SUPPORTED=y +CONFIG_SOC_ULP_FSM_SUPPORTED=y +CONFIG_SOC_RISCV_COPROC_SUPPORTED=y +CONFIG_SOC_BT_SUPPORTED=y +CONFIG_SOC_USB_OTG_SUPPORTED=y +CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED=y +CONFIG_SOC_CCOMP_TIMER_SUPPORTED=y +CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED=y +CONFIG_SOC_SUPPORTS_SECURE_DL_MODE=y +CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD=y +CONFIG_SOC_EFUSE_SUPPORTED=y +CONFIG_SOC_SDMMC_HOST_SUPPORTED=y +CONFIG_SOC_RTC_FAST_MEM_SUPPORTED=y +CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED=y +CONFIG_SOC_RTC_MEM_SUPPORTED=y +CONFIG_SOC_PSRAM_DMA_CAPABLE=y +CONFIG_SOC_XT_WDT_SUPPORTED=y +CONFIG_SOC_I2S_SUPPORTED=y +CONFIG_SOC_RMT_SUPPORTED=y +CONFIG_SOC_SDM_SUPPORTED=y +CONFIG_SOC_GPSPI_SUPPORTED=y +CONFIG_SOC_LEDC_SUPPORTED=y +CONFIG_SOC_I2C_SUPPORTED=y +CONFIG_SOC_SYSTIMER_SUPPORTED=y +CONFIG_SOC_SUPPORT_COEXISTENCE=y +CONFIG_SOC_TEMP_SENSOR_SUPPORTED=y +CONFIG_SOC_AES_SUPPORTED=y +CONFIG_SOC_MPI_SUPPORTED=y +CONFIG_SOC_SHA_SUPPORTED=y +CONFIG_SOC_HMAC_SUPPORTED=y +CONFIG_SOC_DIG_SIGN_SUPPORTED=y +CONFIG_SOC_FLASH_ENC_SUPPORTED=y +CONFIG_SOC_SECURE_BOOT_SUPPORTED=y +CONFIG_SOC_MEMPROT_SUPPORTED=y +CONFIG_SOC_TOUCH_SENSOR_SUPPORTED=y +CONFIG_SOC_BOD_SUPPORTED=y +CONFIG_SOC_CLK_TREE_SUPPORTED=y +CONFIG_SOC_MPU_SUPPORTED=y +CONFIG_SOC_WDT_SUPPORTED=y +CONFIG_SOC_SPI_FLASH_SUPPORTED=y +CONFIG_SOC_RNG_SUPPORTED=y +CONFIG_SOC_LIGHT_SLEEP_SUPPORTED=y +CONFIG_SOC_DEEP_SLEEP_SUPPORTED=y +CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT=y +CONFIG_SOC_PM_SUPPORTED=y +CONFIG_SOC_SIMD_INSTRUCTION_SUPPORTED=y +CONFIG_SOC_XTAL_SUPPORT_40M=y +CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG=y +CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED=y +CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED=y +CONFIG_SOC_ADC_ARBITER_SUPPORTED=y +CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED=y +CONFIG_SOC_ADC_MONITOR_SUPPORTED=y +CONFIG_SOC_ADC_DMA_SUPPORTED=y +CONFIG_SOC_ADC_PERIPH_NUM=2 +CONFIG_SOC_ADC_MAX_CHANNEL_NUM=10 +CONFIG_SOC_ADC_ATTEN_NUM=4 +CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM=2 +CONFIG_SOC_ADC_PATT_LEN_MAX=24 +CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH=12 +CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_DIGI_RESULT_BYTES=4 +CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV=4 +CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM=2 +CONFIG_SOC_ADC_DIGI_MONITOR_NUM=2 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=83333 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=611 +CONFIG_SOC_ADC_RTC_MIN_BITWIDTH=12 +CONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED=y +CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED=y +CONFIG_SOC_ADC_SHARED_POWER=y +CONFIG_SOC_APB_BACKUP_DMA=y +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y +CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED=y +CONFIG_SOC_CACHE_FREEZE_SUPPORTED=y +CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC=y +CONFIG_SOC_CPU_CORES_NUM=2 +CONFIG_SOC_CPU_INTR_NUM=32 +CONFIG_SOC_CPU_HAS_FPU=y +CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES=y +CONFIG_SOC_CPU_BREAKPOINTS_NUM=2 +CONFIG_SOC_CPU_WATCHPOINTS_NUM=2 +CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE=0x40 +CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT=16 +CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN=4096 +CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH=16 +CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US=1100 +CONFIG_SOC_AHB_GDMA_VERSION=1 +CONFIG_SOC_GDMA_NUM_GROUPS_MAX=1 +CONFIG_SOC_GDMA_PAIRS_PER_GROUP=5 +CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX=5 +CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM=y +CONFIG_SOC_GPIO_PORT=1 +CONFIG_SOC_GPIO_PIN_COUNT=49 +CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER=y +CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB=y +CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT=y +CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD=y +CONFIG_SOC_GPIO_VALID_GPIO_MASK=0x1FFFFFFFFFFFF +CONFIG_SOC_GPIO_IN_RANGE_MAX=48 +CONFIG_SOC_GPIO_OUT_RANGE_MAX=48 +CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0x0001FFFFFC000000 +CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX=y +CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM=3 +CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP=y +CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM=8 +CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM=8 +CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE=y +CONFIG_SOC_I2C_NUM=2 +CONFIG_SOC_HP_I2C_NUM=2 +CONFIG_SOC_I2C_FIFO_LEN=32 +CONFIG_SOC_I2C_CMD_REG_NUM=8 +CONFIG_SOC_I2C_SUPPORT_SLAVE=y +CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS=y +CONFIG_SOC_I2C_SUPPORT_XTAL=y +CONFIG_SOC_I2C_SUPPORT_RTC=y +CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR=y +CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST=y +CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS=y +CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE=y +CONFIG_SOC_I2S_NUM=2 +CONFIG_SOC_I2S_HW_VERSION_2=y +CONFIG_SOC_I2S_SUPPORTS_XTAL=y +CONFIG_SOC_I2S_SUPPORTS_PLL_F160M=y +CONFIG_SOC_I2S_SUPPORTS_PCM=y +CONFIG_SOC_I2S_SUPPORTS_PDM=y +CONFIG_SOC_I2S_SUPPORTS_PDM_TX=y +CONFIG_SOC_I2S_SUPPORTS_PCM2PDM=y +CONFIG_SOC_I2S_SUPPORTS_PDM_RX=y +CONFIG_SOC_I2S_SUPPORTS_PDM2PCM=y +CONFIG_SOC_I2S_PDM_MAX_TX_LINES=2 +CONFIG_SOC_I2S_PDM_MAX_RX_LINES=4 +CONFIG_SOC_I2S_SUPPORTS_TDM=y +CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y +CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK=y +CONFIG_SOC_LEDC_TIMER_NUM=4 +CONFIG_SOC_LEDC_CHANNEL_NUM=8 +CONFIG_SOC_LEDC_TIMER_BIT_WIDTH=14 +CONFIG_SOC_LEDC_SUPPORT_FADE_STOP=y +CONFIG_SOC_MCPWM_GROUPS=2 +CONFIG_SOC_MCPWM_TIMERS_PER_GROUP=3 +CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP=3 +CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP=3 +CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP=y +CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER=3 +CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP=3 +CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE=y +CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=1 +CONFIG_SOC_MMU_PERIPH_NUM=1 +CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 +CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 +CONFIG_SOC_PCNT_GROUPS=1 +CONFIG_SOC_PCNT_UNITS_PER_GROUP=4 +CONFIG_SOC_PCNT_CHANNELS_PER_UNIT=2 +CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT=2 +CONFIG_SOC_RMT_GROUPS=1 +CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP=4 +CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP=4 +CONFIG_SOC_RMT_CHANNELS_PER_GROUP=8 +CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=48 +CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG=y +CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION=y +CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP=y +CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT=y +CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP=y +CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO=y +CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY=y +CONFIG_SOC_RMT_SUPPORT_XTAL=y +CONFIG_SOC_RMT_SUPPORT_RC_FAST=y +CONFIG_SOC_RMT_SUPPORT_APB=y +CONFIG_SOC_RMT_SUPPORT_DMA=y +CONFIG_SOC_LCD_I80_SUPPORTED=y +CONFIG_SOC_LCD_RGB_SUPPORTED=y +CONFIG_SOC_LCD_I80_BUSES=1 +CONFIG_SOC_LCD_RGB_PANELS=1 +CONFIG_SOC_LCD_I80_BUS_WIDTH=16 +CONFIG_SOC_LCD_RGB_DATA_WIDTH=16 +CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV=y +CONFIG_SOC_LCDCAM_I80_NUM_BUSES=1 +CONFIG_SOC_LCDCAM_I80_BUS_WIDTH=16 +CONFIG_SOC_LCDCAM_RGB_NUM_PANELS=1 +CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH=16 +CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH=128 +CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM=549 +CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH=128 +CONFIG_SOC_RTCIO_PIN_COUNT=22 +CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y +CONFIG_SOC_RTCIO_HOLD_SUPPORTED=y +CONFIG_SOC_RTCIO_WAKE_SUPPORTED=y +CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT=y +CONFIG_SOC_SDM_GROUPS=1 +CONFIG_SOC_SDM_CHANNELS_PER_GROUP=8 +CONFIG_SOC_SDM_CLK_SUPPORT_APB=y +CONFIG_SOC_SPI_PERIPH_NUM=3 +CONFIG_SOC_SPI_MAX_CS_NUM=6 +CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64 +CONFIG_SOC_SPI_SUPPORT_DDRCLK=y +CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS=y +CONFIG_SOC_SPI_SUPPORT_CD_SIG=y +CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS=y +CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2=y +CONFIG_SOC_SPI_SUPPORT_CLK_APB=y +CONFIG_SOC_SPI_SUPPORT_CLK_XTAL=y +CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT=y +CONFIG_SOC_MEMSPI_IS_INDEPENDENT=y +CONFIG_SOC_SPI_MAX_PRE_DIVIDER=16 +CONFIG_SOC_SPI_SUPPORT_OCT=y +CONFIG_SOC_SPI_SCT_SUPPORTED=y +CONFIG_SOC_SPI_SCT_REG_NUM=14 +CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX=y +CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX=0x3FFFA +CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y +CONFIG_SOC_SPIRAM_SUPPORTED=y +CONFIG_SOC_SPIRAM_XIP_SUPPORTED=y +CONFIG_SOC_SYSTIMER_COUNTER_NUM=2 +CONFIG_SOC_SYSTIMER_ALARM_NUM=3 +CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO=32 +CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI=20 +CONFIG_SOC_SYSTIMER_FIXED_DIVIDER=y +CONFIG_SOC_SYSTIMER_INT_LEVEL=y +CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE=y +CONFIG_SOC_TIMER_GROUPS=2 +CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP=2 +CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH=54 +CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL=y +CONFIG_SOC_TIMER_GROUP_SUPPORT_APB=y +CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS=4 +CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO=32 +CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI=16 +CONFIG_SOC_TOUCH_SENSOR_VERSION=2 +CONFIG_SOC_TOUCH_SENSOR_NUM=15 +CONFIG_SOC_TOUCH_MIN_CHAN_ID=1 +CONFIG_SOC_TOUCH_MAX_CHAN_ID=14 +CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK=y +CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP=y +CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF=y +CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING=y +CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN=y +CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM=3 +CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED=y +CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM=1 +CONFIG_SOC_TWAI_CONTROLLER_NUM=1 +CONFIG_SOC_TWAI_MASK_FILTER_NUM=1 +CONFIG_SOC_TWAI_CLK_SUPPORT_APB=y +CONFIG_SOC_TWAI_BRP_MIN=2 +CONFIG_SOC_TWAI_BRP_MAX=16384 +CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS=y +CONFIG_SOC_UART_NUM=3 +CONFIG_SOC_UART_HP_NUM=3 +CONFIG_SOC_UART_FIFO_LEN=128 +CONFIG_SOC_UART_BITRATE_MAX=5000000 +CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND=y +CONFIG_SOC_UART_SUPPORT_WAKEUP_INT=y +CONFIG_SOC_UART_SUPPORT_APB_CLK=y +CONFIG_SOC_UART_SUPPORT_RTC_CLK=y +CONFIG_SOC_UART_SUPPORT_XTAL_CLK=y +CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE=y +CONFIG_SOC_UHCI_NUM=1 +CONFIG_SOC_USB_OTG_PERIPH_NUM=1 +CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE=3968 +CONFIG_SOC_SHA_SUPPORT_DMA=y +CONFIG_SOC_SHA_SUPPORT_RESUME=y +CONFIG_SOC_SHA_GDMA=y +CONFIG_SOC_SHA_SUPPORT_SHA1=y +CONFIG_SOC_SHA_SUPPORT_SHA224=y +CONFIG_SOC_SHA_SUPPORT_SHA256=y +CONFIG_SOC_SHA_SUPPORT_SHA384=y +CONFIG_SOC_SHA_SUPPORT_SHA512=y +CONFIG_SOC_SHA_SUPPORT_SHA512_224=y +CONFIG_SOC_SHA_SUPPORT_SHA512_256=y +CONFIG_SOC_SHA_SUPPORT_SHA512_T=y +CONFIG_SOC_MPI_MEM_BLOCKS_NUM=4 +CONFIG_SOC_MPI_OPERATIONS_NUM=3 +CONFIG_SOC_RSA_MAX_BIT_LEN=4096 +CONFIG_SOC_AES_SUPPORT_DMA=y +CONFIG_SOC_AES_GDMA=y +CONFIG_SOC_AES_SUPPORT_AES_128=y +CONFIG_SOC_AES_SUPPORT_AES_256=y +CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_BT_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_CPU_PD=y +CONFIG_SOC_PM_SUPPORT_TAGMEM_PD=y +CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD=y +CONFIG_SOC_PM_SUPPORT_RC_FAST_PD=y +CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD=y +CONFIG_SOC_PM_SUPPORT_MAC_BB_PD=y +CONFIG_SOC_PM_SUPPORT_MODEM_PD=y +CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED=y +CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY=y +CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL=y +CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA=y +CONFIG_SOC_PM_MODEM_PD_BY_SW=y +CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED=y +CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256=y +CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION=y +CONFIG_SOC_CLK_XTAL32K_SUPPORTED=y +CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2=y +CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE=y +CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE=y +CONFIG_SOC_EFUSE_HARD_DIS_JTAG=y +CONFIG_SOC_EFUSE_DIS_USB_JTAG=y +CONFIG_SOC_EFUSE_SOFT_DIS_JTAG=y +CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT=y +CONFIG_SOC_EFUSE_DIS_ICACHE=y +CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK=y +CONFIG_SOC_SECURE_BOOT_V2_RSA=y +CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=3 +CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS=y +CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY=y +CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX=64 +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256=y +CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE=16 +CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE=256 +CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE=21 +CONFIG_SOC_MAC_BB_PD_MEM_SIZE=192 +CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH=12 +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE=y +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND=y +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME=y +CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND=y +CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE=y +CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING=y +CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE=y +CONFIG_SOC_SPI_MEM_SUPPORT_WRAP=y +CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY=y +CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM=y +CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP=y +CONFIG_SOC_COEX_HW_PTI=y +CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE=y +CONFIG_SOC_SDMMC_USE_GPIO_MATRIX=y +CONFIG_SOC_SDMMC_NUM_SLOTS=2 +CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK=y +CONFIG_SOC_SDMMC_DELAY_PHASE_NUM=4 +CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC=y +CONFIG_SOC_WIFI_HW_TSF=y +CONFIG_SOC_WIFI_FTM_SUPPORT=y +CONFIG_SOC_WIFI_GCMP_SUPPORT=y +CONFIG_SOC_WIFI_WAPI_SUPPORT=y +CONFIG_SOC_WIFI_CSI_SUPPORT=y +CONFIG_SOC_WIFI_MESH_SUPPORT=y +CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW=y +CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND=y +CONFIG_SOC_BLE_SUPPORTED=y +CONFIG_SOC_BLE_MESH_SUPPORTED=y +CONFIG_SOC_BLE_50_SUPPORTED=y +CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED=y +CONFIG_SOC_BLUFI_SUPPORTED=y +CONFIG_SOC_ULP_HAS_ADC=y +CONFIG_SOC_PHY_COMBO_MODULE=y +CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV=y +CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM=1 +CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX=16 +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TOOLCHAIN="gcc" +CONFIG_IDF_TOOLCHAIN_GCC=y +CONFIG_IDF_TARGET_ARCH_XTENSA=y +CONFIG_IDF_TARGET_ARCH="xtensa" +CONFIG_IDF_TARGET="esp32s3" +CONFIG_IDF_INIT_VERSION="5.5.1" +CONFIG_IDF_TARGET_ESP32S3=y +CONFIG_IDF_FIRMWARE_CHIP_ID=0x0009 + +# +# Build type +# +CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y +# CONFIG_APP_BUILD_TYPE_RAM is not set +CONFIG_APP_BUILD_GENERATE_BINARIES=y +CONFIG_APP_BUILD_BOOTLOADER=y +CONFIG_APP_BUILD_USE_FLASH_SECTIONS=y +# CONFIG_APP_REPRODUCIBLE_BUILD is not set +# CONFIG_APP_NO_BLOBS is not set +# end of Build type + +# +# Bootloader config +# + +# +# Bootloader manager +# +CONFIG_BOOTLOADER_COMPILE_TIME_DATE=y +CONFIG_BOOTLOADER_PROJECT_VER=1 +# end of Bootloader manager + +# +# Application Rollback +# +# CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is not set +# end of Application Rollback + +# +# Recovery Bootloader and Rollback +# +# end of Recovery Bootloader and Rollback + +CONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x0 +CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set + +# +# Log +# +CONFIG_BOOTLOADER_LOG_VERSION_1=y +CONFIG_BOOTLOADER_LOG_VERSION=1 +# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set +CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y +# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set +CONFIG_BOOTLOADER_LOG_LEVEL=3 + +# +# Format +# +# CONFIG_BOOTLOADER_LOG_COLORS is not set +CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS=y +# end of Format + +# +# Settings +# +CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN=y +CONFIG_BOOTLOADER_LOG_MODE_TEXT=y +# end of Settings +# end of Log + +# +# Serial Flash Configurations +# +# CONFIG_BOOTLOADER_FLASH_DC_AWARE is not set +CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y +# end of Serial Flash Configurations + +CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y +# CONFIG_BOOTLOADER_FACTORY_RESET is not set +# CONFIG_BOOTLOADER_APP_TEST is not set +CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE=y +CONFIG_BOOTLOADER_WDT_ENABLE=y +# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set +CONFIG_BOOTLOADER_WDT_TIME_MS=9000 +# CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP is not set +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON is not set +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS is not set +CONFIG_BOOTLOADER_RESERVE_RTC_SIZE=0 +# CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC is not set +# end of Bootloader config + +# +# Security features +# +CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED=y +CONFIG_SECURE_BOOT_V2_PREFERRED=y +# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set +# CONFIG_SECURE_BOOT is not set +# CONFIG_SECURE_FLASH_ENC_ENABLED is not set +CONFIG_SECURE_ROM_DL_MODE_ENABLED=y +# end of Security features + +# +# Application manager +# +CONFIG_APP_COMPILE_TIME_DATE=y +# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set +# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set +# CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set +CONFIG_APP_RETRIEVE_LEN_ELF_SHA=9 +# end of Application manager + +CONFIG_ESP_ROM_HAS_CRC_LE=y +CONFIG_ESP_ROM_HAS_CRC_BE=y +CONFIG_ESP_ROM_HAS_MZ_CRC32=y +CONFIG_ESP_ROM_HAS_JPEG_DECODE=y +CONFIG_ESP_ROM_UART_CLK_IS_XTAL=y +CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING=y +CONFIG_ESP_ROM_USB_OTG_NUM=3 +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=4 +CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG=y +CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV=y +CONFIG_ESP_ROM_GET_CLK_FREQ=y +CONFIG_ESP_ROM_HAS_HAL_WDT=y +CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND=y +CONFIG_ESP_ROM_HAS_LAYOUT_TABLE=y +CONFIG_ESP_ROM_HAS_SPI_FLASH=y +CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP=y +CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG=y +CONFIG_ESP_ROM_HAS_NEWLIB=y +CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT=y +CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME=y +CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE=y +CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT=y +CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG=y +CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG=y +CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG=y +CONFIG_ESP_ROM_HAS_SW_FLOAT=y +CONFIG_ESP_ROM_HAS_VERSION=y +CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB=y +CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC=y +CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY=y + +# +# Boot ROM Behavior +# +CONFIG_BOOT_ROM_LOG_ALWAYS_ON=y +# CONFIG_BOOT_ROM_LOG_ALWAYS_OFF is not set +# CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH is not set +# CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW is not set +# end of Boot ROM Behavior + +# +# Serial flasher config +# +# CONFIG_ESPTOOLPY_NO_STUB is not set +# CONFIG_ESPTOOLPY_OCT_FLASH is not set +CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT=y +CONFIG_ESPTOOLPY_FLASHMODE_QIO=y +# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set +# CONFIG_ESPTOOLPY_FLASHMODE_DIO is not set +# CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set +CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR=y +CONFIG_ESPTOOLPY_FLASHMODE="dio" +# CONFIG_ESPTOOLPY_FLASHFREQ_120M is not set +CONFIG_ESPTOOLPY_FLASHFREQ_80M=y +# CONFIG_ESPTOOLPY_FLASHFREQ_40M is not set +# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set +CONFIG_ESPTOOLPY_FLASHFREQ="80m" +# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_2MB is not set +CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y +# CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_32MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_64MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_128MB is not set +CONFIG_ESPTOOLPY_FLASHSIZE="4MB" +# CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE is not set +CONFIG_ESPTOOLPY_BEFORE_RESET=y +# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set +CONFIG_ESPTOOLPY_BEFORE="default_reset" +CONFIG_ESPTOOLPY_AFTER_RESET=y +# CONFIG_ESPTOOLPY_AFTER_NORESET is not set +CONFIG_ESPTOOLPY_AFTER="hard_reset" +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 +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_OFFSET=0x8000 +CONFIG_PARTITION_TABLE_MD5=y +# end of Partition Table + +# +# Compiler options +# +CONFIG_COMPILER_OPTIMIZATION_DEBUG=y +# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set +# CONFIG_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_COMPILER_OPTIMIZATION_NONE is not set +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set +CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE=y +CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB=y +CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2 +# CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set +CONFIG_COMPILER_HIDE_PATHS_MACROS=y +# CONFIG_COMPILER_CXX_EXCEPTIONS is not set +# CONFIG_COMPILER_CXX_RTTI is not set +CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y +# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set +# CONFIG_COMPILER_NO_MERGE_CONSTANTS is not set +# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set +CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS=y +# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC14_WARNINGS is not set +# CONFIG_COMPILER_DUMP_RTL_FILES is not set +CONFIG_COMPILER_RT_LIB_GCCLIB=y +CONFIG_COMPILER_RT_LIB_NAME="gcc" +CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING=y +# CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE is not set +# CONFIG_COMPILER_STATIC_ANALYZER is not set +# end of Compiler options + +# +# Component config +# + +# +# Application Level Tracing +# +# CONFIG_APPTRACE_DEST_JTAG is not set +CONFIG_APPTRACE_DEST_NONE=y +# CONFIG_APPTRACE_DEST_UART1 is not set +# CONFIG_APPTRACE_DEST_UART2 is not set +# CONFIG_APPTRACE_DEST_USB_CDC is not set +CONFIG_APPTRACE_DEST_UART_NONE=y +CONFIG_APPTRACE_UART_TASK_PRIO=1 +CONFIG_APPTRACE_LOCK_ENABLE=y +# end of Application Level Tracing + +# +# Bluetooth +# +# CONFIG_BT_ENABLED is not set + +# +# Common Options +# +# CONFIG_BT_BLE_LOG_SPI_OUT_ENABLED is not set +# CONFIG_BT_BLE_LOG_UHCI_OUT_ENABLED is not set +# end of Common Options +# end of Bluetooth + +# +# Console Library +# +# CONFIG_CONSOLE_SORTED_HELP is not set +# end of Console Library + +# +# Driver Configurations +# + +# +# Legacy TWAI Driver Configurations +# +# CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK is not set +CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM=y +# end of Legacy TWAI Driver Configurations + +# +# Legacy ADC Driver Configuration +# +# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK is not set + +# +# Legacy ADC Calibration Configuration +# +# CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy ADC Calibration Configuration +# end of Legacy ADC Driver Configuration + +# +# Legacy MCPWM Driver Configurations +# +# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_MCPWM_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy MCPWM Driver Configurations + +# +# Legacy Timer Group Driver Configurations +# +# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Timer Group Driver Configurations + +# +# Legacy RMT Driver Configurations +# +# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy RMT Driver Configurations + +# +# Legacy I2S Driver Configurations +# +# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy I2S Driver Configurations + +# +# Legacy I2C Driver Configurations +# +# CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy I2C Driver Configurations + +# +# Legacy PCNT Driver Configurations +# +# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_PCNT_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy PCNT Driver Configurations + +# +# Legacy SDM Driver Configurations +# +# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy SDM Driver Configurations + +# +# Legacy Temperature Sensor Driver Configurations +# +# CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Temperature Sensor Driver Configurations + +# +# Legacy Touch Sensor Driver Configurations +# +# CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Touch Sensor Driver Configurations +# end of Driver Configurations + +# +# eFuse Bit Manager +# +# CONFIG_EFUSE_CUSTOM_TABLE is not set +# CONFIG_EFUSE_VIRTUAL is not set +CONFIG_EFUSE_MAX_BLK_LEN=256 +# end of eFuse Bit Manager + +# +# ESP-TLS +# +CONFIG_ESP_TLS_USING_MBEDTLS=y +# CONFIG_ESP_TLS_USE_SECURE_ELEMENT is not set +CONFIG_ESP_TLS_USE_DS_PERIPHERAL=y +# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK is not set +# CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL is not set +# CONFIG_ESP_TLS_PSK_VERIFICATION is not set +# CONFIG_ESP_TLS_INSECURE is not set +CONFIG_ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED=y +# end of ESP-TLS + +# +# ADC and ADC Calibration +# +# CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE is not set +# CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3 is not set +# CONFIG_ADC_ENABLE_DEBUG_LOG is not set +# end of ADC and ADC Calibration + +# +# Wireless Coexistence +# +CONFIG_ESP_COEX_ENABLED=y +# CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE is not set +# CONFIG_ESP_COEX_GPIO_DEBUG is not set +# end of Wireless Coexistence + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# ESP-Driver:Camera Controller Configurations +# +# CONFIG_CAM_CTLR_DVP_CAM_ISR_CACHE_SAFE is not set +# end of ESP-Driver:Camera Controller Configurations + +# +# ESP-Driver:GPIO Configurations +# +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:GPIO Configurations + +# +# ESP-Driver:GPTimer Configurations +# +CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GPTIMER_ISR_CACHE_SAFE is not set +CONFIG_GPTIMER_OBJ_CACHE_SAFE=y +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:GPTimer Configurations + +# +# ESP-Driver:I2C Configurations +# +# CONFIG_I2C_ISR_IRAM_SAFE is not set +# CONFIG_I2C_ENABLE_DEBUG_LOG is not set +# CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 is not set +CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM=y +# end of ESP-Driver:I2C Configurations + +# +# ESP-Driver:I2S Configurations +# +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:I2S Configurations + +# +# ESP-Driver:LEDC Configurations +# +# CONFIG_LEDC_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:LEDC Configurations + +# +# ESP-Driver:MCPWM Configurations +# +CONFIG_MCPWM_ISR_HANDLER_IN_IRAM=y +# CONFIG_MCPWM_ISR_CACHE_SAFE is not set +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +CONFIG_MCPWM_OBJ_CACHE_SAFE=y +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:MCPWM Configurations + +# +# ESP-Driver:PCNT Configurations +# +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:PCNT Configurations + +# +# ESP-Driver:RMT Configurations +# +CONFIG_RMT_ENCODER_FUNC_IN_IRAM=y +CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM=y +CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM=y +# CONFIG_RMT_RECV_FUNC_IN_IRAM is not set +# CONFIG_RMT_TX_ISR_CACHE_SAFE is not set +# CONFIG_RMT_RX_ISR_CACHE_SAFE is not set +CONFIG_RMT_OBJ_CACHE_SAFE=y +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# end of ESP-Driver:RMT Configurations + +# +# ESP-Driver:Sigma Delta Modulator Configurations +# +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Sigma Delta Modulator Configurations + +# +# ESP-Driver:SPI Configurations +# +# CONFIG_SPI_MASTER_IN_IRAM is not set +CONFIG_SPI_MASTER_ISR_IN_IRAM=y +# CONFIG_SPI_SLAVE_IN_IRAM is not set +CONFIG_SPI_SLAVE_ISR_IN_IRAM=y +# end of ESP-Driver:SPI Configurations + +# +# ESP-Driver:Touch Sensor Configurations +# +# CONFIG_TOUCH_CTRL_FUNC_IN_IRAM is not set +# CONFIG_TOUCH_ISR_IRAM_SAFE is not set +# CONFIG_TOUCH_ENABLE_DEBUG_LOG is not set +# CONFIG_TOUCH_SKIP_FSM_CHECK is not set +# end of ESP-Driver:Touch Sensor Configurations + +# +# ESP-Driver:Temperature Sensor Configurations +# +# CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Temperature Sensor Configurations + +# +# ESP-Driver:TWAI Configurations +# +# CONFIG_TWAI_ISR_IN_IRAM is not set +# CONFIG_TWAI_ISR_CACHE_SAFE is not set +# CONFIG_TWAI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:TWAI Configurations + +# +# ESP-Driver:UART Configurations +# +# CONFIG_UART_ISR_IN_IRAM is not set +# end of ESP-Driver:UART Configurations + +# +# ESP-Driver:UHCI Configurations +# +# CONFIG_UHCI_ISR_HANDLER_IN_IRAM is not set +# CONFIG_UHCI_ISR_CACHE_SAFE is not set +# CONFIG_UHCI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:UHCI Configurations + +# +# ESP-Driver:USB Serial/JTAG Configuration +# +CONFIG_USJ_ENABLE_USB_SERIAL_JTAG=y +# end of ESP-Driver:USB Serial/JTAG Configuration + +# +# Ethernet +# +CONFIG_ETH_ENABLED=y +CONFIG_ETH_USE_SPI_ETHERNET=y +# CONFIG_ETH_SPI_ETHERNET_DM9051 is not set +# CONFIG_ETH_SPI_ETHERNET_W5500 is not set +# CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL is not set +# CONFIG_ETH_USE_OPENETH is not set +# CONFIG_ETH_TRANSMIT_MUTEX is not set +# end of Ethernet + +# +# Event Loop Library +# +# CONFIG_ESP_EVENT_LOOP_PROFILING is not set +CONFIG_ESP_EVENT_POST_FROM_ISR=y +CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y +# end of Event Loop Library + +# +# GDB Stub +# +CONFIG_ESP_GDBSTUB_ENABLED=y +# CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME is not set +CONFIG_ESP_GDBSTUB_SUPPORT_TASKS=y +CONFIG_ESP_GDBSTUB_MAX_TASKS=32 +# end of GDB Stub + +# +# ESP HID +# +CONFIG_ESPHID_TASK_SIZE_BT=2048 +CONFIG_ESPHID_TASK_SIZE_BLE=4096 +# end of ESP HID + +# +# ESP HTTP client +# +CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y +# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set +# CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH is not set +# CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT is not set +CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTP client + +# +# HTTP Server +# +CONFIG_HTTPD_MAX_REQ_HDR_LEN=1024 +CONFIG_HTTPD_MAX_URI_LEN=512 +CONFIG_HTTPD_ERR_RESP_NO_DELAY=y +CONFIG_HTTPD_PURGE_BUF_LEN=32 +# CONFIG_HTTPD_LOG_PURGE_DATA is not set +# CONFIG_HTTPD_WS_SUPPORT is not set +# CONFIG_HTTPD_QUEUE_WORK_BLOCKING is not set +CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT=2000 +# end of HTTP Server + +# +# ESP HTTPS OTA +# +# CONFIG_ESP_HTTPS_OTA_DECRYPT_CB is not set +# CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP is not set +CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTPS OTA + +# +# ESP HTTPS server +# +# CONFIG_ESP_HTTPS_SERVER_ENABLE is not set +CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT=2000 +# CONFIG_ESP_HTTPS_SERVER_CERT_SELECT_HOOK is not set +# end of ESP HTTPS server + +# +# Hardware Settings +# + +# +# Chip revision +# +CONFIG_ESP32S3_REV_MIN_0=y +# CONFIG_ESP32S3_REV_MIN_1 is not set +# CONFIG_ESP32S3_REV_MIN_2 is not set +CONFIG_ESP32S3_REV_MIN_FULL=0 +CONFIG_ESP_REV_MIN_FULL=0 + +# +# Maximum Supported ESP32-S3 Revision (Rev v0.99) +# +CONFIG_ESP32S3_REV_MAX_FULL=99 +CONFIG_ESP_REV_MAX_FULL=99 +CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL=0 +CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL=199 + +# +# Maximum Supported ESP32-S3 eFuse Block Revision (eFuse Block Rev v1.99) +# +# end of Chip revision + +# +# MAC Config +# +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO is not set +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC is not set +# end of MAC Config + +# +# Sleep Config +# +# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set +CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y +CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU=y +CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND=y +CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND=y +CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY=2000 +# CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION is not set +# CONFIG_ESP_SLEEP_DEBUG is not set +CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y +# end of Sleep Config + +# +# RTC Clock Config +# +CONFIG_RTC_CLK_SRC_INT_RC=y +# CONFIG_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_RTC_CLK_SRC_INT_8MD256 is not set +CONFIG_RTC_CLK_CAL_CYCLES=1024 +# end of RTC Clock Config + +# +# Peripheral Control +# +CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM=y +CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM=y +# end of Peripheral Control + +# +# GDMA Configurations +# +CONFIG_GDMA_CTRL_FUNC_IN_IRAM=y +CONFIG_GDMA_ISR_HANDLER_IN_IRAM=y +CONFIG_GDMA_OBJ_DRAM_SAFE=y +# CONFIG_GDMA_ENABLE_DEBUG_LOG is not set +# CONFIG_GDMA_ISR_IRAM_SAFE is not set +# end of GDMA Configurations + +# +# Main XTAL Config +# +CONFIG_XTAL_FREQ_40=y +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config + +# +# Power Supplier +# + +# +# Brownout Detector +# +CONFIG_ESP_BROWNOUT_DET=y +CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7=y +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 is not set +CONFIG_ESP_BROWNOUT_DET_LVL=7 +CONFIG_ESP_BROWNOUT_USE_INTR=y +# end of Brownout Detector +# end of Power Supplier + +CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM=y +CONFIG_ESP_INTR_IN_IRAM=y +# end of Hardware Settings + +# +# ESP-Driver:LCD Controller Configurations +# +# CONFIG_LCD_ENABLE_DEBUG_LOG is not set +# CONFIG_LCD_RGB_ISR_IRAM_SAFE is not set +# CONFIG_LCD_RGB_RESTART_IN_VSYNC is not set +# end of ESP-Driver:LCD Controller Configurations + +# +# ESP-MM: Memory Management Configurations +# +# CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS is not set +# end of ESP-MM: Memory Management Configurations + +# +# ESP NETIF Adapter +# +CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 +# CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION is not set +CONFIG_ESP_NETIF_TCPIP_LWIP=y +# CONFIG_ESP_NETIF_LOOPBACK is not set +CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API=y +CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC=y +# CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS is not set +# CONFIG_ESP_NETIF_L2_TAP is not set +# CONFIG_ESP_NETIF_BRIDGE_EN is not set +# 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 +# +CONFIG_ESP_PHY_ENABLED=y +CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE=y +# CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION is not set +CONFIG_ESP_PHY_MAX_WIFI_TX_POWER=20 +CONFIG_ESP_PHY_MAX_TX_POWER=20 +# CONFIG_ESP_PHY_REDUCE_TX_POWER is not set +CONFIG_ESP_PHY_ENABLE_USB=y +# CONFIG_ESP_PHY_ENABLE_CERT_TEST is not set +CONFIG_ESP_PHY_RF_CAL_PARTIAL=y +# CONFIG_ESP_PHY_RF_CAL_NONE is not set +# CONFIG_ESP_PHY_RF_CAL_FULL is not set +CONFIG_ESP_PHY_CALIBRATION_MODE=0 +CONFIG_ESP_PHY_PLL_TRACK_PERIOD_MS=1000 +# CONFIG_ESP_PHY_PLL_TRACK_DEBUG is not set +# CONFIG_ESP_PHY_RECORD_USED_TIME is not set +CONFIG_ESP_PHY_IRAM_OPT=y +# CONFIG_ESP_PHY_DEBUG is not set +# end of PHY + +# +# Power Management +# +CONFIG_PM_SLEEP_FUNC_IN_IRAM=y +# CONFIG_PM_ENABLE is not set +CONFIG_PM_SLP_IRAM_OPT=y +CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP=y +CONFIG_PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP=y +# end of Power Management + +# +# ESP PSRAM +# +# CONFIG_SPIRAM is not set +# end of ESP PSRAM + +# +# ESP Ringbuf +# +# CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH is not set +# end of ESP Ringbuf + +# +# ESP-ROM +# +CONFIG_ESP_ROM_PRINT_IN_IRAM=y +# end of ESP-ROM + +# +# ESP Security Specific +# +# end of ESP Security Specific + +# +# ESP System Settings +# +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160=y +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=160 + +# +# Cache config +# +CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB=y +# CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB is not set +CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE=0x4000 +# CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS is not set +CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS=y +CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS=8 +# CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B is not set +CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B=y +CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE=32 +# CONFIG_ESP32S3_DATA_CACHE_16KB is not set +CONFIG_ESP32S3_DATA_CACHE_32KB=y +# CONFIG_ESP32S3_DATA_CACHE_64KB is not set +CONFIG_ESP32S3_DATA_CACHE_SIZE=0x8000 +# CONFIG_ESP32S3_DATA_CACHE_4WAYS is not set +CONFIG_ESP32S3_DATA_CACHE_8WAYS=y +CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS=8 +# CONFIG_ESP32S3_DATA_CACHE_LINE_16B is not set +CONFIG_ESP32S3_DATA_CACHE_LINE_32B=y +# CONFIG_ESP32S3_DATA_CACHE_LINE_64B is not set +CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE=32 +# end of Cache config + +# +# Memory +# +# CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM is not set +# CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE is not set +# end of Memory + +# +# Trace memory +# +# CONFIG_ESP32S3_TRAX is not set +CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM=0x0 +# end of Trace memory + +CONFIG_ESP_SYSTEM_IN_IRAM=y +# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set +CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y +# CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set +# CONFIG_ESP_SYSTEM_PANIC_GDBSTUB is not set +CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS=0 +CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK=y +CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP=y + +# +# Memory protection +# +CONFIG_ESP_SYSTEM_MEMPROT_FEATURE=y +CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK=y +# end of Memory protection + +CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_ESP_MAIN_TASK_STACK_SIZE=3584 +CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y +# CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 is not set +# CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY is not set +CONFIG_ESP_MAIN_TASK_AFFINITY=0x0 +CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048 +CONFIG_ESP_CONSOLE_UART_DEFAULT=y +# CONFIG_ESP_CONSOLE_USB_CDC is not set +# CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG is not set +# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set +# CONFIG_ESP_CONSOLE_NONE is not set +# CONFIG_ESP_CONSOLE_SECONDARY_NONE is not set +CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG=y +CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=y +CONFIG_ESP_CONSOLE_UART=y +CONFIG_ESP_CONSOLE_UART_NUM=0 +CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM=0 +CONFIG_ESP_CONSOLE_UART_BAUDRATE=115200 +CONFIG_ESP_INT_WDT=y +CONFIG_ESP_INT_WDT_TIMEOUT_MS=300 +CONFIG_ESP_INT_WDT_CHECK_CPU1=y +CONFIG_ESP_TASK_WDT_EN=y +CONFIG_ESP_TASK_WDT_INIT=y +# CONFIG_ESP_TASK_WDT_PANIC is not set +CONFIG_ESP_TASK_WDT_TIMEOUT_S=5 +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# CONFIG_ESP_PANIC_HANDLER_IRAM is not set +# CONFIG_ESP_DEBUG_STUBS_ENABLE is not set +CONFIG_ESP_DEBUG_OCDAWARE=y +CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y +CONFIG_ESP_SYSTEM_BBPLL_RECALIB=y +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +CONFIG_ESP_IPC_ENABLE=y +CONFIG_ESP_IPC_TASK_STACK_SIZE=1280 +CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y +CONFIG_ESP_IPC_ISR_ENABLE=y +# end of IPC (Inter-Processor Call) + +# +# ESP Timer (High Resolution Timer) +# +CONFIG_ESP_TIMER_IN_IRAM=y +# CONFIG_ESP_TIMER_PROFILING is not set +CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER=y +CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER=y +CONFIG_ESP_TIMER_TASK_STACK_SIZE=3584 +CONFIG_ESP_TIMER_INTERRUPT_LEVEL=1 +# CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL is not set +CONFIG_ESP_TIMER_TASK_AFFINITY=0x0 +CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0=y +CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0=y +# CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set +CONFIG_ESP_TIMER_IMPL_SYSTIMER=y +# end of ESP Timer (High Resolution Timer) + +# +# Wi-Fi +# +CONFIG_ESP_WIFI_ENABLED=y +CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM=10 +CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# CONFIG_ESP_WIFI_STATIC_TX_BUFFER is not set +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER=y +CONFIG_ESP_WIFI_TX_BUFFER_TYPE=1 +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER=y +# CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER is not set +CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF=0 +CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF=5 +# CONFIG_ESP_WIFI_CSI_ENABLED is not set +CONFIG_ESP_WIFI_AMPDU_TX_ENABLED=y +CONFIG_ESP_WIFI_TX_BA_WIN=6 +CONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP_WIFI_RX_BA_WIN=6 +CONFIG_ESP_WIFI_NVS_ENABLED=y +CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0=y +# CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 is not set +CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN=752 +CONFIG_ESP_WIFI_MGMT_SBUF_NUM=32 +CONFIG_ESP_WIFI_IRAM_OPT=y +# CONFIG_ESP_WIFI_EXTRA_IRAM_OPT is not set +CONFIG_ESP_WIFI_RX_IRAM_OPT=y +CONFIG_ESP_WIFI_ENABLE_WPA3_SAE=y +CONFIG_ESP_WIFI_ENABLE_SAE_PK=y +CONFIG_ESP_WIFI_ENABLE_SAE_H2E=y +CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT=y +CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA=y +# CONFIG_ESP_WIFI_SLP_IRAM_OPT is not set +CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME=50 +# CONFIG_ESP_WIFI_BSS_MAX_IDLE_SUPPORT is not set +CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME=10 +CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME=15 +# CONFIG_ESP_WIFI_FTM_ENABLE is not set +CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y +# CONFIG_ESP_WIFI_GCMP_SUPPORT is not set +CONFIG_ESP_WIFI_GMAC_SUPPORT=y +CONFIG_ESP_WIFI_SOFTAP_SUPPORT=y +# CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT is not set +CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM=7 +CONFIG_ESP_WIFI_MBEDTLS_CRYPTO=y +CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT=y +# CONFIG_ESP_WIFI_WAPI_PSK is not set +# CONFIG_ESP_WIFI_SUITE_B_192 is not set +# CONFIG_ESP_WIFI_11KV_SUPPORT is not set +# CONFIG_ESP_WIFI_MBO_SUPPORT is not set +# CONFIG_ESP_WIFI_DPP_SUPPORT is not set +# CONFIG_ESP_WIFI_11R_SUPPORT is not set +# CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR is not set + +# +# WPS Configuration Options +# +# CONFIG_ESP_WIFI_WPS_STRICT is not set +# CONFIG_ESP_WIFI_WPS_PASSPHRASE is not set +# end of WPS Configuration Options + +# CONFIG_ESP_WIFI_DEBUG_PRINT is not set +# CONFIG_ESP_WIFI_TESTING_OPTIONS is not set +CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y +# CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER is not set +# end of Wi-Fi + +# +# Core dump +# +# CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH is not set +# CONFIG_ESP_COREDUMP_ENABLE_TO_UART is not set +CONFIG_ESP_COREDUMP_ENABLE_TO_NONE=y +# end of Core dump + +# +# FAT Filesystem support +# +CONFIG_FATFS_VOLUME_COUNT=2 +CONFIG_FATFS_LFN_NONE=y +# CONFIG_FATFS_LFN_HEAP is not set +# CONFIG_FATFS_LFN_STACK is not set +# CONFIG_FATFS_SECTOR_512 is not set +CONFIG_FATFS_SECTOR_4096=y +# CONFIG_FATFS_CODEPAGE_DYNAMIC is not set +CONFIG_FATFS_CODEPAGE_437=y +# CONFIG_FATFS_CODEPAGE_720 is not set +# CONFIG_FATFS_CODEPAGE_737 is not set +# CONFIG_FATFS_CODEPAGE_771 is not set +# CONFIG_FATFS_CODEPAGE_775 is not set +# CONFIG_FATFS_CODEPAGE_850 is not set +# CONFIG_FATFS_CODEPAGE_852 is not set +# CONFIG_FATFS_CODEPAGE_855 is not set +# CONFIG_FATFS_CODEPAGE_857 is not set +# CONFIG_FATFS_CODEPAGE_860 is not set +# CONFIG_FATFS_CODEPAGE_861 is not set +# CONFIG_FATFS_CODEPAGE_862 is not set +# CONFIG_FATFS_CODEPAGE_863 is not set +# CONFIG_FATFS_CODEPAGE_864 is not set +# CONFIG_FATFS_CODEPAGE_865 is not set +# CONFIG_FATFS_CODEPAGE_866 is not set +# CONFIG_FATFS_CODEPAGE_869 is not set +# CONFIG_FATFS_CODEPAGE_932 is not set +# CONFIG_FATFS_CODEPAGE_936 is not set +# CONFIG_FATFS_CODEPAGE_949 is not set +# CONFIG_FATFS_CODEPAGE_950 is not set +CONFIG_FATFS_CODEPAGE=437 +CONFIG_FATFS_FS_LOCK=0 +CONFIG_FATFS_TIMEOUT_MS=10000 +CONFIG_FATFS_PER_FILE_CACHE=y +# CONFIG_FATFS_USE_FASTSEEK is not set +CONFIG_FATFS_USE_STRFUNC_NONE=y +# CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV is not set +# CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV is not set +CONFIG_FATFS_VFS_FSTAT_BLKSIZE=0 +# CONFIG_FATFS_IMMEDIATE_FSYNC is not set +# CONFIG_FATFS_USE_LABEL is not set +CONFIG_FATFS_LINK_LOCK=y +# CONFIG_FATFS_USE_DYN_BUFFERS is not set + +# +# File system free space calculation behavior +# +CONFIG_FATFS_DONT_TRUST_FREE_CLUSTER_CNT=0 +CONFIG_FATFS_DONT_TRUST_LAST_ALLOC=0 +# end of File system free space calculation behavior +# end of FAT Filesystem support + +# +# FreeRTOS +# + +# +# Kernel +# +# CONFIG_FREERTOS_SMP is not set +# CONFIG_FREERTOS_UNICORE is not set +CONFIG_FREERTOS_HZ=100 +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set +CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y +CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1 +CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536 +# CONFIG_FREERTOS_USE_IDLE_HOOK is not set +# CONFIG_FREERTOS_USE_TICK_HOOK is not set +CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 +# CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY is not set +CONFIG_FREERTOS_USE_TIMERS=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME="Tmr Svc" +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 is not set +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 is not set +CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 +CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048 +CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 +CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 +CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1 +# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set +# CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES is not set +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set +# CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG is not set +# end of Kernel + +# +# Port +# +CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y +# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set +CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y +# CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK is not set +# CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP is not set +CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y +CONFIG_FREERTOS_ISR_STACKSIZE=1536 +CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y +# CONFIG_FREERTOS_FPU_IN_ISR is not set +CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER=y +CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1=y +# CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 is not set +CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER=y +# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +# end of Port + +# +# Extra +# +# end of Extra + +CONFIG_FREERTOS_PORT=y +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y +CONFIG_FREERTOS_DEBUG_OCDAWARE=y +CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y +CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y +CONFIG_FREERTOS_NUMBER_OF_CORES=2 +CONFIG_FREERTOS_IN_IRAM=y +# end of FreeRTOS + +# +# Hardware Abstraction Layer (HAL) and Low Level (LL) +# +CONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y +# CONFIG_HAL_ASSERTION_DISABLE is not set +# CONFIG_HAL_ASSERTION_SILENT is not set +# CONFIG_HAL_ASSERTION_ENABLE is not set +CONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2 +CONFIG_HAL_WDT_USE_ROM_IMPL=y +# end of Hardware Abstraction Layer (HAL) and Low Level (LL) + +# +# Heap memory debugging +# +CONFIG_HEAP_POISONING_DISABLED=y +# CONFIG_HEAP_POISONING_LIGHT is not set +# CONFIG_HEAP_POISONING_COMPREHENSIVE is not set +CONFIG_HEAP_TRACING_OFF=y +# CONFIG_HEAP_TRACING_STANDALONE is not set +# CONFIG_HEAP_TRACING_TOHOST is not set +# CONFIG_HEAP_USE_HOOKS is not set +# CONFIG_HEAP_TASK_TRACKING is not set +# CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS is not set +# CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH is not set +# end of Heap memory debugging + +# +# Log +# +CONFIG_LOG_VERSION_1=y +# CONFIG_LOG_VERSION_2 is not set +CONFIG_LOG_VERSION=1 + +# +# Log Level +# +# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set +# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set +# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set +CONFIG_LOG_DEFAULT_LEVEL_INFO=y +# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set +# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set +CONFIG_LOG_DEFAULT_LEVEL=3 +CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y +# CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set +# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set +CONFIG_LOG_MAXIMUM_LEVEL=3 + +# +# Level Settings +# +# CONFIG_LOG_MASTER_LEVEL is not set +CONFIG_LOG_DYNAMIC_LEVEL_CONTROL=y +# CONFIG_LOG_TAG_LEVEL_IMPL_NONE is not set +# CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST is not set +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST=y +# CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY is not set +CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP=y +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE=31 +# end of Level Settings +# end of Log Level + +# +# Format +# +# CONFIG_LOG_COLORS is not set +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Format + +# +# Settings +# +CONFIG_LOG_MODE_TEXT_EN=y +CONFIG_LOG_MODE_TEXT=y +# end of Settings + +CONFIG_LOG_IN_IRAM=y +# end of Log + +# +# LWIP +# +CONFIG_LWIP_ENABLE=y +CONFIG_LWIP_LOCAL_HOSTNAME="espressif" +CONFIG_LWIP_TCPIP_TASK_PRIO=18 +# CONFIG_LWIP_TCPIP_CORE_LOCKING is not set +# CONFIG_LWIP_CHECK_THREAD_SAFETY is not set +CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y +# CONFIG_LWIP_L2_TO_L3_COPY is not set +# CONFIG_LWIP_IRAM_OPTIMIZATION is not set +# CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION is not set +CONFIG_LWIP_TIMERS_ONDEMAND=y +CONFIG_LWIP_ND6=y +# CONFIG_LWIP_FORCE_ROUTER_FORWARDING is not set +CONFIG_LWIP_MAX_SOCKETS=10 +# CONFIG_LWIP_USE_ONLY_LWIP_SELECT is not set +# CONFIG_LWIP_SO_LINGER is not set +CONFIG_LWIP_SO_REUSE=y +CONFIG_LWIP_SO_REUSE_RXTOALL=y +# CONFIG_LWIP_SO_RCVBUF is not set +# CONFIG_LWIP_NETBUF_RECVINFO is not set +CONFIG_LWIP_IP_DEFAULT_TTL=64 +CONFIG_LWIP_IP4_FRAG=y +CONFIG_LWIP_IP6_FRAG=y +# CONFIG_LWIP_IP4_REASSEMBLY is not set +# CONFIG_LWIP_IP6_REASSEMBLY is not set +CONFIG_LWIP_IP_REASS_MAX_PBUFS=10 +# CONFIG_LWIP_IP_FORWARD is not set +# CONFIG_LWIP_STATS is not set +CONFIG_LWIP_ESP_GRATUITOUS_ARP=y +CONFIG_LWIP_GARP_TMR_INTERVAL=60 +CONFIG_LWIP_ESP_MLDV6_REPORT=y +CONFIG_LWIP_MLDV6_TMR_INTERVAL=40 +CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=32 +CONFIG_LWIP_DHCP_DOES_ARP_CHECK=y +# CONFIG_LWIP_DHCP_DOES_ACD_CHECK is not set +# CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP is not set +# CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID is not set +CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID=y +# CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set +CONFIG_LWIP_DHCP_OPTIONS_LEN=69 +CONFIG_LWIP_NUM_NETIF_CLIENT_DATA=0 +CONFIG_LWIP_DHCP_COARSE_TIMER_SECS=1 + +# +# DHCP server +# +CONFIG_LWIP_DHCPS=y +CONFIG_LWIP_DHCPS_LEASE_UNIT=60 +CONFIG_LWIP_DHCPS_MAX_STATION_NUM=8 +CONFIG_LWIP_DHCPS_STATIC_ENTRIES=y +CONFIG_LWIP_DHCPS_ADD_DNS=y +# end of DHCP server + +# CONFIG_LWIP_AUTOIP is not set +CONFIG_LWIP_IPV4=y +CONFIG_LWIP_IPV6=y +# CONFIG_LWIP_IPV6_AUTOCONFIG is not set +CONFIG_LWIP_IPV6_NUM_ADDRESSES=3 +# CONFIG_LWIP_IPV6_FORWARD is not set +# CONFIG_LWIP_NETIF_STATUS_CALLBACK is not set +CONFIG_LWIP_NETIF_LOOPBACK=y +CONFIG_LWIP_LOOPBACK_MAX_PBUFS=8 + +# +# TCP +# +CONFIG_LWIP_MAX_ACTIVE_TCP=16 +CONFIG_LWIP_MAX_LISTENING_TCP=16 +CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=y +CONFIG_LWIP_TCP_MAXRTX=12 +CONFIG_LWIP_TCP_SYNMAXRTX=12 +CONFIG_LWIP_TCP_MSS=1440 +CONFIG_LWIP_TCP_TMR_INTERVAL=250 +CONFIG_LWIP_TCP_MSL=60000 +CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT=20000 +CONFIG_LWIP_TCP_SND_BUF_DEFAULT=5760 +CONFIG_LWIP_TCP_WND_DEFAULT=5760 +CONFIG_LWIP_TCP_RECVMBOX_SIZE=6 +CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE=6 +CONFIG_LWIP_TCP_QUEUE_OOSEQ=y +CONFIG_LWIP_TCP_OOSEQ_TIMEOUT=6 +CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS=4 +# CONFIG_LWIP_TCP_SACK_OUT is not set +CONFIG_LWIP_TCP_OVERSIZE_MSS=y +# CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS is not set +# CONFIG_LWIP_TCP_OVERSIZE_DISABLE is not set +CONFIG_LWIP_TCP_RTO_TIME=1500 +# end of TCP + +# +# UDP +# +CONFIG_LWIP_MAX_UDP_PCBS=16 +CONFIG_LWIP_UDP_RECVMBOX_SIZE=6 +# end of UDP + +# +# Checksums +# +# CONFIG_LWIP_CHECKSUM_CHECK_IP is not set +# CONFIG_LWIP_CHECKSUM_CHECK_UDP is not set +CONFIG_LWIP_CHECKSUM_CHECK_ICMP=y +# end of Checksums + +CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=3072 +CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY=y +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not set +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 is not set +CONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF +CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 +CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 +CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES=5 +CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS=3 +CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS=10 +# CONFIG_LWIP_PPP_SUPPORT is not set +# CONFIG_LWIP_SLIP_SUPPORT is not set + +# +# ICMP +# +CONFIG_LWIP_ICMP=y +# CONFIG_LWIP_MULTICAST_PING is not set +# CONFIG_LWIP_BROADCAST_PING is not set +# end of ICMP + +# +# LWIP RAW API +# +CONFIG_LWIP_MAX_RAW_PCBS=16 +# end of LWIP RAW API + +# +# SNTP +# +CONFIG_LWIP_SNTP_MAX_SERVERS=1 +# CONFIG_LWIP_DHCP_GET_NTP_SRV is not set +CONFIG_LWIP_SNTP_UPDATE_DELAY=3600000 +CONFIG_LWIP_SNTP_STARTUP_DELAY=y +CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY=5000 +# end of SNTP + +# +# DNS +# +CONFIG_LWIP_DNS_MAX_HOST_IP=1 +CONFIG_LWIP_DNS_MAX_SERVERS=3 +# CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT is not set +# CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF is not set +# CONFIG_LWIP_USE_ESP_GETADDRINFO is not set +# end of DNS + +CONFIG_LWIP_BRIDGEIF_MAX_PORTS=7 +CONFIG_LWIP_ESP_LWIP_ASSERT=y + +# +# Hooks +# +# CONFIG_LWIP_HOOK_TCP_ISN_NONE is not set +CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT=y +# CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM is not set +CONFIG_LWIP_HOOK_IP6_ROUTE_NONE=y +# CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT is not set +# CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM is not set +CONFIG_LWIP_HOOK_ND6_GET_GW_NONE=y +# CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT is not set +# CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM is not set +CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE=y +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT is not set +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM is not set +CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_NONE=y +# CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT is not set +# CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM is not set +CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE=y +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT is not set +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM is not set +CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE=y +# CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM is not set +# CONFIG_LWIP_HOOK_IP6_INPUT_NONE is not set +CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT=y +# CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM is not set +# end of Hooks + +# CONFIG_LWIP_DEBUG is not set +# end of LWIP + +# +# mbedTLS +# +CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y +# CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set +# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set +CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y +CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384 +CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096 +# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set +# CONFIG_MBEDTLS_DEBUG is not set + +# +# mbedTLS v3.x related +# +# CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 is not set +# CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH is not set +# CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK is not set +# CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION is not set +CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE=y +# CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT is not set +CONFIG_MBEDTLS_PKCS7_C=y +# end of mbedTLS v3.x related + +# +# Certificate Bundle +# +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set +# CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST is not set +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200 +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +CONFIG_MBEDTLS_CMAC_C=y +CONFIG_MBEDTLS_HARDWARE_AES=y +CONFIG_MBEDTLS_AES_USE_INTERRUPT=y +CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL=0 +CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER=y +CONFIG_MBEDTLS_HARDWARE_MPI=y +# CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI is not set +CONFIG_MBEDTLS_MPI_USE_INTERRUPT=y +CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL=0 +CONFIG_MBEDTLS_HARDWARE_SHA=y +CONFIG_MBEDTLS_ROM_MD5=y +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set +CONFIG_MBEDTLS_HAVE_TIME=y +# CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set +# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set +CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y +CONFIG_MBEDTLS_SHA1_C=y +CONFIG_MBEDTLS_SHA512_C=y +# CONFIG_MBEDTLS_SHA3_C is not set +CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y +# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set +# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set +# CONFIG_MBEDTLS_TLS_DISABLED is not set +CONFIG_MBEDTLS_TLS_SERVER=y +CONFIG_MBEDTLS_TLS_CLIENT=y +CONFIG_MBEDTLS_TLS_ENABLED=y + +# +# TLS Key Exchange Methods +# +# CONFIG_MBEDTLS_PSK_MODES is not set +CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y +# end of TLS Key Exchange Methods + +CONFIG_MBEDTLS_SSL_RENEGOTIATION=y +CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y +# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set +# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set +CONFIG_MBEDTLS_SSL_ALPN=y +CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y +CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y + +# +# Symmetric Ciphers +# +CONFIG_MBEDTLS_AES_C=y +# CONFIG_MBEDTLS_CAMELLIA_C is not set +# CONFIG_MBEDTLS_DES_C is not set +# CONFIG_MBEDTLS_BLOWFISH_C is not set +# CONFIG_MBEDTLS_XTEA_C is not set +CONFIG_MBEDTLS_CCM_C=y +CONFIG_MBEDTLS_GCM_C=y +# CONFIG_MBEDTLS_NIST_KW_C is not set +# end of Symmetric Ciphers + +# CONFIG_MBEDTLS_RIPEMD160_C is not set + +# +# Certificates +# +CONFIG_MBEDTLS_PEM_PARSE_C=y +CONFIG_MBEDTLS_PEM_WRITE_C=y +CONFIG_MBEDTLS_X509_CRL_PARSE_C=y +CONFIG_MBEDTLS_X509_CSR_PARSE_C=y +# end of Certificates + +CONFIG_MBEDTLS_ECP_C=y +CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED=y +CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED=y +# CONFIG_MBEDTLS_DHM_C is not set +CONFIG_MBEDTLS_ECDH_C=y +CONFIG_MBEDTLS_ECDSA_C=y +# CONFIG_MBEDTLS_ECJPAKE_C is not set +CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y +CONFIG_MBEDTLS_ECP_NIST_OPTIM=y +# CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM is not set +# CONFIG_MBEDTLS_POLY1305_C is not set +# CONFIG_MBEDTLS_CHACHA20_C is not set +# CONFIG_MBEDTLS_HKDF_C is not set +# CONFIG_MBEDTLS_THREADING_C is not set +CONFIG_MBEDTLS_ERROR_STRINGS=y +CONFIG_MBEDTLS_FS_IO=y +# CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION is not set +# end of mbedTLS + +# +# ESP-MQTT Configurations +# +CONFIG_MQTT_PROTOCOL_311=y +# CONFIG_MQTT_PROTOCOL_5 is not set +# CONFIG_MQTT_TRANSPORT_SSL is not set +CONFIG_MQTT_TRANSPORT_WEBSOCKET=y +# CONFIG_MQTT_MSG_ID_INCREMENTAL is not set +# CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED is not set +# CONFIG_MQTT_REPORT_DELETED_MESSAGES is not set +CONFIG_MQTT_USE_CUSTOM_CONFIG=y +CONFIG_MQTT_TCP_DEFAULT_PORT=1883 +CONFIG_MQTT_WS_DEFAULT_PORT=80 +CONFIG_MQTT_BUFFER_SIZE=1024 +CONFIG_MQTT_TASK_STACK_SIZE=8192 +# CONFIG_MQTT_DISABLE_API_LOCKS is not set +CONFIG_MQTT_TASK_PRIORITY=5 +CONFIG_MQTT_POLL_READ_TIMEOUT_MS=1000 +CONFIG_MQTT_EVENT_QUEUE_SIZE=1 +# CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED is not set +# CONFIG_MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY is not set +# CONFIG_MQTT_CUSTOM_OUTBOX is not set +CONFIG_MQTT_OUTBOX_EXPIRED_TIMEOUT_MS=30000 +# CONFIG_MQTT_TOPIC_PRESENT_ALL_DATA_EVENTS is not set +# end of ESP-MQTT Configurations + +# +# LibC +# +CONFIG_LIBC_NEWLIB=y +CONFIG_LIBC_MISC_IN_IRAM=y +CONFIG_LIBC_LOCKS_PLACE_IN_IRAM=y +CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF=y +# CONFIG_LIBC_STDOUT_LINE_ENDING_LF is not set +# CONFIG_LIBC_STDOUT_LINE_ENDING_CR is not set +# CONFIG_LIBC_STDIN_LINE_ENDING_CRLF is not set +# CONFIG_LIBC_STDIN_LINE_ENDING_LF is not set +CONFIG_LIBC_STDIN_LINE_ENDING_CR=y +# CONFIG_LIBC_NEWLIB_NANO_FORMAT is not set +CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT=y +# CONFIG_LIBC_TIME_SYSCALL_USE_RTC is not set +# CONFIG_LIBC_TIME_SYSCALL_USE_HRT is not set +# CONFIG_LIBC_TIME_SYSCALL_USE_NONE is not set +# end of LibC + +# +# NVS +# +# CONFIG_NVS_ENCRYPTION is not set +# CONFIG_NVS_ASSERT_ERROR_CHECK is not set +# CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY is not set +# end of NVS + +# +# OpenThread +# +# CONFIG_OPENTHREAD_ENABLED is not set + +# +# OpenThread Spinel +# +# CONFIG_OPENTHREAD_SPINEL_ONLY is not set +# end of OpenThread Spinel +# end of OpenThread + +# +# Protocomm +# +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0=y +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1=y +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2=y +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION=y +# end of Protocomm + +# +# PThreads +# +CONFIG_PTHREAD_TASK_PRIO_DEFAULT=5 +CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 +CONFIG_PTHREAD_STACK_MIN=768 +CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY=y +# CONFIG_PTHREAD_DEFAULT_CORE_0 is not set +# CONFIG_PTHREAD_DEFAULT_CORE_1 is not set +CONFIG_PTHREAD_TASK_CORE_DEFAULT=-1 +CONFIG_PTHREAD_TASK_NAME_DEFAULT="pthread" +# end of PThreads + +# +# MMU Config +# +CONFIG_MMU_PAGE_SIZE_64KB=y +CONFIG_MMU_PAGE_MODE="64KB" +CONFIG_MMU_PAGE_SIZE=0x10000 +# end of MMU Config + +# +# Main Flash configuration +# + +# +# SPI Flash behavior when brownout +# +CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC=y +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!) +# +# CONFIG_SPI_FLASH_HPM_ENA is not set +CONFIG_SPI_FLASH_HPM_AUTO=y +# CONFIG_SPI_FLASH_HPM_DIS is not set +CONFIG_SPI_FLASH_HPM_ON=y +CONFIG_SPI_FLASH_HPM_DC_AUTO=y +# CONFIG_SPI_FLASH_HPM_DC_DISABLE is not set +# CONFIG_SPI_FLASH_AUTO_SUSPEND is not set +CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 +# CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND is not set +# CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND is not set +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 +# +# CONFIG_SPI_FLASH_VERIFY_WRITE is not set +# CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set +CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y +# CONFIG_SPI_FLASH_ROM_IMPL is not set +CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set +# CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set +CONFIG_SPI_FLASH_YIELD_DURING_ERASE=y +CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20 +CONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1 +CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192 +# CONFIG_SPI_FLASH_SIZE_OVERRIDE is not set +# CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED is not set +# CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST is not set + +# +# Auto-detect flash chips +# +CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_TH_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP=y +# end of Auto-detect flash chips + +CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=y +# end of SPI Flash driver + +# +# SPIFFS Configuration +# +CONFIG_SPIFFS_MAX_PARTITIONS=1 + +# +# SPIFFS Cache Configuration +# +CONFIG_SPIFFS_CACHE=y +CONFIG_SPIFFS_CACHE_WR=y +# CONFIG_SPIFFS_CACHE_STATS is not set +# end of SPIFFS Cache Configuration + +CONFIG_SPIFFS_PAGE_CHECK=y +CONFIG_SPIFFS_GC_MAX_RUNS=10 +# CONFIG_SPIFFS_GC_STATS is not set +CONFIG_SPIFFS_PAGE_SIZE=256 +CONFIG_SPIFFS_OBJ_NAME_LEN=32 +# CONFIG_SPIFFS_FOLLOW_SYMLINKS is not set +CONFIG_SPIFFS_USE_MAGIC=y +CONFIG_SPIFFS_USE_MAGIC_LENGTH=y +CONFIG_SPIFFS_META_LENGTH=4 +CONFIG_SPIFFS_USE_MTIME=y + +# +# Debug Configuration +# +# CONFIG_SPIFFS_DBG is not set +# CONFIG_SPIFFS_API_DBG is not set +# CONFIG_SPIFFS_GC_DBG is not set +# CONFIG_SPIFFS_CACHE_DBG is not set +# CONFIG_SPIFFS_CHECK_DBG is not set +# CONFIG_SPIFFS_TEST_VISUALISATION is not set +# end of Debug Configuration +# end of SPIFFS Configuration + +# +# TCP Transport +# + +# +# Websocket +# +CONFIG_WS_TRANSPORT=y +CONFIG_WS_BUFFER_SIZE=1024 +# CONFIG_WS_DYNAMIC_BUFFER is not set +# end of Websocket +# end of TCP Transport + +# +# Ultra Low Power (ULP) Co-processor +# +# 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 +# +CONFIG_UNITY_ENABLE_FLOAT=y +CONFIG_UNITY_ENABLE_DOUBLE=y +# CONFIG_UNITY_ENABLE_64BIT is not set +# CONFIG_UNITY_ENABLE_COLOR is not set +CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y +# CONFIG_UNITY_ENABLE_FIXTURE is not set +# CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL is not set +# CONFIG_UNITY_TEST_ORDER_BY_FILE_PATH_AND_LINE is not set +# end of Unity unit testing library + +# +# USB-OTG +# +CONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE=256 +CONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED=y +# CONFIG_USB_HOST_HW_BUFFER_BIAS_IN is not set +# CONFIG_USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT is not set + +# +# Hub Driver Configuration +# + +# +# Root Port configuration +# +CONFIG_USB_HOST_DEBOUNCE_DELAY_MS=250 +CONFIG_USB_HOST_RESET_HOLD_MS=30 +CONFIG_USB_HOST_RESET_RECOVERY_MS=30 +CONFIG_USB_HOST_SET_ADDR_RECOVERY_MS=10 +# end of Root Port configuration + +# CONFIG_USB_HOST_HUBS_SUPPORTED is not set +# end of Hub Driver Configuration + +# CONFIG_USB_HOST_ENABLE_ENUM_FILTER_CALLBACK is not set +CONFIG_USB_OTG_SUPPORTED=y +# end of USB-OTG + +# +# Virtual file system +# +CONFIG_VFS_SUPPORT_IO=y +CONFIG_VFS_SUPPORT_DIR=y +CONFIG_VFS_SUPPORT_SELECT=y +CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y +# CONFIG_VFS_SELECT_IN_RAM is not set +CONFIG_VFS_SUPPORT_TERMIOS=y +CONFIG_VFS_MAX_COUNT=8 + +# +# Host File System I/O (Semihosting) +# +CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# end of Host File System I/O (Semihosting) + +CONFIG_VFS_INITIALIZE_DEV_NULL=y +# end of Virtual file system + +# +# Wear Levelling +# +# CONFIG_WL_SECTOR_SIZE_512 is not set +CONFIG_WL_SECTOR_SIZE_4096=y +CONFIG_WL_SECTOR_SIZE=4096 +# end of Wear Levelling + +# +# Wi-Fi Provisioning Manager +# +CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES=16 +CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT=30 +CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN=y +# CONFIG_WIFI_PROV_STA_FAST_SCAN is not set +# end of Wi-Fi Provisioning Manager +# end of Component config + +# 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_APP_ROLLBACK_ENABLE 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=y +# CONFIG_FLASHMODE_QOUT is not set +# CONFIG_FLASHMODE_DIO is not set +# 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_ESP32_APPTRACE_DEST_TRAX is not set +CONFIG_ESP32_APPTRACE_DEST_NONE=y +CONFIG_ESP32_APPTRACE_LOCK_ENABLE=y +# CONFIG_EXTERNAL_COEX_ENABLE is not set +# CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE is not set +# CONFIG_CAM_CTLR_DVP_CAM_ISR_IRAM_SAFE is not set +# 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_ESP_SYSTEM_PD_FLASH is not set +CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY=2000 +CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY=2000 +CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC=y +# CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256 is not set +CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES=1024 +CONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y +CONFIG_BROWNOUT_DET=y +CONFIG_ESP32S3_BROWNOUT_DET=y +CONFIG_BROWNOUT_DET_LVL_SEL_7=y +CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7=y +# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1 is not set +CONFIG_BROWNOUT_DET_LVL=7 +CONFIG_ESP32S3_BROWNOUT_DET_LVL=7 +CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y +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_ESP_SYSTEM_PM_POWER_DOWN_CPU=y +CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP=y +# CONFIG_ESP32S3_SPIRAM_SUPPORT is not set +# CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80 is not set +CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160=y +# CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240 is not set +CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ=160 +CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_MAIN_TASK_STACK_SIZE=3584 +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_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_ESP32S3_DEBUG_OCDAWARE=y +CONFIG_IPC_TASK_STACK_SIZE=1280 +CONFIG_TIMER_TASK_STACK_SIZE=3584 +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_WPA_MBEDTLS_CRYPTO=y +CONFIG_WPA_MBEDTLS_TLS_CLIENT=y +# CONFIG_WPA_WAPI_PSK is not set +# CONFIG_WPA_SUITE_B_192 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_WPA_TESTING_OPTIONS 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_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_NANO_FORMAT is not set +CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y +CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER=y +CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1=y +# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE 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_SUPPRESS_SELECT_DEBUG_OUTPUT=y +CONFIG_SUPPORT_TERMIOS=y +CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# End of deprecated options diff --git a/sdkconfig.ci.esp32c6 b/sdkconfig.ci.esp32c6 new file mode 100644 index 0000000..1686559 --- /dev/null +++ b/sdkconfig.ci.esp32c6 @@ -0,0 +1 @@ +CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y diff --git a/sdkconfig.defaults b/sdkconfig.defaults new file mode 100644 index 0000000..551b175 --- /dev/null +++ b/sdkconfig.defaults @@ -0,0 +1,10 @@ +CONFIG_ESPTOOLPY_FLASHMODE_QIO=y +CONFIG_ESPTOOLPY_FLASHFREQ_80M=y +CONFIG_PARTITION_TABLE_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_CUSTOM=y +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +CONFIG_MQTT_PROTOCOL_311=y +CONFIG_MQTT_TRANSPORT_SSL=n +CONFIG_SPIFFS_MAX_PARTITIONS=1 +CONFIG_ESP_WIFI_SSID="Vecmocon_Wifi" +CONFIG_ESP_WIFI_PASSWORD="Vassword@1" diff --git a/sdkconfig.old b/sdkconfig.old new file mode 100644 index 0000000..9dbca6f --- /dev/null +++ b/sdkconfig.old @@ -0,0 +1,2446 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) 5.5.1 Project Configuration +# +CONFIG_SOC_ADC_SUPPORTED=y +CONFIG_SOC_UART_SUPPORTED=y +CONFIG_SOC_PCNT_SUPPORTED=y +CONFIG_SOC_PHY_SUPPORTED=y +CONFIG_SOC_WIFI_SUPPORTED=y +CONFIG_SOC_TWAI_SUPPORTED=y +CONFIG_SOC_GDMA_SUPPORTED=y +CONFIG_SOC_UHCI_SUPPORTED=y +CONFIG_SOC_AHB_GDMA_SUPPORTED=y +CONFIG_SOC_GPTIMER_SUPPORTED=y +CONFIG_SOC_LCDCAM_SUPPORTED=y +CONFIG_SOC_LCDCAM_CAM_SUPPORTED=y +CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED=y +CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED=y +CONFIG_SOC_MCPWM_SUPPORTED=y +CONFIG_SOC_DEDICATED_GPIO_SUPPORTED=y +CONFIG_SOC_CACHE_SUPPORT_WRAP=y +CONFIG_SOC_ULP_SUPPORTED=y +CONFIG_SOC_ULP_FSM_SUPPORTED=y +CONFIG_SOC_RISCV_COPROC_SUPPORTED=y +CONFIG_SOC_BT_SUPPORTED=y +CONFIG_SOC_USB_OTG_SUPPORTED=y +CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED=y +CONFIG_SOC_CCOMP_TIMER_SUPPORTED=y +CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED=y +CONFIG_SOC_SUPPORTS_SECURE_DL_MODE=y +CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD=y +CONFIG_SOC_EFUSE_SUPPORTED=y +CONFIG_SOC_SDMMC_HOST_SUPPORTED=y +CONFIG_SOC_RTC_FAST_MEM_SUPPORTED=y +CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED=y +CONFIG_SOC_RTC_MEM_SUPPORTED=y +CONFIG_SOC_PSRAM_DMA_CAPABLE=y +CONFIG_SOC_XT_WDT_SUPPORTED=y +CONFIG_SOC_I2S_SUPPORTED=y +CONFIG_SOC_RMT_SUPPORTED=y +CONFIG_SOC_SDM_SUPPORTED=y +CONFIG_SOC_GPSPI_SUPPORTED=y +CONFIG_SOC_LEDC_SUPPORTED=y +CONFIG_SOC_I2C_SUPPORTED=y +CONFIG_SOC_SYSTIMER_SUPPORTED=y +CONFIG_SOC_SUPPORT_COEXISTENCE=y +CONFIG_SOC_TEMP_SENSOR_SUPPORTED=y +CONFIG_SOC_AES_SUPPORTED=y +CONFIG_SOC_MPI_SUPPORTED=y +CONFIG_SOC_SHA_SUPPORTED=y +CONFIG_SOC_HMAC_SUPPORTED=y +CONFIG_SOC_DIG_SIGN_SUPPORTED=y +CONFIG_SOC_FLASH_ENC_SUPPORTED=y +CONFIG_SOC_SECURE_BOOT_SUPPORTED=y +CONFIG_SOC_MEMPROT_SUPPORTED=y +CONFIG_SOC_TOUCH_SENSOR_SUPPORTED=y +CONFIG_SOC_BOD_SUPPORTED=y +CONFIG_SOC_CLK_TREE_SUPPORTED=y +CONFIG_SOC_MPU_SUPPORTED=y +CONFIG_SOC_WDT_SUPPORTED=y +CONFIG_SOC_SPI_FLASH_SUPPORTED=y +CONFIG_SOC_RNG_SUPPORTED=y +CONFIG_SOC_LIGHT_SLEEP_SUPPORTED=y +CONFIG_SOC_DEEP_SLEEP_SUPPORTED=y +CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT=y +CONFIG_SOC_PM_SUPPORTED=y +CONFIG_SOC_SIMD_INSTRUCTION_SUPPORTED=y +CONFIG_SOC_XTAL_SUPPORT_40M=y +CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG=y +CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED=y +CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED=y +CONFIG_SOC_ADC_ARBITER_SUPPORTED=y +CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED=y +CONFIG_SOC_ADC_MONITOR_SUPPORTED=y +CONFIG_SOC_ADC_DMA_SUPPORTED=y +CONFIG_SOC_ADC_PERIPH_NUM=2 +CONFIG_SOC_ADC_MAX_CHANNEL_NUM=10 +CONFIG_SOC_ADC_ATTEN_NUM=4 +CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM=2 +CONFIG_SOC_ADC_PATT_LEN_MAX=24 +CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH=12 +CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_DIGI_RESULT_BYTES=4 +CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV=4 +CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM=2 +CONFIG_SOC_ADC_DIGI_MONITOR_NUM=2 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=83333 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=611 +CONFIG_SOC_ADC_RTC_MIN_BITWIDTH=12 +CONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED=y +CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED=y +CONFIG_SOC_ADC_SHARED_POWER=y +CONFIG_SOC_APB_BACKUP_DMA=y +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y +CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED=y +CONFIG_SOC_CACHE_FREEZE_SUPPORTED=y +CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC=y +CONFIG_SOC_CPU_CORES_NUM=2 +CONFIG_SOC_CPU_INTR_NUM=32 +CONFIG_SOC_CPU_HAS_FPU=y +CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES=y +CONFIG_SOC_CPU_BREAKPOINTS_NUM=2 +CONFIG_SOC_CPU_WATCHPOINTS_NUM=2 +CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE=0x40 +CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT=16 +CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN=4096 +CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH=16 +CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US=1100 +CONFIG_SOC_AHB_GDMA_VERSION=1 +CONFIG_SOC_GDMA_NUM_GROUPS_MAX=1 +CONFIG_SOC_GDMA_PAIRS_PER_GROUP=5 +CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX=5 +CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM=y +CONFIG_SOC_GPIO_PORT=1 +CONFIG_SOC_GPIO_PIN_COUNT=49 +CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER=y +CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB=y +CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT=y +CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD=y +CONFIG_SOC_GPIO_VALID_GPIO_MASK=0x1FFFFFFFFFFFF +CONFIG_SOC_GPIO_IN_RANGE_MAX=48 +CONFIG_SOC_GPIO_OUT_RANGE_MAX=48 +CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0x0001FFFFFC000000 +CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX=y +CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM=3 +CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP=y +CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM=8 +CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM=8 +CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE=y +CONFIG_SOC_I2C_NUM=2 +CONFIG_SOC_HP_I2C_NUM=2 +CONFIG_SOC_I2C_FIFO_LEN=32 +CONFIG_SOC_I2C_CMD_REG_NUM=8 +CONFIG_SOC_I2C_SUPPORT_SLAVE=y +CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS=y +CONFIG_SOC_I2C_SUPPORT_XTAL=y +CONFIG_SOC_I2C_SUPPORT_RTC=y +CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR=y +CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST=y +CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS=y +CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE=y +CONFIG_SOC_I2S_NUM=2 +CONFIG_SOC_I2S_HW_VERSION_2=y +CONFIG_SOC_I2S_SUPPORTS_XTAL=y +CONFIG_SOC_I2S_SUPPORTS_PLL_F160M=y +CONFIG_SOC_I2S_SUPPORTS_PCM=y +CONFIG_SOC_I2S_SUPPORTS_PDM=y +CONFIG_SOC_I2S_SUPPORTS_PDM_TX=y +CONFIG_SOC_I2S_SUPPORTS_PCM2PDM=y +CONFIG_SOC_I2S_SUPPORTS_PDM_RX=y +CONFIG_SOC_I2S_SUPPORTS_PDM2PCM=y +CONFIG_SOC_I2S_PDM_MAX_TX_LINES=2 +CONFIG_SOC_I2S_PDM_MAX_RX_LINES=4 +CONFIG_SOC_I2S_SUPPORTS_TDM=y +CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y +CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK=y +CONFIG_SOC_LEDC_TIMER_NUM=4 +CONFIG_SOC_LEDC_CHANNEL_NUM=8 +CONFIG_SOC_LEDC_TIMER_BIT_WIDTH=14 +CONFIG_SOC_LEDC_SUPPORT_FADE_STOP=y +CONFIG_SOC_MCPWM_GROUPS=2 +CONFIG_SOC_MCPWM_TIMERS_PER_GROUP=3 +CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP=3 +CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP=3 +CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP=y +CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER=3 +CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP=3 +CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE=y +CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=1 +CONFIG_SOC_MMU_PERIPH_NUM=1 +CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 +CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 +CONFIG_SOC_PCNT_GROUPS=1 +CONFIG_SOC_PCNT_UNITS_PER_GROUP=4 +CONFIG_SOC_PCNT_CHANNELS_PER_UNIT=2 +CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT=2 +CONFIG_SOC_RMT_GROUPS=1 +CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP=4 +CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP=4 +CONFIG_SOC_RMT_CHANNELS_PER_GROUP=8 +CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=48 +CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG=y +CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION=y +CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP=y +CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT=y +CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP=y +CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO=y +CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY=y +CONFIG_SOC_RMT_SUPPORT_XTAL=y +CONFIG_SOC_RMT_SUPPORT_RC_FAST=y +CONFIG_SOC_RMT_SUPPORT_APB=y +CONFIG_SOC_RMT_SUPPORT_DMA=y +CONFIG_SOC_LCD_I80_SUPPORTED=y +CONFIG_SOC_LCD_RGB_SUPPORTED=y +CONFIG_SOC_LCD_I80_BUSES=1 +CONFIG_SOC_LCD_RGB_PANELS=1 +CONFIG_SOC_LCD_I80_BUS_WIDTH=16 +CONFIG_SOC_LCD_RGB_DATA_WIDTH=16 +CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV=y +CONFIG_SOC_LCDCAM_I80_NUM_BUSES=1 +CONFIG_SOC_LCDCAM_I80_BUS_WIDTH=16 +CONFIG_SOC_LCDCAM_RGB_NUM_PANELS=1 +CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH=16 +CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH=128 +CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM=549 +CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH=128 +CONFIG_SOC_RTCIO_PIN_COUNT=22 +CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y +CONFIG_SOC_RTCIO_HOLD_SUPPORTED=y +CONFIG_SOC_RTCIO_WAKE_SUPPORTED=y +CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT=y +CONFIG_SOC_SDM_GROUPS=1 +CONFIG_SOC_SDM_CHANNELS_PER_GROUP=8 +CONFIG_SOC_SDM_CLK_SUPPORT_APB=y +CONFIG_SOC_SPI_PERIPH_NUM=3 +CONFIG_SOC_SPI_MAX_CS_NUM=6 +CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64 +CONFIG_SOC_SPI_SUPPORT_DDRCLK=y +CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS=y +CONFIG_SOC_SPI_SUPPORT_CD_SIG=y +CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS=y +CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2=y +CONFIG_SOC_SPI_SUPPORT_CLK_APB=y +CONFIG_SOC_SPI_SUPPORT_CLK_XTAL=y +CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT=y +CONFIG_SOC_MEMSPI_IS_INDEPENDENT=y +CONFIG_SOC_SPI_MAX_PRE_DIVIDER=16 +CONFIG_SOC_SPI_SUPPORT_OCT=y +CONFIG_SOC_SPI_SCT_SUPPORTED=y +CONFIG_SOC_SPI_SCT_REG_NUM=14 +CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX=y +CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX=0x3FFFA +CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y +CONFIG_SOC_SPIRAM_SUPPORTED=y +CONFIG_SOC_SPIRAM_XIP_SUPPORTED=y +CONFIG_SOC_SYSTIMER_COUNTER_NUM=2 +CONFIG_SOC_SYSTIMER_ALARM_NUM=3 +CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO=32 +CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI=20 +CONFIG_SOC_SYSTIMER_FIXED_DIVIDER=y +CONFIG_SOC_SYSTIMER_INT_LEVEL=y +CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE=y +CONFIG_SOC_TIMER_GROUPS=2 +CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP=2 +CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH=54 +CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL=y +CONFIG_SOC_TIMER_GROUP_SUPPORT_APB=y +CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS=4 +CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO=32 +CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI=16 +CONFIG_SOC_TOUCH_SENSOR_VERSION=2 +CONFIG_SOC_TOUCH_SENSOR_NUM=15 +CONFIG_SOC_TOUCH_MIN_CHAN_ID=1 +CONFIG_SOC_TOUCH_MAX_CHAN_ID=14 +CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK=y +CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP=y +CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF=y +CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING=y +CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN=y +CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM=3 +CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED=y +CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM=1 +CONFIG_SOC_TWAI_CONTROLLER_NUM=1 +CONFIG_SOC_TWAI_MASK_FILTER_NUM=1 +CONFIG_SOC_TWAI_CLK_SUPPORT_APB=y +CONFIG_SOC_TWAI_BRP_MIN=2 +CONFIG_SOC_TWAI_BRP_MAX=16384 +CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS=y +CONFIG_SOC_UART_NUM=3 +CONFIG_SOC_UART_HP_NUM=3 +CONFIG_SOC_UART_FIFO_LEN=128 +CONFIG_SOC_UART_BITRATE_MAX=5000000 +CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND=y +CONFIG_SOC_UART_SUPPORT_WAKEUP_INT=y +CONFIG_SOC_UART_SUPPORT_APB_CLK=y +CONFIG_SOC_UART_SUPPORT_RTC_CLK=y +CONFIG_SOC_UART_SUPPORT_XTAL_CLK=y +CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE=y +CONFIG_SOC_UHCI_NUM=1 +CONFIG_SOC_USB_OTG_PERIPH_NUM=1 +CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE=3968 +CONFIG_SOC_SHA_SUPPORT_DMA=y +CONFIG_SOC_SHA_SUPPORT_RESUME=y +CONFIG_SOC_SHA_GDMA=y +CONFIG_SOC_SHA_SUPPORT_SHA1=y +CONFIG_SOC_SHA_SUPPORT_SHA224=y +CONFIG_SOC_SHA_SUPPORT_SHA256=y +CONFIG_SOC_SHA_SUPPORT_SHA384=y +CONFIG_SOC_SHA_SUPPORT_SHA512=y +CONFIG_SOC_SHA_SUPPORT_SHA512_224=y +CONFIG_SOC_SHA_SUPPORT_SHA512_256=y +CONFIG_SOC_SHA_SUPPORT_SHA512_T=y +CONFIG_SOC_MPI_MEM_BLOCKS_NUM=4 +CONFIG_SOC_MPI_OPERATIONS_NUM=3 +CONFIG_SOC_RSA_MAX_BIT_LEN=4096 +CONFIG_SOC_AES_SUPPORT_DMA=y +CONFIG_SOC_AES_GDMA=y +CONFIG_SOC_AES_SUPPORT_AES_128=y +CONFIG_SOC_AES_SUPPORT_AES_256=y +CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_BT_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_CPU_PD=y +CONFIG_SOC_PM_SUPPORT_TAGMEM_PD=y +CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD=y +CONFIG_SOC_PM_SUPPORT_RC_FAST_PD=y +CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD=y +CONFIG_SOC_PM_SUPPORT_MAC_BB_PD=y +CONFIG_SOC_PM_SUPPORT_MODEM_PD=y +CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED=y +CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY=y +CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL=y +CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA=y +CONFIG_SOC_PM_MODEM_PD_BY_SW=y +CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED=y +CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256=y +CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION=y +CONFIG_SOC_CLK_XTAL32K_SUPPORTED=y +CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2=y +CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE=y +CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE=y +CONFIG_SOC_EFUSE_HARD_DIS_JTAG=y +CONFIG_SOC_EFUSE_DIS_USB_JTAG=y +CONFIG_SOC_EFUSE_SOFT_DIS_JTAG=y +CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT=y +CONFIG_SOC_EFUSE_DIS_ICACHE=y +CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK=y +CONFIG_SOC_SECURE_BOOT_V2_RSA=y +CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=3 +CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS=y +CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY=y +CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX=64 +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256=y +CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE=16 +CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE=256 +CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE=21 +CONFIG_SOC_MAC_BB_PD_MEM_SIZE=192 +CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH=12 +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE=y +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND=y +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME=y +CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND=y +CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE=y +CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING=y +CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE=y +CONFIG_SOC_SPI_MEM_SUPPORT_WRAP=y +CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY=y +CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM=y +CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP=y +CONFIG_SOC_COEX_HW_PTI=y +CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE=y +CONFIG_SOC_SDMMC_USE_GPIO_MATRIX=y +CONFIG_SOC_SDMMC_NUM_SLOTS=2 +CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK=y +CONFIG_SOC_SDMMC_DELAY_PHASE_NUM=4 +CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC=y +CONFIG_SOC_WIFI_HW_TSF=y +CONFIG_SOC_WIFI_FTM_SUPPORT=y +CONFIG_SOC_WIFI_GCMP_SUPPORT=y +CONFIG_SOC_WIFI_WAPI_SUPPORT=y +CONFIG_SOC_WIFI_CSI_SUPPORT=y +CONFIG_SOC_WIFI_MESH_SUPPORT=y +CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW=y +CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND=y +CONFIG_SOC_BLE_SUPPORTED=y +CONFIG_SOC_BLE_MESH_SUPPORTED=y +CONFIG_SOC_BLE_50_SUPPORTED=y +CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED=y +CONFIG_SOC_BLUFI_SUPPORTED=y +CONFIG_SOC_ULP_HAS_ADC=y +CONFIG_SOC_PHY_COMBO_MODULE=y +CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV=y +CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM=1 +CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX=16 +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TOOLCHAIN="gcc" +CONFIG_IDF_TOOLCHAIN_GCC=y +CONFIG_IDF_TARGET_ARCH_XTENSA=y +CONFIG_IDF_TARGET_ARCH="xtensa" +CONFIG_IDF_TARGET="esp32s3" +CONFIG_IDF_INIT_VERSION="5.5.1" +CONFIG_IDF_TARGET_ESP32S3=y +CONFIG_IDF_FIRMWARE_CHIP_ID=0x0009 + +# +# Build type +# +CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y +# CONFIG_APP_BUILD_TYPE_RAM is not set +CONFIG_APP_BUILD_GENERATE_BINARIES=y +CONFIG_APP_BUILD_BOOTLOADER=y +CONFIG_APP_BUILD_USE_FLASH_SECTIONS=y +# CONFIG_APP_REPRODUCIBLE_BUILD is not set +# CONFIG_APP_NO_BLOBS is not set +# end of Build type + +# +# Bootloader config +# + +# +# Bootloader manager +# +CONFIG_BOOTLOADER_COMPILE_TIME_DATE=y +CONFIG_BOOTLOADER_PROJECT_VER=1 +# end of Bootloader manager + +# +# Application Rollback +# +# CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is not set +# end of Application Rollback + +# +# Recovery Bootloader and Rollback +# +# end of Recovery Bootloader and Rollback + +CONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x0 +CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set + +# +# Log +# +CONFIG_BOOTLOADER_LOG_VERSION_1=y +CONFIG_BOOTLOADER_LOG_VERSION=1 +# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set +CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y +# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set +CONFIG_BOOTLOADER_LOG_LEVEL=3 + +# +# Format +# +# CONFIG_BOOTLOADER_LOG_COLORS is not set +CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS=y +# end of Format + +# +# Settings +# +CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN=y +CONFIG_BOOTLOADER_LOG_MODE_TEXT=y +# end of Settings +# end of Log + +# +# Serial Flash Configurations +# +# CONFIG_BOOTLOADER_FLASH_DC_AWARE is not set +CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y +# end of Serial Flash Configurations + +CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y +# CONFIG_BOOTLOADER_FACTORY_RESET is not set +# CONFIG_BOOTLOADER_APP_TEST is not set +CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE=y +CONFIG_BOOTLOADER_WDT_ENABLE=y +# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set +CONFIG_BOOTLOADER_WDT_TIME_MS=9000 +# CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP is not set +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON is not set +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS is not set +CONFIG_BOOTLOADER_RESERVE_RTC_SIZE=0 +# CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC is not set +# end of Bootloader config + +# +# Security features +# +CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED=y +CONFIG_SECURE_BOOT_V2_PREFERRED=y +# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set +# CONFIG_SECURE_BOOT is not set +# CONFIG_SECURE_FLASH_ENC_ENABLED is not set +CONFIG_SECURE_ROM_DL_MODE_ENABLED=y +# end of Security features + +# +# Application manager +# +CONFIG_APP_COMPILE_TIME_DATE=y +# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set +# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set +# CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set +CONFIG_APP_RETRIEVE_LEN_ELF_SHA=9 +# end of Application manager + +CONFIG_ESP_ROM_HAS_CRC_LE=y +CONFIG_ESP_ROM_HAS_CRC_BE=y +CONFIG_ESP_ROM_HAS_MZ_CRC32=y +CONFIG_ESP_ROM_HAS_JPEG_DECODE=y +CONFIG_ESP_ROM_UART_CLK_IS_XTAL=y +CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING=y +CONFIG_ESP_ROM_USB_OTG_NUM=3 +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=4 +CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG=y +CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV=y +CONFIG_ESP_ROM_GET_CLK_FREQ=y +CONFIG_ESP_ROM_HAS_HAL_WDT=y +CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND=y +CONFIG_ESP_ROM_HAS_LAYOUT_TABLE=y +CONFIG_ESP_ROM_HAS_SPI_FLASH=y +CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP=y +CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG=y +CONFIG_ESP_ROM_HAS_NEWLIB=y +CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT=y +CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME=y +CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE=y +CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT=y +CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG=y +CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG=y +CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG=y +CONFIG_ESP_ROM_HAS_SW_FLOAT=y +CONFIG_ESP_ROM_HAS_VERSION=y +CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB=y +CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC=y +CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY=y + +# +# Boot ROM Behavior +# +CONFIG_BOOT_ROM_LOG_ALWAYS_ON=y +# CONFIG_BOOT_ROM_LOG_ALWAYS_OFF is not set +# CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH is not set +# CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW is not set +# end of Boot ROM Behavior + +# +# Serial flasher config +# +# CONFIG_ESPTOOLPY_NO_STUB is not set +# CONFIG_ESPTOOLPY_OCT_FLASH is not set +CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT=y +CONFIG_ESPTOOLPY_FLASHMODE_QIO=y +# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set +# CONFIG_ESPTOOLPY_FLASHMODE_DIO is not set +# CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set +CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR=y +CONFIG_ESPTOOLPY_FLASHMODE="dio" +# CONFIG_ESPTOOLPY_FLASHFREQ_120M is not set +CONFIG_ESPTOOLPY_FLASHFREQ_80M=y +# CONFIG_ESPTOOLPY_FLASHFREQ_40M is not set +# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set +CONFIG_ESPTOOLPY_FLASHFREQ="80m" +# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_2MB is not set +CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y +# CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_32MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_64MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_128MB is not set +CONFIG_ESPTOOLPY_FLASHSIZE="4MB" +# CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE is not set +CONFIG_ESPTOOLPY_BEFORE_RESET=y +# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set +CONFIG_ESPTOOLPY_BEFORE="default_reset" +CONFIG_ESPTOOLPY_AFTER_RESET=y +# CONFIG_ESPTOOLPY_AFTER_NORESET is not set +CONFIG_ESPTOOLPY_AFTER="hard_reset" +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 +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_OFFSET=0x8000 +CONFIG_PARTITION_TABLE_MD5=y +# end of Partition Table + +# +# Compiler options +# +CONFIG_COMPILER_OPTIMIZATION_DEBUG=y +# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set +# CONFIG_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_COMPILER_OPTIMIZATION_NONE is not set +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set +CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE=y +CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB=y +CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2 +# CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set +CONFIG_COMPILER_HIDE_PATHS_MACROS=y +# CONFIG_COMPILER_CXX_EXCEPTIONS is not set +# CONFIG_COMPILER_CXX_RTTI is not set +CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y +# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set +# CONFIG_COMPILER_NO_MERGE_CONSTANTS is not set +# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set +CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS=y +# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC14_WARNINGS is not set +# CONFIG_COMPILER_DUMP_RTL_FILES is not set +CONFIG_COMPILER_RT_LIB_GCCLIB=y +CONFIG_COMPILER_RT_LIB_NAME="gcc" +CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING=y +# CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE is not set +# CONFIG_COMPILER_STATIC_ANALYZER is not set +# end of Compiler options + +# +# Component config +# + +# +# Application Level Tracing +# +# CONFIG_APPTRACE_DEST_JTAG is not set +CONFIG_APPTRACE_DEST_NONE=y +# CONFIG_APPTRACE_DEST_UART1 is not set +# CONFIG_APPTRACE_DEST_UART2 is not set +# CONFIG_APPTRACE_DEST_USB_CDC is not set +CONFIG_APPTRACE_DEST_UART_NONE=y +CONFIG_APPTRACE_UART_TASK_PRIO=1 +CONFIG_APPTRACE_LOCK_ENABLE=y +# end of Application Level Tracing + +# +# Bluetooth +# +# CONFIG_BT_ENABLED is not set + +# +# Common Options +# +# CONFIG_BT_BLE_LOG_SPI_OUT_ENABLED is not set +# CONFIG_BT_BLE_LOG_UHCI_OUT_ENABLED is not set +# end of Common Options +# end of Bluetooth + +# +# Console Library +# +# CONFIG_CONSOLE_SORTED_HELP is not set +# end of Console Library + +# +# Driver Configurations +# + +# +# Legacy TWAI Driver Configurations +# +# CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK is not set +CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM=y +# end of Legacy TWAI Driver Configurations + +# +# Legacy ADC Driver Configuration +# +# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK is not set + +# +# Legacy ADC Calibration Configuration +# +# CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy ADC Calibration Configuration +# end of Legacy ADC Driver Configuration + +# +# Legacy MCPWM Driver Configurations +# +# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_MCPWM_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy MCPWM Driver Configurations + +# +# Legacy Timer Group Driver Configurations +# +# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Timer Group Driver Configurations + +# +# Legacy RMT Driver Configurations +# +# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy RMT Driver Configurations + +# +# Legacy I2S Driver Configurations +# +# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy I2S Driver Configurations + +# +# Legacy I2C Driver Configurations +# +# CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy I2C Driver Configurations + +# +# Legacy PCNT Driver Configurations +# +# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_PCNT_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy PCNT Driver Configurations + +# +# Legacy SDM Driver Configurations +# +# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy SDM Driver Configurations + +# +# Legacy Temperature Sensor Driver Configurations +# +# CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Temperature Sensor Driver Configurations + +# +# Legacy Touch Sensor Driver Configurations +# +# CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Touch Sensor Driver Configurations +# end of Driver Configurations + +# +# eFuse Bit Manager +# +# CONFIG_EFUSE_CUSTOM_TABLE is not set +# CONFIG_EFUSE_VIRTUAL is not set +CONFIG_EFUSE_MAX_BLK_LEN=256 +# end of eFuse Bit Manager + +# +# ESP-TLS +# +CONFIG_ESP_TLS_USING_MBEDTLS=y +# CONFIG_ESP_TLS_USE_SECURE_ELEMENT is not set +CONFIG_ESP_TLS_USE_DS_PERIPHERAL=y +# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK is not set +# CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL is not set +# CONFIG_ESP_TLS_PSK_VERIFICATION is not set +# CONFIG_ESP_TLS_INSECURE is not set +CONFIG_ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED=y +# end of ESP-TLS + +# +# ADC and ADC Calibration +# +# CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE is not set +# CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3 is not set +# CONFIG_ADC_ENABLE_DEBUG_LOG is not set +# end of ADC and ADC Calibration + +# +# Wireless Coexistence +# +CONFIG_ESP_COEX_ENABLED=y +# CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE is not set +# CONFIG_ESP_COEX_GPIO_DEBUG is not set +# end of Wireless Coexistence + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# ESP-Driver:Camera Controller Configurations +# +# CONFIG_CAM_CTLR_DVP_CAM_ISR_CACHE_SAFE is not set +# end of ESP-Driver:Camera Controller Configurations + +# +# ESP-Driver:GPIO Configurations +# +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:GPIO Configurations + +# +# ESP-Driver:GPTimer Configurations +# +CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GPTIMER_ISR_CACHE_SAFE is not set +CONFIG_GPTIMER_OBJ_CACHE_SAFE=y +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:GPTimer Configurations + +# +# ESP-Driver:I2C Configurations +# +# CONFIG_I2C_ISR_IRAM_SAFE is not set +# CONFIG_I2C_ENABLE_DEBUG_LOG is not set +# CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 is not set +CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM=y +# end of ESP-Driver:I2C Configurations + +# +# ESP-Driver:I2S Configurations +# +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:I2S Configurations + +# +# ESP-Driver:LEDC Configurations +# +# CONFIG_LEDC_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:LEDC Configurations + +# +# ESP-Driver:MCPWM Configurations +# +CONFIG_MCPWM_ISR_HANDLER_IN_IRAM=y +# CONFIG_MCPWM_ISR_CACHE_SAFE is not set +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +CONFIG_MCPWM_OBJ_CACHE_SAFE=y +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:MCPWM Configurations + +# +# ESP-Driver:PCNT Configurations +# +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:PCNT Configurations + +# +# ESP-Driver:RMT Configurations +# +CONFIG_RMT_ENCODER_FUNC_IN_IRAM=y +CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM=y +CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM=y +# CONFIG_RMT_RECV_FUNC_IN_IRAM is not set +# CONFIG_RMT_TX_ISR_CACHE_SAFE is not set +# CONFIG_RMT_RX_ISR_CACHE_SAFE is not set +CONFIG_RMT_OBJ_CACHE_SAFE=y +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# end of ESP-Driver:RMT Configurations + +# +# ESP-Driver:Sigma Delta Modulator Configurations +# +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Sigma Delta Modulator Configurations + +# +# ESP-Driver:SPI Configurations +# +# CONFIG_SPI_MASTER_IN_IRAM is not set +CONFIG_SPI_MASTER_ISR_IN_IRAM=y +# CONFIG_SPI_SLAVE_IN_IRAM is not set +CONFIG_SPI_SLAVE_ISR_IN_IRAM=y +# end of ESP-Driver:SPI Configurations + +# +# ESP-Driver:Touch Sensor Configurations +# +# CONFIG_TOUCH_CTRL_FUNC_IN_IRAM is not set +# CONFIG_TOUCH_ISR_IRAM_SAFE is not set +# CONFIG_TOUCH_ENABLE_DEBUG_LOG is not set +# CONFIG_TOUCH_SKIP_FSM_CHECK is not set +# end of ESP-Driver:Touch Sensor Configurations + +# +# ESP-Driver:Temperature Sensor Configurations +# +# CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Temperature Sensor Configurations + +# +# ESP-Driver:TWAI Configurations +# +# CONFIG_TWAI_ISR_IN_IRAM is not set +# CONFIG_TWAI_ISR_CACHE_SAFE is not set +# CONFIG_TWAI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:TWAI Configurations + +# +# ESP-Driver:UART Configurations +# +# CONFIG_UART_ISR_IN_IRAM is not set +# end of ESP-Driver:UART Configurations + +# +# ESP-Driver:UHCI Configurations +# +# CONFIG_UHCI_ISR_HANDLER_IN_IRAM is not set +# CONFIG_UHCI_ISR_CACHE_SAFE is not set +# CONFIG_UHCI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:UHCI Configurations + +# +# ESP-Driver:USB Serial/JTAG Configuration +# +CONFIG_USJ_ENABLE_USB_SERIAL_JTAG=y +# end of ESP-Driver:USB Serial/JTAG Configuration + +# +# Ethernet +# +CONFIG_ETH_ENABLED=y +CONFIG_ETH_USE_SPI_ETHERNET=y +# CONFIG_ETH_SPI_ETHERNET_DM9051 is not set +# CONFIG_ETH_SPI_ETHERNET_W5500 is not set +# CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL is not set +# CONFIG_ETH_USE_OPENETH is not set +# CONFIG_ETH_TRANSMIT_MUTEX is not set +# end of Ethernet + +# +# Event Loop Library +# +# CONFIG_ESP_EVENT_LOOP_PROFILING is not set +CONFIG_ESP_EVENT_POST_FROM_ISR=y +CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y +# end of Event Loop Library + +# +# GDB Stub +# +CONFIG_ESP_GDBSTUB_ENABLED=y +# CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME is not set +CONFIG_ESP_GDBSTUB_SUPPORT_TASKS=y +CONFIG_ESP_GDBSTUB_MAX_TASKS=32 +# end of GDB Stub + +# +# ESP HID +# +CONFIG_ESPHID_TASK_SIZE_BT=2048 +CONFIG_ESPHID_TASK_SIZE_BLE=4096 +# end of ESP HID + +# +# ESP HTTP client +# +CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y +# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set +# CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH is not set +# CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT is not set +CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTP client + +# +# HTTP Server +# +CONFIG_HTTPD_MAX_REQ_HDR_LEN=1024 +CONFIG_HTTPD_MAX_URI_LEN=512 +CONFIG_HTTPD_ERR_RESP_NO_DELAY=y +CONFIG_HTTPD_PURGE_BUF_LEN=32 +# CONFIG_HTTPD_LOG_PURGE_DATA is not set +# CONFIG_HTTPD_WS_SUPPORT is not set +# CONFIG_HTTPD_QUEUE_WORK_BLOCKING is not set +CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT=2000 +# end of HTTP Server + +# +# ESP HTTPS OTA +# +# CONFIG_ESP_HTTPS_OTA_DECRYPT_CB is not set +# CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP is not set +CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTPS OTA + +# +# ESP HTTPS server +# +# CONFIG_ESP_HTTPS_SERVER_ENABLE is not set +CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT=2000 +# CONFIG_ESP_HTTPS_SERVER_CERT_SELECT_HOOK is not set +# end of ESP HTTPS server + +# +# Hardware Settings +# + +# +# Chip revision +# +CONFIG_ESP32S3_REV_MIN_0=y +# CONFIG_ESP32S3_REV_MIN_1 is not set +# CONFIG_ESP32S3_REV_MIN_2 is not set +CONFIG_ESP32S3_REV_MIN_FULL=0 +CONFIG_ESP_REV_MIN_FULL=0 + +# +# Maximum Supported ESP32-S3 Revision (Rev v0.99) +# +CONFIG_ESP32S3_REV_MAX_FULL=99 +CONFIG_ESP_REV_MAX_FULL=99 +CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL=0 +CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL=199 + +# +# Maximum Supported ESP32-S3 eFuse Block Revision (eFuse Block Rev v1.99) +# +# end of Chip revision + +# +# MAC Config +# +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO is not set +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC is not set +# end of MAC Config + +# +# Sleep Config +# +# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set +CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y +CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU=y +CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND=y +CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND=y +CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY=2000 +# CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION is not set +# CONFIG_ESP_SLEEP_DEBUG is not set +CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y +# end of Sleep Config + +# +# RTC Clock Config +# +CONFIG_RTC_CLK_SRC_INT_RC=y +# CONFIG_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_RTC_CLK_SRC_INT_8MD256 is not set +CONFIG_RTC_CLK_CAL_CYCLES=1024 +# end of RTC Clock Config + +# +# Peripheral Control +# +CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM=y +CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM=y +# end of Peripheral Control + +# +# GDMA Configurations +# +CONFIG_GDMA_CTRL_FUNC_IN_IRAM=y +CONFIG_GDMA_ISR_HANDLER_IN_IRAM=y +CONFIG_GDMA_OBJ_DRAM_SAFE=y +# CONFIG_GDMA_ENABLE_DEBUG_LOG is not set +# CONFIG_GDMA_ISR_IRAM_SAFE is not set +# end of GDMA Configurations + +# +# Main XTAL Config +# +CONFIG_XTAL_FREQ_40=y +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config + +# +# Power Supplier +# + +# +# Brownout Detector +# +CONFIG_ESP_BROWNOUT_DET=y +CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7=y +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 is not set +CONFIG_ESP_BROWNOUT_DET_LVL=7 +CONFIG_ESP_BROWNOUT_USE_INTR=y +# end of Brownout Detector +# end of Power Supplier + +CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM=y +CONFIG_ESP_INTR_IN_IRAM=y +# end of Hardware Settings + +# +# ESP-Driver:LCD Controller Configurations +# +# CONFIG_LCD_ENABLE_DEBUG_LOG is not set +# CONFIG_LCD_RGB_ISR_IRAM_SAFE is not set +# CONFIG_LCD_RGB_RESTART_IN_VSYNC is not set +# end of ESP-Driver:LCD Controller Configurations + +# +# ESP-MM: Memory Management Configurations +# +# CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS is not set +# end of ESP-MM: Memory Management Configurations + +# +# ESP NETIF Adapter +# +CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 +# CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION is not set +CONFIG_ESP_NETIF_TCPIP_LWIP=y +# CONFIG_ESP_NETIF_LOOPBACK is not set +CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API=y +CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC=y +# CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS is not set +# CONFIG_ESP_NETIF_L2_TAP is not set +# CONFIG_ESP_NETIF_BRIDGE_EN is not set +# 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 +# +CONFIG_ESP_PHY_ENABLED=y +CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE=y +# CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION is not set +CONFIG_ESP_PHY_MAX_WIFI_TX_POWER=20 +CONFIG_ESP_PHY_MAX_TX_POWER=20 +# CONFIG_ESP_PHY_REDUCE_TX_POWER is not set +CONFIG_ESP_PHY_ENABLE_USB=y +# CONFIG_ESP_PHY_ENABLE_CERT_TEST is not set +CONFIG_ESP_PHY_RF_CAL_PARTIAL=y +# CONFIG_ESP_PHY_RF_CAL_NONE is not set +# CONFIG_ESP_PHY_RF_CAL_FULL is not set +CONFIG_ESP_PHY_CALIBRATION_MODE=0 +CONFIG_ESP_PHY_PLL_TRACK_PERIOD_MS=1000 +# CONFIG_ESP_PHY_PLL_TRACK_DEBUG is not set +# CONFIG_ESP_PHY_RECORD_USED_TIME is not set +CONFIG_ESP_PHY_IRAM_OPT=y +# CONFIG_ESP_PHY_DEBUG is not set +# end of PHY + +# +# Power Management +# +CONFIG_PM_SLEEP_FUNC_IN_IRAM=y +# CONFIG_PM_ENABLE is not set +CONFIG_PM_SLP_IRAM_OPT=y +CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP=y +CONFIG_PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP=y +# end of Power Management + +# +# ESP PSRAM +# +# CONFIG_SPIRAM is not set +# end of ESP PSRAM + +# +# ESP Ringbuf +# +# CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH is not set +# end of ESP Ringbuf + +# +# ESP-ROM +# +CONFIG_ESP_ROM_PRINT_IN_IRAM=y +# end of ESP-ROM + +# +# ESP Security Specific +# +# end of ESP Security Specific + +# +# ESP System Settings +# +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160=y +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=160 + +# +# Cache config +# +CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB=y +# CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB is not set +CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE=0x4000 +# CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS is not set +CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS=y +CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS=8 +# CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B is not set +CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B=y +CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE=32 +# CONFIG_ESP32S3_DATA_CACHE_16KB is not set +CONFIG_ESP32S3_DATA_CACHE_32KB=y +# CONFIG_ESP32S3_DATA_CACHE_64KB is not set +CONFIG_ESP32S3_DATA_CACHE_SIZE=0x8000 +# CONFIG_ESP32S3_DATA_CACHE_4WAYS is not set +CONFIG_ESP32S3_DATA_CACHE_8WAYS=y +CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS=8 +# CONFIG_ESP32S3_DATA_CACHE_LINE_16B is not set +CONFIG_ESP32S3_DATA_CACHE_LINE_32B=y +# CONFIG_ESP32S3_DATA_CACHE_LINE_64B is not set +CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE=32 +# end of Cache config + +# +# Memory +# +# CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM is not set +# CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE is not set +# end of Memory + +# +# Trace memory +# +# CONFIG_ESP32S3_TRAX is not set +CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM=0x0 +# end of Trace memory + +CONFIG_ESP_SYSTEM_IN_IRAM=y +# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set +CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y +# CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set +# CONFIG_ESP_SYSTEM_PANIC_GDBSTUB is not set +CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS=0 +CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK=y +CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP=y + +# +# Memory protection +# +CONFIG_ESP_SYSTEM_MEMPROT_FEATURE=y +CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK=y +# end of Memory protection + +CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_ESP_MAIN_TASK_STACK_SIZE=3584 +CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y +# CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 is not set +# CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY is not set +CONFIG_ESP_MAIN_TASK_AFFINITY=0x0 +CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048 +CONFIG_ESP_CONSOLE_UART_DEFAULT=y +# CONFIG_ESP_CONSOLE_USB_CDC is not set +# CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG is not set +# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set +# CONFIG_ESP_CONSOLE_NONE is not set +# CONFIG_ESP_CONSOLE_SECONDARY_NONE is not set +CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG=y +CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=y +CONFIG_ESP_CONSOLE_UART=y +CONFIG_ESP_CONSOLE_UART_NUM=0 +CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM=0 +CONFIG_ESP_CONSOLE_UART_BAUDRATE=115200 +CONFIG_ESP_INT_WDT=y +CONFIG_ESP_INT_WDT_TIMEOUT_MS=300 +CONFIG_ESP_INT_WDT_CHECK_CPU1=y +CONFIG_ESP_TASK_WDT_EN=y +CONFIG_ESP_TASK_WDT_INIT=y +# CONFIG_ESP_TASK_WDT_PANIC is not set +CONFIG_ESP_TASK_WDT_TIMEOUT_S=5 +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# CONFIG_ESP_PANIC_HANDLER_IRAM is not set +# CONFIG_ESP_DEBUG_STUBS_ENABLE is not set +CONFIG_ESP_DEBUG_OCDAWARE=y +CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y +CONFIG_ESP_SYSTEM_BBPLL_RECALIB=y +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +CONFIG_ESP_IPC_ENABLE=y +CONFIG_ESP_IPC_TASK_STACK_SIZE=1280 +CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y +CONFIG_ESP_IPC_ISR_ENABLE=y +# end of IPC (Inter-Processor Call) + +# +# ESP Timer (High Resolution Timer) +# +CONFIG_ESP_TIMER_IN_IRAM=y +# CONFIG_ESP_TIMER_PROFILING is not set +CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER=y +CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER=y +CONFIG_ESP_TIMER_TASK_STACK_SIZE=3584 +CONFIG_ESP_TIMER_INTERRUPT_LEVEL=1 +# CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL is not set +CONFIG_ESP_TIMER_TASK_AFFINITY=0x0 +CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0=y +CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0=y +# CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set +CONFIG_ESP_TIMER_IMPL_SYSTIMER=y +# end of ESP Timer (High Resolution Timer) + +# +# Wi-Fi +# +CONFIG_ESP_WIFI_ENABLED=y +CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM=10 +CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# CONFIG_ESP_WIFI_STATIC_TX_BUFFER is not set +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER=y +CONFIG_ESP_WIFI_TX_BUFFER_TYPE=1 +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER=y +# CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER is not set +CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF=0 +CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF=5 +# CONFIG_ESP_WIFI_CSI_ENABLED is not set +CONFIG_ESP_WIFI_AMPDU_TX_ENABLED=y +CONFIG_ESP_WIFI_TX_BA_WIN=6 +CONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP_WIFI_RX_BA_WIN=6 +CONFIG_ESP_WIFI_NVS_ENABLED=y +CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0=y +# CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 is not set +CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN=752 +CONFIG_ESP_WIFI_MGMT_SBUF_NUM=32 +CONFIG_ESP_WIFI_IRAM_OPT=y +# CONFIG_ESP_WIFI_EXTRA_IRAM_OPT is not set +CONFIG_ESP_WIFI_RX_IRAM_OPT=y +CONFIG_ESP_WIFI_ENABLE_WPA3_SAE=y +CONFIG_ESP_WIFI_ENABLE_SAE_PK=y +CONFIG_ESP_WIFI_ENABLE_SAE_H2E=y +CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT=y +CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA=y +# CONFIG_ESP_WIFI_SLP_IRAM_OPT is not set +CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME=50 +# CONFIG_ESP_WIFI_BSS_MAX_IDLE_SUPPORT is not set +CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME=10 +CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME=15 +# CONFIG_ESP_WIFI_FTM_ENABLE is not set +CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y +# CONFIG_ESP_WIFI_GCMP_SUPPORT is not set +CONFIG_ESP_WIFI_GMAC_SUPPORT=y +CONFIG_ESP_WIFI_SOFTAP_SUPPORT=y +# CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT is not set +CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM=7 +CONFIG_ESP_WIFI_MBEDTLS_CRYPTO=y +CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT=y +# CONFIG_ESP_WIFI_WAPI_PSK is not set +# CONFIG_ESP_WIFI_SUITE_B_192 is not set +# CONFIG_ESP_WIFI_11KV_SUPPORT is not set +# CONFIG_ESP_WIFI_MBO_SUPPORT is not set +# CONFIG_ESP_WIFI_DPP_SUPPORT is not set +# CONFIG_ESP_WIFI_11R_SUPPORT is not set +# CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR is not set + +# +# WPS Configuration Options +# +# CONFIG_ESP_WIFI_WPS_STRICT is not set +# CONFIG_ESP_WIFI_WPS_PASSPHRASE is not set +# end of WPS Configuration Options + +# CONFIG_ESP_WIFI_DEBUG_PRINT is not set +# CONFIG_ESP_WIFI_TESTING_OPTIONS is not set +CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y +# CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER is not set +# end of Wi-Fi + +# +# Core dump +# +# CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH is not set +# CONFIG_ESP_COREDUMP_ENABLE_TO_UART is not set +CONFIG_ESP_COREDUMP_ENABLE_TO_NONE=y +# end of Core dump + +# +# FAT Filesystem support +# +CONFIG_FATFS_VOLUME_COUNT=2 +CONFIG_FATFS_LFN_NONE=y +# CONFIG_FATFS_LFN_HEAP is not set +# CONFIG_FATFS_LFN_STACK is not set +# CONFIG_FATFS_SECTOR_512 is not set +CONFIG_FATFS_SECTOR_4096=y +# CONFIG_FATFS_CODEPAGE_DYNAMIC is not set +CONFIG_FATFS_CODEPAGE_437=y +# CONFIG_FATFS_CODEPAGE_720 is not set +# CONFIG_FATFS_CODEPAGE_737 is not set +# CONFIG_FATFS_CODEPAGE_771 is not set +# CONFIG_FATFS_CODEPAGE_775 is not set +# CONFIG_FATFS_CODEPAGE_850 is not set +# CONFIG_FATFS_CODEPAGE_852 is not set +# CONFIG_FATFS_CODEPAGE_855 is not set +# CONFIG_FATFS_CODEPAGE_857 is not set +# CONFIG_FATFS_CODEPAGE_860 is not set +# CONFIG_FATFS_CODEPAGE_861 is not set +# CONFIG_FATFS_CODEPAGE_862 is not set +# CONFIG_FATFS_CODEPAGE_863 is not set +# CONFIG_FATFS_CODEPAGE_864 is not set +# CONFIG_FATFS_CODEPAGE_865 is not set +# CONFIG_FATFS_CODEPAGE_866 is not set +# CONFIG_FATFS_CODEPAGE_869 is not set +# CONFIG_FATFS_CODEPAGE_932 is not set +# CONFIG_FATFS_CODEPAGE_936 is not set +# CONFIG_FATFS_CODEPAGE_949 is not set +# CONFIG_FATFS_CODEPAGE_950 is not set +CONFIG_FATFS_CODEPAGE=437 +CONFIG_FATFS_FS_LOCK=0 +CONFIG_FATFS_TIMEOUT_MS=10000 +CONFIG_FATFS_PER_FILE_CACHE=y +# CONFIG_FATFS_USE_FASTSEEK is not set +CONFIG_FATFS_USE_STRFUNC_NONE=y +# CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV is not set +# CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV is not set +CONFIG_FATFS_VFS_FSTAT_BLKSIZE=0 +# CONFIG_FATFS_IMMEDIATE_FSYNC is not set +# CONFIG_FATFS_USE_LABEL is not set +CONFIG_FATFS_LINK_LOCK=y +# CONFIG_FATFS_USE_DYN_BUFFERS is not set + +# +# File system free space calculation behavior +# +CONFIG_FATFS_DONT_TRUST_FREE_CLUSTER_CNT=0 +CONFIG_FATFS_DONT_TRUST_LAST_ALLOC=0 +# end of File system free space calculation behavior +# end of FAT Filesystem support + +# +# FreeRTOS +# + +# +# Kernel +# +# CONFIG_FREERTOS_SMP is not set +# CONFIG_FREERTOS_UNICORE is not set +CONFIG_FREERTOS_HZ=100 +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set +CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y +CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1 +CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536 +# CONFIG_FREERTOS_USE_IDLE_HOOK is not set +# CONFIG_FREERTOS_USE_TICK_HOOK is not set +CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 +# CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY is not set +CONFIG_FREERTOS_USE_TIMERS=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME="Tmr Svc" +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 is not set +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 is not set +CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 +CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048 +CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 +CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 +CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1 +# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set +# CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES is not set +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set +# CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG is not set +# end of Kernel + +# +# Port +# +CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y +# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set +CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y +# CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK is not set +# CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP is not set +CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y +CONFIG_FREERTOS_ISR_STACKSIZE=1536 +CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y +# CONFIG_FREERTOS_FPU_IN_ISR is not set +CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER=y +CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1=y +# CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 is not set +CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER=y +# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +# end of Port + +# +# Extra +# +# end of Extra + +CONFIG_FREERTOS_PORT=y +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y +CONFIG_FREERTOS_DEBUG_OCDAWARE=y +CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y +CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y +CONFIG_FREERTOS_NUMBER_OF_CORES=2 +CONFIG_FREERTOS_IN_IRAM=y +# end of FreeRTOS + +# +# Hardware Abstraction Layer (HAL) and Low Level (LL) +# +CONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y +# CONFIG_HAL_ASSERTION_DISABLE is not set +# CONFIG_HAL_ASSERTION_SILENT is not set +# CONFIG_HAL_ASSERTION_ENABLE is not set +CONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2 +CONFIG_HAL_WDT_USE_ROM_IMPL=y +# end of Hardware Abstraction Layer (HAL) and Low Level (LL) + +# +# Heap memory debugging +# +CONFIG_HEAP_POISONING_DISABLED=y +# CONFIG_HEAP_POISONING_LIGHT is not set +# CONFIG_HEAP_POISONING_COMPREHENSIVE is not set +CONFIG_HEAP_TRACING_OFF=y +# CONFIG_HEAP_TRACING_STANDALONE is not set +# CONFIG_HEAP_TRACING_TOHOST is not set +# CONFIG_HEAP_USE_HOOKS is not set +# CONFIG_HEAP_TASK_TRACKING is not set +# CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS is not set +# CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH is not set +# end of Heap memory debugging + +# +# Log +# +CONFIG_LOG_VERSION_1=y +# CONFIG_LOG_VERSION_2 is not set +CONFIG_LOG_VERSION=1 + +# +# Log Level +# +# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set +# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set +# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set +CONFIG_LOG_DEFAULT_LEVEL_INFO=y +# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set +# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set +CONFIG_LOG_DEFAULT_LEVEL=3 +CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y +# CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set +# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set +CONFIG_LOG_MAXIMUM_LEVEL=3 + +# +# Level Settings +# +# CONFIG_LOG_MASTER_LEVEL is not set +CONFIG_LOG_DYNAMIC_LEVEL_CONTROL=y +# CONFIG_LOG_TAG_LEVEL_IMPL_NONE is not set +# CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST is not set +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST=y +# CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY is not set +CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP=y +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE=31 +# end of Level Settings +# end of Log Level + +# +# Format +# +# CONFIG_LOG_COLORS is not set +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Format + +# +# Settings +# +CONFIG_LOG_MODE_TEXT_EN=y +CONFIG_LOG_MODE_TEXT=y +# end of Settings + +CONFIG_LOG_IN_IRAM=y +# end of Log + +# +# LWIP +# +CONFIG_LWIP_ENABLE=y +CONFIG_LWIP_LOCAL_HOSTNAME="espressif" +CONFIG_LWIP_TCPIP_TASK_PRIO=18 +# CONFIG_LWIP_TCPIP_CORE_LOCKING is not set +# CONFIG_LWIP_CHECK_THREAD_SAFETY is not set +CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y +# CONFIG_LWIP_L2_TO_L3_COPY is not set +# CONFIG_LWIP_IRAM_OPTIMIZATION is not set +# CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION is not set +CONFIG_LWIP_TIMERS_ONDEMAND=y +CONFIG_LWIP_ND6=y +# CONFIG_LWIP_FORCE_ROUTER_FORWARDING is not set +CONFIG_LWIP_MAX_SOCKETS=10 +# CONFIG_LWIP_USE_ONLY_LWIP_SELECT is not set +# CONFIG_LWIP_SO_LINGER is not set +CONFIG_LWIP_SO_REUSE=y +CONFIG_LWIP_SO_REUSE_RXTOALL=y +# CONFIG_LWIP_SO_RCVBUF is not set +# CONFIG_LWIP_NETBUF_RECVINFO is not set +CONFIG_LWIP_IP_DEFAULT_TTL=64 +CONFIG_LWIP_IP4_FRAG=y +CONFIG_LWIP_IP6_FRAG=y +# CONFIG_LWIP_IP4_REASSEMBLY is not set +# CONFIG_LWIP_IP6_REASSEMBLY is not set +CONFIG_LWIP_IP_REASS_MAX_PBUFS=10 +# CONFIG_LWIP_IP_FORWARD is not set +# CONFIG_LWIP_STATS is not set +CONFIG_LWIP_ESP_GRATUITOUS_ARP=y +CONFIG_LWIP_GARP_TMR_INTERVAL=60 +CONFIG_LWIP_ESP_MLDV6_REPORT=y +CONFIG_LWIP_MLDV6_TMR_INTERVAL=40 +CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=32 +CONFIG_LWIP_DHCP_DOES_ARP_CHECK=y +# CONFIG_LWIP_DHCP_DOES_ACD_CHECK is not set +# CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP is not set +# CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID is not set +CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID=y +# CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set +CONFIG_LWIP_DHCP_OPTIONS_LEN=69 +CONFIG_LWIP_NUM_NETIF_CLIENT_DATA=0 +CONFIG_LWIP_DHCP_COARSE_TIMER_SECS=1 + +# +# DHCP server +# +CONFIG_LWIP_DHCPS=y +CONFIG_LWIP_DHCPS_LEASE_UNIT=60 +CONFIG_LWIP_DHCPS_MAX_STATION_NUM=8 +CONFIG_LWIP_DHCPS_STATIC_ENTRIES=y +CONFIG_LWIP_DHCPS_ADD_DNS=y +# end of DHCP server + +# CONFIG_LWIP_AUTOIP is not set +CONFIG_LWIP_IPV4=y +CONFIG_LWIP_IPV6=y +# CONFIG_LWIP_IPV6_AUTOCONFIG is not set +CONFIG_LWIP_IPV6_NUM_ADDRESSES=3 +# CONFIG_LWIP_IPV6_FORWARD is not set +# CONFIG_LWIP_NETIF_STATUS_CALLBACK is not set +CONFIG_LWIP_NETIF_LOOPBACK=y +CONFIG_LWIP_LOOPBACK_MAX_PBUFS=8 + +# +# TCP +# +CONFIG_LWIP_MAX_ACTIVE_TCP=16 +CONFIG_LWIP_MAX_LISTENING_TCP=16 +CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=y +CONFIG_LWIP_TCP_MAXRTX=12 +CONFIG_LWIP_TCP_SYNMAXRTX=12 +CONFIG_LWIP_TCP_MSS=1440 +CONFIG_LWIP_TCP_TMR_INTERVAL=250 +CONFIG_LWIP_TCP_MSL=60000 +CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT=20000 +CONFIG_LWIP_TCP_SND_BUF_DEFAULT=5760 +CONFIG_LWIP_TCP_WND_DEFAULT=5760 +CONFIG_LWIP_TCP_RECVMBOX_SIZE=6 +CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE=6 +CONFIG_LWIP_TCP_QUEUE_OOSEQ=y +CONFIG_LWIP_TCP_OOSEQ_TIMEOUT=6 +CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS=4 +# CONFIG_LWIP_TCP_SACK_OUT is not set +CONFIG_LWIP_TCP_OVERSIZE_MSS=y +# CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS is not set +# CONFIG_LWIP_TCP_OVERSIZE_DISABLE is not set +CONFIG_LWIP_TCP_RTO_TIME=1500 +# end of TCP + +# +# UDP +# +CONFIG_LWIP_MAX_UDP_PCBS=16 +CONFIG_LWIP_UDP_RECVMBOX_SIZE=6 +# end of UDP + +# +# Checksums +# +# CONFIG_LWIP_CHECKSUM_CHECK_IP is not set +# CONFIG_LWIP_CHECKSUM_CHECK_UDP is not set +CONFIG_LWIP_CHECKSUM_CHECK_ICMP=y +# end of Checksums + +CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=3072 +CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY=y +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not set +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 is not set +CONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF +CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 +CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 +CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES=5 +CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS=3 +CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS=10 +# CONFIG_LWIP_PPP_SUPPORT is not set +# CONFIG_LWIP_SLIP_SUPPORT is not set + +# +# ICMP +# +CONFIG_LWIP_ICMP=y +# CONFIG_LWIP_MULTICAST_PING is not set +# CONFIG_LWIP_BROADCAST_PING is not set +# end of ICMP + +# +# LWIP RAW API +# +CONFIG_LWIP_MAX_RAW_PCBS=16 +# end of LWIP RAW API + +# +# SNTP +# +CONFIG_LWIP_SNTP_MAX_SERVERS=1 +# CONFIG_LWIP_DHCP_GET_NTP_SRV is not set +CONFIG_LWIP_SNTP_UPDATE_DELAY=3600000 +CONFIG_LWIP_SNTP_STARTUP_DELAY=y +CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY=5000 +# end of SNTP + +# +# DNS +# +CONFIG_LWIP_DNS_MAX_HOST_IP=1 +CONFIG_LWIP_DNS_MAX_SERVERS=3 +# CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT is not set +# CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF is not set +# CONFIG_LWIP_USE_ESP_GETADDRINFO is not set +# end of DNS + +CONFIG_LWIP_BRIDGEIF_MAX_PORTS=7 +CONFIG_LWIP_ESP_LWIP_ASSERT=y + +# +# Hooks +# +# CONFIG_LWIP_HOOK_TCP_ISN_NONE is not set +CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT=y +# CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM is not set +CONFIG_LWIP_HOOK_IP6_ROUTE_NONE=y +# CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT is not set +# CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM is not set +CONFIG_LWIP_HOOK_ND6_GET_GW_NONE=y +# CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT is not set +# CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM is not set +CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE=y +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT is not set +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM is not set +CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_NONE=y +# CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT is not set +# CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM is not set +CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE=y +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT is not set +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM is not set +CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE=y +# CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM is not set +# CONFIG_LWIP_HOOK_IP6_INPUT_NONE is not set +CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT=y +# CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM is not set +# end of Hooks + +# CONFIG_LWIP_DEBUG is not set +# end of LWIP + +# +# mbedTLS +# +CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y +# CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set +# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set +CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y +CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384 +CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096 +# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set +# CONFIG_MBEDTLS_DEBUG is not set + +# +# mbedTLS v3.x related +# +# CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 is not set +# CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH is not set +# CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK is not set +# CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION is not set +CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE=y +# CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT is not set +CONFIG_MBEDTLS_PKCS7_C=y +# end of mbedTLS v3.x related + +# +# Certificate Bundle +# +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set +# CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST is not set +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200 +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +CONFIG_MBEDTLS_CMAC_C=y +CONFIG_MBEDTLS_HARDWARE_AES=y +CONFIG_MBEDTLS_AES_USE_INTERRUPT=y +CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL=0 +CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER=y +CONFIG_MBEDTLS_HARDWARE_MPI=y +# CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI is not set +CONFIG_MBEDTLS_MPI_USE_INTERRUPT=y +CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL=0 +CONFIG_MBEDTLS_HARDWARE_SHA=y +CONFIG_MBEDTLS_ROM_MD5=y +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set +CONFIG_MBEDTLS_HAVE_TIME=y +# CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set +# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set +CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y +CONFIG_MBEDTLS_SHA1_C=y +CONFIG_MBEDTLS_SHA512_C=y +# CONFIG_MBEDTLS_SHA3_C is not set +CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y +# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set +# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set +# CONFIG_MBEDTLS_TLS_DISABLED is not set +CONFIG_MBEDTLS_TLS_SERVER=y +CONFIG_MBEDTLS_TLS_CLIENT=y +CONFIG_MBEDTLS_TLS_ENABLED=y + +# +# TLS Key Exchange Methods +# +# CONFIG_MBEDTLS_PSK_MODES is not set +CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y +# end of TLS Key Exchange Methods + +CONFIG_MBEDTLS_SSL_RENEGOTIATION=y +CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y +# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set +# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set +CONFIG_MBEDTLS_SSL_ALPN=y +CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y +CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y + +# +# Symmetric Ciphers +# +CONFIG_MBEDTLS_AES_C=y +# CONFIG_MBEDTLS_CAMELLIA_C is not set +# CONFIG_MBEDTLS_DES_C is not set +# CONFIG_MBEDTLS_BLOWFISH_C is not set +# CONFIG_MBEDTLS_XTEA_C is not set +CONFIG_MBEDTLS_CCM_C=y +CONFIG_MBEDTLS_GCM_C=y +# CONFIG_MBEDTLS_NIST_KW_C is not set +# end of Symmetric Ciphers + +# CONFIG_MBEDTLS_RIPEMD160_C is not set + +# +# Certificates +# +CONFIG_MBEDTLS_PEM_PARSE_C=y +CONFIG_MBEDTLS_PEM_WRITE_C=y +CONFIG_MBEDTLS_X509_CRL_PARSE_C=y +CONFIG_MBEDTLS_X509_CSR_PARSE_C=y +# end of Certificates + +CONFIG_MBEDTLS_ECP_C=y +CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED=y +CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED=y +# CONFIG_MBEDTLS_DHM_C is not set +CONFIG_MBEDTLS_ECDH_C=y +CONFIG_MBEDTLS_ECDSA_C=y +# CONFIG_MBEDTLS_ECJPAKE_C is not set +CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y +CONFIG_MBEDTLS_ECP_NIST_OPTIM=y +# CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM is not set +# CONFIG_MBEDTLS_POLY1305_C is not set +# CONFIG_MBEDTLS_CHACHA20_C is not set +# CONFIG_MBEDTLS_HKDF_C is not set +# CONFIG_MBEDTLS_THREADING_C is not set +CONFIG_MBEDTLS_ERROR_STRINGS=y +CONFIG_MBEDTLS_FS_IO=y +# CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION is not set +# end of mbedTLS + +# +# ESP-MQTT Configurations +# +CONFIG_MQTT_PROTOCOL_311=y +# CONFIG_MQTT_PROTOCOL_5 is not set +# CONFIG_MQTT_TRANSPORT_SSL is not set +CONFIG_MQTT_TRANSPORT_WEBSOCKET=y +# CONFIG_MQTT_MSG_ID_INCREMENTAL is not set +# CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED is not set +# CONFIG_MQTT_REPORT_DELETED_MESSAGES is not set +# CONFIG_MQTT_USE_CUSTOM_CONFIG is not set +# CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED is not set +# CONFIG_MQTT_CUSTOM_OUTBOX is not set +# end of ESP-MQTT Configurations + +# +# LibC +# +CONFIG_LIBC_NEWLIB=y +CONFIG_LIBC_MISC_IN_IRAM=y +CONFIG_LIBC_LOCKS_PLACE_IN_IRAM=y +CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF=y +# CONFIG_LIBC_STDOUT_LINE_ENDING_LF is not set +# CONFIG_LIBC_STDOUT_LINE_ENDING_CR is not set +# CONFIG_LIBC_STDIN_LINE_ENDING_CRLF is not set +# CONFIG_LIBC_STDIN_LINE_ENDING_LF is not set +CONFIG_LIBC_STDIN_LINE_ENDING_CR=y +# CONFIG_LIBC_NEWLIB_NANO_FORMAT is not set +CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT=y +# CONFIG_LIBC_TIME_SYSCALL_USE_RTC is not set +# CONFIG_LIBC_TIME_SYSCALL_USE_HRT is not set +# CONFIG_LIBC_TIME_SYSCALL_USE_NONE is not set +# end of LibC + +# +# NVS +# +# CONFIG_NVS_ENCRYPTION is not set +# CONFIG_NVS_ASSERT_ERROR_CHECK is not set +# CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY is not set +# end of NVS + +# +# OpenThread +# +# CONFIG_OPENTHREAD_ENABLED is not set + +# +# OpenThread Spinel +# +# CONFIG_OPENTHREAD_SPINEL_ONLY is not set +# end of OpenThread Spinel +# end of OpenThread + +# +# Protocomm +# +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0=y +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1=y +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2=y +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION=y +# end of Protocomm + +# +# PThreads +# +CONFIG_PTHREAD_TASK_PRIO_DEFAULT=5 +CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 +CONFIG_PTHREAD_STACK_MIN=768 +CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY=y +# CONFIG_PTHREAD_DEFAULT_CORE_0 is not set +# CONFIG_PTHREAD_DEFAULT_CORE_1 is not set +CONFIG_PTHREAD_TASK_CORE_DEFAULT=-1 +CONFIG_PTHREAD_TASK_NAME_DEFAULT="pthread" +# end of PThreads + +# +# MMU Config +# +CONFIG_MMU_PAGE_SIZE_64KB=y +CONFIG_MMU_PAGE_MODE="64KB" +CONFIG_MMU_PAGE_SIZE=0x10000 +# end of MMU Config + +# +# Main Flash configuration +# + +# +# SPI Flash behavior when brownout +# +CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC=y +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!) +# +# CONFIG_SPI_FLASH_HPM_ENA is not set +CONFIG_SPI_FLASH_HPM_AUTO=y +# CONFIG_SPI_FLASH_HPM_DIS is not set +CONFIG_SPI_FLASH_HPM_ON=y +CONFIG_SPI_FLASH_HPM_DC_AUTO=y +# CONFIG_SPI_FLASH_HPM_DC_DISABLE is not set +# CONFIG_SPI_FLASH_AUTO_SUSPEND is not set +CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 +# CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND is not set +# CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND is not set +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 +# +# CONFIG_SPI_FLASH_VERIFY_WRITE is not set +# CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set +CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y +# CONFIG_SPI_FLASH_ROM_IMPL is not set +CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set +# CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set +CONFIG_SPI_FLASH_YIELD_DURING_ERASE=y +CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20 +CONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1 +CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192 +# CONFIG_SPI_FLASH_SIZE_OVERRIDE is not set +# CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED is not set +# CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST is not set + +# +# Auto-detect flash chips +# +CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_TH_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP=y +# end of Auto-detect flash chips + +CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=y +# end of SPI Flash driver + +# +# SPIFFS Configuration +# +CONFIG_SPIFFS_MAX_PARTITIONS=1 + +# +# SPIFFS Cache Configuration +# +CONFIG_SPIFFS_CACHE=y +CONFIG_SPIFFS_CACHE_WR=y +# CONFIG_SPIFFS_CACHE_STATS is not set +# end of SPIFFS Cache Configuration + +CONFIG_SPIFFS_PAGE_CHECK=y +CONFIG_SPIFFS_GC_MAX_RUNS=10 +# CONFIG_SPIFFS_GC_STATS is not set +CONFIG_SPIFFS_PAGE_SIZE=256 +CONFIG_SPIFFS_OBJ_NAME_LEN=32 +# CONFIG_SPIFFS_FOLLOW_SYMLINKS is not set +CONFIG_SPIFFS_USE_MAGIC=y +CONFIG_SPIFFS_USE_MAGIC_LENGTH=y +CONFIG_SPIFFS_META_LENGTH=4 +CONFIG_SPIFFS_USE_MTIME=y + +# +# Debug Configuration +# +# CONFIG_SPIFFS_DBG is not set +# CONFIG_SPIFFS_API_DBG is not set +# CONFIG_SPIFFS_GC_DBG is not set +# CONFIG_SPIFFS_CACHE_DBG is not set +# CONFIG_SPIFFS_CHECK_DBG is not set +# CONFIG_SPIFFS_TEST_VISUALISATION is not set +# end of Debug Configuration +# end of SPIFFS Configuration + +# +# TCP Transport +# + +# +# Websocket +# +CONFIG_WS_TRANSPORT=y +CONFIG_WS_BUFFER_SIZE=1024 +# CONFIG_WS_DYNAMIC_BUFFER is not set +# end of Websocket +# end of TCP Transport + +# +# Ultra Low Power (ULP) Co-processor +# +# 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 +# +CONFIG_UNITY_ENABLE_FLOAT=y +CONFIG_UNITY_ENABLE_DOUBLE=y +# CONFIG_UNITY_ENABLE_64BIT is not set +# CONFIG_UNITY_ENABLE_COLOR is not set +CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y +# CONFIG_UNITY_ENABLE_FIXTURE is not set +# CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL is not set +# CONFIG_UNITY_TEST_ORDER_BY_FILE_PATH_AND_LINE is not set +# end of Unity unit testing library + +# +# USB-OTG +# +CONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE=256 +CONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED=y +# CONFIG_USB_HOST_HW_BUFFER_BIAS_IN is not set +# CONFIG_USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT is not set + +# +# Hub Driver Configuration +# + +# +# Root Port configuration +# +CONFIG_USB_HOST_DEBOUNCE_DELAY_MS=250 +CONFIG_USB_HOST_RESET_HOLD_MS=30 +CONFIG_USB_HOST_RESET_RECOVERY_MS=30 +CONFIG_USB_HOST_SET_ADDR_RECOVERY_MS=10 +# end of Root Port configuration + +# CONFIG_USB_HOST_HUBS_SUPPORTED is not set +# end of Hub Driver Configuration + +# CONFIG_USB_HOST_ENABLE_ENUM_FILTER_CALLBACK is not set +CONFIG_USB_OTG_SUPPORTED=y +# end of USB-OTG + +# +# Virtual file system +# +CONFIG_VFS_SUPPORT_IO=y +CONFIG_VFS_SUPPORT_DIR=y +CONFIG_VFS_SUPPORT_SELECT=y +CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y +# CONFIG_VFS_SELECT_IN_RAM is not set +CONFIG_VFS_SUPPORT_TERMIOS=y +CONFIG_VFS_MAX_COUNT=8 + +# +# Host File System I/O (Semihosting) +# +CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# end of Host File System I/O (Semihosting) + +CONFIG_VFS_INITIALIZE_DEV_NULL=y +# end of Virtual file system + +# +# Wear Levelling +# +# CONFIG_WL_SECTOR_SIZE_512 is not set +CONFIG_WL_SECTOR_SIZE_4096=y +CONFIG_WL_SECTOR_SIZE=4096 +# end of Wear Levelling + +# +# Wi-Fi Provisioning Manager +# +CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES=16 +CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT=30 +CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN=y +# CONFIG_WIFI_PROV_STA_FAST_SCAN is not set +# end of Wi-Fi Provisioning Manager +# end of Component config + +# 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_APP_ROLLBACK_ENABLE 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=y +# CONFIG_FLASHMODE_QOUT is not set +# CONFIG_FLASHMODE_DIO is not set +# 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_ESP32_APPTRACE_DEST_TRAX is not set +CONFIG_ESP32_APPTRACE_DEST_NONE=y +CONFIG_ESP32_APPTRACE_LOCK_ENABLE=y +# CONFIG_EXTERNAL_COEX_ENABLE is not set +# CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE is not set +# CONFIG_CAM_CTLR_DVP_CAM_ISR_IRAM_SAFE is not set +# 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_ESP_SYSTEM_PD_FLASH is not set +CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY=2000 +CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY=2000 +CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC=y +# CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256 is not set +CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES=1024 +CONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y +CONFIG_BROWNOUT_DET=y +CONFIG_ESP32S3_BROWNOUT_DET=y +CONFIG_BROWNOUT_DET_LVL_SEL_7=y +CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7=y +# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1 is not set +CONFIG_BROWNOUT_DET_LVL=7 +CONFIG_ESP32S3_BROWNOUT_DET_LVL=7 +CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y +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_ESP_SYSTEM_PM_POWER_DOWN_CPU=y +CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP=y +# CONFIG_ESP32S3_SPIRAM_SUPPORT is not set +# CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80 is not set +CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160=y +# CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240 is not set +CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ=160 +CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_MAIN_TASK_STACK_SIZE=3584 +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_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_ESP32S3_DEBUG_OCDAWARE=y +CONFIG_IPC_TASK_STACK_SIZE=1280 +CONFIG_TIMER_TASK_STACK_SIZE=3584 +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_WPA_MBEDTLS_CRYPTO=y +CONFIG_WPA_MBEDTLS_TLS_CLIENT=y +# CONFIG_WPA_WAPI_PSK is not set +# CONFIG_WPA_SUITE_B_192 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_WPA_TESTING_OPTIONS 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_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_NANO_FORMAT is not set +CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y +CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER=y +CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1=y +# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE 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_SUPPRESS_SELECT_DEBUG_OUTPUT=y +CONFIG_SUPPORT_TERMIOS=y +CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# End of deprecated options